From 312792c5096f70a92ff6362a7255b3aa82f36cdf Mon Sep 17 00:00:00 2001 From: blake Date: Thu, 22 Dec 2022 10:58:04 -0600 Subject: [PATCH] LP#1901932 Wish List - Enhanced Concerto dataset . Adding better ECD output for master branch . Much improved enhanced generator script . Introducing make_release changes to incorporate the upgrade of the ECD. Signed-off-by: blake Signed-off-by: Galen Charlton --- .../make_concerto_from_evergreen_db.pl | 747 ++- .../sql/concerto_enhanced/action.circulation.sql | 648 +- .../sql/concerto_enhanced/action.hold_copy_map.sql | 6682 ++++++++++---------- .../concerto_enhanced/action.survey_response.sql | 1226 ++-- .../concerto_enhanced/actor.org_unit_setting.sql | 11 +- .../sql/concerto_enhanced/actor.passwd.sql | 1 + .../datasets/sql/concerto_enhanced/actor.usr.sql | 756 +-- .../sql/concerto_enhanced/actor.workstation.sql | 48 +- .../sql/concerto_enhanced/asset.call_number.sql | 70 +- .../datasets/sql/concerto_enhanced/asset.copy.sql | 6 - .../datasets/sql/concerto_enhanced/asset.uri.sql | 7 +- .../asset.uri_call_number_map.sql | 35 - .../sql/concerto_enhanced/biblio.record_entry.sql | 4 +- .../concerto_enhanced/config.remote_account.sql | 7 - .../sql/concerto_enhanced/config.upgrade_log.sql | 31 + .../datasets/sql/concerto_enhanced/load_all.sql | 21 - .../sql/concerto_enhanced/money.billable_xact.sql | 567 -- .../concerto_enhanced/money.bnm_desk_payment.sql | 37 - .../sql/concerto_enhanced/money.bnm_payment.sql | 61 - .../sql/concerto_enhanced/money.payment.sql | 63 - .../sql/concerto_enhanced/vandelay.queue.sql | 13 - .../concerto_enhanced/vandelay.queued_record.sql | 249 - build/tools/make_release | 44 +- .../modules/development/pages/support_scripts.adoc | 162 +- 24 files changed, 5519 insertions(+), 5977 deletions(-) delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/config.remote_account.sql create mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/config.upgrade_log.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/money.billable_xact.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_desk_payment.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_payment.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/money.payment.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queue.sql delete mode 100644 Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queued_record.sql diff --git a/Open-ILS/src/support-scripts/make_concerto_from_evergreen_db.pl b/Open-ILS/src/support-scripts/make_concerto_from_evergreen_db.pl index c3dadc59b6..7fd9faa145 100755 --- a/Open-ILS/src/support-scripts/make_concerto_from_evergreen_db.pl +++ b/Open-ILS/src/support-scripts/make_concerto_from_evergreen_db.pl @@ -19,11 +19,18 @@ use XML::Simple; use Getopt::Long; use DBD::Pg; use File::Path qw(make_path); +use Cwd qw/abs_path getcwd/; our $CHUNKSIZE = 500; -our $xmlconf = "/openils/conf/opensrf.xml"; -our $xmlconfseed; +our $cwd = getcwd(); +our %dbconf = (); +our $dbhost; +our $databaseName = 'postgres'; +our $dbuser; +our $dbpass; +our $dbport; +our $seedDBName; our $dbHandler; our $dbHandlerSeed; our $sample; @@ -31,7 +38,14 @@ our $outputFolder; our $debug = 0; our $seedTableUsedRowCount = 0; our $seedTableRowCount = 100000; -our @skipTables = ( +our $doUpgrade = 0; +our $doTestRestore = 0; +our $doSeedOnly = 0; +our $seedFrom = 0; +our $nonInteractive = 0; +our $egRepoPath; +our $egRepoDestBranch = 'master'; +our @skipTables = ( 'auditor.*', 'search.*', 'reporter.*', @@ -44,7 +58,6 @@ our @skipTables = ( 'authority.simple_heading', 'authority.full_rec', 'authority.authority_linking', - 'config.upgrade_log', 'actor.org_unit_proximity', 'config.org_unit_setting_type_log', 'config.xml_transform', @@ -53,6 +66,7 @@ our @skipTables = ( 'vandelay.queued_bib_record_attr', 'config.print_template', 'config.workstation_setting_type', + 'permission.grp_perm_map', ); our @loadOrder = ( @@ -86,37 +100,150 @@ our @loadOrder = ( 'money.bnm_desk_payment', ); +# a mechanism to call out special tables where we don't want the default behavior +# here we can teach this software which columns need to be used for comparison +# to seed data, and which columns we need to output into our SQL load file +our %tableColumnOverride = ( + + # the id column isn't important, + # we need to ensure that we abide by the unique constraints + # comp is "comparison", these columns are what we use to dedupe from seed data + # load is "load these columns only", any other columns in the table will receive PG defaults + 'actor.org_unit_setting' => { + 'comp' => [ 'org_unit', 'name' ], + 'load' => [ 'org_unit', 'name', 'value' ] + }, +); + our $help = "Usage: ./make_concerto_from_evergreen_db.pl [OPTION]... This program automates the process of making a new dataset for the Evergreen code repository. -We need connection details to the Evergreen database where the intended dataset lives AND -we need connection details to a stock Evergreen database that only has the seed data. -This code requires the second database for comparison reasons. It needs to know what data is -seed data and what data is not. +We need connection details to a postgres database. The provided database user needs to have +permissions to create databases. + +This code will accept a pre-created seed database or it can create it's own. A blank \"seed\" +Evergreen database is needed for comparison reasons. It uses this as a reference to determine +which data is seed data and which data is not. Mandatory arguments +--db-host postgresql server hostname/IP +--db-user Database Username to connect +--db-pass Database password to connect +--db-port Database port to connect +--evergreen-repo Folder path to the root of the Evergreen git repository --output-folder Folder for our generated output ---xmlseed path to Evergreen opensrf.xml file for DB connection details to the seed database, created with --create-database --create-schema, NOT --load-all-sample Optional ---xmlconfig path to Evergreen opensrf.xml file for DB connection details, default /openils/conf/opensrf.xml ---sample Number of rows to fetch eg --sample 100 (not implemented) +--perform-upgrade This routine will restore previously generated dataset and upgrade it to match the + provided Evergreen repository version. +--non-interactive Suppress user input prompts +--db-name Enhanced Concerto source postgres database name if you're generating a new dataset. +--test-restore This option will cause the software to create a new database and populate it with the previously generated dataset --debug Set debug mode for more verbose output. +--create-seed-db This option will create a new DB from the version of Evergreen that the dataset was from. Just the seed DB, no data. +--seed-from-egdbid Supply the software the database ID number form which to create the seed database (used in conjunction with --create-seed-db) +--seed-db-name Evergreen database name for the seed database, created with --create-database --create-schema, NOT --load-all-sample + If you don't provide this, we will attempt to create one based upon a previously generated dataset located in + --output-folder. However, this will be required if you do not have a previously generated dataset. + +Examples: +Generate new dataset from existing DB: +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--db-name eg_enhanced \ +--output-folder output \ +--seed-db-name seed_from_1326 \ +--evergreen-repo /home/opensrf/repos/Evergreen + +If you don't have a seed database, you can omit it, and we'll make one based +upon the version we find in the file /config.upgrade_log.sql +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--db-name eg_enhanced \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen + +Or, you can have this software make a seed DB, and that's all it will do. +The version of Evergreen it will use will be found in /config.upgrade_log.sql +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--create-seed-db + +Or, you can have this software make a seed DB based on your specified version of Evergreen +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--create-seed-db \ +--seed-from-egdbid 1350 + +Upgrade a previously-created dataset. Use this when cutting new releases of Evergreen and you want to include +the enhanced dataset to match. It will use the current git branch found in the provided path to the EG repo. +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--perform-upgrade + +Test the existing dataset. Create a new database and restore the dataset. +The software will first create a database that matches the version of Evergreen in the +dataset output folder, then restore the dataset into the newly created database. +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--test-restore + "; GetOptions( - "sample=s" => \$sample, - "xmlconfig=s" => \$xmlconf, - "xmlseed=s" => \$xmlconfseed, - "output-folder=s" => \$outputFolder, - "debug" => \$debug, + "db-host=s" => \$dbhost, + "db-name=s" => \$databaseName, + "db-user=s" => \$dbuser, + "db-pass=s" => \$dbpass, + "db-port=s" => \$dbport, + "seed-db-name=s" => \$seedDBName, + "output-folder=s" => \$outputFolder, + "debug" => \$debug, + "evergreen-repo=s" => \$egRepoPath, + "perform-upgrade" => \$doUpgrade, + "test-restore" => \$doTestRestore, + "non-interactive" => \$nonInteractive, + "create-seed-db" => \$doSeedOnly, + "seed-from-egdbid=s" => \$seedFrom, ) or printHelp(); checkCMDArgs(); setupDB(); -start(); +createSeedDB() if $doSeedOnly; + +start() if !$doUpgrade && !$doTestRestore; + +upgrade() if $doUpgrade; + +testRestore() if $doTestRestore; sub start { @@ -128,6 +255,8 @@ sub start { } ) if ( !( -e $outputFolder ) ); + my $tempDB = checkSeed(); + # Gather a list of Evergreen Tables to process my @evergreenTables = @{ getSchemaTables() }; my $loadAll = @@ -147,7 +276,13 @@ sub start { my $lines = tableHandler( $thisTable, $columnRef, $thisFhandle ); close($thisFhandle); unlink $thisFile if ( -e $thisFile && $lines == 0 ); - push( @loadTables, $thisTable ) if ( -e $thisFile && $lines > 0 ); + + # upgrade_log is written as part of the dataset, but not loaded. + # it's used purely to figure out what version of Evergreen we are on + # during this execution. So, later, when we run the upgrade procedure, we + # can figure out where we were when this was generated. + push( @loadTables, $thisTable ) + if ( -e $thisFile && $lines > 0 && !( $thisFile =~ /config\.upgrade_log/ ) ); undef $lines; } else { @@ -161,6 +296,82 @@ sub start { binmode( OUT, ":utf8" ); print OUT $loadAll; close(OUT); + $dbHandler->disconnect; + $dbHandlerSeed->disconnect; + dropDB($tempDB) if $tempDB; + exit if !$doUpgrade; +} + +sub upgrade { + my $restoreDBName = getNextAvailableDBName(); + print "Using database name: $restoreDBName\n" if $debug; + my $currentEGDBVersionNum = getLastEGDBVersionFromOutput(); + userInput("Found this DB version from output: $currentEGDBVersionNum"); + my $previousGitBranch = checkoutEGMatchingGitVersion($currentEGDBVersionNum); + populateDBFromCurrentGitBranch( $restoreDBName, 0 ); + + # now we have a temp database full of our concerto set + # created by the version of Evergreen that origainally made the dataset + # Now, swtich the repo back to the original branch that the user had + gitCheckoutBranch( $previousGitBranch, 0, 1 ); + loadThisDataset($restoreDBName); + upgradeDB( $restoreDBName, $currentEGDBVersionNum ); + $seedDBName = getNextAvailableDBName(); + populateDBFromCurrentGitBranch( $seedDBName, 0 ); + + dbhandler_setupConnection( $restoreDBName, $dbconf{"dbhost"}, $dbconf{"dbuser"}, $dbconf{"dbpass"}, + $dbconf{"port"} ); + dbhandler_setupConnection( $seedDBName, $dbconf{"dbhost"}, $dbconf{"dbuser"}, $dbconf{"dbpass"}, $dbconf{"port"}, + 1 ); + start(); + userInput( "Done! If you'd like, you can pause here and take a peek at the generated databases before " + . "I drop them:\nFull DB: $restoreDBName\nSeed: $seedDBName" ); + $dbHandler->disconnect; + $dbHandlerSeed->disconnect; + dropDB($restoreDBName); + dropDB($seedDBName); + exit; +} + +sub testRestore { + my $restoreDB = checkSeed(1); + loadThisDataset($restoreDB); + print "Created database: $restoreDB from provided output folder: $outputFolder\n"; + exit; +} + +sub createSeedDB { + my $currentEGDBVersionNum = $seedFrom ? $seedFrom : getLastEGDBVersionFromOutput(); + my $restoreDBName = getNextAvailableDBName( "seed_db_$currentEGDBVersionNum" . "_" ); + print "Using database name: $restoreDBName\n" if $debug; + my $previousGitBranch = checkoutEGMatchingGitVersion($currentEGDBVersionNum); + populateDBFromCurrentGitBranch( $restoreDBName, 0 ); + gitCheckoutBranch( $previousGitBranch, 0, 1 ); + print "Created a fresh seed DB from Evergreen Version: $currentEGDBVersionNum\n" . "DB name: $restoreDBName\n"; + exit; +} + +sub checkSeed { + my $forceNewDB = shift || 0; + my $valid = 0; + my $createdDB = 0; + if ($seedDBName) { + my $query = ""; + + # a sanity check to make sure we can connect to the database and run a query + my @res = @{ dbhandler_query( "SELECT MAX(id) FROM biblio.record_entry", undef, 1 ) }; + $valid = 1 if ( $#res > -1 ); + } + + # Seed database is missing, let's create one + if ( !$valid || $forceNewDB ) { + $seedDBName = getNextAvailableDBName(); + $createdDB = $seedDBName; + populateDBFromCurrentGitBranch( $seedDBName, 0 ); + dbhandler_setupConnection( $seedDBName, $dbconf{"dbhost"}, $dbconf{"dbuser"}, $dbconf{"dbpass"}, + $dbconf{"port"}, 1 ); + } + return $createdDB; } sub loadTableOrderMaker { @@ -213,12 +424,9 @@ sub tableHandler { $funcHandler =~ s/\./_/g; $funcHandler .= '_handler'; -# if some tables need handled special, make a sub with the table name AKA sub biblio_record_entry_handler + # if some tables need handled special, make a sub with the table name AKA sub biblio_record_entry_handler if ( functionExists($funcHandler) ) { - my $perlcode = - '$rowCount = ' - . $funcHandler - . '($table, $tableColumnRef, $fHandle);'; + my $perlcode = '$rowCount = ' . $funcHandler . '($table, $tableColumnRef, $fHandle);'; eval $perlcode; } else { @@ -280,22 +488,34 @@ sub standardHandler { my $rowCount = 0; foreach (@colOrder) { - - # if the calling code wants to remove some columns, we skip them here - if ( ( !$omitColumnsRef ) || ( not defined $omitColumn{$_} ) ) { - $query .= "$_, "; - $sqlOutTop .= "$_, "; - $order .= "$colCount, "; - $colCount++; + my $include = 0; + my $currentCol = $_; + if ( $tableColumnOverride{$table} ) { + foreach ( @{ $tableColumnOverride{$table}{'load'} } ) { + $include = 1 if ( $_ eq $currentCol ); + } } else { - print "removing column: $_\n"; + # if the calling code wants to remove some columns, we skip them here + if ( ( !$omitColumnsRef ) || ( not defined $omitColumn{$currentCol} ) ) { + $include = 1; + } + else { + print "removing column: $table.$currentCol\n" if $debug; + } } + if ($include) { + $query .= "$currentCol, "; + $sqlOutTop .= "$currentCol, "; + $order .= "$colCount, "; + $colCount++; + } + undef $include; } - $query = substr( $query, 0, -2 ); # remove the trailing comma+space - $sqlOutTop = substr( $sqlOutTop, 0, -2 ); # remove the trailing comma+space - $order = substr( $order, 0, -2 ); # remove the trailing comma+space - $query .= " FROM $table\n$order"; + $query = substr( $query, 0, -2 ); # remove the trailing comma+space + $sqlOutTop = substr( $sqlOutTop, 0, -2 ); # remove the trailing comma+space + $order = substr( $order, 0, -2 ); # remove the trailing comma+space + $query .= " FROM ONLY $table \n$order"; # makes it possible to not have to quote strings, dates, etc. $sqlOutTop .= ") FROM stdin;\n"; @@ -303,11 +523,10 @@ sub standardHandler { my $offset = 0; my @data = @{ getDataChunk( $query, $offset ) }; my $firstTime = 1; - while ( $#data > 0 ) #skipping column def metadata at the end of the array + while ( $#data > 0 ) #skipping column def metadata at the end of the array { - my $sqlOut = $sqlOutTop; - my @differencesFromSeed = - @{ removeDuplicateStockData( \@data, $table, $firstTime ) }; + my $sqlOut = $sqlOutTop; + my @differencesFromSeed = @{ removeDuplicateStockData( \@data, $table, $firstTime ) }; $firstTime = 0; my $outCount = 0; foreach (@differencesFromSeed) { @@ -315,14 +534,18 @@ sub standardHandler { $rowCount++; my $row = $_; foreach ( @{$row} ) { - $_ = '\N' if !defined $_; - - # escape reserved tokens - $_ =~ s/\n/\\n/g; # newline - $_ =~ s/\r/\\r/g; # carriage return - $_ =~ s/\t/\\t/g; # tab - $_ =~ s/\v/\\v/g; # vertical tab - $_ =~ s/\f/\\f/g; # form feed + if ( !defined $_ ) { + $_ = '\N'; + } + else { + # escape reserved tokens + $_ =~ s/\\/\\\\/g; # all backslashes need escaped + $_ =~ s/\n/\\n/g; # newline + $_ =~ s/\r/\\r/g; # carriage return + $_ =~ s/\t/\\t/g; # tab + $_ =~ s/\v/\\v/g; # vertical tab + $_ =~ s/\f/\\f/g; # form feed + } $sqlOut .= "$_\t"; } $sqlOut = substr( $sqlOut, 0, -1 ); @@ -359,8 +582,7 @@ sub actor_workstation_handler { my $table = shift; my $tableColumnRef = shift; my $fHandle = shift; - my $lines = - standardHandler( $table, $tableColumnRef, $fHandle, \%omitColumns ); + my $lines = standardHandler( $table, $tableColumnRef, $fHandle, undef ); print $fHandle <<'splitter'; -- a case where the deleted workstation had payments @@ -427,8 +649,7 @@ splitter my $colname = @row[1]; my $seqname = @row[2]; $ret .= "\\echo sequence update column: !!colname!!\n"; - $ret .= -"SELECT SETVAL('!!seqname!!', (SELECT MAX(!!colname!!) FROM !!tbname!!));\n"; + $ret .= "SELECT SETVAL('!!seqname!!', (SELECT MAX(!!colname!!) FROM !!tbname!!));\n"; $ret =~ s/!!tbname!!/$table/g; $ret =~ s/!!colname!!/$colname/g; $ret =~ s/!!seqname!!/$schemaName.$seqname/g; @@ -464,17 +685,14 @@ sub removeDuplicateStockData { my $pos = 0; my $select = "SELECT "; my $where = "WHERE 1=1"; - while ( ( my $colname, my $colpos ) = each(%columns) ) { -# compare ID numbers when there is an ID column, otherwise, compare the rest of the columns - if ( ( $colname ne 'id' && not defined $columns{'id'} ) - || ( $colname eq 'id' ) ) - { + # special handler for some tables + if ( $tableColumnOverride{$table} ) { + foreach ( @{ $tableColumnOverride{$table}{'comp'} } ) { + my $colname = $_; + my $colpos = $columns{$colname}; $select .= "$colname, "; - if ( - defined @row[$colpos] - ) # if it's null data, the SQL needs to be "is null", not "=" - { + if ( defined @row[$colpos] ) { $pos++; $where .= " AND $colname = \$$pos"; push( @vals, @row[$colpos] ); @@ -484,10 +702,30 @@ sub removeDuplicateStockData { } } } + else { + while ( ( my $colname, my $colpos ) = each(%columns) ) { + + # compare ID numbers when there is an ID column, otherwise, compare the rest of the columns + if ( ( $colname ne 'id' && not defined $columns{'id'} ) || $colname eq 'id' ) { + + $select .= "$colname, "; + + # if it's null data, the SQL needs to be "is null", not "=" + if ( defined @row[$colpos] ) { + $pos++; + $where .= " AND $colname = \$$pos"; + push( @vals, @row[$colpos] ); + } + else { + $where .= " AND $colname is null"; + } + } + } + } # remove the trailing comma+space $select = substr( $select, 0, -2 ); - $select .= "\nFROM $table\n$where\n"; + $select .= "\nFROM ONLY $table\n$where\n"; print $select if $debug; print Dumper( \@vals ) if $debug; my @res = @{ dbhandler_query( $select, \@vals, 1 ) }; @@ -499,8 +737,8 @@ sub removeDuplicateStockData { else { $removeCount++; -# Each time we match seed data, we count. If the number of rows found equals the -# number of total rows, we don't need to keep checking back on the seed database + # Each time we match seed data, we count. If the number of rows found equals the + # number of total rows, we don't need to keep checking back on the seed database $seedTableUsedRowCount++; } undef @res; @@ -510,13 +748,12 @@ sub removeDuplicateStockData { undef @vals; } else { -# exhausted the seed database table rows, this data can just blindly get added to the -# result set + # exhausted the seed database table rows, this data can just blindly get added to the + # result set push( @ret, $rowRef ); } } - # print Dumper(\@ret); print "Removed $removeCount rows (exists in seed data)\n" if $removeCount; return \@ret; } @@ -558,7 +795,7 @@ sub getTableRowCount { my $table = shift; my $seed = shift; my $ret = 0; - my $query = "SELECT count(*) FROM $table"; + my $query = "SELECT count(*) FROM ONLY $table"; my @results = @{ dbhandler_query( $query, undef, $seed ) }; foreach (@results) { my $row = $_; @@ -579,29 +816,6 @@ sub getTableColumnNames { return $ret; } -sub getDBconnects { - my $openilsfile = shift; - my $xml = new XML::Simple; - my $data = $xml->XMLin($openilsfile); - my %conf; - $conf{"dbhost"} = - $data->{default}->{apps}->{"open-ils.storage"}->{app_settings} - ->{databases}->{database}->{host}; - $conf{"db"} = $data->{default}->{apps}->{"open-ils.storage"}->{app_settings} - ->{databases}->{database}->{db}; - $conf{"dbuser"} = - $data->{default}->{apps}->{"open-ils.storage"}->{app_settings} - ->{databases}->{database}->{user}; - $conf{"dbpass"} = - $data->{default}->{apps}->{"open-ils.storage"}->{app_settings} - ->{databases}->{database}->{pw}; - $conf{"port"} = - $data->{default}->{apps}->{"open-ils.storage"}->{app_settings} - ->{databases}->{database}->{port}; - return \%conf; - -} - sub checkTableForInclusion { my $table = shift; my @schema = split( /\./, $table ); @@ -650,6 +864,266 @@ sub logfile_readFile { return \@lines; } +sub upgradeDB { + my $restoreDBName = shift; + my $currentEGDBVersionNum = shift; + print "Upgrading DB: $restoreDBName, starting from stamp: $currentEGDBVersionNum\n" if $debug; + my @upgradeScripts = @{ findAllUpgradeScriptsAfterSpecifiedVersion($currentEGDBVersionNum) }; + foreach (@upgradeScripts) { + execPSQLCMD( "-t -v eg_version=\"'enhanced_concerto_script'\" -f '$_'", $restoreDBName ); + } +} + +sub dropDB { + my $dbname = shift; + execPSQLCMD( "-c 'DROP DATABASE IF EXISTS $dbname'", "postgres" ); +} + +sub getNextAvailableDBName { + my $prefDBNamePrefix = shift || "concertoscript"; + my $query = "SELECT datname FROM pg_database WHERE datistemplate = false"; + my @results = @{ dbhandler_query($query) }; + + # remove column defs, we don't need them here + pop @results; + my %names = (); + foreach (@results) { + my @row = @{$_}; + $names{ @row[0] } = 1; + } + my $loop = 0; + $loop++ while ( $names{ $prefDBNamePrefix . $loop } ); + return $prefDBNamePrefix . $loop; +} + +sub getLastEGDBVersionFromOutput { + print "Reading previously generated data from $outputFolder/config.upgrade_log.sql\n" if $debug; + my $file = $outputFolder . "/config.upgrade_log.sql"; + my @lines = @{ logfile_readFile($file) }; + my $highestNum = 0; + my $tableLine = shift @lines; + $tableLine =~ s/^[^\(]*?\(([^\)]*?)\).*$/$1/g; + + #Hunt down the column for "version" + my @cols = split( /,/, $tableLine ); + my $versionColPOS = 0; + my $pos = 0; + foreach (@cols) { + my $test = $_; + $test =~ s/\s+$//g; + $versionColPOS = $pos if ( lc $test eq 'version' ); + undef $test; + $pos++; + } + foreach (@lines) { + my @cols = split( /\t/, $_ ); + my $thisVersion = @cols[$versionColPOS]; + next if ( $thisVersion =~ /\D/ ); # ignore if there are non-numerics + $highestNum = $thisVersion if ( $thisVersion + 0 > $highestNum ); + } + print "Result: $highestNum\n" if $debug; + return $highestNum; +} + +sub checkoutEGMatchingGitVersion { + my $versionNum = shift; + my $versionFile = findMatchingUpgradeFile($versionNum); + print $versionFile . "\n"; + my $commit = findGitCommitForFile($versionFile); + userInput("Found this Evergreen git commit: $commit"); + return gitCheckoutBranch( $commit, 1, 0 ); # stash anything pending, and don't apply after branch switch +} + +sub findMatchingUpgradeFile { + my $upgradeNum = shift; + my $egUpgradeFolder = "Open-ILS/src/sql/Pg/upgrade"; + my $ret = ''; + my $folder = $egRepoPath . '/' . $egUpgradeFolder; + opendir( my $dh, $folder ) || die "Can't open $folder: $!"; + while ( readdir $dh ) { + if ( $_ =~ /^$upgradeNum.*?\.sql/ ) { + $ret = $egUpgradeFolder . '/' . $_; + } + } + closedir $dh; + return $ret; +} + +sub findAllUpgradeScriptsAfterSpecifiedVersion { + my $upgradeNum = shift; + my $egUpgradeFolder = "Open-ILS/src/sql/Pg/upgrade"; + my %map = (); + my @ret = (); + my @sortme = (); + my $folder = $egRepoPath . '/' . $egUpgradeFolder; + opendir( my $dh, $folder ) || die "Can't open $folder: $!"; + while ( readdir $dh ) { + if ( $_ ne '.' && $_ ne '..' && $_ =~ /^\d+\..*/ ) { + my $thisStamp = $_; + $thisStamp =~ s/^([^\.]*)\..*$/$1/g; + if ( $thisStamp + 0 > $upgradeNum + 0 ) { + push( @sortme, $thisStamp ); + $map{$thisStamp} = $egRepoPath . '/' . $egUpgradeFolder . '/' . $_; + } + } + } + closedir $dh; + @sortme = sort { $a <=> $b } @sortme; + push( @ret, $map{$_} ) foreach (@sortme); + return \@ret; +} + +sub findGitCommitForFile { + my $file = shift; + my $ret = ''; + my $exec = "cd '$egRepoPath' && git log $file"; + + my $return = execSystemCMDWithReturn($exec); + my @retLines = split( /\n/, $return ); + foreach (@retLines) { + if ( $_ =~ /^\s*commit\s+[^\s]*$/ ) { + $ret = $_; + $ret =~ s/^\s*commit\s+([^\s]*)$/$1/g; + } + } + print "Found commit: $ret\n" if $debug; + return $ret; +} + +sub gitCheckoutBranch { + print "Headed into gitCheckoutBranch()\n" if $debug; + my $branch = shift; + my $stash = shift || 0; + my $restoreStash = shift || 0; + + # get the current branch so we can switch back + my $exec = "cd '$egRepoPath' && git rev-parse --abbrev-ref HEAD"; + my $ret = execSystemCMDWithReturn($exec); + $exec = "cd '$egRepoPath'"; + $exec .= " && git stash" if $stash; + $exec .= " && git checkout $branch"; + $exec .= " && git stash apply" if $restoreStash; + userInput("Executing: '$exec'"); + execSystemCMD( $exec, 1 ); + userInput("Done Executing: '$exec'"); + print "Done with gitCheckoutBranch()\n" if $debug; + return $ret; +} + +sub populateDBFromCurrentGitBranch { + my $db = shift; + my $loadConcerto = shift || 0; + my $eg_db_config_stock = "Open-ILS/src/support-scripts/eg_db_config.in"; + my $eg_db_config_temp = "Open-ILS/src/support-scripts/eg_db_config"; + my $eg_config_stock = "Open-ILS/src/extras/eg_config.in"; + my $eg_config_temp = "Open-ILS/src/extras/eg_config"; + fix_eg_config( $egRepoPath . "/$eg_db_config_stock", $egRepoPath . "/$eg_db_config_temp" ); + fix_eg_config( $egRepoPath . "/$eg_config_stock", $egRepoPath . "/$eg_config_temp" ); + my $exec = "cd '$egRepoPath' && perl '$eg_db_config_temp'"; + $exec .= " --create-database --create-schema"; + $exec .= " --user " . $dbconf{"dbuser"}; + $exec .= " --password " . $dbconf{"dbpass"}; + $exec .= " --hostname " . $dbconf{"dbhost"}; + $exec .= " --port " . $dbconf{"port"}; + $exec .= " --database $db"; + execSystemCMD($exec); + loadThisDataset($db) if $loadConcerto; +} + +sub loadThisDataset { + my $db = shift; + chdir($outputFolder); + print "LOADING DATA\nThis can take a few minutes...\n"; + execPSQLCMD( "-f load_all.sql", $db ); + chdir($cwd); +} + +sub fix_eg_config { + my $inFile = shift; + my $outputFile = shift; + + unlink $outputFile if -e $outputFile; + my $outHandle; + open( $outHandle, '>> ' . $outputFile ); + binmode( $outHandle, ":utf8" ); + + my @lines = @{ logfile_readFile($inFile) }; + my %replaceMap = ( + '\@prefix\@' => '/openils', + '\@datarootdir\@' => '${prefix}/share', + '\@BUILDILSCORE_TRUE\@' => '', + '\@BUILDILSWEB_TRUE\@' => '', + '\@BUILDILSREPORTER_TRUE\@' => '', + '\@BUILDILSCLIENT_TRUE\@' => '', + '\@PACKAGE_STRING\@' => '', + '\@bindir\@' => '${exec_prefix}/bin', + '\@libdir\@' => '${exec_prefix}/lib', + '\@TMP\@' => '/tmp', + '\@includedir\@' => '${prefix}/include', + '\@APXS2\@' => '', + '\@sysconfdir\@' => '/openils/conf', + '\@LIBXML2_HEADERS\@' => '', + '\@APR_HEADERS\@' => '', + '\@APACHE2_HEADERS\@' => '', + '\@localstatedir\@' => '', + '\@docdir\@' => '', + ); + + foreach (@lines) { + my $line = $_; + + # this file has some placeholders. We're not going to make use of + # this feature in the script, but it won't run unless those are populated + while ( ( my $key, my $value ) = each(%replaceMap) ) { + $line =~ s/$key/$value/g; + } + print $outHandle $line; + } + chmod( 0755, $outHandle ); + close($outHandle); +} + +sub execSystemCMD { + my $cmd = shift; + my $ignoreErrors = shift; + print "executing $cmd\n" if $debug; + system($cmd) == 0; + if ( !$ignoreErrors && ( $? == -1 ) ) { + die "system '$cmd' failed: $?"; + } + print "Done executing $cmd\n" if $debug; +} + +sub execSystemCMDWithReturn { + my $cmd = shift; + my $dont_trim = shift; + my $ret; + print "executing $cmd\n" if $debug; + open( DATA, $cmd . '|' ); + my $read; + while ( $read = ) { + $ret .= $read; + } + close(DATA); + return 0 unless $ret; + $ret = substr( $ret, 0, -1 ) unless $dont_trim; #remove the last character of output. + print "Done executing $cmd\n" if $debug; + return $ret; +} + +sub execPSQLCMD { + my $cmd = shift; + my $db = shift; + $ENV{'PGUSER'} = $dbconf{"dbuser"}; + $ENV{'PGPASSWORD'} = $dbconf{"dbpass"}; + $ENV{'PGPORT'} = $dbconf{"port"}; + $ENV{'PGHOST'} = $dbconf{"dbhost"}; + $ENV{'PGDATABASE'} = $db; + my $pcmd = "psql $cmd"; #2>&1"; + print "Running:\n$pcmd\n"; + `$pcmd`; +} + sub dbhandler_setupConnection { my $dbname = shift; my $host = shift; @@ -658,7 +1132,8 @@ sub dbhandler_setupConnection { my $port = shift; my $seed = shift; if ($seed) { - $dbHandlerSeed = DBI->connect( + undef $dbHandlerSeed; + our $dbHandlerSeed = DBI->connect( "DBI:Pg:dbname=$dbname;host=$host;port=$port", $login, $pass, { @@ -669,7 +1144,8 @@ sub dbhandler_setupConnection { ); } else { - $dbHandler = DBI->connect( + undef $dbHandler; + our $dbHandler = DBI->connect( "DBI:Pg:dbname=$dbname;host=$host;port=$port", $login, $pass, { @@ -744,45 +1220,96 @@ sub isStringArray { } sub setupDB { - my %dbconf = %{ getDBconnects($xmlconf) }; - dbhandler_setupConnection( - $dbconf{"db"}, $dbconf{"dbhost"}, $dbconf{"dbuser"}, - $dbconf{"dbpass"}, $dbconf{"port"} + %dbconf = ( + 'dbuser' => $dbuser, + 'dbpass' => $dbpass, + 'port' => $dbport, + 'dbhost' => $dbhost, + 'db' => $databaseName, ); + dbhandler_setupConnection( $dbconf{"db"}, $dbconf{"dbhost"}, $dbconf{"dbuser"}, $dbconf{"dbpass"}, + $dbconf{"port"} ); - %dbconf = %{ getDBconnects($xmlconfseed) }; - dbhandler_setupConnection( $dbconf{"db"}, $dbconf{"dbhost"}, - $dbconf{"dbuser"}, $dbconf{"dbpass"}, $dbconf{"port"}, 1 ); + dbhandler_setupConnection( $seedDBName, $dbconf{"dbhost"}, $dbconf{"dbuser"}, $dbconf{"dbpass"}, $dbconf{"port"}, + 1 ); } sub checkCMDArgs { print "Checking command line arguments...\n" if ($debug); - if ( $outputFolder eq '' ) { - print -"Output folder not provided. Please pass in a command line path argument with --output-folder\n"; + if ( !$dbhost ) { + print "Please provide the postgres database hostname/IP via --db-host\n"; exit 1; } - if ( !$xmlconfseed ) { - print -"Please provide a path to the Evergreen seed database conneciton details. Please pass in a command line path argument with --xmlseed\n"; + + if ( !$dbuser ) { + print "Please provide the postgres database username via --db-user\n"; exit 1; } - if ( !-e $xmlconf ) { - print -"$xmlconf does not exist.\nEvergreen database xml configuration file does not exist. Please provide a path to the Evergreen opensrf.xml database conneciton details. --xmlconf\n"; + if ( !$dbpass ) { + print "Please provide the postgres database password via --db-pass\n"; exit 1; } - if ( !-e $xmlconfseed ) { + if ( !$dbport ) { + print "Please provide the postgres database port via --db-port\n"; + exit 1; + } + + if ( !$databaseName && ( !$doUpgrade || !$doTestRestore ) ) { + print "Please provide the postgres database name via --db-name\n"; + exit 1; + } + + if ( $outputFolder eq '' ) { + print "Output folder not provided. Please pass in a command line path argument with --output-folder\n"; + exit 1; + } + if ( !$egRepoPath ) { + print "You didn't include a path to the Evergreen repository --evergreen-repo\n"; + exit 1; + } + if ( !-e $egRepoPath ) { + print "The path to the Evergreen repository --evergreen-repo does not exist\n"; + exit 1; + } + if ( !-e ( $egRepoPath . '/.git' ) ) { + print "The path to the Evergreen repository is not a git repository\n"; + exit 1; + } + if ( $doUpgrade && ( !-e ( $outputFolder . '/config.upgrade_log.sql' ) ) ) { print -"$xmlconfseed does not exist.\nEvergreen seed database xml configuration file does not exist. Please provide a path to the seed Evergreen opensrf.xml database conneciton details. --xmlconfseed\n"; + "You've spcified the upgrade option but the output folder doesn't contain a previously generated dataset. " + . "I need to know what version of Evergreen this dataset was created from. I use 'config.upgrade_log.sql' to figure that out\n"; exit 1; } + if ( !$seedDBName && ( !-e ( $outputFolder . '/config.upgrade_log.sql' ) ) ) { + print +"Please provide the name of the Evergreen seed database and/or an output folder that contains a previously generated dataset. " + . "Please pass in a command line path argument with --seed-db-name\n"; + exit 1; + } + if ($doUpgrade) { + userInput( +"You've chosen to perform an upgrade. FYI, the output folder SQL files will get overwritten with the upgraded version\n" + ); + } # Trim any trailing / on path $outputFolder =~ s/\/$//g; + $egRepoPath =~ s/\/$//g; +} + +sub userInput { + my $prompt = shift; + my $answer; + if ( !$nonInteractive ) { + print $prompt. "\n"; + print "Press Enter to continue or CTRL+C to stop now\n"; + $answer = ; + } + return $answer; } sub printHelp { diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.circulation.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.circulation.sql index 9a52f2cd8f..6a1905cb28 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.circulation.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.circulation.sql @@ -1,489 +1,489 @@ COPY action.circulation (id, usr, xact_start, xact_finish, unrecovered, target_copy, circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date, stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine, max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule, max_fine_rule, stop_fines, workstation, checkin_workstation, copy_location, checkin_scan_time, auto_renewal, auto_renewal_remaining, parent_circ) FROM stdin; -1 4 2014-05-14 07:39:13.070326-05 \N \N 2 4 228 \N \N 2 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 103 \N 0 \N \N +1 4 2014-05-14 07:39:13.070326-05 \N \N 2 4 228 \N \N 2 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 103 \N 0 \N \N 2 4 2014-05-14 07:39:13.070326-05 \N \N 3 4 228 \N \N 2 1 day 2014-05-21 22:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 01:00:00 1 day 0.10 3.00 0 0 0 1_hour_2_renew default overdue_min LOST \N \N 113 \N 0 \N \N -3 4 2014-05-14 07:39:13.070326-05 \N \N 4 4 228 \N \N 0 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 118 \N 0 \N \N -4 4 2014-05-14 07:39:13.070326-05 \N \N 5 4 228 \N \N 2 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 123 \N 0 \N \N +3 4 2014-05-14 07:39:13.070326-05 \N \N 4 4 228 \N \N 0 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 118 \N 0 \N \N +4 4 2014-05-14 07:39:13.070326-05 \N \N 5 4 228 \N \N 2 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 123 \N 0 \N \N 5 4 2014-05-14 07:39:13.070326-05 \N \N 6 4 228 \N \N 2 1 day 2014-05-21 22:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 01:00:00 1 day 0.10 3.00 0 0 0 1_hour_2_renew default overdue_min LOST \N \N 127 \N 0 \N \N -6 4 2014-05-14 07:39:13.070326-05 \N \N 7 4 228 \N \N 0 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 132 \N 0 \N \N -7 5 2014-05-14 07:39:13.070326-05 \N \N 8 4 220 \N \N 2 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 0.70 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N +6 4 2014-05-14 07:39:13.070326-05 \N \N 7 4 228 \N \N 0 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 132 \N 0 \N \N +7 5 2014-05-14 07:39:13.070326-05 \N \N 8 4 220 \N \N 2 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 0.70 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N 8 5 2020-10-20 09:26:51.426709-05 \N \N 9 4 220 \N \N 2 1 day 2020-10-28 09:26:51.426709-05 2020-10-27 06:26:51.426709-05 \N 2020-10-20 09:26:51.426709-05 01:00:00 1 day 0.10 3.00 0 0 0 1_hour_2_renew default overdue_min LOST \N \N 137 \N 0 \N \N -9 5 2020-10-20 09:26:51.426709-05 \N \N 10 4 220 \N \N 0 1 day 2020-10-29 01:59:59-05 2020-10-27 06:26:51.426709-05 \N 2020-10-20 09:26:51.426709-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 146 \N 0 \N \N -10 5 2020-10-03 09:26:51.426709-05 \N \N 11 4 220 \N \N 2 1 day 2020-10-18 01:59:59-05 2020-10-24 09:26:51.426709-05 \N 2020-10-03 09:26:51.426709-05 14 days 1 day 0.10 5.00 0 0 0 default default default LOST \N \N 152 \N 0 \N \N +9 5 2020-10-20 09:26:51.426709-05 \N \N 10 4 220 \N \N 0 1 day 2020-10-29 23:59:59-05 2020-10-27 06:26:51.426709-05 \N 2020-10-20 09:26:51.426709-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 146 \N 0 \N \N +10 5 2020-10-03 09:26:51.426709-05 \N \N 11 4 220 \N \N 2 1 day 2020-10-18 23:59:59-05 2020-10-24 09:26:51.426709-05 \N 2020-10-03 09:26:51.426709-05 14 days 1 day 0.10 5.00 0 0 0 default default default LOST \N \N 152 \N 0 \N \N 11 5 2014-05-14 07:39:13.070326-05 \N \N 12 4 220 \N \N 2 1 day 2014-05-21 22:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 01:00:00 1 day 0.10 0.70 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 102 \N 0 \N \N -12 5 2014-05-14 07:39:13.070326-05 \N \N 13 4 220 \N \N 0 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 103 \N 0 \N \N -13 6 2014-05-14 07:39:13.070326-05 \N \N 14 4 222 \N \N 2 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 113 \N 0 \N \N +12 5 2014-05-14 07:39:13.070326-05 \N \N 13 4 220 \N \N 0 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 103 \N 0 \N \N +13 6 2014-05-14 07:39:13.070326-05 \N \N 14 4 222 \N \N 2 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 3.00 0 0 0 default default default LOST \N \N 113 \N 0 \N \N 14 6 2014-05-14 07:39:13.070326-05 \N \N 15 4 222 \N \N 2 1 day 2014-05-21 22:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 01:00:00 1 day 0.10 0.70 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 118 \N 0 \N \N -15 6 2014-05-14 07:39:13.070326-05 \N \N 16 4 222 \N \N 0 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 123 \N 0 \N \N -16 6 2014-05-14 07:39:13.070326-05 \N \N 17 4 222 \N \N 2 1 day 2014-05-22 01:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 0.70 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N +15 6 2014-05-14 07:39:13.070326-05 \N \N 16 4 222 \N \N 0 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 7 days 1 day 0.10 3.00 0 0 0 7_days_0_renew default overdue_max LOST \N \N 123 \N 0 \N \N +16 6 2014-05-14 07:39:13.070326-05 \N \N 17 4 222 \N \N 2 1 day 2014-05-22 23:59:59-05 2014-05-28 07:39:13.070326-05 \N 2014-05-14 07:39:13.070326-05 14 days 1 day 0.10 0.70 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N 17 6 2020-10-27 07:26:51-05 \N \N 18 4 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:30:01.439239-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 132 \N 0 \N \N -18 6 2020-10-13 09:26:51.426709-05 \N \N 19 4 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N -19 7 2020-10-20 09:26:51-05 \N \N 20 4 224 \N \N 2 1 day 2020-11-04 01:59:59-06 2021-08-06 02:30:12.455162-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N +18 6 2020-10-13 09:26:51.426709-05 \N \N 19 4 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N +19 7 2020-10-20 09:26:51-05 \N \N 20 4 224 \N \N 2 1 day 2020-11-04 23:59:59-06 2021-08-06 02:30:12.455162-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N 20 7 2020-10-20 09:26:51-05 \N \N 21 4 224 \N \N 2 1 day 2020-10-20 10:26:51-05 2021-08-06 02:30:13.248062-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 146 \N 0 \N \N -21 7 2020-10-20 09:26:51.426709-05 \N \N 22 4 224 \N \N 0 1 day 2020-10-28 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N -22 7 2020-09-22 09:26:51-05 \N \N 23 4 224 \N \N 2 1 day 2020-10-07 01:59:59-05 2021-08-06 02:30:23.437313-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N +21 7 2020-10-20 09:26:51.426709-05 \N \N 22 4 224 \N \N 0 1 day 2020-10-28 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N +22 7 2020-09-22 09:26:51-05 \N \N 23 4 224 \N \N 2 1 day 2020-10-07 23:59:59-05 2021-08-06 02:30:23.437313-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N 23 7 2020-10-20 07:26:51-05 \N \N 24 4 224 \N \N 2 1 day 2020-10-20 08:26:51-05 2021-08-06 02:30:24.200605-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 103 \N 0 \N \N -24 7 2020-10-06 09:26:51.426709-05 \N \N 25 4 224 \N \N 0 1 day 2020-10-14 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N -25 8 2020-10-06 09:26:51-05 \N \N 26 4 220 \N \N 2 1 day 2020-10-21 01:59:59-05 2021-08-06 02:30:35.329886-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N +24 7 2020-10-06 09:26:51.426709-05 \N \N 25 4 224 \N \N 0 1 day 2020-10-14 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N +25 8 2020-10-06 09:26:51-05 \N \N 26 4 220 \N \N 2 1 day 2020-10-21 23:59:59-05 2021-08-06 02:30:35.329886-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N 26 8 2020-10-06 09:26:51-05 \N \N 27 4 220 \N \N 2 1 day 2020-10-06 10:26:51-05 2021-08-06 02:30:36.092876-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 123 \N 0 \N \N -27 8 2020-10-06 09:26:51.426709-05 \N \N 28 4 220 \N \N 0 1 day 2020-10-14 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N -28 8 2020-09-08 09:26:51-05 \N \N 29 4 220 \N \N 2 1 day 2020-09-23 01:59:59-05 2021-08-06 02:30:47.299413-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N +27 8 2020-10-06 09:26:51.426709-05 \N \N 28 4 220 \N \N 0 1 day 2020-10-14 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N +28 8 2020-09-08 09:26:51-05 \N \N 29 4 220 \N \N 2 1 day 2020-09-23 23:59:59-05 2021-08-06 02:30:47.299413-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N 29 8 2020-10-06 07:26:51-05 \N \N 30 4 220 \N \N 2 1 day 2020-10-06 08:26:51-05 2021-08-06 02:30:48.122073-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 136 \N 0 \N \N -30 8 2020-09-22 09:26:51.426709-05 \N \N 31 4 220 \N \N 0 1 day 2020-09-30 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N -31 9 2020-10-27 09:26:51-05 \N \N 32 4 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:30:59.94639-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N +30 8 2020-09-22 09:26:51.426709-05 \N \N 31 4 220 \N \N 0 1 day 2020-09-30 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N +31 9 2020-10-27 09:26:51-05 \N \N 32 4 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:30:59.94639-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N 32 9 2020-10-27 09:26:51-05 \N \N 33 4 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:31:00.690333-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 152 \N 0 \N \N -33 9 2020-10-27 09:26:51.426709-05 \N \N 34 4 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N -34 9 2020-09-29 09:26:51-05 \N \N 35 4 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:31:10.585055-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 103 \N 0 \N \N +33 9 2020-10-27 09:26:51.426709-05 \N \N 34 4 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N +34 9 2020-09-29 09:26:51-05 \N \N 35 4 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:31:10.585055-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 103 \N 0 \N \N 35 9 2020-10-27 07:26:51-05 \N \N 36 4 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:31:11.361855-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 113 \N 0 \N \N -36 9 2020-10-13 09:26:51.426709-05 \N \N 37 4 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 118 \N 0 \N \N -37 10 2020-10-27 09:26:51-05 \N \N 38 4 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:31:22.207752-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 123 \N 0 \N \N +36 9 2020-10-13 09:26:51.426709-05 \N \N 37 4 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 118 \N 0 \N \N +37 10 2020-10-27 09:26:51-05 \N \N 38 4 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:31:22.207752-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 123 \N 0 \N \N 38 10 2020-10-27 09:26:51-05 \N \N 39 4 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:31:22.982917-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 127 \N 0 \N \N -39 10 2020-10-27 09:26:51.426709-05 \N \N 40 4 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 132 \N 0 \N \N -40 10 2020-09-29 09:26:51-05 \N \N 41 4 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:31:33.02984-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N +39 10 2020-10-27 09:26:51.426709-05 \N \N 40 4 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 132 \N 0 \N \N +40 10 2020-09-29 09:26:51-05 \N \N 41 4 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:31:33.02984-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N 41 10 2020-10-27 07:26:51-05 \N \N 42 4 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:31:33.779154-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 137 \N 0 \N \N -42 10 2020-10-13 09:26:51.426709-05 \N \N 43 4 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 146 \N 0 \N \N -43 11 2020-10-27 09:26:51-05 \N \N 44 4 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:31:44.640364-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 152 \N 0 \N \N +42 10 2020-10-13 09:26:51.426709-05 \N \N 43 4 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 146 \N 0 \N \N +43 11 2020-10-27 09:26:51-05 \N \N 44 4 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:31:44.640364-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 152 \N 0 \N \N 44 11 2020-10-27 09:26:51-05 \N \N 45 4 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:31:45.384928-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 102 \N 0 \N \N -45 11 2020-10-27 09:26:51.426709-05 \N \N 46 4 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N -46 11 2020-09-29 09:26:51-05 \N \N 47 4 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:31:55.280696-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N +45 11 2020-10-27 09:26:51.426709-05 \N \N 46 4 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N +46 11 2020-09-29 09:26:51-05 \N \N 47 4 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:31:55.280696-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N 47 11 2020-10-27 07:26:51-05 \N \N 48 4 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:31:56.069876-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 118 \N 0 \N \N -48 11 2020-10-13 09:26:51.426709-05 \N \N 49 4 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N -49 12 2020-10-27 09:26:51-05 \N \N 50 4 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:32:06.975801-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N +48 11 2020-10-13 09:26:51.426709-05 \N \N 49 4 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N +49 12 2020-10-27 09:26:51-05 \N \N 50 4 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:32:06.975801-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N 50 12 2020-10-27 09:26:51-05 \N \N 51 4 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:32:07.764011-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 132 \N 0 \N \N -51 12 2020-10-27 09:26:51.426709-05 \N \N 52 4 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N -52 12 2020-09-29 09:26:51-05 \N \N 53 4 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:32:17.823947-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N +51 12 2020-10-27 09:26:51.426709-05 \N \N 52 4 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N +52 12 2020-09-29 09:26:51-05 \N \N 53 4 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:32:17.823947-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N 53 12 2020-10-27 07:26:51-05 \N \N 54 4 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:32:18.550715-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 146 \N 0 \N \N -54 12 2020-10-13 09:26:51.426709-05 \N \N 55 4 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N -55 13 2020-10-27 09:26:51-05 \N \N 56 4 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:32:29.45108-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N +54 12 2020-10-13 09:26:51.426709-05 \N \N 55 4 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N +55 13 2020-10-27 09:26:51-05 \N \N 56 4 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:32:29.45108-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N 56 13 2020-10-27 09:26:51-05 \N \N 57 4 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:32:30.216734-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 103 \N 0 \N \N -57 13 2020-10-27 09:26:51.426709-05 \N \N 58 4 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N -58 13 2020-09-29 09:26:51-05 \N \N 59 4 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:32:40.194375-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N +57 13 2020-10-27 09:26:51.426709-05 \N \N 58 4 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N +58 13 2020-09-29 09:26:51-05 \N \N 59 4 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:32:40.194375-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N 59 13 2020-10-27 07:26:51-05 \N \N 60 4 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:32:40.916188-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 123 \N 0 \N \N -60 13 2020-10-13 09:26:51.426709-05 \N \N 61 4 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N -61 14 2020-10-27 09:26:51-05 \N \N 62 4 226 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:32:51.706365-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N +60 13 2020-10-13 09:26:51.426709-05 \N \N 61 4 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N +61 14 2020-10-27 09:26:51-05 \N \N 62 4 226 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:32:51.706365-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N 62 14 2020-10-27 09:26:51-05 \N \N 63 4 226 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:32:52.461928-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 136 \N 0 \N \N -63 14 2020-10-27 09:26:51.426709-05 \N \N 64 4 226 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N -64 14 2020-09-29 09:26:51-05 \N \N 65 4 226 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:33:02.384641-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N +63 14 2020-10-27 09:26:51.426709-05 \N \N 64 4 226 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N +64 14 2020-09-29 09:26:51-05 \N \N 65 4 226 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:33:02.384641-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N 65 14 2020-10-27 07:26:51-05 \N \N 66 4 226 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:33:03.157039-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 152 \N 0 \N \N -66 14 2020-10-13 09:26:51.426709-05 \N \N 67 4 226 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N -67 15 2020-10-27 09:26:51-05 \N \N 68 4 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:33:13.909599-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 103 \N 0 \N \N +66 14 2020-10-13 09:26:51.426709-05 \N \N 67 4 226 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N +67 15 2020-10-27 09:26:51-05 \N \N 68 4 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:33:13.909599-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 103 \N 0 \N \N 68 15 2020-10-27 09:26:51-05 \N \N 69 4 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:33:14.650812-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 113 \N 0 \N \N -69 15 2020-10-27 09:26:51.426709-05 \N \N 70 4 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 118 \N 0 \N \N -70 15 2020-09-29 09:26:51-05 \N \N 71 4 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:33:24.551222-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 123 \N 0 \N \N +69 15 2020-10-27 09:26:51.426709-05 \N \N 70 4 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 118 \N 0 \N \N +70 15 2020-09-29 09:26:51-05 \N \N 71 4 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:33:24.551222-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 123 \N 0 \N \N 71 15 2020-10-27 07:26:51-05 \N \N 72 4 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:33:25.313831-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 127 \N 0 \N \N -72 15 2020-10-13 09:26:51.426709-05 \N \N 73 4 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 132 \N 0 \N \N -73 16 2020-10-27 09:26:51-05 \N \N 74 4 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:33:36.233339-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N +72 15 2020-10-13 09:26:51.426709-05 \N \N 73 4 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 132 \N 0 \N \N +73 16 2020-10-27 09:26:51-05 \N \N 74 4 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:33:36.233339-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 136 \N 0 \N \N 74 16 2020-10-27 09:26:51-05 \N \N 75 4 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:33:36.990011-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 137 \N 0 \N \N -75 16 2020-10-27 09:26:51.426709-05 \N \N 76 4 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 146 \N 0 \N \N -76 16 2020-09-29 09:26:51-05 \N \N 77 4 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:33:46.902987-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 152 \N 0 \N \N +75 16 2020-10-27 09:26:51.426709-05 \N \N 76 4 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 146 \N 0 \N \N +76 16 2020-09-29 09:26:51-05 \N \N 77 4 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:33:46.902987-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 152 \N 0 \N \N 77 16 2020-10-27 07:26:51-05 \N \N 78 4 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:33:47.657159-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 102 \N 0 \N \N -78 16 2020-10-13 09:26:51.426709-05 \N \N 79 4 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N -79 17 2020-10-27 09:26:51-05 \N \N 80 4 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:33:58.501305-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N +78 16 2020-10-13 09:26:51.426709-05 \N \N 79 4 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N +79 17 2020-10-27 09:26:51-05 \N \N 80 4 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:33:58.501305-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N 80 17 2020-10-27 09:26:51-05 \N \N 81 4 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:33:59.265558-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 118 \N 0 \N \N -81 17 2020-10-27 09:26:51.426709-05 \N \N 82 4 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N -82 17 2020-09-29 09:26:51-05 \N \N 83 4 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:34:09.34781-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N +81 17 2020-10-27 09:26:51.426709-05 \N \N 82 4 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N +82 17 2020-09-29 09:26:51-05 \N \N 83 4 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:34:09.34781-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N 83 17 2020-10-27 07:26:51-05 \N \N 84 4 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:34:10.11683-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 132 \N 0 \N \N -84 17 2020-10-13 09:26:51.426709-05 \N \N 85 4 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N -85 18 2020-10-27 09:26:51-05 \N \N 86 4 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:34:20.953752-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N +84 17 2020-10-13 09:26:51.426709-05 \N \N 85 4 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N +85 18 2020-10-27 09:26:51-05 \N \N 86 4 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:34:20.953752-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N 86 18 2020-10-27 09:26:51-05 \N \N 87 4 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:34:21.741516-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 146 \N 0 \N \N -87 18 2020-10-27 09:26:51.426709-05 \N \N 88 4 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N -88 18 2020-09-29 09:26:51-05 \N \N 89 4 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:34:31.688211-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N +87 18 2020-10-27 09:26:51.426709-05 \N \N 88 4 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N +88 18 2020-09-29 09:26:51-05 \N \N 89 4 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:34:31.688211-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N 89 18 2020-10-27 07:26:51-05 \N \N 90 4 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:34:32.504737-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 103 \N 0 \N \N -90 18 2020-10-13 09:26:51.426709-05 \N \N 91 4 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N -91 19 2020-10-27 09:26:51-05 \N \N 92 4 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:34:43.36026-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N +90 18 2020-10-13 09:26:51.426709-05 \N \N 91 4 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N +91 19 2020-10-27 09:26:51-05 \N \N 92 4 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:34:43.36026-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N 92 19 2020-10-27 09:26:51-05 \N \N 93 4 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:34:44.136089-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 123 \N 0 \N \N -93 19 2020-10-27 09:26:51.426709-05 \N \N 94 4 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N -94 19 2020-09-29 09:26:51-05 \N \N 95 4 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:34:54.187567-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N +93 19 2020-10-27 09:26:51.426709-05 \N \N 94 4 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N +94 19 2020-09-29 09:26:51-05 \N \N 95 4 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:34:54.187567-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 132 \N 0 \N \N 95 19 2020-10-27 07:26:51-05 \N \N 96 4 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:34:54.944856-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 136 \N 0 \N \N -96 19 2020-10-13 09:26:51.426709-05 \N \N 97 4 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N -97 20 2020-10-27 09:26:51-05 \N \N 98 4 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:35:05.600421-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N +96 19 2020-10-13 09:26:51.426709-05 \N \N 97 4 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 137 \N 0 \N \N +97 20 2020-10-27 09:26:51-05 \N \N 98 4 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:35:05.600421-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 146 \N 0 \N \N 98 20 2020-10-27 09:26:51-05 \N \N 99 4 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:35:06.370595-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 152 \N 0 \N \N -99 20 2020-10-27 09:26:51.426709-05 \N \N 100 4 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N -100 20 2020-09-29 09:26:51-05 \N \N 101 5 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:35:16.327988-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N +99 20 2020-10-27 09:26:51.426709-05 \N \N 100 4 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 102 \N 0 \N \N +100 20 2020-09-29 09:26:51-05 \N \N 101 5 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:35:16.327988-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N 101 20 2020-10-27 07:26:51-05 \N \N 102 5 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:35:17.007447-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 120 \N 0 \N \N -102 20 2020-10-13 09:26:51.426709-05 \N \N 103 5 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N -103 21 2020-10-27 09:26:51-05 \N \N 104 5 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:35:28.156919-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N +102 20 2020-10-13 09:26:51.426709-05 \N \N 103 5 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N +103 21 2020-10-27 09:26:51-05 \N \N 104 5 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:35:28.156919-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N 104 21 2020-10-27 09:26:51-05 \N \N 105 5 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:35:28.839189-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 134 \N 0 \N \N -105 21 2020-10-27 09:26:51.426709-05 \N \N 106 5 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N -106 21 2020-09-29 09:26:51-05 \N \N 107 5 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:35:38.9966-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N +105 21 2020-10-27 09:26:51.426709-05 \N \N 106 5 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N +106 21 2020-09-29 09:26:51-05 \N \N 107 5 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:35:38.9966-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N 107 21 2020-10-27 07:26:51-05 \N \N 108 5 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:35:39.663418-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 147 \N 0 \N \N -108 21 2020-10-13 09:26:51.426709-05 \N \N 109 5 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N -109 22 2020-10-27 09:26:51-05 \N \N 110 5 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:35:50.565386-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N +108 21 2020-10-13 09:26:51.426709-05 \N \N 109 5 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N +109 22 2020-10-27 09:26:51-05 \N \N 110 5 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:35:50.565386-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N 110 22 2020-10-27 09:26:51-05 \N \N 111 5 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:35:51.229643-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 114 \N 0 \N \N -111 22 2020-10-27 09:26:51.426709-05 \N \N 112 5 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N -112 22 2020-09-29 09:26:51-05 \N \N 113 5 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:36:01.454379-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N +111 22 2020-10-27 09:26:51.426709-05 \N \N 112 5 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N +112 22 2020-09-29 09:26:51-05 \N \N 113 5 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:36:01.454379-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N 113 22 2020-10-27 07:26:51-05 \N \N 114 5 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:36:02.232549-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 125 \N 0 \N \N -114 22 2020-10-13 09:26:51.426709-05 \N \N 115 5 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N -115 23 2020-10-27 09:26:51-05 \N \N 116 5 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:36:13.407643-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N +114 22 2020-10-13 09:26:51.426709-05 \N \N 115 5 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N +115 23 2020-10-27 09:26:51-05 \N \N 116 5 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:36:13.407643-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N 116 23 2020-10-27 09:26:51-05 \N \N 117 5 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:36:14.075157-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 138 \N 0 \N \N -117 23 2020-10-27 09:26:51.426709-05 \N \N 118 5 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N -118 23 2020-09-29 09:26:51-05 \N \N 119 5 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:36:24.160985-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N +117 23 2020-10-27 09:26:51.426709-05 \N \N 118 5 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N +118 23 2020-09-29 09:26:51-05 \N \N 119 5 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:36:24.160985-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N 119 23 2020-10-27 07:26:51-05 \N \N 120 5 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:36:24.831852-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 153 \N 0 \N \N -120 23 2020-10-13 09:26:51.426709-05 \N \N 121 5 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N -121 24 2020-10-27 09:26:51-05 \N \N 122 5 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:36:35.879057-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N +120 23 2020-10-13 09:26:51.426709-05 \N \N 121 5 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N +121 24 2020-10-27 09:26:51-05 \N \N 122 5 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:36:35.879057-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N 122 24 2020-10-27 09:26:51-05 \N \N 123 5 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:36:36.573753-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 119 \N 0 \N \N -123 24 2020-10-27 09:26:51.426709-05 \N \N 124 5 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 120 \N 0 \N \N -124 24 2020-09-29 09:26:51-05 \N \N 125 5 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:36:47.007226-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 125 \N 0 \N \N +123 24 2020-10-27 09:26:51.426709-05 \N \N 124 5 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 120 \N 0 \N \N +124 24 2020-09-29 09:26:51-05 \N \N 125 5 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:36:47.007226-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 125 \N 0 \N \N 125 24 2020-10-27 07:26:51-05 \N \N 126 5 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:36:47.681547-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 128 \N 0 \N \N -126 24 2020-10-13 09:26:51.426709-05 \N \N 127 5 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 134 \N 0 \N \N -127 25 2020-10-27 09:26:51-05 \N \N 128 5 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:36:58.864747-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 138 \N 0 \N \N +126 24 2020-10-13 09:26:51.426709-05 \N \N 127 5 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 134 \N 0 \N \N +127 25 2020-10-27 09:26:51-05 \N \N 128 5 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:36:58.864747-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 138 \N 0 \N \N 128 25 2020-10-27 09:26:51-05 \N \N 129 5 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:36:59.540446-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 140 \N 0 \N \N -129 25 2020-10-27 09:26:51.426709-05 \N \N 130 5 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N -130 25 2020-09-29 09:26:51-05 \N \N 131 5 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:37:09.833398-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N +129 25 2020-10-27 09:26:51.426709-05 \N \N 130 5 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N +130 25 2020-09-29 09:26:51-05 \N \N 131 5 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:37:09.833398-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N 131 25 2020-10-27 07:26:51-05 \N \N 132 5 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:37:10.514272-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 104 \N 0 \N \N -132 25 2020-10-13 09:26:51.426709-05 \N \N 133 5 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N -133 26 2020-10-27 09:26:51-05 \N \N 134 5 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:37:21.840524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N +132 25 2020-10-13 09:26:51.426709-05 \N \N 133 5 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N +133 26 2020-10-27 09:26:51-05 \N \N 134 5 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:37:21.840524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N 134 26 2020-10-27 09:26:51-05 \N \N 135 5 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:37:22.562366-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 120 \N 0 \N \N -135 26 2020-10-27 09:26:51.426709-05 \N \N 136 5 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N -136 26 2020-09-29 09:26:51-05 \N \N 137 5 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:37:32.9465-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N +135 26 2020-10-27 09:26:51.426709-05 \N \N 136 5 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N +136 26 2020-09-29 09:26:51-05 \N \N 137 5 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:37:32.9465-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N 137 26 2020-10-27 07:26:51-05 \N \N 138 5 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:37:33.61658-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 134 \N 0 \N \N -138 26 2020-10-13 09:26:51.426709-05 \N \N 139 5 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N -139 27 2020-10-27 09:26:51-05 \N \N 140 5 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:37:44.729478-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N +138 26 2020-10-13 09:26:51.426709-05 \N \N 139 5 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N +139 27 2020-10-27 09:26:51-05 \N \N 140 5 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:37:44.729478-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N 140 27 2020-10-27 09:26:51-05 \N \N 141 5 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:37:45.408974-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 147 \N 0 \N \N -141 27 2020-10-27 09:26:51.426709-05 \N \N 142 5 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N -142 27 2020-09-29 09:26:51-05 \N \N 143 5 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:37:55.697479-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N +141 27 2020-10-27 09:26:51.426709-05 \N \N 142 5 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N +142 27 2020-09-29 09:26:51-05 \N \N 143 5 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:37:55.697479-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N 143 27 2020-10-27 07:26:51-05 \N \N 144 5 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:37:56.379022-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 114 \N 0 \N \N -144 27 2020-10-13 09:26:51.426709-05 \N \N 145 5 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N -145 28 2020-10-27 09:26:51-05 \N \N 146 5 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:38:07.538758-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N +144 27 2020-10-13 09:26:51.426709-05 \N \N 145 5 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N +145 28 2020-10-27 09:26:51-05 \N \N 146 5 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:38:07.538758-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N 146 28 2020-10-27 09:26:51-05 \N \N 147 5 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:38:08.24258-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 125 \N 0 \N \N -147 28 2020-10-27 09:26:51.426709-05 \N \N 148 5 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N -148 28 2020-09-29 09:26:51-05 \N \N 149 5 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:38:18.525254-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N +147 28 2020-10-27 09:26:51.426709-05 \N \N 148 5 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N +148 28 2020-09-29 09:26:51-05 \N \N 149 5 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:38:18.525254-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N 149 28 2020-10-27 07:26:51-05 \N \N 151 5 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:38:19.193226-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 140 \N 0 \N \N -150 28 2020-10-13 09:26:51.426709-05 \N \N 152 5 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N -151 29 2020-10-27 09:26:51-05 \N \N 153 5 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:38:30.265454-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N +150 28 2020-10-13 09:26:51.426709-05 \N \N 152 5 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N +151 29 2020-10-27 09:26:51-05 \N \N 153 5 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:38:30.265454-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N 152 29 2020-10-27 09:26:51-05 \N \N 154 5 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:38:30.930019-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 104 \N 0 \N \N -153 29 2020-10-27 09:26:51.426709-05 \N \N 155 5 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N -154 29 2020-09-29 09:26:51-05 \N \N 156 5 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:38:41.210161-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N +153 29 2020-10-27 09:26:51.426709-05 \N \N 155 5 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N +154 29 2020-09-29 09:26:51-05 \N \N 156 5 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:38:41.210161-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N 155 29 2020-10-27 07:26:51-05 \N \N 157 5 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:38:41.89157-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 120 \N 0 \N \N -156 29 2020-10-13 09:26:51.426709-05 \N \N 158 5 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N -157 30 2020-10-27 09:26:51-05 \N \N 159 5 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:38:52.72658-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N +156 29 2020-10-13 09:26:51.426709-05 \N \N 158 5 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N +157 30 2020-10-27 09:26:51-05 \N \N 159 5 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:38:52.72658-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N 158 30 2020-10-27 09:26:51-05 \N \N 161 5 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:38:53.381381-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 138 \N 0 \N \N -159 30 2020-10-27 09:26:51.426709-05 \N \N 162 5 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N -160 30 2020-09-29 09:26:51-05 \N \N 163 5 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:39:03.572081-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N +159 30 2020-10-27 09:26:51.426709-05 \N \N 162 5 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N +160 30 2020-09-29 09:26:51-05 \N \N 163 5 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:39:03.572081-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N 161 30 2020-10-27 07:26:51-05 \N \N 164 5 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:39:04.266319-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 153 \N 0 \N \N -162 30 2020-10-13 09:26:51.426709-05 \N \N 165 5 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N -163 31 2020-10-27 09:26:51-05 \N \N 166 5 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:39:15.293963-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N +162 30 2020-10-13 09:26:51.426709-05 \N \N 165 5 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N +163 31 2020-10-27 09:26:51-05 \N \N 166 5 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:39:15.293963-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N 164 31 2020-10-27 09:26:51-05 \N \N 167 5 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:39:15.961504-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 119 \N 0 \N \N -165 31 2020-10-27 09:26:51.426709-05 \N \N 168 5 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 120 \N 0 \N \N -166 31 2020-09-29 09:26:51-05 \N \N 169 5 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:39:26.101111-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 125 \N 0 \N \N +165 31 2020-10-27 09:26:51.426709-05 \N \N 168 5 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 120 \N 0 \N \N +166 31 2020-09-29 09:26:51-05 \N \N 169 5 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:39:26.101111-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 125 \N 0 \N \N 167 31 2020-10-27 07:26:51-05 \N \N 170 5 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:39:26.784113-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 128 \N 0 \N \N -168 31 2020-10-13 09:26:51.426709-05 \N \N 171 5 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 134 \N 0 \N \N -169 32 2020-10-27 09:26:51-05 \N \N 172 5 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:39:37.891942-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 138 \N 0 \N \N +168 31 2020-10-13 09:26:51.426709-05 \N \N 171 5 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 134 \N 0 \N \N +169 32 2020-10-27 09:26:51-05 \N \N 172 5 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:39:37.891942-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 138 \N 0 \N \N 170 32 2020-10-27 09:26:51-05 \N \N 173 5 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:39:38.587166-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 140 \N 0 \N \N -171 32 2020-10-27 09:26:51.426709-05 \N \N 174 5 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N -172 32 2020-09-29 09:26:51-05 \N \N 175 5 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:39:48.969679-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N +171 32 2020-10-27 09:26:51.426709-05 \N \N 174 5 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 147 \N 0 \N \N +172 32 2020-09-29 09:26:51-05 \N \N 175 5 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:39:48.969679-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 153 \N 0 \N \N 173 32 2020-10-27 07:26:51-05 \N \N 176 5 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:39:49.667721-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 104 \N 0 \N \N -174 32 2020-10-13 09:26:51.426709-05 \N \N 177 5 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N -175 33 2020-10-27 09:26:51-05 \N \N 178 5 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:40:00.881698-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N +174 32 2020-10-13 09:26:51.426709-05 \N \N 177 5 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 114 \N 0 \N \N +175 33 2020-10-27 09:26:51-05 \N \N 178 5 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:40:00.881698-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 119 \N 0 \N \N 176 33 2020-10-27 09:26:51-05 \N \N 179 5 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:40:01.638403-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 120 \N 0 \N \N -177 33 2020-10-27 09:26:51.426709-05 \N \N 180 5 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N -178 33 2020-09-29 09:26:51-05 \N \N 181 5 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:40:12.212155-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N +177 33 2020-10-27 09:26:51.426709-05 \N \N 180 5 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 125 \N 0 \N \N +178 33 2020-09-29 09:26:51-05 \N \N 181 5 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:40:12.212155-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 128 \N 0 \N \N 179 33 2020-10-27 07:26:51-05 \N \N 182 5 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:40:12.902849-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 134 \N 0 \N \N -180 33 2020-10-13 09:26:51.426709-05 \N \N 183 5 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N -181 34 2020-10-27 09:26:51-05 \N \N 184 5 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:40:24.129332-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N +180 33 2020-10-13 09:26:51.426709-05 \N \N 183 5 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 138 \N 0 \N \N +181 34 2020-10-27 09:26:51-05 \N \N 184 5 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:40:24.129332-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 140 \N 0 \N \N 182 34 2020-10-27 09:26:51-05 \N \N 185 5 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:40:24.821685-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 147 \N 0 \N \N -183 34 2020-10-27 09:26:51.426709-05 \N \N 186 5 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N -184 34 2020-09-29 09:26:51-05 \N \N 187 5 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:40:35.276968-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N +183 34 2020-10-27 09:26:51.426709-05 \N \N 186 5 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 153 \N 0 \N \N +184 34 2020-09-29 09:26:51-05 \N \N 187 5 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:40:35.276968-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 104 \N 0 \N \N 185 34 2020-10-27 07:26:51-05 \N \N 188 5 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:40:35.964485-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 114 \N 0 \N \N -186 34 2020-10-13 09:26:51.426709-05 \N \N 189 5 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N -187 35 2020-10-27 09:26:51-05 \N \N 190 5 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:40:47.260036-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N +186 34 2020-10-13 09:26:51.426709-05 \N \N 189 5 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 119 \N 0 \N \N +187 35 2020-10-27 09:26:51-05 \N \N 190 5 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:40:47.260036-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 120 \N 0 \N \N 188 35 2020-10-27 09:26:51-05 \N \N 191 5 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:40:48.001445-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 125 \N 0 \N \N -189 35 2020-10-27 09:26:51.426709-05 \N \N 192 5 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N -190 35 2020-09-29 09:26:51-05 \N \N 193 5 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:40:58.439726-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N +189 35 2020-10-27 09:26:51.426709-05 \N \N 192 5 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 128 \N 0 \N \N +190 35 2020-09-29 09:26:51-05 \N \N 193 5 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:40:58.439726-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 134 \N 0 \N \N 191 35 2020-10-27 07:26:51-05 \N \N 194 5 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:40:59.149089-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 138 \N 0 \N \N -192 35 2020-10-13 09:26:51.426709-05 \N \N 195 5 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N -193 36 2020-10-27 09:26:51-05 \N \N 196 5 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:41:10.6943-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N +192 35 2020-10-13 09:26:51.426709-05 \N \N 195 5 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 140 \N 0 \N \N +193 36 2020-10-27 09:26:51-05 \N \N 196 5 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:41:10.6943-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 147 \N 0 \N \N 194 36 2020-10-27 09:26:51-05 \N \N 197 5 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:41:11.45613-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 153 \N 0 \N \N -195 36 2020-10-27 09:26:51.426709-05 \N \N 198 5 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N -196 36 2020-09-29 09:26:51-05 \N \N 199 5 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:41:21.880228-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N +195 36 2020-10-27 09:26:51.426709-05 \N \N 198 5 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 104 \N 0 \N \N +196 36 2020-09-29 09:26:51-05 \N \N 199 5 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:41:21.880228-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 114 \N 0 \N \N 197 36 2020-10-27 07:26:51-05 \N \N 200 5 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:41:22.64595-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 119 \N 0 \N \N -198 36 2020-10-13 09:26:51.426709-05 \N \N 201 6 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N -199 37 2020-10-27 09:26:51-05 \N \N 202 6 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:41:33.52382-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N +198 36 2020-10-13 09:26:51.426709-05 \N \N 201 6 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N +199 37 2020-10-27 09:26:51-05 \N \N 202 6 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:41:33.52382-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N 200 37 2020-10-27 09:26:51-05 \N \N 203 6 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:41:34.318536-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 133 \N 0 \N \N -201 37 2020-10-27 09:26:51.426709-05 \N \N 204 6 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N -202 37 2020-09-29 09:26:51-05 \N \N 205 6 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:41:44.569391-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N +201 37 2020-10-27 09:26:51.426709-05 \N \N 204 6 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N +202 37 2020-09-29 09:26:51-05 \N \N 205 6 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:41:44.569391-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N 203 37 2020-10-27 07:26:51-05 \N \N 206 6 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:41:45.378866-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 105 \N 0 \N \N -204 37 2020-10-13 09:26:51.426709-05 \N \N 207 6 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N -205 38 2020-10-27 09:26:51-05 \N \N 208 6 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:41:56.379934-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N +204 37 2020-10-13 09:26:51.426709-05 \N \N 207 6 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N +205 38 2020-10-27 09:26:51-05 \N \N 208 6 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:41:56.379934-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N 206 38 2020-10-27 09:26:51-05 \N \N 209 6 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:41:57.194313-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 122 \N 0 \N \N -207 38 2020-10-27 09:26:51.426709-05 \N \N 210 6 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N -208 38 2020-09-29 09:26:51-05 \N \N 211 6 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:42:07.274524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N +207 38 2020-10-27 09:26:51.426709-05 \N \N 210 6 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N +208 38 2020-09-29 09:26:51-05 \N \N 211 6 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:42:07.274524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N 209 38 2020-10-27 07:26:51-05 \N \N 212 6 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:42:08.054836-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 131 \N 0 \N \N -210 38 2020-10-13 09:26:51.426709-05 \N \N 213 6 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N -211 39 2020-10-27 09:26:51-05 \N \N 214 6 226 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:42:18.916392-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N +210 38 2020-10-13 09:26:51.426709-05 \N \N 213 6 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N +211 39 2020-10-27 09:26:51-05 \N \N 214 6 226 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:42:18.916392-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N 212 39 2020-10-27 09:26:51-05 \N \N 215 6 226 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:42:19.753923-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 148 \N 0 \N \N -213 39 2020-10-27 09:26:51.426709-05 \N \N 216 6 226 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N -214 39 2020-09-29 09:26:51-05 \N \N 217 6 226 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:42:30.073387-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N +213 39 2020-10-27 09:26:51.426709-05 \N \N 216 6 226 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N +214 39 2020-09-29 09:26:51-05 \N \N 217 6 226 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:42:30.073387-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N 215 39 2020-10-27 07:26:51-05 \N \N 218 6 226 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:42:30.881102-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 121 \N 0 \N \N -216 39 2020-10-13 09:26:51.426709-05 \N \N 219 6 226 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N -217 40 2020-10-27 09:26:51-05 \N \N 220 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:42:41.903098-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N +216 39 2020-10-13 09:26:51.426709-05 \N \N 219 6 226 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N +217 40 2020-10-27 09:26:51-05 \N \N 220 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:42:41.903098-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N 218 40 2020-10-27 09:26:51-05 \N \N 221 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:42:42.735806-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 129 \N 0 \N \N -219 40 2020-10-27 09:26:51.426709-05 \N \N 222 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N -220 40 2020-09-29 09:26:51-05 \N \N 223 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:42:52.999639-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N +219 40 2020-10-27 09:26:51.426709-05 \N \N 222 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N +220 40 2020-09-29 09:26:51-05 \N \N 223 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:42:52.999639-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N 221 40 2020-10-27 07:26:51-05 \N \N 224 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:42:53.830885-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 143 \N 0 \N \N -222 40 2020-10-13 09:26:51.426709-05 \N \N 225 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N -223 41 2020-10-27 09:26:51-05 \N \N 226 6 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:43:05.010107-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N +222 40 2020-10-13 09:26:51.426709-05 \N \N 225 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N +223 41 2020-10-27 09:26:51-05 \N \N 226 6 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:43:05.010107-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N 224 41 2020-10-27 09:26:51-05 \N \N 227 6 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:43:05.812269-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 115 \N 0 \N \N -225 41 2020-10-27 09:26:51.426709-05 \N \N 228 6 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N -226 41 2020-09-29 09:26:51-05 \N \N 229 6 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:43:16.024605-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N +225 41 2020-10-27 09:26:51.426709-05 \N \N 228 6 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N +226 41 2020-09-29 09:26:51-05 \N \N 229 6 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:43:16.024605-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N 227 41 2020-10-27 07:26:51-05 \N \N 230 6 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:43:16.823276-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 126 \N 0 \N \N -228 41 2020-10-13 09:26:51.426709-05 \N \N 231 6 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N -229 42 2020-10-27 09:26:51-05 \N \N 232 6 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:43:27.911518-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N +228 41 2020-10-13 09:26:51.426709-05 \N \N 231 6 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N +229 42 2020-10-27 09:26:51-05 \N \N 232 6 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:43:27.911518-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N 230 42 2020-10-27 09:26:51-05 \N \N 233 6 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:43:28.753481-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 133 \N 0 \N \N -231 42 2020-10-27 09:26:51.426709-05 \N \N 234 6 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N -232 42 2020-09-29 09:26:51-05 \N \N 235 6 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:43:39.044502-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N +231 42 2020-10-27 09:26:51.426709-05 \N \N 234 6 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N +232 42 2020-09-29 09:26:51-05 \N \N 235 6 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:43:39.044502-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N 233 42 2020-10-27 07:26:51-05 \N \N 236 6 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:43:39.830431-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 105 \N 0 \N \N -234 42 2020-10-13 09:26:51.426709-05 \N \N 237 6 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N -235 43 2020-10-27 09:26:51-05 \N \N 238 6 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:43:50.99621-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N +234 42 2020-10-13 09:26:51.426709-05 \N \N 237 6 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N +235 43 2020-10-27 09:26:51-05 \N \N 238 6 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:43:50.99621-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N 236 43 2020-10-27 09:26:51-05 \N \N 239 6 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:43:51.829016-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 122 \N 0 \N \N -237 43 2020-10-27 09:26:51.426709-05 \N \N 240 6 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N -238 43 2020-09-29 09:26:51-05 \N \N 241 6 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:44:02.013208-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N +237 43 2020-10-27 09:26:51.426709-05 \N \N 240 6 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N +238 43 2020-09-29 09:26:51-05 \N \N 241 6 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:44:02.013208-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N 239 43 2020-10-27 07:26:51-05 \N \N 242 6 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:44:02.916821-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 131 \N 0 \N \N -240 43 2020-10-13 09:26:51.426709-05 \N \N 243 6 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N -241 44 2020-10-27 09:26:51-05 \N \N 244 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:44:13.837592-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N +240 43 2020-10-13 09:26:51.426709-05 \N \N 243 6 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N +241 44 2020-10-27 09:26:51-05 \N \N 244 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:44:13.837592-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N 242 44 2020-10-27 09:26:51-05 \N \N 245 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:44:14.695072-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 148 \N 0 \N \N -243 44 2020-10-27 09:26:51.426709-05 \N \N 246 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N -244 44 2020-09-29 09:26:51-05 \N \N 247 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:44:24.881316-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N +243 44 2020-10-27 09:26:51.426709-05 \N \N 246 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N +244 44 2020-09-29 09:26:51-05 \N \N 247 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:44:24.881316-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N 245 44 2020-10-27 07:26:51-05 \N \N 248 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:44:25.667038-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 121 \N 0 \N \N -246 44 2020-10-13 09:26:51.426709-05 \N \N 249 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N -247 45 2020-10-27 09:26:51-05 \N \N 250 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:44:36.551331-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N +246 44 2020-10-13 09:26:51.426709-05 \N \N 249 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N +247 45 2020-10-27 09:26:51-05 \N \N 250 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:44:36.551331-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N 248 45 2020-10-27 09:26:51-05 \N \N 251 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:44:37.344062-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 129 \N 0 \N \N -249 45 2020-10-27 09:26:51.426709-05 \N \N 252 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N -250 45 2020-09-29 09:26:51-05 \N \N 253 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:44:47.52288-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N +249 45 2020-10-27 09:26:51.426709-05 \N \N 252 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N +250 45 2020-09-29 09:26:51-05 \N \N 253 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:44:47.52288-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N 251 45 2020-10-27 07:26:51-05 \N \N 254 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:44:48.342101-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 143 \N 0 \N \N -252 45 2020-10-13 09:26:51.426709-05 \N \N 255 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N -253 46 2020-10-27 09:26:51-05 \N \N 256 6 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:44:59.345858-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N +252 45 2020-10-13 09:26:51.426709-05 \N \N 255 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N +253 46 2020-10-27 09:26:51-05 \N \N 256 6 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:44:59.345858-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N 254 46 2020-10-27 09:26:51-05 \N \N 257 6 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:45:00.120695-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 115 \N 0 \N \N -255 46 2020-10-27 09:26:51.426709-05 \N \N 258 6 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N -256 46 2020-09-29 09:26:51-05 \N \N 259 6 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:45:10.159611-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N +255 46 2020-10-27 09:26:51.426709-05 \N \N 258 6 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N +256 46 2020-09-29 09:26:51-05 \N \N 259 6 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:45:10.159611-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N 257 46 2020-10-27 07:26:51-05 \N \N 260 6 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:45:10.930824-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 126 \N 0 \N \N -258 46 2020-10-13 09:26:51.426709-05 \N \N 261 6 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N -259 47 2020-10-27 09:26:51-05 \N \N 262 6 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:45:21.788458-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N +258 46 2020-10-13 09:26:51.426709-05 \N \N 261 6 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N +259 47 2020-10-27 09:26:51-05 \N \N 262 6 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:45:21.788458-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N 260 47 2020-10-27 09:26:51-05 \N \N 263 6 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:45:22.572227-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 133 \N 0 \N \N -261 47 2020-10-27 09:26:51.426709-05 \N \N 264 6 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N -262 47 2020-09-29 09:26:51-05 \N \N 265 6 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:45:32.685675-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N +261 47 2020-10-27 09:26:51.426709-05 \N \N 264 6 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N +262 47 2020-09-29 09:26:51-05 \N \N 265 6 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:45:32.685675-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N 263 47 2020-10-27 07:26:51-05 \N \N 266 6 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:45:33.509241-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 105 \N 0 \N \N -264 47 2020-10-13 09:26:51.426709-05 \N \N 267 6 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N -265 48 2020-10-27 09:26:51-05 \N \N 268 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:45:44.479147-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N +264 47 2020-10-13 09:26:51.426709-05 \N \N 267 6 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N +265 48 2020-10-27 09:26:51-05 \N \N 268 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:45:44.479147-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N 266 48 2020-10-27 09:26:51-05 \N \N 269 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:45:45.257763-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 122 \N 0 \N \N -267 48 2020-10-27 09:26:51.426709-05 \N \N 270 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N -268 48 2020-09-29 09:26:51-05 \N \N 271 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:45:55.367993-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N +267 48 2020-10-27 09:26:51.426709-05 \N \N 270 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N +268 48 2020-09-29 09:26:51-05 \N \N 271 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:45:55.367993-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 129 \N 0 \N \N 269 48 2020-10-27 07:26:51-05 \N \N 272 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:45:56.161416-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 131 \N 0 \N \N -270 48 2020-10-13 09:26:51.426709-05 \N \N 273 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N -271 49 2020-10-27 09:26:51-05 \N \N 274 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:46:07.034819-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N +270 48 2020-10-13 09:26:51.426709-05 \N \N 273 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 133 \N 0 \N \N +271 49 2020-10-27 09:26:51-05 \N \N 274 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:46:07.034819-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 143 \N 0 \N \N 272 49 2020-10-27 09:26:51-05 \N \N 275 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:46:07.811467-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 148 \N 0 \N \N -273 49 2020-10-27 09:26:51.426709-05 \N \N 276 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N -274 49 2020-09-29 09:26:51-05 \N \N 277 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:46:17.629268-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N +273 49 2020-10-27 09:26:51.426709-05 \N \N 276 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 105 \N 0 \N \N +274 49 2020-09-29 09:26:51-05 \N \N 277 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:46:17.629268-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 115 \N 0 \N \N 275 49 2020-10-27 07:26:51-05 \N \N 278 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:46:18.396289-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 121 \N 0 \N \N -276 49 2020-10-13 09:26:51.426709-05 \N \N 279 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N -277 50 2020-10-27 09:26:51-05 \N \N 280 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:46:29.312138-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N +276 49 2020-10-13 09:26:51.426709-05 \N \N 279 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 122 \N 0 \N \N +277 50 2020-10-27 09:26:51-05 \N \N 280 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:46:29.312138-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 126 \N 0 \N \N 278 50 2020-10-27 09:26:51-05 \N \N 281 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:46:30.140258-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 129 \N 0 \N \N -279 50 2020-10-27 09:26:51.426709-05 \N \N 282 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N -280 50 2020-09-29 09:26:51-05 \N \N 283 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:46:40.211139-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N +279 50 2020-10-27 09:26:51.426709-05 \N \N 282 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 131 \N 0 \N \N +280 50 2020-09-29 09:26:51-05 \N \N 283 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:46:40.211139-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 133 \N 0 \N \N 281 50 2020-10-27 07:26:51-05 \N \N 284 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:46:41.012549-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 143 \N 0 \N \N -282 50 2020-10-13 09:26:51.426709-05 \N \N 285 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N -283 51 2020-10-27 09:26:51-05 \N \N 286 6 224 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:46:51.918108-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N +282 50 2020-10-13 09:26:51.426709-05 \N \N 285 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 148 \N 0 \N \N +283 51 2020-10-27 09:26:51-05 \N \N 286 6 224 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:46:51.918108-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 105 \N 0 \N \N 284 51 2020-10-27 09:26:51-05 \N \N 287 6 224 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:46:52.727052-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 115 \N 0 \N \N -285 51 2020-10-27 09:26:51.426709-05 \N \N 288 6 224 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N -286 51 2020-09-29 09:26:51-05 \N \N 289 6 224 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:47:02.865555-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N +285 51 2020-10-27 09:26:51.426709-05 \N \N 288 6 224 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 121 \N 0 \N \N +286 51 2020-09-29 09:26:51-05 \N \N 289 6 224 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:47:02.865555-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 122 \N 0 \N \N 287 51 2020-10-27 07:26:51-05 \N \N 290 6 224 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:47:03.685919-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 126 \N 0 \N \N -288 51 2020-10-13 09:26:51.426709-05 \N \N 291 6 224 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N -289 52 2020-10-27 09:26:51-05 \N \N 292 6 228 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:47:14.665896-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N +288 51 2020-10-13 09:26:51.426709-05 \N \N 291 6 224 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 129 \N 0 \N \N +289 52 2020-10-27 09:26:51-05 \N \N 292 6 228 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:47:14.665896-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 131 \N 0 \N \N 290 52 2020-10-27 09:26:51-05 \N \N 293 6 228 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:47:15.450858-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 133 \N 0 \N \N -291 52 2020-10-27 09:26:51.426709-05 \N \N 294 6 228 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N -292 52 2020-09-29 09:26:51-05 \N \N 295 6 228 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:47:25.67788-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N +291 52 2020-10-27 09:26:51.426709-05 \N \N 294 6 228 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 143 \N 0 \N \N +292 52 2020-09-29 09:26:51-05 \N \N 295 6 228 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:47:25.67788-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 148 \N 0 \N \N 293 52 2020-10-27 07:26:51-05 \N \N 296 6 228 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:47:26.50437-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 105 \N 0 \N \N -294 52 2020-10-13 09:26:51.426709-05 \N \N 297 6 228 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N -295 53 2020-10-27 09:26:51-05 \N \N 298 6 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:47:37.939205-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N +294 52 2020-10-13 09:26:51.426709-05 \N \N 297 6 228 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 115 \N 0 \N \N +295 53 2020-10-27 09:26:51-05 \N \N 298 6 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:47:37.939205-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 121 \N 0 \N \N 296 53 2020-10-27 09:26:51-05 \N \N 299 6 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:47:38.77729-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 122 \N 0 \N \N -297 53 2020-10-27 09:26:51.426709-05 \N \N 300 6 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N -298 53 2020-09-29 09:26:51-05 \N \N 301 7 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:47:49.071916-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +297 53 2020-10-27 09:26:51.426709-05 \N \N 300 6 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 126 \N 0 \N \N +298 53 2020-09-29 09:26:51-05 \N \N 301 7 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:47:49.071916-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 299 53 2020-10-27 07:26:51-05 \N \N 302 7 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:47:50.302228-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -300 53 2020-10-13 09:26:51.426709-05 \N \N 303 7 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -301 232 2020-10-27 09:26:51-05 \N \N 304 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:48:01.091691-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N +300 53 2020-10-13 09:26:51.426709-05 \N \N 303 7 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +301 232 2020-10-27 09:26:51-05 \N \N 304 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:48:01.091691-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N 302 232 2020-10-27 09:26:51-05 \N \N 305 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:48:02.444129-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 135 \N 0 \N \N -303 232 2020-10-27 09:26:51.426709-05 \N \N 306 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N -304 232 2020-09-29 09:26:51-05 \N \N 307 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:48:12.50056-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +303 232 2020-10-27 09:26:51.426709-05 \N \N 306 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N +304 232 2020-09-29 09:26:51-05 \N \N 307 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:48:12.50056-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 305 232 2020-10-27 07:26:51-05 \N \N 308 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:48:13.768886-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -306 232 2020-10-13 09:26:51.426709-05 \N \N 309 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -307 233 2020-10-27 09:26:51-05 \N \N 311 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:48:24.653158-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N +306 232 2020-10-13 09:26:51.426709-05 \N \N 309 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +307 233 2020-10-27 09:26:51-05 \N \N 311 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:48:24.653158-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N 308 233 2020-10-27 09:26:51-05 \N \N 312 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:48:25.885512-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 141 \N 0 \N \N -309 233 2020-10-27 09:26:51.426709-05 \N \N 313 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N -310 233 2020-09-29 09:26:51-05 \N \N 314 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:48:35.628764-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N +309 233 2020-10-27 09:26:51.426709-05 \N \N 313 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N +310 233 2020-09-29 09:26:51-05 \N \N 314 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:48:35.628764-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N 311 233 2020-10-27 07:26:51-05 \N \N 315 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:48:36.839293-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 124 \N 0 \N \N -312 233 2020-10-13 09:26:51.426709-05 \N \N 316 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N -313 234 2020-10-27 09:26:51-05 \N \N 318 7 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:48:47.372292-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N +312 233 2020-10-13 09:26:51.426709-05 \N \N 316 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N +313 234 2020-10-27 09:26:51-05 \N \N 318 7 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:48:47.372292-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N 314 234 2020-10-27 09:26:51-05 \N \N 319 7 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:48:48.580292-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 144 \N 0 \N \N -315 234 2020-10-27 09:26:51.426709-05 \N \N 320 7 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N -316 234 2020-09-29 09:26:51-05 \N \N 321 7 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:48:58.487428-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N +315 234 2020-10-27 09:26:51.426709-05 \N \N 320 7 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N +316 234 2020-09-29 09:26:51-05 \N \N 321 7 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:48:58.487428-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N 317 234 2020-10-27 07:26:51-05 \N \N 322 7 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:48:59.697658-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 130 \N 0 \N \N -318 234 2020-10-13 09:26:51.426709-05 \N \N 323 7 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N -319 220 2020-10-27 09:26:51-05 \N \N 325 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:49:10.491-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +318 234 2020-10-13 09:26:51.426709-05 \N \N 323 7 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N +319 220 2020-10-27 09:26:51-05 \N \N 325 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:49:10.491-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 320 220 2020-10-27 09:26:51-05 \N \N 326 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:49:11.767886-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -321 220 2020-10-27 09:26:51.426709-05 \N \N 327 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -322 220 2020-09-29 09:26:51-05 \N \N 328 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:49:21.714524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N +321 220 2020-10-27 09:26:51.426709-05 \N \N 327 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +322 220 2020-09-29 09:26:51-05 \N \N 328 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:49:21.714524-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N 323 220 2020-10-27 07:26:51-05 \N \N 329 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:49:22.923265-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 135 \N 0 \N \N -324 220 2020-10-13 09:26:51.426709-05 \N \N 330 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N -325 221 2020-10-27 09:26:51-05 \N \N 332 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:49:33.765709-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N +324 220 2020-10-13 09:26:51.426709-05 \N \N 330 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N +325 221 2020-10-27 09:26:51-05 \N \N 332 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:49:33.765709-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N 326 221 2020-10-27 09:26:51-05 \N \N 333 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:49:35.080456-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 124 \N 0 \N \N -327 221 2020-10-27 09:26:51.426709-05 \N \N 334 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N -328 221 2020-09-29 09:26:51-05 \N \N 335 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:49:45.026344-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N +327 221 2020-10-27 09:26:51.426709-05 \N \N 334 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N +328 221 2020-09-29 09:26:51-05 \N \N 335 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:49:45.026344-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N 329 221 2020-10-27 07:26:51-05 \N \N 336 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:49:46.235472-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 141 \N 0 \N \N -330 221 2020-10-13 09:26:51.426709-05 \N \N 337 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N -331 222 2020-10-27 09:26:51-05 \N \N 339 7 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:49:56.930705-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N +330 221 2020-10-13 09:26:51.426709-05 \N \N 337 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N +331 222 2020-10-27 09:26:51-05 \N \N 339 7 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:49:56.930705-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N 332 222 2020-10-27 09:26:51-05 \N \N 340 7 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:49:58.150042-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 130 \N 0 \N \N -333 222 2020-10-27 09:26:51.426709-05 \N \N 341 7 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N -334 222 2020-09-29 09:26:51-05 \N \N 342 7 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:50:08.048794-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N +333 222 2020-10-27 09:26:51.426709-05 \N \N 341 7 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N +334 222 2020-09-29 09:26:51-05 \N \N 342 7 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:50:08.048794-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N 335 222 2020-10-27 07:26:51-05 \N \N 343 7 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:50:09.279956-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 144 \N 0 \N \N -336 222 2020-10-13 09:26:51.426709-05 \N \N 344 7 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N -337 208 2020-10-27 09:26:51-05 \N \N 346 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:50:19.909051-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N +336 222 2020-10-13 09:26:51.426709-05 \N \N 344 7 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N +337 208 2020-10-27 09:26:51-05 \N \N 346 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:50:19.909051-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N 338 208 2020-10-27 09:26:51-05 \N \N 347 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:50:21.104916-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 135 \N 0 \N \N -339 208 2020-10-27 09:26:51.426709-05 \N \N 348 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N -340 208 2020-09-29 09:26:51-05 \N \N 349 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:50:31.022062-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +339 208 2020-10-27 09:26:51.426709-05 \N \N 348 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N +340 208 2020-09-29 09:26:51-05 \N \N 349 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:50:31.022062-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 341 208 2020-10-27 07:26:51-05 \N \N 350 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:50:32.273723-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -342 208 2020-10-13 09:26:51.426709-05 \N \N 351 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -343 209 2020-10-27 09:26:51-05 \N \N 353 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:50:42.968258-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N +342 208 2020-10-13 09:26:51.426709-05 \N \N 351 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +343 209 2020-10-27 09:26:51-05 \N \N 353 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:50:42.968258-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N 344 209 2020-10-27 09:26:51-05 \N \N 354 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:50:44.193987-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 141 \N 0 \N \N -345 209 2020-10-27 09:26:51.426709-05 \N \N 355 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N -346 209 2020-09-29 09:26:51-05 \N \N 356 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:50:54.26822-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N +345 209 2020-10-27 09:26:51.426709-05 \N \N 355 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N +346 209 2020-09-29 09:26:51-05 \N \N 356 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:50:54.26822-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N 347 209 2020-10-27 07:26:51-05 \N \N 357 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:50:55.558738-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 124 \N 0 \N \N -348 209 2020-10-13 09:26:51.426709-05 \N \N 358 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N -349 210 2020-10-27 09:26:51-05 \N \N 360 7 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:51:06.529994-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N +348 209 2020-10-13 09:26:51.426709-05 \N \N 358 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N +349 210 2020-10-27 09:26:51-05 \N \N 360 7 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:51:06.529994-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N 350 210 2020-10-27 09:26:51-05 \N \N 361 7 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:51:07.756201-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 144 \N 0 \N \N -351 210 2020-10-27 09:26:51.426709-05 \N \N 362 7 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N -352 210 2020-09-29 09:26:51-05 \N \N 363 7 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:51:17.484216-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N +351 210 2020-10-27 09:26:51.426709-05 \N \N 362 7 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N +352 210 2020-09-29 09:26:51-05 \N \N 363 7 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:51:17.484216-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N 353 210 2020-10-27 07:26:51-05 \N \N 364 7 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:51:18.719171-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 130 \N 0 \N \N -354 210 2020-10-13 09:26:51.426709-05 \N \N 365 7 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N -355 196 2020-10-27 09:26:51-05 \N \N 367 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:51:29.617473-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +354 210 2020-10-13 09:26:51.426709-05 \N \N 365 7 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N +355 196 2020-10-27 09:26:51-05 \N \N 367 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:51:29.617473-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 356 196 2020-10-27 09:26:51-05 \N \N 368 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:51:30.8579-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -357 196 2020-10-27 09:26:51.426709-05 \N \N 369 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -358 196 2020-09-29 09:26:51-05 \N \N 370 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:51:40.884769-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N +357 196 2020-10-27 09:26:51.426709-05 \N \N 369 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +358 196 2020-09-29 09:26:51-05 \N \N 370 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:51:40.884769-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N 359 196 2020-10-27 07:26:51-05 \N \N 371 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:51:42.137212-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 135 \N 0 \N \N -360 196 2020-10-13 09:26:51.426709-05 \N \N 372 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N -361 197 2020-10-27 09:26:51-05 \N \N 374 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:51:53.027842-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N +360 196 2020-10-13 09:26:51.426709-05 \N \N 372 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N +361 197 2020-10-27 09:26:51-05 \N \N 374 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:51:53.027842-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N 362 197 2020-10-27 09:26:51-05 \N \N 375 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:51:54.271372-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 124 \N 0 \N \N -363 197 2020-10-27 09:26:51.426709-05 \N \N 376 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N -364 197 2020-09-29 09:26:51-05 \N \N 377 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:52:04.524228-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N +363 197 2020-10-27 09:26:51.426709-05 \N \N 376 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N +364 197 2020-09-29 09:26:51-05 \N \N 377 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:52:04.524228-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N 365 197 2020-10-27 07:26:51-05 \N \N 378 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:52:05.814697-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 141 \N 0 \N \N -366 197 2020-10-13 09:26:51.426709-05 \N \N 379 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N -367 198 2020-10-27 09:26:51-05 \N \N 381 7 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:52:16.439097-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N +366 197 2020-10-13 09:26:51.426709-05 \N \N 379 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N +367 198 2020-10-27 09:26:51-05 \N \N 381 7 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:52:16.439097-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 124 \N 0 \N \N 368 198 2020-10-27 09:26:51-05 \N \N 382 7 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:52:17.683729-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 130 \N 0 \N \N -369 198 2020-10-27 09:26:51.426709-05 \N \N 383 7 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N -370 198 2020-09-29 09:26:51-05 \N \N 384 7 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:52:27.660097-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N +369 198 2020-10-27 09:26:51.426709-05 \N \N 383 7 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 135 \N 0 \N \N +370 198 2020-09-29 09:26:51-05 \N \N 384 7 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:52:27.660097-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 141 \N 0 \N \N 371 198 2020-10-27 07:26:51-05 \N \N 385 7 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:52:28.901277-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 144 \N 0 \N \N -372 198 2020-10-13 09:26:51.426709-05 \N \N 386 7 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N -373 184 2020-10-27 09:26:51-05 \N \N 388 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:52:39.893198-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N +372 198 2020-10-13 09:26:51.426709-05 \N \N 386 7 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 149 \N 0 \N \N +373 184 2020-10-27 09:26:51-05 \N \N 388 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:52:39.893198-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 130 \N 0 \N \N 374 184 2020-10-27 09:26:51-05 \N \N 389 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:52:41.125609-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 135 \N 0 \N \N -375 184 2020-10-27 09:26:51.426709-05 \N \N 390 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N -376 184 2020-09-29 09:26:51-05 \N \N 391 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:52:51.080224-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N +375 184 2020-10-27 09:26:51.426709-05 \N \N 390 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 141 \N 0 \N \N +376 184 2020-09-29 09:26:51-05 \N \N 391 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:52:51.080224-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 144 \N 0 \N \N 377 184 2020-10-27 07:26:51-05 \N \N 392 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:52:52.322758-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 149 \N 0 \N \N -378 184 2020-10-13 09:26:51.426709-05 \N \N 393 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N -379 185 2020-10-27 09:26:51-05 \N \N 395 7 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:53:02.976891-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N +378 184 2020-10-13 09:26:51.426709-05 \N \N 393 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 124 \N 0 \N \N +379 185 2020-10-27 09:26:51-05 \N \N 395 7 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:53:02.976891-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 135 \N 0 \N \N 380 185 2020-10-27 09:26:51-05 \N \N 396 7 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:53:04.257205-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 141 \N 0 \N \N -381 185 2020-10-27 09:26:51.426709-05 \N \N 397 7 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N -382 185 2020-09-29 09:26:51-05 \N \N 398 7 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:53:14.294011-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N +381 185 2020-10-27 09:26:51.426709-05 \N \N 397 7 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 144 \N 0 \N \N +382 185 2020-09-29 09:26:51-05 \N \N 398 7 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:53:14.294011-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 149 \N 0 \N \N 383 185 2020-10-27 07:26:51-05 \N \N 399 7 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:53:15.526303-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 124 \N 0 \N \N -384 185 2020-10-13 09:26:51.426709-05 \N \N 400 7 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N -385 186 2020-10-27 09:26:51-05 \N \N 402 9 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:53:26.317207-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +384 185 2020-10-13 09:26:51.426709-05 \N \N 400 7 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 130 \N 0 \N \N +385 186 2020-10-27 09:26:51-05 \N \N 402 9 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:53:26.317207-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 386 186 2020-10-27 09:26:51-05 \N \N 403 9 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:53:27.617797-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -387 186 2020-10-27 09:26:51.426709-05 \N \N 404 9 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -388 186 2020-09-29 09:26:51-05 \N \N 405 9 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:53:37.657222-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +387 186 2020-10-27 09:26:51.426709-05 \N \N 404 9 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +388 186 2020-09-29 09:26:51-05 \N \N 405 9 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:53:37.657222-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 389 186 2020-10-27 07:26:51-05 \N \N 406 9 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:53:38.909051-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -390 186 2020-10-13 09:26:51.426709-05 \N \N 407 9 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -391 172 2020-10-27 09:26:51-05 \N \N 409 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:53:49.625184-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +390 186 2020-10-13 09:26:51.426709-05 \N \N 407 9 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +391 172 2020-10-27 09:26:51-05 \N \N 409 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:53:49.625184-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 392 172 2020-10-27 09:26:51-05 \N \N 410 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:53:50.846493-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -393 172 2020-10-27 09:26:51.426709-05 \N \N 411 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -394 172 2020-09-29 09:26:51-05 \N \N 412 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:54:01.012491-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +393 172 2020-10-27 09:26:51.426709-05 \N \N 411 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +394 172 2020-09-29 09:26:51-05 \N \N 412 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:54:01.012491-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 395 172 2020-10-27 07:26:51-05 \N \N 413 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:54:02.365827-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -396 172 2020-10-13 09:26:51.426709-05 \N \N 414 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -397 173 2020-10-27 09:26:51-05 \N \N 416 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:54:13.292084-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +396 172 2020-10-13 09:26:51.426709-05 \N \N 414 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +397 173 2020-10-27 09:26:51-05 \N \N 416 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:54:13.292084-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 398 173 2020-10-27 09:26:51-05 \N \N 417 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:54:14.551795-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -399 173 2020-10-27 09:26:51.426709-05 \N \N 418 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -400 173 2020-09-29 09:26:51-05 \N \N 419 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:54:24.667833-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +399 173 2020-10-27 09:26:51.426709-05 \N \N 418 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +400 173 2020-09-29 09:26:51-05 \N \N 419 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:54:24.667833-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 401 173 2020-10-27 07:26:51-05 \N \N 420 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:54:25.941798-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -402 173 2020-10-13 09:26:51.426709-05 \N \N 421 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -403 174 2020-10-27 09:26:51-05 \N \N 423 9 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:54:36.98744-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +402 173 2020-10-13 09:26:51.426709-05 \N \N 421 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +403 174 2020-10-27 09:26:51-05 \N \N 423 9 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:54:36.98744-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 404 174 2020-10-27 09:26:51-05 \N \N 424 9 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:54:38.2486-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -405 174 2020-10-27 09:26:51.426709-05 \N \N 425 9 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -406 174 2020-09-29 09:26:51-05 \N \N 426 9 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:54:48.367141-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +405 174 2020-10-27 09:26:51.426709-05 \N \N 425 9 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +406 174 2020-09-29 09:26:51-05 \N \N 426 9 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:54:48.367141-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 407 174 2020-10-27 07:26:51-05 \N \N 427 9 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:54:49.667853-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -408 174 2020-10-13 09:26:51.426709-05 \N \N 428 9 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -409 160 2020-10-27 09:26:51-05 \N \N 430 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:55:00.540277-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +408 174 2020-10-13 09:26:51.426709-05 \N \N 428 9 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +409 160 2020-10-27 09:26:51-05 \N \N 430 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:55:00.540277-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 410 160 2020-10-27 09:26:51-05 \N \N 431 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:55:01.825543-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -411 160 2020-10-27 09:26:51.426709-05 \N \N 432 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -412 160 2020-09-29 09:26:51-05 \N \N 433 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:55:11.952028-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +411 160 2020-10-27 09:26:51.426709-05 \N \N 432 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +412 160 2020-09-29 09:26:51-05 \N \N 433 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:55:11.952028-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 413 160 2020-10-27 07:26:51-05 \N \N 434 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:55:13.220424-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -414 160 2020-10-13 09:26:51.426709-05 \N \N 435 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -415 161 2020-10-27 09:26:51-05 \N \N 437 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:55:23.949111-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +414 160 2020-10-13 09:26:51.426709-05 \N \N 435 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +415 161 2020-10-27 09:26:51-05 \N \N 437 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:55:23.949111-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 416 161 2020-10-27 09:26:51-05 \N \N 438 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:55:25.276615-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -417 161 2020-10-27 09:26:51.426709-05 \N \N 439 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -418 161 2020-09-29 09:26:51-05 \N \N 440 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:55:35.825658-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +417 161 2020-10-27 09:26:51.426709-05 \N \N 439 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +418 161 2020-09-29 09:26:51-05 \N \N 440 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:55:35.825658-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 419 161 2020-10-27 07:26:51-05 \N \N 441 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:55:37.196252-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -420 161 2020-10-13 09:26:51.426709-05 \N \N 442 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -421 162 2020-10-27 09:26:51-05 \N \N 444 9 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:55:48.748315-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +420 161 2020-10-13 09:26:51.426709-05 \N \N 442 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +421 162 2020-10-27 09:26:51-05 \N \N 444 9 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:55:48.748315-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 422 162 2020-10-27 09:26:51-05 \N \N 445 9 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:55:50.108296-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -423 162 2020-10-27 09:26:51.426709-05 \N \N 446 9 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -424 162 2020-09-29 09:26:51-05 \N \N 447 9 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:56:00.576977-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +423 162 2020-10-27 09:26:51.426709-05 \N \N 446 9 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +424 162 2020-09-29 09:26:51-05 \N \N 447 9 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:56:00.576977-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 425 162 2020-10-27 07:26:51-05 \N \N 448 9 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:56:01.931224-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -426 162 2020-10-13 09:26:51.426709-05 \N \N 449 9 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -427 148 2020-10-27 09:26:51-05 \N \N 451 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:56:13.574397-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +426 162 2020-10-13 09:26:51.426709-05 \N \N 449 9 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +427 148 2020-10-27 09:26:51-05 \N \N 451 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:56:13.574397-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 428 148 2020-10-27 09:26:51-05 \N \N 452 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:56:14.880264-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -429 148 2020-10-27 09:26:51.426709-05 \N \N 453 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -430 148 2020-09-29 09:26:51-05 \N \N 454 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:56:25.107143-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +429 148 2020-10-27 09:26:51.426709-05 \N \N 453 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +430 148 2020-09-29 09:26:51-05 \N \N 454 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:56:25.107143-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 431 148 2020-10-27 07:26:51-05 \N \N 455 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:56:26.427555-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -432 148 2020-10-13 09:26:51.426709-05 \N \N 456 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -433 149 2020-10-27 09:26:51-05 \N \N 458 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:56:37.574175-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +432 148 2020-10-13 09:26:51.426709-05 \N \N 456 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +433 149 2020-10-27 09:26:51-05 \N \N 458 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:56:37.574175-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 434 149 2020-10-27 09:26:51-05 \N \N 459 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:56:38.902492-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -435 149 2020-10-27 09:26:51.426709-05 \N \N 460 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -436 149 2020-09-29 09:26:51-05 \N \N 461 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:56:49.046161-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +435 149 2020-10-27 09:26:51.426709-05 \N \N 460 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +436 149 2020-09-29 09:26:51-05 \N \N 461 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:56:49.046161-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 437 149 2020-10-27 07:26:51-05 \N \N 462 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:56:50.357964-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -438 149 2020-10-13 09:26:51.426709-05 \N \N 463 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -439 150 2020-10-27 09:26:51-05 \N \N 465 9 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:57:01.193745-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +438 149 2020-10-13 09:26:51.426709-05 \N \N 463 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +439 150 2020-10-27 09:26:51-05 \N \N 465 9 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:57:01.193745-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 440 150 2020-10-27 09:26:51-05 \N \N 466 9 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:57:02.487125-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -441 150 2020-10-27 09:26:51.426709-05 \N \N 467 9 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -442 150 2020-09-29 09:26:51-05 \N \N 468 9 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:57:12.500223-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +441 150 2020-10-27 09:26:51.426709-05 \N \N 467 9 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +442 150 2020-09-29 09:26:51-05 \N \N 468 9 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:57:12.500223-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 443 150 2020-10-27 07:26:51-05 \N \N 469 9 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:57:13.712949-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -444 150 2020-10-13 09:26:51.426709-05 \N \N 470 9 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -445 136 2020-10-27 09:26:51-05 \N \N 472 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:57:24.390793-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +444 150 2020-10-13 09:26:51.426709-05 \N \N 470 9 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +445 136 2020-10-27 09:26:51-05 \N \N 472 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:57:24.390793-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 446 136 2020-10-27 09:26:51-05 \N \N 473 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:57:25.653486-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -447 136 2020-10-27 09:26:51.426709-05 \N \N 474 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -448 136 2020-09-29 09:26:51-05 \N \N 475 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:57:35.79805-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +447 136 2020-10-27 09:26:51.426709-05 \N \N 474 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +448 136 2020-09-29 09:26:51-05 \N \N 475 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:57:35.79805-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 449 136 2020-10-27 07:26:51-05 \N \N 476 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:57:37.202099-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -450 136 2020-10-13 09:26:51.426709-05 \N \N 477 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -451 137 2020-10-27 09:26:51-05 \N \N 479 9 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:57:48.683033-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +450 136 2020-10-13 09:26:51.426709-05 \N \N 477 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +451 137 2020-10-27 09:26:51-05 \N \N 479 9 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:57:48.683033-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 452 137 2020-10-27 09:26:51-05 \N \N 480 9 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:57:49.954055-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -453 137 2020-10-27 09:26:51.426709-05 \N \N 481 9 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -454 137 2020-09-29 09:26:51-05 \N \N 482 9 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:58:00.662865-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +453 137 2020-10-27 09:26:51.426709-05 \N \N 481 9 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +454 137 2020-09-29 09:26:51-05 \N \N 482 9 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:58:00.662865-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 455 137 2020-10-27 07:26:51-05 \N \N 483 9 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:58:02.064692-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -456 137 2020-10-13 09:26:51.426709-05 \N \N 484 9 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -457 138 2020-10-27 09:26:51-05 \N \N 486 9 222 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:58:13.668389-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +456 137 2020-10-13 09:26:51.426709-05 \N \N 484 9 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +457 138 2020-10-27 09:26:51-05 \N \N 486 9 222 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:58:13.668389-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 458 138 2020-10-27 09:26:51-05 \N \N 487 9 222 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:58:14.990146-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -459 138 2020-10-27 09:26:51.426709-05 \N \N 488 9 222 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -460 138 2020-09-29 09:26:51-05 \N \N 489 9 222 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:58:25.645357-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +459 138 2020-10-27 09:26:51.426709-05 \N \N 488 9 222 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +460 138 2020-09-29 09:26:51-05 \N \N 489 9 222 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:58:25.645357-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 461 138 2020-10-27 07:26:51-05 \N \N 490 9 222 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:58:26.987841-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -462 138 2020-10-13 09:26:51.426709-05 \N \N 491 9 222 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -463 110 2020-10-27 09:26:51-05 \N \N 493 9 226 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:58:38.485773-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +462 138 2020-10-13 09:26:51.426709-05 \N \N 491 9 222 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +463 110 2020-10-27 09:26:51-05 \N \N 493 9 226 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:58:38.485773-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 464 110 2020-10-27 09:26:51-05 \N \N 494 9 226 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:58:39.829822-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -465 110 2020-10-27 09:26:51.426709-05 \N \N 495 9 226 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -466 110 2020-09-29 09:26:51-05 \N \N 496 9 226 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:58:50.455147-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +465 110 2020-10-27 09:26:51.426709-05 \N \N 495 9 226 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +466 110 2020-09-29 09:26:51-05 \N \N 496 9 226 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:58:50.455147-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 467 110 2020-10-27 07:26:51-05 \N \N 497 9 226 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:58:51.778357-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 1 \N 0 \N \N -468 110 2020-10-13 09:26:51.426709-05 \N \N 498 9 226 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N -469 111 2020-10-27 09:26:51-05 \N \N 500 9 230 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:59:02.857961-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N +468 110 2020-10-13 09:26:51.426709-05 \N \N 498 9 226 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 1 \N 0 \N \N +469 111 2020-10-27 09:26:51-05 \N \N 500 9 230 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:59:02.857961-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 1 \N 0 \N \N 470 111 2020-10-27 09:26:51-05 \N \N 501 4 230 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:59:04.13432-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 102 \N 0 \N \N -471 111 2020-10-27 09:26:51.426709-05 \N \N 502 4 230 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N -472 111 2020-09-29 09:26:51-05 \N \N 503 4 230 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:59:14.478747-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N +471 111 2020-10-27 09:26:51.426709-05 \N \N 502 4 230 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 103 \N 0 \N \N +472 111 2020-09-29 09:26:51-05 \N \N 503 4 230 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:59:14.478747-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 113 \N 0 \N \N 473 111 2020-10-27 07:26:51-05 \N \N 504 4 230 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:59:15.278514-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 118 \N 0 \N \N -474 111 2020-10-13 09:26:51.426709-05 \N \N 505 4 230 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N -475 124 2020-10-27 09:26:51-05 \N \N 506 4 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:59:26.790688-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N +474 111 2020-10-13 09:26:51.426709-05 \N \N 505 4 230 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 123 \N 0 \N \N +475 124 2020-10-27 09:26:51-05 \N \N 506 4 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:59:26.790688-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 127 \N 0 \N \N 476 124 2020-10-27 09:26:51-05 \N \N 507 4 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:59:27.690395-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 132 \N 0 \N \N -477 124 2020-10-27 09:26:51.426709-05 \N \N 508 4 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N -478 124 2020-09-29 09:26:51-05 \N \N 509 4 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 02:59:38.106512-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N +477 124 2020-10-27 09:26:51.426709-05 \N \N 508 4 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 136 \N 0 \N \N +478 124 2020-09-29 09:26:51-05 \N \N 509 4 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 02:59:38.106512-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 137 \N 0 \N \N 479 124 2020-10-27 07:26:51-05 \N \N 510 4 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 02:59:38.886021-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 146 \N 0 \N \N -480 124 2020-10-13 09:26:51.426709-05 \N \N 511 4 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N -481 112 2020-10-27 09:26:51-05 \N \N 512 4 220 \N \N 2 1 day 2020-11-11 01:59:59-06 2021-08-06 02:59:49.911611-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N +480 124 2020-10-13 09:26:51.426709-05 \N \N 511 4 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 152 \N 0 \N \N +481 112 2020-10-27 09:26:51-05 \N \N 512 4 220 \N \N 2 1 day 2020-11-11 23:59:59-06 2021-08-06 02:59:49.911611-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 102 \N 0 \N \N 482 112 2020-10-27 09:26:51-05 \N \N 513 4 220 \N \N 2 1 day 2020-10-27 10:26:51-05 2021-08-06 02:59:50.695451-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 103 \N 0 \N \N -483 112 2020-10-27 09:26:51.426709-05 \N \N 514 4 220 \N \N 0 1 day 2020-11-04 01:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N -484 112 2020-09-29 09:26:51-05 \N \N 515 4 220 \N \N 2 1 day 2020-10-14 01:59:59-05 2021-08-06 03:00:00.929068-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N +483 112 2020-10-27 09:26:51.426709-05 \N \N 514 4 220 \N \N 0 1 day 2020-11-04 23:59:59-06 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 113 \N 0 \N \N +484 112 2020-09-29 09:26:51-05 \N \N 515 4 220 \N \N 2 1 day 2020-10-14 23:59:59-05 2021-08-06 03:00:00.929068-05 \N 2020-10-27 09:26:51-05 14 days 1 day 0.10 5.00 0 0 0 default default default MAXFINES \N \N 118 \N 0 \N \N 485 112 2020-10-27 07:26:51-05 \N \N 516 4 220 \N \N 2 1 day 2020-10-27 08:26:51-05 2021-08-06 03:00:01.880444-05 \N 2020-10-27 09:26:51-05 01:00:00 1 day 0.10 5.00 0 0 0 1_hour_2_renew default overdue_min MAXFINES \N \N 123 \N 0 \N \N -486 112 2020-10-13 09:26:51.426709-05 \N \N 517 4 220 \N \N 0 1 day 2020-10-21 01:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N +486 112 2020-10-13 09:26:51.426709-05 \N \N 517 4 220 \N \N 0 1 day 2020-10-21 23:59:59-05 \N \N 2020-10-27 09:26:51.426709-05 7 days 1 day 0.10 100.00 0 0 0 7_days_0_renew default overdue_max \N \N \N 127 \N 0 \N \N \. diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.hold_copy_map.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.hold_copy_map.sql index e66e444b71..6282ca2e8e 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.hold_copy_map.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.hold_copy_map.sql @@ -1,3363 +1,3363 @@ COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1065720 1 502 2 -1065721 1 2202 4 -1065722 1 2702 5 -1065723 1 902 5 -1065724 1 2902 0 -1065725 1 1102 0 -1065726 1 1402 5 -1065727 1 1002 2 -1065728 1 1502 2 -1065729 1 1902 5 -1065730 1 402 5 -1065731 1 1702 4 -1065732 1 2402 5 -1065733 1 2102 0 -1065734 1 102 0 -1065735 1 1602 0 -1065736 1 1202 4 -1065737 1 3002 5 -1065738 1 2802 2 -1065739 1 702 4 -1065740 1 2002 2 -1065741 1 2602 0 -1065742 1 202 4 -1065743 1 2502 2 -1065744 1 602 0 -1065745 2 1903 5 -1065746 2 903 5 -1065747 2 2603 0 -1065748 2 2903 0 -1065749 2 1503 2 -1065750 2 303 4 -1065751 2 2803 2 -1065752 2 2003 2 -1065753 2 3003 5 -1065754 2 2403 5 -1065755 2 103 0 -1065756 2 403 5 -1065757 2 1603 0 -1065758 2 1003 2 -1065759 2 2303 4 -1065760 2 603 0 -1065761 2 2703 5 -1065762 2 1303 4 -1065763 2 1403 5 -1065764 2 1103 0 -1065765 2 2503 2 -1065766 2 2103 0 -1065767 2 503 2 -1065768 2 803 4 -1065769 2 1803 4 -1065770 4 1205 1 -1065771 4 1705 1 -1065772 4 2205 1 -1065773 4 1005 5 -1065774 4 2905 5 -1065775 4 2405 0 -1065776 4 705 1 -1065777 4 505 5 -1065778 4 2805 5 -1065779 4 405 0 -1065780 4 2705 0 -1065781 4 3005 0 -1065782 4 1405 0 -1065783 4 905 0 -1065784 4 1905 0 -1065785 4 205 1 -1065786 4 2005 5 -1065787 4 1505 5 -1065788 4 2505 5 -1065789 5 3006 0 -1065790 5 706 1 -1065791 5 406 0 -1065792 5 1306 3 -1065793 5 1806 3 -1065794 5 2406 0 -1065795 5 806 3 -1065796 5 1406 0 -1065797 5 1706 1 -1065798 5 506 5 -1065799 5 206 1 -1065800 5 1906 0 -1065801 5 2706 0 -1065802 5 906 0 -1065803 5 2306 3 -1065804 5 2006 5 -1065805 5 2206 1 -1065806 5 1506 5 -1065807 5 306 3 -1065808 5 1206 1 -1065809 5 1006 5 -1065810 7 2208 5 -1065811 7 3008 6 -1065812 7 1108 3 -1065813 7 208 5 -1065814 7 2608 3 -1065815 7 1208 5 -1065816 7 1408 6 -1065817 7 2408 6 -1065818 7 408 6 -1065819 7 608 3 -1065820 7 108 3 -1065821 7 908 6 -1065822 7 708 5 -1065823 7 1708 5 -1065824 7 2908 3 -1065825 7 2708 6 -1065826 7 1908 6 -1065827 7 1608 3 -1065828 7 2108 3 -1065829 8 409 6 -1065830 8 1209 5 -1065831 8 1309 5 -1065832 8 709 5 -1065833 8 609 3 -1065834 8 2709 6 -1065835 8 809 5 -1065836 8 1909 6 -1065837 8 1409 6 -1065838 8 2409 6 -1065839 8 2609 3 -1065840 8 2909 3 -1065841 8 209 5 -1065842 8 1109 3 -1065843 8 909 6 -1065844 8 2109 3 -1065845 8 109 3 -1065846 8 1809 5 -1065847 8 1709 5 -1065848 8 3009 6 -1065849 8 2209 5 -1065850 8 1609 3 -1065851 8 309 5 -1065852 8 2309 5 -1065853 10 2712 3 -1065854 10 312 0 -1065855 10 2512 4 -1065856 10 2412 3 -1065857 10 1312 0 -1065858 10 1812 0 -1065859 10 2812 4 -1065860 10 712 2 -1065861 10 1212 2 -1065862 10 1112 4 -1065863 10 3012 3 -1065864 10 2912 4 -1065865 10 1412 3 -1065866 10 2112 4 -1065867 10 812 0 -1065868 10 612 4 -1065869 10 1912 3 -1065870 10 1712 2 -1065871 10 212 2 -1065872 10 1612 4 -1065873 10 2612 4 -1065874 10 912 3 -1065875 10 2312 0 -1065876 10 2212 2 -1065877 10 412 3 -1065878 10 112 4 -1065879 11 2413 3 -1065880 11 513 4 -1065881 11 2813 4 -1065882 11 613 4 -1065883 11 913 3 -1065884 11 1113 4 -1065885 11 1513 4 -1065886 11 2913 4 -1065887 11 3013 3 -1065888 11 413 3 -1065889 11 2113 4 -1065890 11 2613 4 -1065891 11 1413 3 -1065892 11 113 4 -1065893 11 2013 4 -1065894 11 2713 3 -1065895 11 1013 4 -1065896 11 1613 4 -1065897 11 2513 4 -1065898 11 1913 3 -1065899 13 115 5 -1065900 13 1415 0 -1065901 13 1315 3 -1065902 13 1215 1 -1065903 13 615 5 -1065904 13 2015 5 -1065905 13 515 5 -1065906 13 415 0 -1065907 13 1515 5 -1065908 13 315 3 -1065909 13 1915 0 -1065910 13 15 5 -1065911 13 1815 3 -1065912 13 215 1 -1065913 13 2115 5 -1065914 13 3105 5 -1065915 13 3015 0 -1065916 13 915 0 -1065917 13 715 1 -1065918 13 1015 5 -1065919 13 2515 5 -1065920 13 1715 1 -1065921 13 2715 0 -1065922 13 1115 5 -1065923 13 1615 5 -1065924 13 2415 0 -1065925 13 2815 5 -1065926 13 2215 1 -1065927 13 815 3 -1065928 13 2315 3 -1065929 14 1516 5 -1065930 14 2716 0 -1065931 14 3016 0 -1065932 14 1416 0 -1065933 14 1916 0 -1065934 14 1816 3 -1065935 14 2316 3 -1065936 14 2216 1 -1065937 14 216 1 -1065938 14 516 5 -1065939 14 2416 0 -1065940 14 1216 1 -1065941 14 1016 5 -1065942 14 2016 5 -1065943 14 1316 3 -1065944 14 1716 1 -1065945 14 316 3 -1065946 14 916 0 -1065947 14 716 1 -1065948 14 816 3 -1065949 14 2816 5 -1065950 14 2516 5 -1065951 14 416 0 -1065952 16 2618 5 -1065953 16 918 0 -1065954 16 1418 0 -1065955 16 1718 1 -1065956 16 3018 0 -1065957 16 1818 3 -1065958 16 218 1 -1065959 16 2418 0 -1065960 16 2318 3 -1065961 16 1918 0 -1065962 16 2918 5 -1065963 16 2218 1 -1065964 16 718 1 -1065965 16 1218 1 -1065966 16 818 3 -1065967 16 2718 0 -1065968 16 418 0 -1065969 16 1318 3 -1065970 16 318 3 -1065971 17 2619 5 -1065972 17 719 1 -1065973 17 419 0 -1065974 17 2219 1 -1065975 17 1919 0 -1065976 17 1619 5 -1065977 17 119 5 -1065978 17 619 5 -1065979 17 3019 0 -1065980 17 1719 1 -1065981 17 2119 5 -1065982 17 1419 0 -1065983 17 219 1 -1065984 17 2719 0 -1065985 17 919 0 -1065986 17 1219 1 -1065987 17 2419 0 -1065988 17 1119 5 -1065989 17 2919 5 -1065990 19 3022 3 -1065991 19 822 0 -1065992 19 1322 0 -1065993 19 2422 3 -1065994 19 1022 4 -1065995 19 1422 3 -1065996 19 1122 4 -1065997 19 1922 3 -1065998 19 422 3 -1065999 19 222 2 -1066000 19 2122 4 -1066001 19 2922 4 -1066002 19 1522 4 -1066003 19 2722 3 -1066004 19 2222 2 -1066005 19 1822 0 -1066006 19 1722 2 -1066007 19 2622 4 -1066008 19 2322 0 -1066009 19 322 0 -1066010 19 22 4 -1066011 19 1222 2 -1066012 19 622 4 -1066013 19 122 4 -1066014 19 1622 4 -1066015 19 522 4 -1066016 19 922 3 -1066017 19 722 2 -1066018 19 2022 4 -1066019 20 1123 4 -1066020 20 2523 4 -1066021 20 2423 3 -1066022 20 423 3 -1066023 20 123 4 -1066024 20 2623 4 -1066025 20 623 4 -1066026 20 923 3 -1066027 20 1623 4 -1066028 20 3023 3 -1066029 20 2923 4 -1066030 20 2823 4 -1066031 20 1423 3 -1066032 20 1923 3 -1066033 20 2723 3 -1066034 20 2123 4 -1066035 22 1625 3 -1066036 22 525 1 -1066037 22 1925 6 -1066038 22 2225 5 -1066039 22 2025 1 -1066040 22 425 6 -1066041 22 725 5 -1066042 22 1225 5 -1066043 22 925 6 -1066044 22 2425 6 -1066045 22 2125 3 -1066046 22 625 3 -1066047 22 2725 6 -1066048 22 1425 6 -1066049 22 3025 6 -1066050 22 1525 1 -1066051 22 2625 3 -1066052 22 2525 1 -1066053 22 1025 1 -1066054 22 125 3 -1066055 22 1725 5 -1066056 22 2925 3 -1066057 22 2825 1 -1066058 22 1125 3 -1066059 22 225 5 -1066060 22 25 1 -1066061 23 2526 1 -1066062 23 2826 1 -1066063 23 2126 3 -1066064 23 526 1 -1066065 23 426 6 -1066066 23 1026 1 -1066067 23 926 6 -1066068 23 1526 1 -1066069 23 26 1 -1066070 23 2426 6 -1066071 23 226 5 -1066072 23 626 3 -1066073 23 2726 6 -1066074 23 1426 6 -1066075 23 2226 5 -1066076 23 126 3 -1066077 23 1226 5 -1066078 23 726 5 -1066079 23 2026 1 -1066080 23 1126 3 -1066081 23 1926 6 -1066082 23 3026 6 -1066083 23 1726 5 -1066084 23 1626 3 -1066085 25 428 0 -1066086 25 2228 1 -1066087 25 1928 0 -1066088 25 28 5 -1066089 25 3028 0 -1066090 25 1728 1 -1066091 25 1528 5 -1066092 25 1428 0 -1066093 25 2428 0 -1066094 25 1328 3 -1066095 25 2728 0 -1066096 25 928 0 -1066097 25 228 1 -1066098 25 1828 3 -1066099 25 2328 3 -1066100 25 728 1 -1066101 25 528 5 -1066102 25 1028 5 -1066103 25 828 3 -1066104 25 1228 1 -1066105 25 2028 5 -1066106 25 328 3 -1066107 26 2630 5 -1066108 26 2730 0 -1066109 26 2930 5 -1066110 26 2130 5 -1066111 26 630 5 -1066112 26 1630 5 -1066113 26 1330 3 -1066114 26 1130 5 -1066115 26 130 5 -1066116 26 2430 0 -1066117 26 830 3 -1066118 26 430 0 -1066119 26 1730 1 -1066120 26 930 0 -1066121 26 3030 0 -1066122 26 330 3 -1066123 26 2230 1 -1066124 26 1830 3 -1066125 26 2330 3 -1066126 26 730 1 -1066127 26 1230 1 -1066128 26 230 1 -1066129 26 1430 0 -1066130 26 1930 0 -1066131 28 1732 2 -1066132 28 1432 3 -1066133 28 2832 4 -1066134 28 1632 4 -1066135 28 2932 4 -1066136 28 2632 4 -1066137 28 3032 3 -1066138 28 1932 3 -1066139 28 2432 3 -1066140 28 432 3 -1066141 28 732 2 -1066142 28 632 4 -1066143 28 132 4 -1066144 28 1232 2 -1066145 28 932 3 -1066146 28 2132 4 -1066147 28 2232 2 -1066148 28 232 2 -1066149 28 1132 4 -1066150 28 2732 3 -1066151 28 2532 4 -1066152 29 2633 4 -1066153 29 2433 3 -1066154 29 33 4 -1066155 29 933 3 -1066156 29 1933 3 -1066157 29 333 0 -1066158 29 133 4 -1066159 29 533 4 -1066160 29 3033 3 -1066161 29 633 4 -1066162 29 1333 0 -1066163 29 1833 0 -1066164 29 1033 4 -1066165 29 1533 4 -1066166 29 433 3 -1066167 29 833 0 -1066168 29 2733 3 -1066169 29 2033 4 -1066170 29 2133 4 -1066171 29 1433 3 -1066172 29 2933 4 -1066173 29 1633 4 -1066174 29 2333 0 -1066175 29 1133 4 -1066176 31 3035 1 -1066177 31 2035 4 -1066178 31 2435 1 -1066179 31 1735 0 -1066180 31 635 4 -1066181 31 2735 1 -1066182 31 35 4 -1066183 31 1435 1 -1066184 31 2135 4 -1066185 31 1935 1 -1066186 31 135 4 -1066187 31 1235 0 -1066188 31 2235 0 -1066189 31 235 0 -1066190 31 2835 4 -1066191 31 1135 4 -1066192 31 1035 4 -1066193 31 1535 4 -1066194 31 1635 4 -1066195 31 535 4 -1066196 31 2535 4 -1066197 31 2635 4 -1066198 31 935 1 -1066199 31 2935 4 -1066200 31 435 1 -1066201 31 735 0 -1066202 32 3029 1 -1066203 32 2629 4 -1066204 32 1929 1 -1066205 32 729 0 -1066206 32 929 1 -1066207 32 1429 1 -1066208 32 2429 1 -1066209 32 2729 1 -1066210 32 2929 4 -1066211 32 429 1 -1066212 32 1229 0 -1066213 32 2229 0 -1066214 32 229 0 -1066215 32 1729 0 -1066216 34 1037 2 -1066217 34 737 4 -1066218 34 2837 2 -1066219 34 1137 0 +1065720 1 502 \N +1065721 1 2202 \N +1065722 1 2702 \N +1065723 1 902 \N +1065724 1 2902 \N +1065725 1 1102 \N +1065726 1 1402 \N +1065727 1 1002 \N +1065728 1 1502 \N +1065729 1 1902 \N +1065730 1 402 \N +1065731 1 1702 \N +1065732 1 2402 \N +1065733 1 2102 \N +1065734 1 102 \N +1065735 1 1602 \N +1065736 1 1202 \N +1065737 1 3002 \N +1065738 1 2802 \N +1065739 1 702 \N +1065740 1 2002 \N +1065741 1 2602 \N +1065742 1 202 \N +1065743 1 2502 \N +1065744 1 602 \N +1065745 2 1903 \N +1065746 2 903 \N +1065747 2 2603 \N +1065748 2 2903 \N +1065749 2 1503 \N +1065750 2 303 \N +1065751 2 2803 \N +1065752 2 2003 \N +1065753 2 3003 \N +1065754 2 2403 \N +1065755 2 103 \N +1065756 2 403 \N +1065757 2 1603 \N +1065758 2 1003 \N +1065759 2 2303 \N +1065760 2 603 \N +1065761 2 2703 \N +1065762 2 1303 \N +1065763 2 1403 \N +1065764 2 1103 \N +1065765 2 2503 \N +1065766 2 2103 \N +1065767 2 503 \N +1065768 2 803 \N +1065769 2 1803 \N +1065770 4 1205 \N +1065771 4 1705 \N +1065772 4 2205 \N +1065773 4 1005 \N +1065774 4 2905 \N +1065775 4 2405 \N +1065776 4 705 \N +1065777 4 505 \N +1065778 4 2805 \N +1065779 4 405 \N +1065780 4 2705 \N +1065781 4 3005 \N +1065782 4 1405 \N +1065783 4 905 \N +1065784 4 1905 \N +1065785 4 205 \N +1065786 4 2005 \N +1065787 4 1505 \N +1065788 4 2505 \N +1065789 5 3006 \N +1065790 5 706 \N +1065791 5 406 \N +1065792 5 1306 \N +1065793 5 1806 \N +1065794 5 2406 \N +1065795 5 806 \N +1065796 5 1406 \N +1065797 5 1706 \N +1065798 5 506 \N +1065799 5 206 \N +1065800 5 1906 \N +1065801 5 2706 \N +1065802 5 906 \N +1065803 5 2306 \N +1065804 5 2006 \N +1065805 5 2206 \N +1065806 5 1506 \N +1065807 5 306 \N +1065808 5 1206 \N +1065809 5 1006 \N +1065810 7 2208 \N +1065811 7 3008 \N +1065812 7 1108 \N +1065813 7 208 \N +1065814 7 2608 \N +1065815 7 1208 \N +1065816 7 1408 \N +1065817 7 2408 \N +1065818 7 408 \N +1065819 7 608 \N +1065820 7 108 \N +1065821 7 908 \N +1065822 7 708 \N +1065823 7 1708 \N +1065824 7 2908 \N +1065825 7 2708 \N +1065826 7 1908 \N +1065827 7 1608 \N +1065828 7 2108 \N +1065829 8 409 \N +1065830 8 1209 \N +1065831 8 1309 \N +1065832 8 709 \N +1065833 8 609 \N +1065834 8 2709 \N +1065835 8 809 \N +1065836 8 1909 \N +1065837 8 1409 \N +1065838 8 2409 \N +1065839 8 2609 \N +1065840 8 2909 \N +1065841 8 209 \N +1065842 8 1109 \N +1065843 8 909 \N +1065844 8 2109 \N +1065845 8 109 \N +1065846 8 1809 \N +1065847 8 1709 \N +1065848 8 3009 \N +1065849 8 2209 \N +1065850 8 1609 \N +1065851 8 309 \N +1065852 8 2309 \N +1065853 10 2712 \N +1065854 10 312 \N +1065855 10 2512 \N +1065856 10 2412 \N +1065857 10 1312 \N +1065858 10 1812 \N +1065859 10 2812 \N +1065860 10 712 \N +1065861 10 1212 \N +1065862 10 1112 \N +1065863 10 3012 \N +1065864 10 2912 \N +1065865 10 1412 \N +1065866 10 2112 \N +1065867 10 812 \N +1065868 10 612 \N +1065869 10 1912 \N +1065870 10 1712 \N +1065871 10 212 \N +1065872 10 1612 \N +1065873 10 2612 \N +1065874 10 912 \N +1065875 10 2312 \N +1065876 10 2212 \N +1065877 10 412 \N +1065878 10 112 \N +1065879 11 2413 \N +1065880 11 513 \N +1065881 11 2813 \N +1065882 11 613 \N +1065883 11 913 \N +1065884 11 1113 \N +1065885 11 1513 \N +1065886 11 2913 \N +1065887 11 3013 \N +1065888 11 413 \N +1065889 11 2113 \N +1065890 11 2613 \N +1065891 11 1413 \N +1065892 11 113 \N +1065893 11 2013 \N +1065894 11 2713 \N +1065895 11 1013 \N +1065896 11 1613 \N +1065897 11 2513 \N +1065898 11 1913 \N +1065899 13 115 \N +1065900 13 1415 \N +1065901 13 1315 \N +1065902 13 1215 \N +1065903 13 615 \N +1065904 13 2015 \N +1065905 13 515 \N +1065906 13 415 \N +1065907 13 1515 \N +1065908 13 315 \N +1065909 13 1915 \N +1065910 13 15 \N +1065911 13 1815 \N +1065912 13 215 \N +1065913 13 2115 \N +1065914 13 3105 \N +1065915 13 3015 \N +1065916 13 915 \N +1065917 13 715 \N +1065918 13 1015 \N +1065919 13 2515 \N +1065920 13 1715 \N +1065921 13 2715 \N +1065922 13 1115 \N +1065923 13 1615 \N +1065924 13 2415 \N +1065925 13 2815 \N +1065926 13 2215 \N +1065927 13 815 \N +1065928 13 2315 \N +1065929 14 1516 \N +1065930 14 2716 \N +1065931 14 3016 \N +1065932 14 1416 \N +1065933 14 1916 \N +1065934 14 1816 \N +1065935 14 2316 \N +1065936 14 2216 \N +1065937 14 216 \N +1065938 14 516 \N +1065939 14 2416 \N +1065940 14 1216 \N +1065941 14 1016 \N +1065942 14 2016 \N +1065943 14 1316 \N +1065944 14 1716 \N +1065945 14 316 \N +1065946 14 916 \N +1065947 14 716 \N +1065948 14 816 \N +1065949 14 2816 \N +1065950 14 2516 \N +1065951 14 416 \N +1065952 16 2618 \N +1065953 16 918 \N +1065954 16 1418 \N +1065955 16 1718 \N +1065956 16 3018 \N +1065957 16 1818 \N +1065958 16 218 \N +1065959 16 2418 \N +1065960 16 2318 \N +1065961 16 1918 \N +1065962 16 2918 \N +1065963 16 2218 \N +1065964 16 718 \N +1065965 16 1218 \N +1065966 16 818 \N +1065967 16 2718 \N +1065968 16 418 \N +1065969 16 1318 \N +1065970 16 318 \N +1065971 17 2619 \N +1065972 17 719 \N +1065973 17 419 \N +1065974 17 2219 \N +1065975 17 1919 \N +1065976 17 1619 \N +1065977 17 119 \N +1065978 17 619 \N +1065979 17 3019 \N +1065980 17 1719 \N +1065981 17 2119 \N +1065982 17 1419 \N +1065983 17 219 \N +1065984 17 2719 \N +1065985 17 919 \N +1065986 17 1219 \N +1065987 17 2419 \N +1065988 17 1119 \N +1065989 17 2919 \N +1065990 19 3022 \N +1065991 19 822 \N +1065992 19 1322 \N +1065993 19 2422 \N +1065994 19 1022 \N +1065995 19 1422 \N +1065996 19 1122 \N +1065997 19 1922 \N +1065998 19 422 \N +1065999 19 222 \N +1066000 19 2122 \N +1066001 19 2922 \N +1066002 19 1522 \N +1066003 19 2722 \N +1066004 19 2222 \N +1066005 19 1822 \N +1066006 19 1722 \N +1066007 19 2622 \N +1066008 19 2322 \N +1066009 19 322 \N +1066010 19 22 \N +1066011 19 1222 \N +1066012 19 622 \N +1066013 19 122 \N +1066014 19 1622 \N +1066015 19 522 \N +1066016 19 922 \N +1066017 19 722 \N +1066018 19 2022 \N +1066019 20 1123 \N +1066020 20 2523 \N +1066021 20 2423 \N +1066022 20 423 \N +1066023 20 123 \N +1066024 20 2623 \N +1066025 20 623 \N +1066026 20 923 \N +1066027 20 1623 \N +1066028 20 3023 \N +1066029 20 2923 \N +1066030 20 2823 \N +1066031 20 1423 \N +1066032 20 1923 \N +1066033 20 2723 \N +1066034 20 2123 \N +1066035 22 1625 \N +1066036 22 525 \N +1066037 22 1925 \N +1066038 22 2225 \N +1066039 22 2025 \N +1066040 22 425 \N +1066041 22 725 \N +1066042 22 1225 \N +1066043 22 925 \N +1066044 22 2425 \N +1066045 22 2125 \N +1066046 22 625 \N +1066047 22 2725 \N +1066048 22 1425 \N +1066049 22 3025 \N +1066050 22 1525 \N +1066051 22 2625 \N +1066052 22 2525 \N +1066053 22 1025 \N +1066054 22 125 \N +1066055 22 1725 \N +1066056 22 2925 \N +1066057 22 2825 \N +1066058 22 1125 \N +1066059 22 225 \N +1066060 22 25 \N +1066061 23 2526 \N +1066062 23 2826 \N +1066063 23 2126 \N +1066064 23 526 \N +1066065 23 426 \N +1066066 23 1026 \N +1066067 23 926 \N +1066068 23 1526 \N +1066069 23 26 \N +1066070 23 2426 \N +1066071 23 226 \N +1066072 23 626 \N +1066073 23 2726 \N +1066074 23 1426 \N +1066075 23 2226 \N +1066076 23 126 \N +1066077 23 1226 \N +1066078 23 726 \N +1066079 23 2026 \N +1066080 23 1126 \N +1066081 23 1926 \N +1066082 23 3026 \N +1066083 23 1726 \N +1066084 23 1626 \N +1066085 25 428 \N +1066086 25 2228 \N +1066087 25 1928 \N +1066088 25 28 \N +1066089 25 3028 \N +1066090 25 1728 \N +1066091 25 1528 \N +1066092 25 1428 \N +1066093 25 2428 \N +1066094 25 1328 \N +1066095 25 2728 \N +1066096 25 928 \N +1066097 25 228 \N +1066098 25 1828 \N +1066099 25 2328 \N +1066100 25 728 \N +1066101 25 528 \N +1066102 25 1028 \N +1066103 25 828 \N +1066104 25 1228 \N +1066105 25 2028 \N +1066106 25 328 \N +1066107 26 2630 \N +1066108 26 2730 \N +1066109 26 2930 \N +1066110 26 2130 \N +1066111 26 630 \N +1066112 26 1630 \N +1066113 26 1330 \N +1066114 26 1130 \N +1066115 26 130 \N +1066116 26 2430 \N +1066117 26 830 \N +1066118 26 430 \N +1066119 26 1730 \N +1066120 26 930 \N +1066121 26 3030 \N +1066122 26 330 \N +1066123 26 2230 \N +1066124 26 1830 \N +1066125 26 2330 \N +1066126 26 730 \N +1066127 26 1230 \N +1066128 26 230 \N +1066129 26 1430 \N +1066130 26 1930 \N +1066131 28 1732 \N +1066132 28 1432 \N +1066133 28 2832 \N +1066134 28 1632 \N +1066135 28 2932 \N +1066136 28 2632 \N +1066137 28 3032 \N +1066138 28 1932 \N +1066139 28 2432 \N +1066140 28 432 \N +1066141 28 732 \N +1066142 28 632 \N +1066143 28 132 \N +1066144 28 1232 \N +1066145 28 932 \N +1066146 28 2132 \N +1066147 28 2232 \N +1066148 28 232 \N +1066149 28 1132 \N +1066150 28 2732 \N +1066151 28 2532 \N +1066152 29 2633 \N +1066153 29 2433 \N +1066154 29 33 \N +1066155 29 933 \N +1066156 29 1933 \N +1066157 29 333 \N +1066158 29 133 \N +1066159 29 533 \N +1066160 29 3033 \N +1066161 29 633 \N +1066162 29 1333 \N +1066163 29 1833 \N +1066164 29 1033 \N +1066165 29 1533 \N +1066166 29 433 \N +1066167 29 833 \N +1066168 29 2733 \N +1066169 29 2033 \N +1066170 29 2133 \N +1066171 29 1433 \N +1066172 29 2933 \N +1066173 29 1633 \N +1066174 29 2333 \N +1066175 29 1133 \N +1066176 31 3035 \N +1066177 31 2035 \N +1066178 31 2435 \N +1066179 31 1735 \N +1066180 31 635 \N +1066181 31 2735 \N +1066182 31 35 \N +1066183 31 1435 \N +1066184 31 2135 \N +1066185 31 1935 \N +1066186 31 135 \N +1066187 31 1235 \N +1066188 31 2235 \N +1066189 31 235 \N +1066190 31 2835 \N +1066191 31 1135 \N +1066192 31 1035 \N +1066193 31 1535 \N +1066194 31 1635 \N +1066195 31 535 \N +1066196 31 2535 \N +1066197 31 2635 \N +1066198 31 935 \N +1066199 31 2935 \N +1066200 31 435 \N +1066201 31 735 \N +1066202 32 3029 \N +1066203 32 2629 \N +1066204 32 1929 \N +1066205 32 729 \N +1066206 32 929 \N +1066207 32 1429 \N +1066208 32 2429 \N +1066209 32 2729 \N +1066210 32 2929 \N +1066211 32 429 \N +1066212 32 1229 \N +1066213 32 2229 \N +1066214 32 229 \N +1066215 32 1729 \N +1066216 34 1037 \N +1066217 34 737 \N +1066218 34 2837 \N +1066219 34 1137 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1066220 34 2137 0 -1066221 34 937 5 -1066222 34 1637 0 -1066223 34 2437 5 -1066224 34 2537 2 -1066225 34 1237 4 -1066226 34 137 0 -1066227 34 1537 2 -1066228 34 2237 4 -1066229 34 2737 5 -1066230 34 3037 5 -1066231 34 2037 2 -1066232 34 37 2 -1066233 34 1937 5 -1066234 34 637 0 -1066235 34 1437 5 -1066236 34 1737 4 -1066237 34 537 2 -1066238 34 437 5 -1066239 34 237 4 -1066240 35 538 2 -1066241 35 2438 5 -1066242 35 1238 4 -1066243 35 1538 2 -1066244 35 2738 5 -1066245 35 1738 4 -1066246 35 738 4 -1066247 35 2238 4 -1066248 35 38 2 -1066249 35 1038 2 -1066250 35 1938 5 -1066251 35 2838 2 -1066252 35 938 5 -1066253 35 438 5 -1066254 35 2038 2 -1066255 35 1438 5 -1066256 35 3038 5 -1066257 35 2538 2 -1066258 35 238 4 -1066259 37 440 5 -1066260 37 840 4 -1066261 37 2940 2 -1066262 37 2340 4 -1066263 37 1340 4 -1066264 37 740 4 -1066265 37 2240 4 -1066266 37 240 4 -1066267 37 2440 5 -1066268 37 1740 4 -1066269 37 1940 5 -1066270 37 1440 5 -1066271 37 1840 4 -1066272 37 2640 2 -1066273 37 940 5 -1066274 37 2740 5 -1066275 37 340 4 -1066276 37 1240 4 -1066277 37 3040 5 -1066278 38 2141 2 -1066279 38 2641 2 -1066280 38 1441 5 -1066281 38 2741 5 -1066282 38 1241 4 -1066283 38 2241 4 -1066284 38 2941 2 -1066285 38 1941 5 -1066286 38 641 2 -1066287 38 2441 5 -1066288 38 3041 5 -1066289 38 941 5 -1066290 38 741 4 -1066291 38 1141 2 -1066292 38 141 2 -1066293 38 1641 2 -1066294 38 241 4 -1066295 38 1741 4 -1066296 38 441 5 -1066297 40 2543 0 -1066298 40 1443 5 -1066299 40 643 2 -1066300 40 943 5 -1066301 40 2943 2 -1066302 40 2843 0 -1066303 40 443 5 -1066304 40 1643 2 -1066305 40 2443 5 -1066306 40 2643 2 -1066307 40 1943 5 -1066308 40 3043 5 -1066309 40 1143 2 -1066310 40 143 2 -1066311 40 2743 5 -1066312 40 2143 2 -1066313 41 444 5 -1066314 41 1144 2 -1066315 41 1544 0 -1066316 41 944 5 -1066317 41 1644 2 -1066318 41 2644 2 -1066319 41 2044 0 -1066320 41 2944 2 -1066321 41 2144 2 -1066322 41 2744 5 -1066323 41 1444 5 -1066324 41 44 0 -1066325 41 3044 5 -1066326 41 144 2 -1066327 41 1944 5 -1066328 41 644 2 -1066329 41 1044 0 -1066330 41 2444 5 -1066331 41 544 0 -1066332 43 46 5 -1066333 43 2346 3 -1066334 43 346 3 -1066335 43 546 5 -1066336 43 1146 5 -1066337 43 1946 0 -1066338 43 446 0 -1066339 43 1246 1 -1066340 43 2146 5 -1066341 43 1446 0 -1066342 43 1346 3 -1066343 43 1046 5 -1066344 43 2546 5 -1066345 43 146 5 -1066346 43 2846 5 -1066347 43 846 3 -1066348 43 246 1 -1066349 43 2646 5 -1066350 43 2446 0 -1066351 43 2746 0 -1066352 43 1646 5 -1066353 43 2046 5 -1066354 43 746 1 -1066355 43 2246 1 -1066356 43 946 0 -1066357 43 1846 3 -1066358 43 1746 1 -1066359 43 646 5 -1066360 43 1546 5 -1066361 43 3046 0 -1066362 43 2946 5 -1066363 44 1547 5 -1066364 44 1147 5 -1066365 44 447 0 -1066366 44 547 5 -1066367 44 1047 5 -1066368 44 2147 5 -1066369 44 2447 0 -1066370 44 747 1 -1066371 44 1947 0 -1066372 44 247 1 -1066373 44 2647 5 -1066374 44 947 0 -1066375 44 1447 0 -1066376 44 1647 5 -1066377 44 2947 5 -1066378 44 2547 5 -1066379 44 47 5 -1066380 44 647 5 -1066381 44 2247 1 -1066382 44 147 5 -1066383 44 3047 0 -1066384 44 2847 5 -1066385 44 2747 0 -1066386 44 1247 1 -1066387 44 1747 1 -1066388 44 2047 5 -1066389 46 749 5 -1066390 46 949 6 -1066391 46 1249 5 -1066392 46 1549 1 -1066393 46 1949 6 -1066394 46 3049 6 -1066395 46 49 1 -1066396 46 1749 5 -1066397 46 1049 1 -1066398 46 2449 6 -1066399 46 2849 1 -1066400 46 1449 6 -1066401 46 449 6 -1066402 46 2749 6 -1066403 46 2549 1 -1066404 46 249 5 -1066405 46 549 1 -1066406 46 2249 5 -1066407 46 2049 1 -1066408 47 50 1 -1066409 47 3050 6 -1066410 47 1050 1 -1066411 47 950 6 -1066412 47 550 1 -1066413 47 1450 6 -1066414 47 1250 5 -1066415 47 250 5 -1066416 47 450 6 -1066417 47 2750 6 -1066418 47 1750 5 -1066419 47 1950 6 -1066420 47 2050 1 -1066421 47 2450 6 -1066422 47 2250 5 -1066423 47 750 5 -1066424 47 1550 1 -1066425 49 152 2 -1066426 49 1752 4 -1066427 49 1152 2 -1066428 49 2752 5 -1066429 49 1852 4 -1066430 49 1652 2 -1066431 49 952 5 -1066432 49 352 4 -1066433 49 1252 4 -1066434 49 1452 5 -1066435 49 2152 2 -1066436 49 2452 5 -1066437 49 652 2 -1066438 49 3052 5 -1066439 49 2952 2 -1066440 49 2652 2 -1066441 49 1952 5 -1066442 49 2252 4 -1066443 49 252 4 -1066444 49 852 4 -1066445 49 1352 4 -1066446 49 752 4 -1066447 49 452 5 -1066448 49 2352 4 -1066449 50 2653 2 -1066450 50 2153 2 -1066451 50 153 2 -1066452 50 2953 2 -1066453 50 653 2 -1066454 50 1953 5 -1066455 50 453 5 -1066456 50 3053 5 -1066457 50 953 5 -1066458 50 2453 5 -1066459 50 2753 5 -1066460 50 1653 2 -1066461 50 1153 2 -1066462 50 1453 5 -1066463 52 655 5 -1066464 52 1155 5 -1066465 52 755 1 -1066466 52 1555 5 -1066467 52 455 0 -1066468 52 3055 0 -1066469 52 955 0 -1066470 52 2955 5 -1066471 52 555 5 -1066472 52 1955 0 -1066473 52 1255 1 -1066474 52 2055 5 -1066475 52 1655 5 -1066476 52 2155 5 -1066477 52 2655 5 -1066478 52 155 5 -1066479 52 2755 0 -1066480 52 2455 0 -1066481 52 1455 0 -1066482 52 1755 1 -1066483 52 1055 5 -1066484 52 2255 1 -1066485 52 255 1 -1066486 52 55 5 -1066487 53 2156 5 -1066488 53 656 5 -1066489 53 2556 5 -1066490 53 956 0 -1066491 53 1456 0 -1066492 53 156 5 -1066493 53 2856 5 -1066494 53 756 1 -1066495 53 1656 5 -1066496 53 1156 5 -1066497 53 3056 0 -1066498 53 456 0 -1066499 53 2656 5 -1066500 53 1256 1 -1066501 53 2756 0 -1066502 53 2456 0 -1066503 53 2956 5 -1066504 53 1756 1 -1066505 53 1956 0 -1066506 53 2256 1 -1066507 53 256 1 -1066508 55 3058 6 -1066509 55 2658 3 -1066510 55 358 5 -1066511 55 2958 3 -1066512 55 58 1 -1066513 55 958 6 -1066514 55 2258 5 -1066515 55 2158 3 -1066516 55 558 1 -1066517 55 1058 1 -1066518 55 2058 1 -1066519 55 2558 1 -1066520 55 658 3 -1066521 55 458 6 -1066522 55 858 5 -1066523 55 2458 6 -1066524 55 1358 5 -1066525 55 758 5 -1066526 55 1158 3 -1066527 55 1258 5 -1066528 55 2358 5 -1066529 55 258 5 -1066530 55 1558 1 -1066531 55 1858 5 -1066532 55 1458 6 -1066533 55 1758 5 -1066534 55 1958 6 -1066535 55 2758 6 -1066536 55 2858 1 -1066537 55 158 3 -1066538 55 1658 3 -1066539 56 1259 5 -1066540 56 1559 1 -1066541 56 1759 5 -1066542 56 259 5 -1066543 56 2759 6 -1066544 56 1659 3 -1066545 56 1059 1 -1066546 56 2459 6 -1066547 56 1159 3 -1066548 56 3059 6 -1066549 56 2859 1 -1066550 56 459 6 -1066551 56 59 1 -1066552 56 1459 6 -1066553 56 659 3 -1066554 56 1959 6 -1066555 56 759 5 -1066556 56 2559 1 -1066557 56 959 6 -1066558 56 2059 1 -1066559 56 159 3 -1066560 56 559 1 -1066561 56 2259 5 -1066562 56 2159 3 -1066563 58 3061 5 -1066564 58 61 2 -1066565 58 461 5 -1066566 58 561 2 -1066567 58 1261 4 -1066568 58 2061 2 -1066569 58 2461 5 -1066570 58 1461 5 -1066571 58 761 4 -1066572 58 1761 4 -1066573 58 1061 2 -1066574 58 1561 2 -1066575 58 2761 5 -1066576 58 961 5 -1066577 58 1961 5 -1066578 58 2261 4 -1066579 58 261 4 -1066580 59 962 5 -1066581 59 1762 4 -1066582 59 2962 0 -1066583 59 2762 5 -1066584 59 462 5 -1066585 59 1462 5 -1066586 59 1962 5 -1066587 59 2262 4 -1066588 59 262 4 -1066589 59 1262 4 -1066590 59 762 4 -1066591 59 3062 5 -1066592 59 2462 5 -1066593 59 2662 0 -1066594 61 1364 4 -1066595 61 2464 5 -1066596 61 864 4 -1066597 61 964 5 -1066598 61 1464 5 -1066599 61 2364 4 -1066600 61 664 0 -1066601 61 3064 5 -1066602 61 364 4 -1066603 61 2764 5 -1066604 61 1964 5 -1066605 61 2164 0 -1066606 61 164 0 -1066607 61 2964 0 -1066608 61 2664 0 -1066609 61 1164 0 -1066610 61 1664 0 -1066611 61 1864 4 -1066612 61 464 5 -1066613 62 2665 0 -1066614 62 1265 4 -1066615 62 2965 0 -1066616 62 1665 0 -1066617 62 2265 4 -1066618 62 1465 5 -1066619 62 465 5 -1066620 62 1165 0 -1066621 62 1765 4 -1066622 62 2465 5 -1066623 62 965 5 -1066624 62 2865 2 -1066625 62 265 4 -1066626 62 665 0 -1066627 62 2165 0 -1066628 62 2765 5 -1066629 62 3065 5 -1066630 62 765 4 -1066631 62 1965 5 -1066632 62 2565 2 -1066633 62 165 0 -1066634 64 1967 6 -1066635 64 467 6 -1066636 64 2767 6 -1066637 64 2667 3 -1066638 64 967 6 -1066639 64 1767 5 -1066640 64 267 5 -1066641 64 767 5 -1066642 64 2267 5 -1066643 64 2967 3 -1066644 64 1667 3 -1066645 64 3067 6 -1066646 64 2867 1 -1066647 64 2167 3 -1066648 64 667 3 -1066649 64 167 3 -1066650 64 2567 1 -1066651 64 1467 6 -1066652 64 2467 6 -1066653 64 1167 3 -1066654 64 1267 5 -1066655 65 968 6 -1066656 65 2568 1 -1066657 65 1468 6 -1066658 65 2068 1 -1066659 65 668 3 -1066660 65 168 3 -1066661 65 2868 1 -1066662 65 268 5 -1066663 65 768 5 -1066664 65 1068 1 -1066665 65 2768 6 -1066666 65 2468 6 -1066667 65 1568 1 -1066668 65 2668 3 -1066669 65 568 1 -1066670 65 2968 3 -1066671 65 3068 6 -1066672 65 1168 3 -1066673 65 1668 3 -1066674 65 468 6 -1066675 65 1768 5 -1066676 65 2168 3 -1066677 65 68 1 -1066678 65 1968 6 -1066679 65 1268 5 -1066680 65 2268 5 -1066681 67 370 4 -1066682 67 2070 0 -1066683 67 1870 4 -1066684 67 1370 4 -1066685 67 1170 2 -1066686 67 570 0 -1066687 67 2870 0 -1066688 67 2270 4 -1066689 67 3070 5 -1066690 67 1570 0 -1066691 67 1970 5 -1066692 67 470 5 -1066693 67 2470 5 -1066694 67 1270 4 -1066695 67 1070 0 -1066696 67 2370 4 -1066697 67 1470 5 -1066698 67 270 4 -1066699 67 2770 5 -1066700 67 670 2 -1066701 67 2170 2 -1066702 67 970 5 -1066703 67 770 4 -1066704 67 870 4 -1066705 67 1670 2 -1066706 67 2570 0 -1066707 67 1770 4 -1066708 67 170 2 -1066709 67 70 0 -1066710 68 971 5 -1066711 68 2071 0 -1066712 68 2271 4 -1066713 68 2471 5 -1066714 68 2871 0 -1066715 68 1271 4 -1066716 68 471 5 -1066717 68 1971 5 -1066718 68 3071 5 -1066719 68 2571 0 +1066220 34 2137 \N +1066221 34 937 \N +1066222 34 1637 \N +1066223 34 2437 \N +1066224 34 2537 \N +1066225 34 1237 \N +1066226 34 137 \N +1066227 34 1537 \N +1066228 34 2237 \N +1066229 34 2737 \N +1066230 34 3037 \N +1066231 34 2037 \N +1066232 34 37 \N +1066233 34 1937 \N +1066234 34 637 \N +1066235 34 1437 \N +1066236 34 1737 \N +1066237 34 537 \N +1066238 34 437 \N +1066239 34 237 \N +1066240 35 538 \N +1066241 35 2438 \N +1066242 35 1238 \N +1066243 35 1538 \N +1066244 35 2738 \N +1066245 35 1738 \N +1066246 35 738 \N +1066247 35 2238 \N +1066248 35 38 \N +1066249 35 1038 \N +1066250 35 1938 \N +1066251 35 2838 \N +1066252 35 938 \N +1066253 35 438 \N +1066254 35 2038 \N +1066255 35 1438 \N +1066256 35 3038 \N +1066257 35 2538 \N +1066258 35 238 \N +1066259 37 440 \N +1066260 37 840 \N +1066261 37 2940 \N +1066262 37 2340 \N +1066263 37 1340 \N +1066264 37 740 \N +1066265 37 2240 \N +1066266 37 240 \N +1066267 37 2440 \N +1066268 37 1740 \N +1066269 37 1940 \N +1066270 37 1440 \N +1066271 37 1840 \N +1066272 37 2640 \N +1066273 37 940 \N +1066274 37 2740 \N +1066275 37 340 \N +1066276 37 1240 \N +1066277 37 3040 \N +1066278 38 2141 \N +1066279 38 2641 \N +1066280 38 1441 \N +1066281 38 2741 \N +1066282 38 1241 \N +1066283 38 2241 \N +1066284 38 2941 \N +1066285 38 1941 \N +1066286 38 641 \N +1066287 38 2441 \N +1066288 38 3041 \N +1066289 38 941 \N +1066290 38 741 \N +1066291 38 1141 \N +1066292 38 141 \N +1066293 38 1641 \N +1066294 38 241 \N +1066295 38 1741 \N +1066296 38 441 \N +1066297 40 2543 \N +1066298 40 1443 \N +1066299 40 643 \N +1066300 40 943 \N +1066301 40 2943 \N +1066302 40 2843 \N +1066303 40 443 \N +1066304 40 1643 \N +1066305 40 2443 \N +1066306 40 2643 \N +1066307 40 1943 \N +1066308 40 3043 \N +1066309 40 1143 \N +1066310 40 143 \N +1066311 40 2743 \N +1066312 40 2143 \N +1066313 41 444 \N +1066314 41 1144 \N +1066315 41 1544 \N +1066316 41 944 \N +1066317 41 1644 \N +1066318 41 2644 \N +1066319 41 2044 \N +1066320 41 2944 \N +1066321 41 2144 \N +1066322 41 2744 \N +1066323 41 1444 \N +1066324 41 44 \N +1066325 41 3044 \N +1066326 41 144 \N +1066327 41 1944 \N +1066328 41 644 \N +1066329 41 1044 \N +1066330 41 2444 \N +1066331 41 544 \N +1066332 43 46 \N +1066333 43 2346 \N +1066334 43 346 \N +1066335 43 546 \N +1066336 43 1146 \N +1066337 43 1946 \N +1066338 43 446 \N +1066339 43 1246 \N +1066340 43 2146 \N +1066341 43 1446 \N +1066342 43 1346 \N +1066343 43 1046 \N +1066344 43 2546 \N +1066345 43 146 \N +1066346 43 2846 \N +1066347 43 846 \N +1066348 43 246 \N +1066349 43 2646 \N +1066350 43 2446 \N +1066351 43 2746 \N +1066352 43 1646 \N +1066353 43 2046 \N +1066354 43 746 \N +1066355 43 2246 \N +1066356 43 946 \N +1066357 43 1846 \N +1066358 43 1746 \N +1066359 43 646 \N +1066360 43 1546 \N +1066361 43 3046 \N +1066362 43 2946 \N +1066363 44 1547 \N +1066364 44 1147 \N +1066365 44 447 \N +1066366 44 547 \N +1066367 44 1047 \N +1066368 44 2147 \N +1066369 44 2447 \N +1066370 44 747 \N +1066371 44 1947 \N +1066372 44 247 \N +1066373 44 2647 \N +1066374 44 947 \N +1066375 44 1447 \N +1066376 44 1647 \N +1066377 44 2947 \N +1066378 44 2547 \N +1066379 44 47 \N +1066380 44 647 \N +1066381 44 2247 \N +1066382 44 147 \N +1066383 44 3047 \N +1066384 44 2847 \N +1066385 44 2747 \N +1066386 44 1247 \N +1066387 44 1747 \N +1066388 44 2047 \N +1066389 46 749 \N +1066390 46 949 \N +1066391 46 1249 \N +1066392 46 1549 \N +1066393 46 1949 \N +1066394 46 3049 \N +1066395 46 49 \N +1066396 46 1749 \N +1066397 46 1049 \N +1066398 46 2449 \N +1066399 46 2849 \N +1066400 46 1449 \N +1066401 46 449 \N +1066402 46 2749 \N +1066403 46 2549 \N +1066404 46 249 \N +1066405 46 549 \N +1066406 46 2249 \N +1066407 46 2049 \N +1066408 47 50 \N +1066409 47 3050 \N +1066410 47 1050 \N +1066411 47 950 \N +1066412 47 550 \N +1066413 47 1450 \N +1066414 47 1250 \N +1066415 47 250 \N +1066416 47 450 \N +1066417 47 2750 \N +1066418 47 1750 \N +1066419 47 1950 \N +1066420 47 2050 \N +1066421 47 2450 \N +1066422 47 2250 \N +1066423 47 750 \N +1066424 47 1550 \N +1066425 49 152 \N +1066426 49 1752 \N +1066427 49 1152 \N +1066428 49 2752 \N +1066429 49 1852 \N +1066430 49 1652 \N +1066431 49 952 \N +1066432 49 352 \N +1066433 49 1252 \N +1066434 49 1452 \N +1066435 49 2152 \N +1066436 49 2452 \N +1066437 49 652 \N +1066438 49 3052 \N +1066439 49 2952 \N +1066440 49 2652 \N +1066441 49 1952 \N +1066442 49 2252 \N +1066443 49 252 \N +1066444 49 852 \N +1066445 49 1352 \N +1066446 49 752 \N +1066447 49 452 \N +1066448 49 2352 \N +1066449 50 2653 \N +1066450 50 2153 \N +1066451 50 153 \N +1066452 50 2953 \N +1066453 50 653 \N +1066454 50 1953 \N +1066455 50 453 \N +1066456 50 3053 \N +1066457 50 953 \N +1066458 50 2453 \N +1066459 50 2753 \N +1066460 50 1653 \N +1066461 50 1153 \N +1066462 50 1453 \N +1066463 52 655 \N +1066464 52 1155 \N +1066465 52 755 \N +1066466 52 1555 \N +1066467 52 455 \N +1066468 52 3055 \N +1066469 52 955 \N +1066470 52 2955 \N +1066471 52 555 \N +1066472 52 1955 \N +1066473 52 1255 \N +1066474 52 2055 \N +1066475 52 1655 \N +1066476 52 2155 \N +1066477 52 2655 \N +1066478 52 155 \N +1066479 52 2755 \N +1066480 52 2455 \N +1066481 52 1455 \N +1066482 52 1755 \N +1066483 52 1055 \N +1066484 52 2255 \N +1066485 52 255 \N +1066486 52 55 \N +1066487 53 2156 \N +1066488 53 656 \N +1066489 53 2556 \N +1066490 53 956 \N +1066491 53 1456 \N +1066492 53 156 \N +1066493 53 2856 \N +1066494 53 756 \N +1066495 53 1656 \N +1066496 53 1156 \N +1066497 53 3056 \N +1066498 53 456 \N +1066499 53 2656 \N +1066500 53 1256 \N +1066501 53 2756 \N +1066502 53 2456 \N +1066503 53 2956 \N +1066504 53 1756 \N +1066505 53 1956 \N +1066506 53 2256 \N +1066507 53 256 \N +1066508 55 3058 \N +1066509 55 2658 \N +1066510 55 358 \N +1066511 55 2958 \N +1066512 55 58 \N +1066513 55 958 \N +1066514 55 2258 \N +1066515 55 2158 \N +1066516 55 558 \N +1066517 55 1058 \N +1066518 55 2058 \N +1066519 55 2558 \N +1066520 55 658 \N +1066521 55 458 \N +1066522 55 858 \N +1066523 55 2458 \N +1066524 55 1358 \N +1066525 55 758 \N +1066526 55 1158 \N +1066527 55 1258 \N +1066528 55 2358 \N +1066529 55 258 \N +1066530 55 1558 \N +1066531 55 1858 \N +1066532 55 1458 \N +1066533 55 1758 \N +1066534 55 1958 \N +1066535 55 2758 \N +1066536 55 2858 \N +1066537 55 158 \N +1066538 55 1658 \N +1066539 56 1259 \N +1066540 56 1559 \N +1066541 56 1759 \N +1066542 56 259 \N +1066543 56 2759 \N +1066544 56 1659 \N +1066545 56 1059 \N +1066546 56 2459 \N +1066547 56 1159 \N +1066548 56 3059 \N +1066549 56 2859 \N +1066550 56 459 \N +1066551 56 59 \N +1066552 56 1459 \N +1066553 56 659 \N +1066554 56 1959 \N +1066555 56 759 \N +1066556 56 2559 \N +1066557 56 959 \N +1066558 56 2059 \N +1066559 56 159 \N +1066560 56 559 \N +1066561 56 2259 \N +1066562 56 2159 \N +1066563 58 3061 \N +1066564 58 61 \N +1066565 58 461 \N +1066566 58 561 \N +1066567 58 1261 \N +1066568 58 2061 \N +1066569 58 2461 \N +1066570 58 1461 \N +1066571 58 761 \N +1066572 58 1761 \N +1066573 58 1061 \N +1066574 58 1561 \N +1066575 58 2761 \N +1066576 58 961 \N +1066577 58 1961 \N +1066578 58 2261 \N +1066579 58 261 \N +1066580 59 962 \N +1066581 59 1762 \N +1066582 59 2962 \N +1066583 59 2762 \N +1066584 59 462 \N +1066585 59 1462 \N +1066586 59 1962 \N +1066587 59 2262 \N +1066588 59 262 \N +1066589 59 1262 \N +1066590 59 762 \N +1066591 59 3062 \N +1066592 59 2462 \N +1066593 59 2662 \N +1066594 61 1364 \N +1066595 61 2464 \N +1066596 61 864 \N +1066597 61 964 \N +1066598 61 1464 \N +1066599 61 2364 \N +1066600 61 664 \N +1066601 61 3064 \N +1066602 61 364 \N +1066603 61 2764 \N +1066604 61 1964 \N +1066605 61 2164 \N +1066606 61 164 \N +1066607 61 2964 \N +1066608 61 2664 \N +1066609 61 1164 \N +1066610 61 1664 \N +1066611 61 1864 \N +1066612 61 464 \N +1066613 62 2665 \N +1066614 62 1265 \N +1066615 62 2965 \N +1066616 62 1665 \N +1066617 62 2265 \N +1066618 62 1465 \N +1066619 62 465 \N +1066620 62 1165 \N +1066621 62 1765 \N +1066622 62 2465 \N +1066623 62 965 \N +1066624 62 2865 \N +1066625 62 265 \N +1066626 62 665 \N +1066627 62 2165 \N +1066628 62 2765 \N +1066629 62 3065 \N +1066630 62 765 \N +1066631 62 1965 \N +1066632 62 2565 \N +1066633 62 165 \N +1066634 64 1967 \N +1066635 64 467 \N +1066636 64 2767 \N +1066637 64 2667 \N +1066638 64 967 \N +1066639 64 1767 \N +1066640 64 267 \N +1066641 64 767 \N +1066642 64 2267 \N +1066643 64 2967 \N +1066644 64 1667 \N +1066645 64 3067 \N +1066646 64 2867 \N +1066647 64 2167 \N +1066648 64 667 \N +1066649 64 167 \N +1066650 64 2567 \N +1066651 64 1467 \N +1066652 64 2467 \N +1066653 64 1167 \N +1066654 64 1267 \N +1066655 65 968 \N +1066656 65 2568 \N +1066657 65 1468 \N +1066658 65 2068 \N +1066659 65 668 \N +1066660 65 168 \N +1066661 65 2868 \N +1066662 65 268 \N +1066663 65 768 \N +1066664 65 1068 \N +1066665 65 2768 \N +1066666 65 2468 \N +1066667 65 1568 \N +1066668 65 2668 \N +1066669 65 568 \N +1066670 65 2968 \N +1066671 65 3068 \N +1066672 65 1168 \N +1066673 65 1668 \N +1066674 65 468 \N +1066675 65 1768 \N +1066676 65 2168 \N +1066677 65 68 \N +1066678 65 1968 \N +1066679 65 1268 \N +1066680 65 2268 \N +1066681 67 370 \N +1066682 67 2070 \N +1066683 67 1870 \N +1066684 67 1370 \N +1066685 67 1170 \N +1066686 67 570 \N +1066687 67 2870 \N +1066688 67 2270 \N +1066689 67 3070 \N +1066690 67 1570 \N +1066691 67 1970 \N +1066692 67 470 \N +1066693 67 2470 \N +1066694 67 1270 \N +1066695 67 1070 \N +1066696 67 2370 \N +1066697 67 1470 \N +1066698 67 270 \N +1066699 67 2770 \N +1066700 67 670 \N +1066701 67 2170 \N +1066702 67 970 \N +1066703 67 770 \N +1066704 67 870 \N +1066705 67 1670 \N +1066706 67 2570 \N +1066707 67 1770 \N +1066708 67 170 \N +1066709 67 70 \N +1066710 68 971 \N +1066711 68 2071 \N +1066712 68 2271 \N +1066713 68 2471 \N +1066714 68 2871 \N +1066715 68 1271 \N +1066716 68 471 \N +1066717 68 1971 \N +1066718 68 3071 \N +1066719 68 2571 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1066720 68 271 4 -1066721 68 571 0 -1066722 68 1071 0 -1066723 68 71 0 -1066724 68 1471 5 -1066725 68 771 4 -1066726 68 2771 5 -1066727 68 1771 4 -1066728 68 1571 0 -1066729 70 2773 3 -1066730 70 973 3 -1066731 70 2673 4 -1066732 70 2973 4 -1066733 70 473 3 -1066734 70 2473 3 -1066735 70 3073 3 -1066736 70 1973 3 -1066737 70 1473 3 -1066738 71 174 4 -1066739 71 1974 3 -1066740 71 2474 3 -1066741 71 1174 4 -1066742 71 2674 4 -1066743 71 674 4 -1066744 71 2774 3 -1066745 71 2974 4 -1066746 71 3074 3 -1066747 71 1474 3 -1066748 71 974 3 -1066749 71 1674 4 -1066750 71 474 3 -1066751 71 2174 4 -1066752 73 1677 0 -1066753 73 1477 5 -1066754 73 177 0 -1066755 73 1977 5 -1066756 73 577 2 -1066757 73 1277 4 -1066758 73 977 5 -1066759 73 2477 5 -1066760 73 277 4 -1066761 73 1077 2 -1066762 73 2277 4 -1066763 73 1777 4 -1066764 73 2177 0 -1066765 73 2077 2 -1066766 73 677 0 -1066767 73 1577 2 -1066768 73 2977 0 -1066769 73 3077 5 -1066770 73 2677 0 -1066771 73 477 5 -1066772 73 1177 0 -1066773 73 77 2 -1066774 73 2777 5 -1066775 73 777 4 -1066776 74 978 5 -1066777 74 2978 0 -1066778 74 678 0 -1066779 74 1678 0 -1066780 74 178 0 -1066781 74 3078 5 -1066782 74 2478 5 -1066783 74 2578 2 -1066784 74 378 4 -1066785 74 2778 5 -1066786 74 478 5 -1066787 74 2878 2 -1066788 74 878 4 -1066789 74 1978 5 -1066790 74 1878 4 -1066791 74 2378 4 -1066792 74 2278 4 -1066793 74 2178 0 -1066794 74 1378 4 -1066795 74 1778 4 -1066796 74 278 4 -1066797 74 1178 0 -1066798 74 1478 5 -1066799 74 2678 0 -1066800 74 778 4 -1066801 74 1278 4 -1066802 76 1780 4 -1066803 76 2080 0 -1066804 76 1680 2 -1066805 76 180 2 -1066806 76 680 2 -1066807 76 580 0 -1066808 76 2280 4 -1066809 76 3080 5 -1066810 76 2580 0 -1066811 76 2180 2 -1066812 76 1080 0 -1066813 76 2480 5 -1066814 76 1180 2 -1066815 76 980 5 -1066816 76 1980 5 -1066817 76 80 0 -1066818 76 2780 5 -1066819 76 2880 0 -1066820 76 1480 5 -1066821 76 1580 0 -1066822 76 1280 4 -1066823 76 280 4 -1066824 76 2680 2 -1066825 76 480 5 -1066826 76 780 4 -1066827 76 2980 2 -1066828 77 1881 4 -1066829 77 381 4 -1066830 77 2281 4 -1066831 77 1581 0 -1066832 77 1781 4 -1066833 77 581 0 -1066834 77 2581 0 -1066835 77 281 4 -1066836 77 3081 5 -1066837 77 1181 2 -1066838 77 181 2 -1066839 77 1081 0 -1066840 77 2881 0 -1066841 77 2181 2 -1066842 77 2081 0 -1066843 77 2781 5 -1066844 77 681 2 -1066845 77 81 0 -1066846 77 2481 5 -1066847 77 1381 4 -1066848 77 1481 5 -1066849 77 1281 4 -1066850 77 1681 2 -1066851 77 2381 4 -1066852 77 781 4 -1066853 77 981 5 -1066854 77 1981 5 -1066855 77 881 4 -1066856 77 481 5 -1066857 79 1083 4 -1066858 79 583 4 -1066859 79 983 3 -1066860 79 3083 3 -1066861 79 2783 3 -1066862 79 1583 4 -1066863 79 2483 3 -1066864 79 2083 4 -1066865 79 1983 3 -1066866 79 483 3 -1066867 79 1483 3 -1066868 79 83 4 -1066869 80 2784 3 -1066870 80 3084 3 -1066871 80 2484 3 -1066872 80 1884 0 -1066873 80 484 3 -1066874 80 884 0 -1066875 80 2684 4 -1066876 80 1384 0 -1066877 80 2384 0 -1066878 80 984 3 -1066879 80 1984 3 -1066880 80 1484 3 -1066881 80 2984 4 -1066882 80 384 0 -1066883 82 2186 3 -1066884 82 1486 6 -1066885 82 1786 5 -1066886 82 286 5 -1066887 82 686 3 -1066888 82 2486 6 -1066889 82 986 6 -1066890 82 3086 6 -1066891 82 1286 5 -1066892 82 186 3 -1066893 82 2786 6 -1066894 82 786 5 -1066895 82 1186 3 -1066896 82 2686 3 -1066897 82 2986 3 -1066898 82 1986 6 -1066899 82 1686 3 -1066900 82 486 6 -1066901 82 2286 5 -1066902 83 2187 3 -1066903 83 687 3 -1066904 83 1487 6 -1066905 83 2487 6 -1066906 83 2987 3 -1066907 83 2887 1 -1066908 83 1987 6 -1066909 83 1287 5 -1066910 83 1387 5 -1066911 83 1787 5 -1066912 83 1187 3 -1066913 83 1687 3 -1066914 83 3087 6 -1066915 83 2587 1 -1066916 83 1887 5 -1066917 83 487 6 -1066918 83 387 5 -1066919 83 2787 6 -1066920 83 887 5 -1066921 83 2687 3 -1066922 83 987 6 -1066923 83 2387 5 -1066924 83 187 3 -1066925 83 2287 5 -1066926 83 287 5 -1066927 83 787 5 -1066928 168 3572 0 -1066929 168 3172 5 -1066930 168 3372 1 -1066931 168 3772 5 -1066932 168 3872 1 -1066933 168 3672 5 -1066934 168 3272 5 -1066935 168 4072 0 -1066936 85 2789 0 -1066937 85 2489 0 -1066938 85 1789 1 -1066939 85 3089 0 -1066940 85 2689 5 -1066941 85 2289 1 -1066942 85 2989 5 -1066943 85 189 5 -1066944 85 2889 5 -1066945 85 1289 1 -1066946 85 2589 5 -1066947 85 1489 0 -1066948 85 1689 5 -1066949 85 789 1 -1066950 85 1189 5 -1066951 85 989 0 -1066952 85 689 5 -1066953 85 1989 0 -1066954 85 289 1 -1066955 85 489 0 -1066956 85 2189 5 -1066957 86 590 5 -1066958 86 1990 0 -1066959 86 490 0 -1066960 86 2890 5 -1066961 86 690 5 -1066962 86 2990 5 -1066963 86 1490 0 -1066964 86 2390 3 -1066965 86 790 1 -1066966 86 390 3 -1066967 86 1390 3 -1066968 86 2590 5 -1066969 86 990 0 -1066970 86 2290 1 -1066971 86 1190 5 -1066972 86 1690 5 -1066973 86 1590 5 -1066974 86 2790 0 -1066975 86 1890 3 -1066976 86 1090 5 -1066977 86 2190 5 -1066978 86 890 3 -1066979 86 1290 1 -1066980 86 1790 1 -1066981 86 290 1 -1066982 86 90 5 -1066983 86 2690 5 -1066984 86 3090 0 -1066985 86 2090 5 -1066986 86 2490 0 -1066987 86 190 5 -1066988 88 192 0 -1066989 88 1692 0 -1066990 88 492 5 -1066991 88 92 2 -1066992 88 2792 5 -1066993 88 992 5 -1066994 88 1092 2 -1066995 88 592 2 -1066996 88 292 4 -1066997 88 2292 4 -1066998 88 792 4 -1066999 88 2492 5 -1067000 88 2092 2 -1067001 88 1792 4 -1067002 88 2192 0 -1067003 88 1192 0 -1067004 88 2892 2 -1067005 88 1492 5 -1067006 88 2592 2 -1067007 88 3092 5 -1067008 88 1592 2 -1067009 88 1992 5 -1067010 88 1292 4 -1067011 88 692 0 -1067012 89 2793 5 -1067013 89 93 2 -1067014 89 1093 2 -1067015 89 3093 5 -1067016 89 493 5 -1067017 89 1393 4 -1067018 89 2493 5 -1067019 89 993 5 -1067020 89 2393 4 -1067021 89 393 4 -1067022 89 893 4 -1067023 89 593 2 -1067024 89 1593 2 -1067025 89 1893 4 -1067026 89 2893 2 -1067027 89 2093 2 -1067028 89 2593 2 -1067029 89 1993 5 -1067030 89 1493 5 -1067031 91 2295 4 -1067032 91 1295 4 -1067033 91 2695 0 -1067034 91 795 4 -1067035 91 995 5 -1067036 91 3095 5 -1067037 91 2995 0 -1067038 91 495 5 -1067039 91 1495 5 -1067040 91 2795 5 -1067041 91 295 4 -1067042 91 1795 4 -1067043 91 2495 5 -1067044 91 1995 5 -1067045 92 996 5 -1067046 92 1296 4 -1067047 92 896 4 -1067048 92 1996 5 -1067049 92 2496 5 -1067050 92 696 0 -1067051 92 2696 0 -1067052 92 1896 4 -1067053 92 1796 4 -1067054 92 796 4 -1067055 92 3096 5 -1067056 92 2296 4 -1067057 92 296 4 -1067058 92 1496 5 -1067059 92 1396 4 -1067060 92 1196 0 -1067061 92 396 4 -1067062 92 2396 4 -1067063 92 496 5 -1067064 92 2196 0 -1067065 92 2796 5 -1067066 92 1696 0 -1067067 92 196 0 -1067068 92 2996 0 -1067069 94 297 5 -1067070 94 497 6 -1067071 94 1297 5 -1067072 94 1497 6 -1067073 94 2297 5 -1067074 94 197 3 -1067075 94 997 6 -1067076 94 3097 6 -1067077 94 2497 6 -1067078 94 1797 5 -1067079 94 2197 3 -1067080 94 1697 3 -1067081 94 1197 3 -1067082 94 697 3 -1067083 94 2797 6 -1067084 94 2997 3 -1067085 94 1997 6 -1067086 94 797 5 -1067087 94 2697 3 -1067088 95 2698 3 -1067089 95 2298 5 -1067090 95 698 3 -1067091 95 2798 6 -1067092 95 798 5 -1067093 95 1298 5 -1067094 95 1498 6 -1067095 95 1698 3 -1067096 95 498 6 -1067097 95 2498 6 -1067098 95 1798 5 -1067099 95 2198 3 -1067100 95 1998 6 -1067101 95 998 6 -1067102 95 3098 6 -1067103 95 298 5 -1067104 95 2998 3 -1067105 95 2898 1 -1067106 95 198 3 -1067107 95 2598 1 -1067108 95 1198 3 -1067109 97 200 2 -1067110 97 700 2 -1067111 97 2900 0 -1067112 97 1300 4 -1067113 97 1400 4 -1067114 97 300 4 -1067115 97 1800 4 -1067116 97 3100 5 -1067117 97 2500 5 -1067118 97 2000 5 -1067119 97 1000 5 -1067120 97 2700 2 -1067121 97 1500 5 -1067122 97 2800 5 -1067123 97 2400 4 -1067124 97 1900 4 -1067125 97 900 4 -1067126 97 2300 4 -1067127 97 800 4 -1067128 97 1200 2 -1067129 97 2600 0 -1067130 97 400 4 -1067131 97 1700 2 -1067132 97 3000 2 -1067133 97 500 5 -1067134 97 2200 2 -1067135 98 3807 4 -1067136 98 3707 2 -1067137 98 3307 4 -1067138 98 3107 0 -1067139 98 3607 0 -1067140 98 3207 2 -1067141 98 3507 5 -1067142 98 4007 5 -1067143 100 3409 5 -1067144 100 3909 5 -1067145 100 3609 1 -1067146 100 3509 6 -1067147 100 4009 6 -1067148 100 3109 1 -1067149 101 3510 6 -1067150 101 4010 6 -1067151 101 3310 5 -1067152 101 3810 5 -1067153 103 3312 4 -1067154 103 3212 2 -1067155 103 3812 4 -1067156 103 4012 5 -1067157 103 3512 5 -1067158 103 3712 2 -1067159 104 3513 5 -1067160 104 3313 4 -1067161 104 3713 2 -1067162 104 4013 5 -1067163 104 3813 4 -1067164 104 3213 2 -1067165 106 4015 1 -1067166 106 3315 0 -1067167 106 3215 4 -1067168 106 3915 2 -1067169 106 3415 2 -1067170 106 3815 0 -1067171 106 3515 1 -1067172 106 3715 4 -1067173 107 3216 4 -1067174 107 3116 4 -1067175 107 3516 1 -1067176 107 3816 0 -1067177 107 3616 4 -1067178 107 3716 4 -1067179 107 3316 0 -1067180 107 4016 1 -1067181 109 3518 3 -1067182 109 3618 4 -1067183 109 3118 4 -1067184 109 3718 4 -1067185 109 4018 3 -1067186 109 3218 4 -1067187 110 4019 3 -1067188 110 3619 4 -1067189 110 3519 3 -1067190 110 3119 4 -1067191 112 3321 5 -1067192 112 3921 5 -1067193 112 3521 6 -1067194 112 3421 5 -1067195 112 4021 6 -1067196 112 3821 5 -1067197 113 3322 5 -1067198 113 3822 5 -1067199 113 3222 3 -1067200 113 3722 3 -1067201 113 3522 6 -1067202 113 4022 6 -1067203 115 3724 5 -1067204 115 3524 0 -1067205 115 4024 0 -1067206 115 3824 1 -1067207 115 3324 1 -1067208 115 3224 5 -1067209 116 3525 0 -1067210 116 3325 1 -1067211 116 3125 5 -1067212 116 3625 5 -1067213 116 3225 5 -1067214 116 3725 5 -1067215 116 4025 0 -1067216 116 3825 1 -1067217 118 3127 5 -1067218 118 3327 1 -1067219 118 3827 1 +1066720 68 271 \N +1066721 68 571 \N +1066722 68 1071 \N +1066723 68 71 \N +1066724 68 1471 \N +1066725 68 771 \N +1066726 68 2771 \N +1066727 68 1771 \N +1066728 68 1571 \N +1066729 70 2773 \N +1066730 70 973 \N +1066731 70 2673 \N +1066732 70 2973 \N +1066733 70 473 \N +1066734 70 2473 \N +1066735 70 3073 \N +1066736 70 1973 \N +1066737 70 1473 \N +1066738 71 174 \N +1066739 71 1974 \N +1066740 71 2474 \N +1066741 71 1174 \N +1066742 71 2674 \N +1066743 71 674 \N +1066744 71 2774 \N +1066745 71 2974 \N +1066746 71 3074 \N +1066747 71 1474 \N +1066748 71 974 \N +1066749 71 1674 \N +1066750 71 474 \N +1066751 71 2174 \N +1066752 73 1677 \N +1066753 73 1477 \N +1066754 73 177 \N +1066755 73 1977 \N +1066756 73 577 \N +1066757 73 1277 \N +1066758 73 977 \N +1066759 73 2477 \N +1066760 73 277 \N +1066761 73 1077 \N +1066762 73 2277 \N +1066763 73 1777 \N +1066764 73 2177 \N +1066765 73 2077 \N +1066766 73 677 \N +1066767 73 1577 \N +1066768 73 2977 \N +1066769 73 3077 \N +1066770 73 2677 \N +1066771 73 477 \N +1066772 73 1177 \N +1066773 73 77 \N +1066774 73 2777 \N +1066775 73 777 \N +1066776 74 978 \N +1066777 74 2978 \N +1066778 74 678 \N +1066779 74 1678 \N +1066780 74 178 \N +1066781 74 3078 \N +1066782 74 2478 \N +1066783 74 2578 \N +1066784 74 378 \N +1066785 74 2778 \N +1066786 74 478 \N +1066787 74 2878 \N +1066788 74 878 \N +1066789 74 1978 \N +1066790 74 1878 \N +1066791 74 2378 \N +1066792 74 2278 \N +1066793 74 2178 \N +1066794 74 1378 \N +1066795 74 1778 \N +1066796 74 278 \N +1066797 74 1178 \N +1066798 74 1478 \N +1066799 74 2678 \N +1066800 74 778 \N +1066801 74 1278 \N +1066802 76 1780 \N +1066803 76 2080 \N +1066804 76 1680 \N +1066805 76 180 \N +1066806 76 680 \N +1066807 76 580 \N +1066808 76 2280 \N +1066809 76 3080 \N +1066810 76 2580 \N +1066811 76 2180 \N +1066812 76 1080 \N +1066813 76 2480 \N +1066814 76 1180 \N +1066815 76 980 \N +1066816 76 1980 \N +1066817 76 80 \N +1066818 76 2780 \N +1066819 76 2880 \N +1066820 76 1480 \N +1066821 76 1580 \N +1066822 76 1280 \N +1066823 76 280 \N +1066824 76 2680 \N +1066825 76 480 \N +1066826 76 780 \N +1066827 76 2980 \N +1066828 77 1881 \N +1066829 77 381 \N +1066830 77 2281 \N +1066831 77 1581 \N +1066832 77 1781 \N +1066833 77 581 \N +1066834 77 2581 \N +1066835 77 281 \N +1066836 77 3081 \N +1066837 77 1181 \N +1066838 77 181 \N +1066839 77 1081 \N +1066840 77 2881 \N +1066841 77 2181 \N +1066842 77 2081 \N +1066843 77 2781 \N +1066844 77 681 \N +1066845 77 81 \N +1066846 77 2481 \N +1066847 77 1381 \N +1066848 77 1481 \N +1066849 77 1281 \N +1066850 77 1681 \N +1066851 77 2381 \N +1066852 77 781 \N +1066853 77 981 \N +1066854 77 1981 \N +1066855 77 881 \N +1066856 77 481 \N +1066857 79 1083 \N +1066858 79 583 \N +1066859 79 983 \N +1066860 79 3083 \N +1066861 79 2783 \N +1066862 79 1583 \N +1066863 79 2483 \N +1066864 79 2083 \N +1066865 79 1983 \N +1066866 79 483 \N +1066867 79 1483 \N +1066868 79 83 \N +1066869 80 2784 \N +1066870 80 3084 \N +1066871 80 2484 \N +1066872 80 1884 \N +1066873 80 484 \N +1066874 80 884 \N +1066875 80 2684 \N +1066876 80 1384 \N +1066877 80 2384 \N +1066878 80 984 \N +1066879 80 1984 \N +1066880 80 1484 \N +1066881 80 2984 \N +1066882 80 384 \N +1066883 82 2186 \N +1066884 82 1486 \N +1066885 82 1786 \N +1066886 82 286 \N +1066887 82 686 \N +1066888 82 2486 \N +1066889 82 986 \N +1066890 82 3086 \N +1066891 82 1286 \N +1066892 82 186 \N +1066893 82 2786 \N +1066894 82 786 \N +1066895 82 1186 \N +1066896 82 2686 \N +1066897 82 2986 \N +1066898 82 1986 \N +1066899 82 1686 \N +1066900 82 486 \N +1066901 82 2286 \N +1066902 83 2187 \N +1066903 83 687 \N +1066904 83 1487 \N +1066905 83 2487 \N +1066906 83 2987 \N +1066907 83 2887 \N +1066908 83 1987 \N +1066909 83 1287 \N +1066910 83 1387 \N +1066911 83 1787 \N +1066912 83 1187 \N +1066913 83 1687 \N +1066914 83 3087 \N +1066915 83 2587 \N +1066916 83 1887 \N +1066917 83 487 \N +1066918 83 387 \N +1066919 83 2787 \N +1066920 83 887 \N +1066921 83 2687 \N +1066922 83 987 \N +1066923 83 2387 \N +1066924 83 187 \N +1066925 83 2287 \N +1066926 83 287 \N +1066927 83 787 \N +1066928 168 3572 \N +1066929 168 3172 \N +1066930 168 3372 \N +1066931 168 3772 \N +1066932 168 3872 \N +1066933 168 3672 \N +1066934 168 3272 \N +1066935 168 4072 \N +1066936 85 2789 \N +1066937 85 2489 \N +1066938 85 1789 \N +1066939 85 3089 \N +1066940 85 2689 \N +1066941 85 2289 \N +1066942 85 2989 \N +1066943 85 189 \N +1066944 85 2889 \N +1066945 85 1289 \N +1066946 85 2589 \N +1066947 85 1489 \N +1066948 85 1689 \N +1066949 85 789 \N +1066950 85 1189 \N +1066951 85 989 \N +1066952 85 689 \N +1066953 85 1989 \N +1066954 85 289 \N +1066955 85 489 \N +1066956 85 2189 \N +1066957 86 590 \N +1066958 86 1990 \N +1066959 86 490 \N +1066960 86 2890 \N +1066961 86 690 \N +1066962 86 2990 \N +1066963 86 1490 \N +1066964 86 2390 \N +1066965 86 790 \N +1066966 86 390 \N +1066967 86 1390 \N +1066968 86 2590 \N +1066969 86 990 \N +1066970 86 2290 \N +1066971 86 1190 \N +1066972 86 1690 \N +1066973 86 1590 \N +1066974 86 2790 \N +1066975 86 1890 \N +1066976 86 1090 \N +1066977 86 2190 \N +1066978 86 890 \N +1066979 86 1290 \N +1066980 86 1790 \N +1066981 86 290 \N +1066982 86 90 \N +1066983 86 2690 \N +1066984 86 3090 \N +1066985 86 2090 \N +1066986 86 2490 \N +1066987 86 190 \N +1066988 88 192 \N +1066989 88 1692 \N +1066990 88 492 \N +1066991 88 92 \N +1066992 88 2792 \N +1066993 88 992 \N +1066994 88 1092 \N +1066995 88 592 \N +1066996 88 292 \N +1066997 88 2292 \N +1066998 88 792 \N +1066999 88 2492 \N +1067000 88 2092 \N +1067001 88 1792 \N +1067002 88 2192 \N +1067003 88 1192 \N +1067004 88 2892 \N +1067005 88 1492 \N +1067006 88 2592 \N +1067007 88 3092 \N +1067008 88 1592 \N +1067009 88 1992 \N +1067010 88 1292 \N +1067011 88 692 \N +1067012 89 2793 \N +1067013 89 93 \N +1067014 89 1093 \N +1067015 89 3093 \N +1067016 89 493 \N +1067017 89 1393 \N +1067018 89 2493 \N +1067019 89 993 \N +1067020 89 2393 \N +1067021 89 393 \N +1067022 89 893 \N +1067023 89 593 \N +1067024 89 1593 \N +1067025 89 1893 \N +1067026 89 2893 \N +1067027 89 2093 \N +1067028 89 2593 \N +1067029 89 1993 \N +1067030 89 1493 \N +1067031 91 2295 \N +1067032 91 1295 \N +1067033 91 2695 \N +1067034 91 795 \N +1067035 91 995 \N +1067036 91 3095 \N +1067037 91 2995 \N +1067038 91 495 \N +1067039 91 1495 \N +1067040 91 2795 \N +1067041 91 295 \N +1067042 91 1795 \N +1067043 91 2495 \N +1067044 91 1995 \N +1067045 92 996 \N +1067046 92 1296 \N +1067047 92 896 \N +1067048 92 1996 \N +1067049 92 2496 \N +1067050 92 696 \N +1067051 92 2696 \N +1067052 92 1896 \N +1067053 92 1796 \N +1067054 92 796 \N +1067055 92 3096 \N +1067056 92 2296 \N +1067057 92 296 \N +1067058 92 1496 \N +1067059 92 1396 \N +1067060 92 1196 \N +1067061 92 396 \N +1067062 92 2396 \N +1067063 92 496 \N +1067064 92 2196 \N +1067065 92 2796 \N +1067066 92 1696 \N +1067067 92 196 \N +1067068 92 2996 \N +1067069 94 297 \N +1067070 94 497 \N +1067071 94 1297 \N +1067072 94 1497 \N +1067073 94 2297 \N +1067074 94 197 \N +1067075 94 997 \N +1067076 94 3097 \N +1067077 94 2497 \N +1067078 94 1797 \N +1067079 94 2197 \N +1067080 94 1697 \N +1067081 94 1197 \N +1067082 94 697 \N +1067083 94 2797 \N +1067084 94 2997 \N +1067085 94 1997 \N +1067086 94 797 \N +1067087 94 2697 \N +1067088 95 2698 \N +1067089 95 2298 \N +1067090 95 698 \N +1067091 95 2798 \N +1067092 95 798 \N +1067093 95 1298 \N +1067094 95 1498 \N +1067095 95 1698 \N +1067096 95 498 \N +1067097 95 2498 \N +1067098 95 1798 \N +1067099 95 2198 \N +1067100 95 1998 \N +1067101 95 998 \N +1067102 95 3098 \N +1067103 95 298 \N +1067104 95 2998 \N +1067105 95 2898 \N +1067106 95 198 \N +1067107 95 2598 \N +1067108 95 1198 \N +1067109 97 200 \N +1067110 97 700 \N +1067111 97 2900 \N +1067112 97 1300 \N +1067113 97 1400 \N +1067114 97 300 \N +1067115 97 1800 \N +1067116 97 3100 \N +1067117 97 2500 \N +1067118 97 2000 \N +1067119 97 1000 \N +1067120 97 2700 \N +1067121 97 1500 \N +1067122 97 2800 \N +1067123 97 2400 \N +1067124 97 1900 \N +1067125 97 900 \N +1067126 97 2300 \N +1067127 97 800 \N +1067128 97 1200 \N +1067129 97 2600 \N +1067130 97 400 \N +1067131 97 1700 \N +1067132 97 3000 \N +1067133 97 500 \N +1067134 97 2200 \N +1067135 98 3807 \N +1067136 98 3707 \N +1067137 98 3307 \N +1067138 98 3107 \N +1067139 98 3607 \N +1067140 98 3207 \N +1067141 98 3507 \N +1067142 98 4007 \N +1067143 100 3409 \N +1067144 100 3909 \N +1067145 100 3609 \N +1067146 100 3509 \N +1067147 100 4009 \N +1067148 100 3109 \N +1067149 101 3510 \N +1067150 101 4010 \N +1067151 101 3310 \N +1067152 101 3810 \N +1067153 103 3312 \N +1067154 103 3212 \N +1067155 103 3812 \N +1067156 103 4012 \N +1067157 103 3512 \N +1067158 103 3712 \N +1067159 104 3513 \N +1067160 104 3313 \N +1067161 104 3713 \N +1067162 104 4013 \N +1067163 104 3813 \N +1067164 104 3213 \N +1067165 106 4015 \N +1067166 106 3315 \N +1067167 106 3215 \N +1067168 106 3915 \N +1067169 106 3415 \N +1067170 106 3815 \N +1067171 106 3515 \N +1067172 106 3715 \N +1067173 107 3216 \N +1067174 107 3116 \N +1067175 107 3516 \N +1067176 107 3816 \N +1067177 107 3616 \N +1067178 107 3716 \N +1067179 107 3316 \N +1067180 107 4016 \N +1067181 109 3518 \N +1067182 109 3618 \N +1067183 109 3118 \N +1067184 109 3718 \N +1067185 109 4018 \N +1067186 109 3218 \N +1067187 110 4019 \N +1067188 110 3619 \N +1067189 110 3519 \N +1067190 110 3119 \N +1067191 112 3321 \N +1067192 112 3921 \N +1067193 112 3521 \N +1067194 112 3421 \N +1067195 112 4021 \N +1067196 112 3821 \N +1067197 113 3322 \N +1067198 113 3822 \N +1067199 113 3222 \N +1067200 113 3722 \N +1067201 113 3522 \N +1067202 113 4022 \N +1067203 115 3724 \N +1067204 115 3524 \N +1067205 115 4024 \N +1067206 115 3824 \N +1067207 115 3324 \N +1067208 115 3224 \N +1067209 116 3525 \N +1067210 116 3325 \N +1067211 116 3125 \N +1067212 116 3625 \N +1067213 116 3225 \N +1067214 116 3725 \N +1067215 116 4025 \N +1067216 116 3825 \N +1067217 118 3127 \N +1067218 118 3327 \N +1067219 118 3827 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1067220 118 3527 0 -1067221 118 3927 3 -1067222 118 3227 5 -1067223 118 3627 5 -1067224 118 3427 3 -1067225 118 4027 0 -1067226 118 3727 5 -1067227 119 3728 5 -1067228 119 3628 5 -1067229 119 3528 0 -1067230 119 4028 0 -1067231 119 3228 5 -1067232 119 3128 5 -1067233 121 3806 2 -1067234 121 3706 4 -1067235 121 3106 4 -1067236 121 3306 2 -1067237 121 3206 4 -1067238 121 3506 3 -1067239 121 4006 3 -1067240 121 3606 4 -1067241 122 3830 2 -1067242 122 3130 4 -1067243 122 4030 3 -1067244 122 3330 2 -1067245 122 3530 3 -1067246 122 3630 4 -1067247 124 3532 3 -1067248 124 3332 2 -1067249 124 3432 0 -1067250 124 3932 0 -1067251 124 4032 3 -1067252 124 3832 2 -1067253 125 3833 2 -1067254 125 4033 3 -1067255 125 3933 0 -1067256 125 3733 4 -1067257 125 3533 3 -1067258 125 3333 2 -1067259 125 3433 0 -1067260 125 3233 4 -1067261 127 3235 2 -1067262 127 3535 5 -1067263 127 4035 5 -1067264 127 3435 4 -1067265 127 3335 4 -1067266 127 3835 4 -1067267 127 3735 2 -1067268 127 3935 4 -1067269 128 3336 4 -1067270 128 3536 5 -1067271 128 3836 4 -1067272 128 4036 5 -1067273 128 3236 2 -1067274 128 3136 0 -1067275 128 3636 0 -1067276 128 3736 2 -1067277 130 3738 3 -1067278 130 3938 5 -1067279 130 3538 6 -1067280 130 4038 6 -1067281 130 3638 1 -1067282 130 3438 5 -1067283 130 3238 3 -1067284 130 3138 1 -1067285 131 4039 6 -1067286 131 3939 5 -1067287 131 3239 3 -1067288 131 3739 3 -1067289 131 3139 1 -1067290 131 3639 1 -1067291 131 3539 6 -1067292 131 3439 5 -1067293 133 3141 4 -1067294 133 3341 2 -1067295 133 3641 4 -1067296 133 3541 3 -1067297 133 4041 3 -1067298 133 3841 2 -1067299 133 3941 0 -1067300 133 3441 0 -1067301 134 3542 3 -1067302 134 3342 2 -1067303 134 3842 2 -1067304 134 4042 3 -1067305 134 3142 4 -1067306 134 3642 4 -1067307 136 3344 2 -1067308 136 3544 3 -1067309 136 3444 0 -1067310 136 3944 0 -1067311 136 4044 3 -1067312 136 3844 2 -1067313 136 3244 4 -1067314 136 3744 4 -1067315 137 3445 0 -1067316 137 3845 2 -1067317 137 3245 4 -1067318 137 3745 4 -1067319 137 3545 3 -1067320 137 4045 3 -1067321 137 3345 2 -1067322 137 3945 0 -1067323 139 3347 2 -1067324 139 3747 4 -1067325 139 3547 3 -1067326 139 3447 0 -1067327 139 3147 4 -1067328 139 3247 4 -1067329 139 4047 3 -1067330 139 3647 4 -1067331 139 3847 2 -1067332 139 3947 0 -1067333 140 3548 3 -1067334 140 3748 4 -1067335 140 4048 3 -1067336 140 3248 4 -1067337 142 3650 4 -1067338 142 3250 4 -1067339 142 3550 3 -1067340 142 3450 0 -1067341 142 3350 2 -1067342 142 3850 2 -1067343 142 3150 4 -1067344 142 4050 3 -1067345 142 3950 0 -1067346 142 3750 4 -1067347 143 3951 0 -1067348 143 3351 2 -1067349 143 3651 4 -1067350 143 3151 4 -1067351 143 3551 3 -1067352 143 3451 0 -1067353 143 3851 2 -1067354 143 3251 4 -1067355 143 4051 3 -1067356 143 3751 4 -1067357 145 3553 5 -1067358 145 3353 4 -1067359 145 3853 4 -1067360 145 3453 4 -1067361 145 3953 4 -1067362 145 3153 2 -1067363 145 4053 5 -1067364 145 3653 2 -1067365 146 4054 5 -1067366 146 3854 4 -1067367 146 3554 5 -1067368 146 3354 4 -1067369 148 3256 3 -1067370 148 3856 5 -1067371 148 3456 5 -1067372 148 3756 3 -1067373 148 3556 6 -1067374 148 4056 6 -1067375 148 3356 5 -1067376 148 3956 5 -1067377 149 3757 3 -1067378 149 3557 6 -1067379 149 3357 5 -1067380 149 3457 5 -1067381 149 3857 5 -1067382 149 3257 3 -1067383 149 3957 5 -1067384 149 4057 6 -1067385 151 3559 0 -1067386 151 3759 5 -1067387 151 3959 3 -1067388 151 3259 5 -1067389 151 4059 0 -1067390 151 3459 3 -1067391 152 3260 5 -1067392 152 4060 0 -1067393 152 3360 1 -1067394 152 3160 5 -1067395 152 3560 0 -1067396 152 3860 1 -1067397 152 3760 5 -1067398 152 3660 5 -1067399 154 310 3 -1067400 155 3262 5 -1067401 155 3662 5 -1067402 155 3562 0 -1067403 155 3862 1 -1067404 155 4062 0 -1067405 155 3362 1 -1067406 155 3162 5 -1067407 155 3962 3 -1067408 155 3762 5 -1067409 155 3462 3 -1067410 156 3863 1 -1067411 156 3563 0 -1067412 156 3363 1 -1067413 156 3663 5 -1067414 156 3163 5 -1067415 156 4063 0 -1067416 156 3463 3 -1067417 156 3963 3 -1067418 159 3365 5 -1067419 159 3865 5 -1067420 159 3465 5 -1067421 159 3965 5 -1067422 159 3565 6 -1067423 159 4065 6 -1067424 160 3766 3 -1067425 160 3366 5 -1067426 160 3266 3 -1067427 160 4066 6 -1067428 160 3566 6 -1067429 160 3866 5 -1067430 162 324 5 -1067431 163 3568 0 -1067432 163 4068 0 -1067433 163 3268 5 -1067434 163 3468 3 -1067435 163 3968 3 -1067436 163 3768 5 -1067437 164 3169 5 -1067438 164 3269 5 -1067439 164 3669 5 -1067440 164 3469 3 -1067441 164 3969 3 -1067442 164 3569 0 -1067443 164 4069 0 -1067444 164 3769 5 -1067445 167 3271 5 -1067446 167 4071 0 -1067447 167 3371 1 -1067448 167 3771 5 -1067449 167 3671 5 -1067450 167 3471 3 -1067451 167 3971 3 -1067452 167 3171 5 -1067453 167 3571 0 -1067454 167 3871 1 -1067455 171 3574 6 -1067456 171 3674 1 -1067457 171 3974 5 -1067458 171 3874 5 -1067459 171 3174 1 -1067460 171 3474 5 -1067461 171 3374 5 -1067462 171 4074 6 -1067463 172 3975 5 -1067464 172 3575 6 -1067465 172 3375 5 -1067466 172 3475 5 -1067467 172 3175 1 -1067468 172 3675 1 -1067469 172 3875 5 -1067470 172 4075 6 -1067471 174 345 5 -1067472 175 3477 3 -1067473 175 3277 5 -1067474 175 3877 1 -1067475 175 4077 0 -1067476 175 3977 3 -1067477 175 3377 1 -1067478 175 3577 0 -1067479 175 3777 5 -1067480 176 3278 5 -1067481 176 3578 0 -1067482 176 3778 5 -1067483 176 4078 0 -1067484 178 352 3 -1067485 179 3780 5 -1067486 179 3980 3 -1067487 179 3880 1 -1067488 179 3480 3 -1067489 179 3280 5 -1067490 179 3380 1 -1067491 179 3180 5 -1067492 179 3580 0 -1067493 179 3680 5 -1067494 179 4080 0 -1067495 180 3581 0 -1067496 180 3281 5 -1067497 180 3481 3 -1067498 180 3981 3 -1067499 180 3881 1 -1067500 180 3781 5 -1067501 180 4081 0 -1067502 180 3381 1 -1067503 183 3183 1 -1067504 183 3683 1 -1067505 183 3983 5 -1067506 183 3383 5 -1067507 183 3483 5 -1067508 183 3283 3 -1067509 183 3783 3 -1067510 183 4083 6 -1067511 183 3583 6 -1067512 183 3883 5 -1067513 184 3884 5 -1067514 184 3584 6 -1067515 184 4084 6 -1067516 184 3384 5 -1067517 184 3784 3 -1067518 184 3284 3 -1067519 184 3184 1 -1067520 184 3684 1 -1067521 186 366 5 -1067522 187 4086 0 -1067523 187 3886 1 -1067524 187 3186 5 -1067525 187 3586 0 -1067526 187 3686 5 -1067527 187 3486 3 -1067528 187 3386 1 -1067529 187 3986 3 -1067530 188 3387 1 -1067531 188 3987 3 -1067532 188 4087 0 -1067533 188 3887 1 -1067534 188 3587 0 -1067535 188 3487 3 -1067536 191 3789 5 -1067537 191 3489 3 -1067538 191 3289 5 -1067539 191 4089 0 -1067540 191 3589 0 -1067541 191 3989 3 -1067542 192 4090 0 -1067543 192 3890 1 -1067544 192 3790 5 -1067545 192 3390 1 -1067546 192 3290 5 -1067547 192 3590 0 -1067548 195 3592 6 -1067549 195 4092 6 -1067550 195 3392 5 -1067551 195 3792 3 -1067552 195 3892 5 -1067553 195 3992 5 -1067554 195 3292 3 -1067555 195 3492 5 -1067556 196 3793 3 -1067557 196 3393 5 -1067558 196 4093 6 -1067559 196 3993 5 -1067560 196 3493 5 -1067561 196 3293 3 -1067562 196 3693 1 -1067563 196 3893 5 -1067564 196 3593 6 -1067565 196 3193 1 -1067566 198 387 5 -1067567 199 3395 1 -1067568 199 3195 5 -1067569 199 4095 0 -1067570 199 3295 5 -1067571 199 3795 5 -1067572 199 3695 5 -1067573 199 3595 0 -1067574 199 3495 3 -1067575 199 3995 3 -1067576 199 3895 1 -1067577 200 3896 1 -1067578 200 3196 5 -1067579 200 3596 0 -1067580 200 3696 5 -1067581 200 3396 1 -1067582 202 394 3 -1067583 203 3998 3 -1067584 203 3598 0 -1067585 203 3498 3 -1067586 204 3299 5 -1067587 204 3599 0 -1067588 204 3499 3 -1067589 204 3999 3 -1067590 204 3799 5 -1067591 206 401 0 -1067592 207 3301 3 -1067593 207 3801 3 -1067594 207 3501 5 -1067595 207 3401 5 -1067596 207 3601 6 -1067597 207 3901 5 -1067598 207 4001 5 -1067599 208 3602 6 -1067600 208 3402 5 -1067601 208 3302 3 -1067602 208 3902 5 -1067603 208 3202 1 -1067604 208 3702 1 -1067605 208 3802 3 -1067606 210 408 6 -1067607 211 3304 5 -1067608 211 3604 0 -1067609 211 3904 1 -1067610 211 3804 5 -1067611 211 3204 5 -1067612 211 3504 3 -1067613 211 4004 3 -1067614 211 3704 5 -1067615 211 3404 1 -1067616 212 3405 1 -1067617 212 3305 5 -1067618 212 3205 5 -1067619 212 3805 5 -1067620 212 4005 3 -1067621 212 3705 5 -1067622 212 3905 1 -1067623 212 3505 3 -1067624 212 3605 0 -1067625 214 415 0 -1067626 218 422 0 -1067627 219 4128 5 -1067628 219 4170 6 -1067629 219 4121 5 -1067630 219 4142 1 -1067631 219 4135 6 -1067632 219 4156 5 -1067633 219 4107 1 -1067634 219 4163 5 -1067635 220 4136 6 -1067636 220 4143 1 -1067637 220 4171 6 -1067638 220 4108 1 -1067639 222 429 6 -1067640 223 4159 1 -1067641 223 4173 0 -1067642 223 4152 5 -1067643 223 4124 1 -1067644 223 4166 3 -1067645 223 4138 0 -1067646 223 4131 3 -1067647 223 4117 5 -1067648 224 4167 3 -1067649 224 4153 5 -1067650 224 4132 3 -1067651 224 4139 0 -1067652 224 4125 1 -1067653 224 4174 0 -1067654 224 4160 1 -1067655 224 4118 5 -1067656 226 436 0 -1067657 227 4431 1 -1067658 227 4363 5 -1067659 227 4193 5 -1067660 227 4278 5 -1067661 227 4465 0 -1067662 227 4227 3 -1067663 227 4261 5 -1067664 227 4176 5 -1067665 227 4346 5 -1067666 227 4244 0 -1067667 227 4210 1 -1067668 227 4414 5 -1067669 227 4295 5 -1067670 227 4312 5 -1067671 227 4380 5 -1067672 227 4448 3 -1067673 227 4329 5 -1067674 227 4397 5 -1067675 228 4194 5 -1067676 228 4245 0 -1067677 228 4432 1 -1067678 228 4466 0 -1067679 228 4211 1 -1067680 228 4415 5 -1067681 230 443 0 -1067682 231 4468 6 -1067683 231 4417 3 -1067684 231 4196 3 -1067685 231 4247 6 -1067686 231 4298 1 -1067687 231 4349 1 -1067688 231 4383 1 -1067689 231 4213 5 -1067690 231 4281 1 -1067691 231 4434 5 -1067692 231 4315 1 -1067693 231 4230 5 -1067694 231 4451 5 -1067695 231 4264 1 -1067696 231 4400 1 -1067697 231 4179 1 -1067698 231 4332 1 -1067699 231 4366 1 -1067700 232 4469 6 -1067701 232 4197 3 -1067702 232 4282 1 -1067703 232 4299 1 -1067704 232 4248 6 -1067705 232 4452 5 -1067706 232 4265 1 -1067707 232 4316 1 -1067708 232 4180 1 -1067709 232 4350 1 -1067710 232 4384 1 -1067711 232 4418 3 -1067712 232 4231 5 -1067713 232 4367 1 -1067714 232 4333 1 -1067715 232 4214 5 -1067716 232 4435 5 -1067717 232 4401 1 -1067718 234 450 6 -1067719 235 4369 5 +1067220 118 3527 \N +1067221 118 3927 \N +1067222 118 3227 \N +1067223 118 3627 \N +1067224 118 3427 \N +1067225 118 4027 \N +1067226 118 3727 \N +1067227 119 3728 \N +1067228 119 3628 \N +1067229 119 3528 \N +1067230 119 4028 \N +1067231 119 3228 \N +1067232 119 3128 \N +1067233 121 3806 \N +1067234 121 3706 \N +1067235 121 3106 \N +1067236 121 3306 \N +1067237 121 3206 \N +1067238 121 3506 \N +1067239 121 4006 \N +1067240 121 3606 \N +1067241 122 3830 \N +1067242 122 3130 \N +1067243 122 4030 \N +1067244 122 3330 \N +1067245 122 3530 \N +1067246 122 3630 \N +1067247 124 3532 \N +1067248 124 3332 \N +1067249 124 3432 \N +1067250 124 3932 \N +1067251 124 4032 \N +1067252 124 3832 \N +1067253 125 3833 \N +1067254 125 4033 \N +1067255 125 3933 \N +1067256 125 3733 \N +1067257 125 3533 \N +1067258 125 3333 \N +1067259 125 3433 \N +1067260 125 3233 \N +1067261 127 3235 \N +1067262 127 3535 \N +1067263 127 4035 \N +1067264 127 3435 \N +1067265 127 3335 \N +1067266 127 3835 \N +1067267 127 3735 \N +1067268 127 3935 \N +1067269 128 3336 \N +1067270 128 3536 \N +1067271 128 3836 \N +1067272 128 4036 \N +1067273 128 3236 \N +1067274 128 3136 \N +1067275 128 3636 \N +1067276 128 3736 \N +1067277 130 3738 \N +1067278 130 3938 \N +1067279 130 3538 \N +1067280 130 4038 \N +1067281 130 3638 \N +1067282 130 3438 \N +1067283 130 3238 \N +1067284 130 3138 \N +1067285 131 4039 \N +1067286 131 3939 \N +1067287 131 3239 \N +1067288 131 3739 \N +1067289 131 3139 \N +1067290 131 3639 \N +1067291 131 3539 \N +1067292 131 3439 \N +1067293 133 3141 \N +1067294 133 3341 \N +1067295 133 3641 \N +1067296 133 3541 \N +1067297 133 4041 \N +1067298 133 3841 \N +1067299 133 3941 \N +1067300 133 3441 \N +1067301 134 3542 \N +1067302 134 3342 \N +1067303 134 3842 \N +1067304 134 4042 \N +1067305 134 3142 \N +1067306 134 3642 \N +1067307 136 3344 \N +1067308 136 3544 \N +1067309 136 3444 \N +1067310 136 3944 \N +1067311 136 4044 \N +1067312 136 3844 \N +1067313 136 3244 \N +1067314 136 3744 \N +1067315 137 3445 \N +1067316 137 3845 \N +1067317 137 3245 \N +1067318 137 3745 \N +1067319 137 3545 \N +1067320 137 4045 \N +1067321 137 3345 \N +1067322 137 3945 \N +1067323 139 3347 \N +1067324 139 3747 \N +1067325 139 3547 \N +1067326 139 3447 \N +1067327 139 3147 \N +1067328 139 3247 \N +1067329 139 4047 \N +1067330 139 3647 \N +1067331 139 3847 \N +1067332 139 3947 \N +1067333 140 3548 \N +1067334 140 3748 \N +1067335 140 4048 \N +1067336 140 3248 \N +1067337 142 3650 \N +1067338 142 3250 \N +1067339 142 3550 \N +1067340 142 3450 \N +1067341 142 3350 \N +1067342 142 3850 \N +1067343 142 3150 \N +1067344 142 4050 \N +1067345 142 3950 \N +1067346 142 3750 \N +1067347 143 3951 \N +1067348 143 3351 \N +1067349 143 3651 \N +1067350 143 3151 \N +1067351 143 3551 \N +1067352 143 3451 \N +1067353 143 3851 \N +1067354 143 3251 \N +1067355 143 4051 \N +1067356 143 3751 \N +1067357 145 3553 \N +1067358 145 3353 \N +1067359 145 3853 \N +1067360 145 3453 \N +1067361 145 3953 \N +1067362 145 3153 \N +1067363 145 4053 \N +1067364 145 3653 \N +1067365 146 4054 \N +1067366 146 3854 \N +1067367 146 3554 \N +1067368 146 3354 \N +1067369 148 3256 \N +1067370 148 3856 \N +1067371 148 3456 \N +1067372 148 3756 \N +1067373 148 3556 \N +1067374 148 4056 \N +1067375 148 3356 \N +1067376 148 3956 \N +1067377 149 3757 \N +1067378 149 3557 \N +1067379 149 3357 \N +1067380 149 3457 \N +1067381 149 3857 \N +1067382 149 3257 \N +1067383 149 3957 \N +1067384 149 4057 \N +1067385 151 3559 \N +1067386 151 3759 \N +1067387 151 3959 \N +1067388 151 3259 \N +1067389 151 4059 \N +1067390 151 3459 \N +1067391 152 3260 \N +1067392 152 4060 \N +1067393 152 3360 \N +1067394 152 3160 \N +1067395 152 3560 \N +1067396 152 3860 \N +1067397 152 3760 \N +1067398 152 3660 \N +1067399 154 310 \N +1067400 155 3262 \N +1067401 155 3662 \N +1067402 155 3562 \N +1067403 155 3862 \N +1067404 155 4062 \N +1067405 155 3362 \N +1067406 155 3162 \N +1067407 155 3962 \N +1067408 155 3762 \N +1067409 155 3462 \N +1067410 156 3863 \N +1067411 156 3563 \N +1067412 156 3363 \N +1067413 156 3663 \N +1067414 156 3163 \N +1067415 156 4063 \N +1067416 156 3463 \N +1067417 156 3963 \N +1067418 159 3365 \N +1067419 159 3865 \N +1067420 159 3465 \N +1067421 159 3965 \N +1067422 159 3565 \N +1067423 159 4065 \N +1067424 160 3766 \N +1067425 160 3366 \N +1067426 160 3266 \N +1067427 160 4066 \N +1067428 160 3566 \N +1067429 160 3866 \N +1067430 162 324 \N +1067431 163 3568 \N +1067432 163 4068 \N +1067433 163 3268 \N +1067434 163 3468 \N +1067435 163 3968 \N +1067436 163 3768 \N +1067437 164 3169 \N +1067438 164 3269 \N +1067439 164 3669 \N +1067440 164 3469 \N +1067441 164 3969 \N +1067442 164 3569 \N +1067443 164 4069 \N +1067444 164 3769 \N +1067445 167 3271 \N +1067446 167 4071 \N +1067447 167 3371 \N +1067448 167 3771 \N +1067449 167 3671 \N +1067450 167 3471 \N +1067451 167 3971 \N +1067452 167 3171 \N +1067453 167 3571 \N +1067454 167 3871 \N +1067455 171 3574 \N +1067456 171 3674 \N +1067457 171 3974 \N +1067458 171 3874 \N +1067459 171 3174 \N +1067460 171 3474 \N +1067461 171 3374 \N +1067462 171 4074 \N +1067463 172 3975 \N +1067464 172 3575 \N +1067465 172 3375 \N +1067466 172 3475 \N +1067467 172 3175 \N +1067468 172 3675 \N +1067469 172 3875 \N +1067470 172 4075 \N +1067471 174 345 \N +1067472 175 3477 \N +1067473 175 3277 \N +1067474 175 3877 \N +1067475 175 4077 \N +1067476 175 3977 \N +1067477 175 3377 \N +1067478 175 3577 \N +1067479 175 3777 \N +1067480 176 3278 \N +1067481 176 3578 \N +1067482 176 3778 \N +1067483 176 4078 \N +1067484 178 352 \N +1067485 179 3780 \N +1067486 179 3980 \N +1067487 179 3880 \N +1067488 179 3480 \N +1067489 179 3280 \N +1067490 179 3380 \N +1067491 179 3180 \N +1067492 179 3580 \N +1067493 179 3680 \N +1067494 179 4080 \N +1067495 180 3581 \N +1067496 180 3281 \N +1067497 180 3481 \N +1067498 180 3981 \N +1067499 180 3881 \N +1067500 180 3781 \N +1067501 180 4081 \N +1067502 180 3381 \N +1067503 183 3183 \N +1067504 183 3683 \N +1067505 183 3983 \N +1067506 183 3383 \N +1067507 183 3483 \N +1067508 183 3283 \N +1067509 183 3783 \N +1067510 183 4083 \N +1067511 183 3583 \N +1067512 183 3883 \N +1067513 184 3884 \N +1067514 184 3584 \N +1067515 184 4084 \N +1067516 184 3384 \N +1067517 184 3784 \N +1067518 184 3284 \N +1067519 184 3184 \N +1067520 184 3684 \N +1067521 186 366 \N +1067522 187 4086 \N +1067523 187 3886 \N +1067524 187 3186 \N +1067525 187 3586 \N +1067526 187 3686 \N +1067527 187 3486 \N +1067528 187 3386 \N +1067529 187 3986 \N +1067530 188 3387 \N +1067531 188 3987 \N +1067532 188 4087 \N +1067533 188 3887 \N +1067534 188 3587 \N +1067535 188 3487 \N +1067536 191 3789 \N +1067537 191 3489 \N +1067538 191 3289 \N +1067539 191 4089 \N +1067540 191 3589 \N +1067541 191 3989 \N +1067542 192 4090 \N +1067543 192 3890 \N +1067544 192 3790 \N +1067545 192 3390 \N +1067546 192 3290 \N +1067547 192 3590 \N +1067548 195 3592 \N +1067549 195 4092 \N +1067550 195 3392 \N +1067551 195 3792 \N +1067552 195 3892 \N +1067553 195 3992 \N +1067554 195 3292 \N +1067555 195 3492 \N +1067556 196 3793 \N +1067557 196 3393 \N +1067558 196 4093 \N +1067559 196 3993 \N +1067560 196 3493 \N +1067561 196 3293 \N +1067562 196 3693 \N +1067563 196 3893 \N +1067564 196 3593 \N +1067565 196 3193 \N +1067566 198 387 \N +1067567 199 3395 \N +1067568 199 3195 \N +1067569 199 4095 \N +1067570 199 3295 \N +1067571 199 3795 \N +1067572 199 3695 \N +1067573 199 3595 \N +1067574 199 3495 \N +1067575 199 3995 \N +1067576 199 3895 \N +1067577 200 3896 \N +1067578 200 3196 \N +1067579 200 3596 \N +1067580 200 3696 \N +1067581 200 3396 \N +1067582 202 394 \N +1067583 203 3998 \N +1067584 203 3598 \N +1067585 203 3498 \N +1067586 204 3299 \N +1067587 204 3599 \N +1067588 204 3499 \N +1067589 204 3999 \N +1067590 204 3799 \N +1067591 206 401 \N +1067592 207 3301 \N +1067593 207 3801 \N +1067594 207 3501 \N +1067595 207 3401 \N +1067596 207 3601 \N +1067597 207 3901 \N +1067598 207 4001 \N +1067599 208 3602 \N +1067600 208 3402 \N +1067601 208 3302 \N +1067602 208 3902 \N +1067603 208 3202 \N +1067604 208 3702 \N +1067605 208 3802 \N +1067606 210 408 \N +1067607 211 3304 \N +1067608 211 3604 \N +1067609 211 3904 \N +1067610 211 3804 \N +1067611 211 3204 \N +1067612 211 3504 \N +1067613 211 4004 \N +1067614 211 3704 \N +1067615 211 3404 \N +1067616 212 3405 \N +1067617 212 3305 \N +1067618 212 3205 \N +1067619 212 3805 \N +1067620 212 4005 \N +1067621 212 3705 \N +1067622 212 3905 \N +1067623 212 3505 \N +1067624 212 3605 \N +1067625 214 415 \N +1067626 218 422 \N +1067627 219 4128 \N +1067628 219 4170 \N +1067629 219 4121 \N +1067630 219 4142 \N +1067631 219 4135 \N +1067632 219 4156 \N +1067633 219 4107 \N +1067634 219 4163 \N +1067635 220 4136 \N +1067636 220 4143 \N +1067637 220 4171 \N +1067638 220 4108 \N +1067639 222 429 \N +1067640 223 4159 \N +1067641 223 4173 \N +1067642 223 4152 \N +1067643 223 4124 \N +1067644 223 4166 \N +1067645 223 4138 \N +1067646 223 4131 \N +1067647 223 4117 \N +1067648 224 4167 \N +1067649 224 4153 \N +1067650 224 4132 \N +1067651 224 4139 \N +1067652 224 4125 \N +1067653 224 4174 \N +1067654 224 4160 \N +1067655 224 4118 \N +1067656 226 436 \N +1067657 227 4431 \N +1067658 227 4363 \N +1067659 227 4193 \N +1067660 227 4278 \N +1067661 227 4465 \N +1067662 227 4227 \N +1067663 227 4261 \N +1067664 227 4176 \N +1067665 227 4346 \N +1067666 227 4244 \N +1067667 227 4210 \N +1067668 227 4414 \N +1067669 227 4295 \N +1067670 227 4312 \N +1067671 227 4380 \N +1067672 227 4448 \N +1067673 227 4329 \N +1067674 227 4397 \N +1067675 228 4194 \N +1067676 228 4245 \N +1067677 228 4432 \N +1067678 228 4466 \N +1067679 228 4211 \N +1067680 228 4415 \N +1067681 230 443 \N +1067682 231 4468 \N +1067683 231 4417 \N +1067684 231 4196 \N +1067685 231 4247 \N +1067686 231 4298 \N +1067687 231 4349 \N +1067688 231 4383 \N +1067689 231 4213 \N +1067690 231 4281 \N +1067691 231 4434 \N +1067692 231 4315 \N +1067693 231 4230 \N +1067694 231 4451 \N +1067695 231 4264 \N +1067696 231 4400 \N +1067697 231 4179 \N +1067698 231 4332 \N +1067699 231 4366 \N +1067700 232 4469 \N +1067701 232 4197 \N +1067702 232 4282 \N +1067703 232 4299 \N +1067704 232 4248 \N +1067705 232 4452 \N +1067706 232 4265 \N +1067707 232 4316 \N +1067708 232 4180 \N +1067709 232 4350 \N +1067710 232 4384 \N +1067711 232 4418 \N +1067712 232 4231 \N +1067713 232 4367 \N +1067714 232 4333 \N +1067715 232 4214 \N +1067716 232 4435 \N +1067717 232 4401 \N +1067718 234 450 \N +1067719 235 4369 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1067720 235 4182 5 -1067721 235 4318 5 -1067722 235 4284 5 -1067723 235 4403 5 -1067724 235 4335 5 -1067725 235 4267 5 -1067726 235 4454 3 -1067727 235 4386 5 -1067728 235 4233 3 -1067729 235 4352 5 -1067730 235 4471 0 -1067731 235 4250 0 -1067732 235 4301 5 -1067733 236 4217 1 -1067734 236 4472 0 -1067735 236 4251 0 -1067736 236 4438 1 -1067737 238 457 0 -1067738 239 4236 3 -1067739 239 4423 5 -1067740 239 4253 0 -1067741 239 4440 1 -1067742 239 4202 5 -1067743 239 4457 3 -1067744 239 4474 0 -1067745 239 4219 1 -1067746 240 4441 1 -1067747 240 4424 5 -1067748 240 4458 3 -1067749 240 4203 5 -1067750 240 4254 0 -1067751 240 4237 3 -1067752 240 4475 0 -1067753 240 4220 1 -1067754 242 464 0 -1067755 243 4460 5 -1067756 243 4222 5 -1067757 243 4205 3 -1067758 243 4426 3 -1067759 243 4256 6 -1067760 243 4477 6 -1067761 243 4239 5 -1067762 243 4443 5 -1067763 244 4478 6 -1067764 244 4325 1 -1067765 244 4291 1 -1067766 244 4223 5 -1067767 244 4274 1 -1067768 244 4410 1 -1067769 244 4376 1 -1067770 244 4206 3 -1067771 244 4308 1 -1067772 244 4342 1 -1067773 244 4257 6 -1067774 244 4189 1 -1067775 244 4444 5 -1067776 244 4427 3 -1067777 244 4393 1 -1067778 244 4359 1 -1067779 246 471 6 -1067780 247 4463 3 -1067781 247 4412 5 -1067782 247 4259 0 -1067783 247 4242 3 -1067784 247 4429 5 -1067785 247 4293 5 -1067786 247 4327 5 -1067787 247 4480 0 -1067788 247 4276 5 -1067789 247 4344 5 -1067790 247 4208 5 -1067791 247 4191 5 -1067792 247 4310 5 -1067793 247 4378 5 -1067794 247 4361 5 -1067795 247 4395 5 -1067796 248 4362 5 -1067797 248 4192 5 -1067798 248 4260 0 -1067799 248 4396 5 -1067800 248 4481 0 -1067801 248 4464 3 -1067802 248 4328 5 -1067803 248 4311 5 -1067804 248 4345 5 -1067805 248 4243 3 -1067806 248 4277 5 -1067807 248 4294 5 -1067808 248 4379 5 -1067809 248 4413 5 -1067810 250 478 0 -1067811 251 4523 0 -1067812 251 4513 3 -1067813 251 4633 1 -1067814 251 4643 3 -1067815 251 4503 1 -1067816 251 4653 0 -1067817 252 4524 0 -1067818 252 4654 0 -1067819 252 4504 1 -1067820 252 4634 1 -1067821 252 4494 5 -1067822 252 4624 5 -1067823 254 485 0 -1067824 255 4526 6 -1067825 255 4646 5 -1067826 255 4506 5 -1067827 255 4636 5 -1067828 255 4626 3 -1067829 255 4656 6 -1067830 255 4516 5 -1067831 255 4496 3 -1067832 256 4517 5 -1067833 256 4507 5 -1067834 256 4647 5 -1067835 256 4637 5 -1067836 256 4557 1 -1067837 256 4597 1 -1067838 256 4487 1 -1067839 256 4497 3 -1067840 256 4567 1 -1067841 256 4577 1 -1067842 256 4537 1 -1067843 256 4587 1 -1067844 256 4607 1 -1067845 256 4627 3 -1067846 256 4617 1 -1067847 256 4527 6 -1067848 256 4657 6 -1067849 256 4547 1 -1067850 258 492 6 -1067851 259 4509 0 -1067852 259 4559 4 -1067853 259 4589 4 -1067854 259 4519 2 -1067855 259 4609 4 -1067856 259 4659 1 -1067857 259 4649 2 -1067858 259 4569 4 -1067859 259 4499 4 -1067860 259 4579 4 -1067861 259 4549 4 -1067862 259 4619 4 -1067863 259 4529 1 -1067864 259 4629 4 -1067865 259 4539 4 -1067866 259 4599 4 -1067867 259 4489 4 -1067868 259 4639 0 -1067869 260 4630 4 -1067870 260 4540 4 -1067871 260 4500 4 -1067872 260 4530 1 -1067873 260 4660 1 -1067874 260 4590 4 -1067875 260 4490 4 -1067876 260 4560 4 -1067877 260 4570 4 -1067878 260 4620 4 -1067879 260 4600 4 -1067880 260 4550 4 -1067881 260 4580 4 -1067882 260 4610 4 -1067883 262 499 1 -1067884 263 442 0 -1067885 263 1942 0 -1067886 263 1842 3 -1067887 263 3042 0 -1067888 263 342 3 -1067889 263 842 3 -1067890 263 2142 5 -1067891 263 1242 1 -1067892 263 2242 1 -1067893 263 1742 1 -1067894 263 2942 5 -1067895 263 2442 0 -1067896 263 142 5 -1067897 263 2642 5 -1067898 263 2342 3 -1067899 263 242 1 -1067900 263 742 1 -1067901 263 1442 0 -1067902 263 942 0 -1067903 263 1142 5 -1067904 263 2742 0 -1067905 263 1642 5 -1067906 263 642 5 -1067907 263 1342 3 -1067908 3 2504 2 -1067909 3 104 0 -1067910 3 2004 2 -1067911 3 1604 0 -1067912 3 504 2 -1067913 3 404 5 -1067914 3 2304 4 -1067915 3 804 4 -1067916 3 1904 5 -1067917 3 2404 5 -1067918 3 304 4 -1067919 3 1304 4 -1067920 3 2704 5 -1067921 3 1404 5 -1067922 3 1004 2 -1067923 3 1504 2 -1067924 3 1804 4 -1067925 3 604 0 -1067926 3 1104 0 -1067927 3 2804 2 -1067928 3 904 5 -1067929 3 2104 0 -1067930 3 3004 5 -1067931 6 2607 5 -1067932 6 1407 0 -1067933 6 2407 0 -1067934 6 2907 5 -1067935 6 707 1 -1067936 6 2707 0 -1067937 6 3007 0 -1067938 6 1207 1 -1067939 6 907 0 -1067940 6 2207 1 -1067941 6 207 1 -1067942 6 1907 0 -1067943 6 407 0 -1067944 6 1707 1 -1067945 9 1911 6 -1067946 9 1211 5 -1067947 9 2211 5 -1067948 9 711 5 -1067949 9 411 6 -1067950 9 2611 3 -1067951 9 2011 1 -1067952 9 1111 3 -1067953 9 2111 3 -1067954 9 2711 6 -1067955 9 611 3 -1067956 9 1411 6 -1067957 9 1511 1 -1067958 9 2911 3 -1067959 9 911 6 -1067960 9 211 5 -1067961 9 111 3 -1067962 9 511 1 -1067963 9 3011 6 -1067964 9 2411 6 -1067965 9 1011 1 -1067966 9 1611 3 -1067967 9 1711 5 -1067968 12 414 3 -1067969 12 2714 3 -1067970 12 3014 3 -1067971 12 2814 4 -1067972 12 614 4 -1067973 12 2114 4 -1067974 12 2614 4 -1067975 12 114 4 -1067976 12 1514 4 -1067977 12 514 4 -1067978 12 2914 4 -1067979 12 1014 4 -1067980 12 1914 3 -1067981 12 2514 4 -1067982 12 1414 3 -1067983 12 1614 4 -1067984 12 914 3 -1067985 12 2014 4 -1067986 12 2414 3 -1067987 12 1114 4 -1067988 15 1417 0 -1067989 15 417 0 -1067990 15 1717 1 -1067991 15 717 1 -1067992 15 1217 1 -1067993 15 217 1 -1067994 15 917 0 -1067995 15 1017 5 -1067996 15 1517 5 -1067997 15 3017 0 -1067998 15 1917 0 -1067999 15 517 5 -1068000 15 2717 0 -1068001 15 2017 5 -1068002 15 2417 0 -1068003 15 17 5 -1068004 15 2217 1 -1068005 18 2821 5 -1068006 18 2121 5 -1068007 18 1221 1 -1068008 18 2721 0 -1068009 18 1421 0 -1068010 18 1821 3 -1068011 18 621 5 -1068012 18 1621 5 -1068013 18 1121 5 -1068014 18 2521 5 -1068015 18 2221 1 -1068016 18 121 5 -1068017 18 921 0 -1068018 18 2321 3 -1068019 18 221 1 -1068020 18 2921 5 -1068021 18 1721 1 -1068022 18 1921 0 -1068023 18 1321 3 -1068024 18 721 1 -1068025 18 321 3 -1068026 18 821 3 -1068027 18 2421 0 -1068028 18 421 0 -1068029 18 2621 5 -1068030 18 3021 0 -1068031 21 924 3 -1068032 21 1924 3 -1068033 21 324 0 -1068034 21 2524 4 -1068035 21 2924 4 -1068036 21 1324 0 -1068037 21 1124 4 -1068038 21 2024 4 -1068039 21 2624 4 -1068040 21 1424 3 -1068041 21 2424 3 -1068042 21 424 3 -1068043 21 2124 4 -1068044 21 1524 4 -1068045 21 824 0 -1068046 21 2324 0 -1068047 21 3024 3 -1068048 21 24 4 -1068049 21 624 4 -1068050 21 1624 4 -1068051 21 524 4 -1068052 21 1024 4 -1068053 21 2824 4 -1068054 21 1824 0 -1068055 21 124 4 -1068056 21 2724 3 -1068057 24 1427 6 -1068058 24 1827 5 -1068059 24 2527 1 -1068060 24 2027 1 -1068061 24 2827 1 -1068062 24 427 6 -1068063 24 1927 6 -1068064 24 1727 5 -1068065 24 727 5 -1068066 24 1227 5 -1068067 24 327 5 -1068068 24 927 6 -1068069 24 227 5 -1068070 24 27 1 -1068071 24 2427 6 -1068072 24 1327 5 -1068073 24 527 1 -1068074 24 1027 1 -1068075 24 2727 6 -1068076 24 2327 5 -1068077 24 2227 5 -1068078 24 3027 6 -1068079 24 827 5 -1068080 24 1527 1 -1068081 27 1231 1 -1068082 27 2431 0 -1068083 27 2631 5 -1068084 27 931 0 -1068085 27 2931 5 -1068086 27 1631 5 -1068087 27 731 1 -1068088 27 2731 0 -1068089 27 2231 1 -1068090 27 231 1 -1068091 27 631 5 -1068092 27 1131 5 -1068093 27 3031 0 -1068094 27 2131 5 -1068095 27 1431 0 -1068096 27 1931 0 -1068097 27 1731 1 -1068098 27 431 0 -1068099 27 131 5 -1068100 30 2734 3 -1068101 30 2834 4 -1068102 30 834 0 -1068103 30 1134 4 -1068104 30 1934 3 -1068105 30 1834 0 -1068106 30 2134 4 -1068107 30 1334 0 -1068108 30 434 3 -1068109 30 334 0 -1068110 30 3034 3 -1068111 30 634 4 -1068112 30 934 3 -1068113 30 1634 4 -1068114 30 2434 3 -1068115 30 134 4 -1068116 30 2634 4 -1068117 30 1434 3 -1068118 30 2534 4 -1068119 30 2334 0 -1068120 30 2934 4 -1068121 33 936 1 -1068122 33 3036 1 -1068123 33 836 2 -1068124 33 2336 2 -1068125 33 236 0 -1068126 33 1636 4 -1068127 33 2136 4 -1068128 33 536 4 -1068129 33 2036 4 -1068130 33 1836 2 -1068131 33 2236 0 -1068132 33 136 4 -1068133 33 1436 1 -1068134 33 336 2 -1068135 33 2436 1 -1068136 33 636 4 -1068137 33 1036 4 -1068138 33 2536 4 -1068139 33 436 1 -1068140 33 1336 2 -1068141 33 2836 4 -1068142 33 1536 4 -1068143 33 2936 4 -1068144 33 2736 1 -1068145 33 1236 0 -1068146 33 2636 4 -1068147 33 736 0 -1068148 33 36 4 -1068149 33 1936 1 -1068150 33 1736 0 -1068151 33 1136 4 -1068152 36 2739 5 -1068153 36 2339 4 -1068154 36 1239 4 -1068155 36 39 2 -1068156 36 439 5 -1068157 36 1539 2 -1068158 36 839 4 -1068159 36 1439 5 -1068160 36 539 2 -1068161 36 2439 5 -1068162 36 1839 4 -1068163 36 1739 4 -1068164 36 339 4 -1068165 36 739 4 -1068166 36 2239 4 -1068167 36 939 5 -1068168 36 1939 5 -1068169 36 239 4 -1068170 36 1039 2 -1068171 36 3039 5 -1068172 36 1339 4 -1068173 36 2039 2 -1068174 39 2942 2 -1068175 39 1442 5 -1068176 39 2642 2 -1068177 39 2342 4 -1068178 39 742 4 -1068179 39 1142 2 -1068180 39 2742 5 -1068181 39 442 5 -1068182 39 3042 5 -1068183 39 842 4 -1068184 39 342 4 -1068185 39 2142 2 -1068186 39 1242 4 -1068187 39 642 2 -1068188 39 1642 2 -1068189 39 1942 5 -1068190 39 1342 4 -1068191 39 1842 4 -1068192 39 1742 4 -1068193 39 2242 4 -1068194 39 942 5 -1068195 39 2442 5 -1068196 39 142 2 -1068197 39 242 4 -1068198 42 3045 5 -1068199 42 1645 2 -1068200 42 2645 2 -1068201 42 345 4 -1068202 42 845 4 -1068203 42 1345 4 -1068204 42 2845 0 -1068205 42 1445 5 -1068206 42 2445 5 -1068207 42 645 2 -1068208 42 1845 4 -1068209 42 2945 2 -1068210 42 2545 0 -1068211 42 745 4 -1068212 42 1245 4 -1068213 42 245 4 -1068214 42 445 5 -1068215 42 1745 4 -1068216 42 1945 5 -1068217 42 2345 4 -1068218 42 2245 4 -1068219 42 1145 2 +1067720 235 4182 \N +1067721 235 4318 \N +1067722 235 4284 \N +1067723 235 4403 \N +1067724 235 4335 \N +1067725 235 4267 \N +1067726 235 4454 \N +1067727 235 4386 \N +1067728 235 4233 \N +1067729 235 4352 \N +1067730 235 4471 \N +1067731 235 4250 \N +1067732 235 4301 \N +1067733 236 4217 \N +1067734 236 4472 \N +1067735 236 4251 \N +1067736 236 4438 \N +1067737 238 457 \N +1067738 239 4236 \N +1067739 239 4423 \N +1067740 239 4253 \N +1067741 239 4440 \N +1067742 239 4202 \N +1067743 239 4457 \N +1067744 239 4474 \N +1067745 239 4219 \N +1067746 240 4441 \N +1067747 240 4424 \N +1067748 240 4458 \N +1067749 240 4203 \N +1067750 240 4254 \N +1067751 240 4237 \N +1067752 240 4475 \N +1067753 240 4220 \N +1067754 242 464 \N +1067755 243 4460 \N +1067756 243 4222 \N +1067757 243 4205 \N +1067758 243 4426 \N +1067759 243 4256 \N +1067760 243 4477 \N +1067761 243 4239 \N +1067762 243 4443 \N +1067763 244 4478 \N +1067764 244 4325 \N +1067765 244 4291 \N +1067766 244 4223 \N +1067767 244 4274 \N +1067768 244 4410 \N +1067769 244 4376 \N +1067770 244 4206 \N +1067771 244 4308 \N +1067772 244 4342 \N +1067773 244 4257 \N +1067774 244 4189 \N +1067775 244 4444 \N +1067776 244 4427 \N +1067777 244 4393 \N +1067778 244 4359 \N +1067779 246 471 \N +1067780 247 4463 \N +1067781 247 4412 \N +1067782 247 4259 \N +1067783 247 4242 \N +1067784 247 4429 \N +1067785 247 4293 \N +1067786 247 4327 \N +1067787 247 4480 \N +1067788 247 4276 \N +1067789 247 4344 \N +1067790 247 4208 \N +1067791 247 4191 \N +1067792 247 4310 \N +1067793 247 4378 \N +1067794 247 4361 \N +1067795 247 4395 \N +1067796 248 4362 \N +1067797 248 4192 \N +1067798 248 4260 \N +1067799 248 4396 \N +1067800 248 4481 \N +1067801 248 4464 \N +1067802 248 4328 \N +1067803 248 4311 \N +1067804 248 4345 \N +1067805 248 4243 \N +1067806 248 4277 \N +1067807 248 4294 \N +1067808 248 4379 \N +1067809 248 4413 \N +1067810 250 478 \N +1067811 251 4523 \N +1067812 251 4513 \N +1067813 251 4633 \N +1067814 251 4643 \N +1067815 251 4503 \N +1067816 251 4653 \N +1067817 252 4524 \N +1067818 252 4654 \N +1067819 252 4504 \N +1067820 252 4634 \N +1067821 252 4494 \N +1067822 252 4624 \N +1067823 254 485 \N +1067824 255 4526 \N +1067825 255 4646 \N +1067826 255 4506 \N +1067827 255 4636 \N +1067828 255 4626 \N +1067829 255 4656 \N +1067830 255 4516 \N +1067831 255 4496 \N +1067832 256 4517 \N +1067833 256 4507 \N +1067834 256 4647 \N +1067835 256 4637 \N +1067836 256 4557 \N +1067837 256 4597 \N +1067838 256 4487 \N +1067839 256 4497 \N +1067840 256 4567 \N +1067841 256 4577 \N +1067842 256 4537 \N +1067843 256 4587 \N +1067844 256 4607 \N +1067845 256 4627 \N +1067846 256 4617 \N +1067847 256 4527 \N +1067848 256 4657 \N +1067849 256 4547 \N +1067850 258 492 \N +1067851 259 4509 \N +1067852 259 4559 \N +1067853 259 4589 \N +1067854 259 4519 \N +1067855 259 4609 \N +1067856 259 4659 \N +1067857 259 4649 \N +1067858 259 4569 \N +1067859 259 4499 \N +1067860 259 4579 \N +1067861 259 4549 \N +1067862 259 4619 \N +1067863 259 4529 \N +1067864 259 4629 \N +1067865 259 4539 \N +1067866 259 4599 \N +1067867 259 4489 \N +1067868 259 4639 \N +1067869 260 4630 \N +1067870 260 4540 \N +1067871 260 4500 \N +1067872 260 4530 \N +1067873 260 4660 \N +1067874 260 4590 \N +1067875 260 4490 \N +1067876 260 4560 \N +1067877 260 4570 \N +1067878 260 4620 \N +1067879 260 4600 \N +1067880 260 4550 \N +1067881 260 4580 \N +1067882 260 4610 \N +1067883 262 499 \N +1067884 263 442 \N +1067885 263 1942 \N +1067886 263 1842 \N +1067887 263 3042 \N +1067888 263 342 \N +1067889 263 842 \N +1067890 263 2142 \N +1067891 263 1242 \N +1067892 263 2242 \N +1067893 263 1742 \N +1067894 263 2942 \N +1067895 263 2442 \N +1067896 263 142 \N +1067897 263 2642 \N +1067898 263 2342 \N +1067899 263 242 \N +1067900 263 742 \N +1067901 263 1442 \N +1067902 263 942 \N +1067903 263 1142 \N +1067904 263 2742 \N +1067905 263 1642 \N +1067906 263 642 \N +1067907 263 1342 \N +1067908 3 2504 \N +1067909 3 104 \N +1067910 3 2004 \N +1067911 3 1604 \N +1067912 3 504 \N +1067913 3 404 \N +1067914 3 2304 \N +1067915 3 804 \N +1067916 3 1904 \N +1067917 3 2404 \N +1067918 3 304 \N +1067919 3 1304 \N +1067920 3 2704 \N +1067921 3 1404 \N +1067922 3 1004 \N +1067923 3 1504 \N +1067924 3 1804 \N +1067925 3 604 \N +1067926 3 1104 \N +1067927 3 2804 \N +1067928 3 904 \N +1067929 3 2104 \N +1067930 3 3004 \N +1067931 6 2607 \N +1067932 6 1407 \N +1067933 6 2407 \N +1067934 6 2907 \N +1067935 6 707 \N +1067936 6 2707 \N +1067937 6 3007 \N +1067938 6 1207 \N +1067939 6 907 \N +1067940 6 2207 \N +1067941 6 207 \N +1067942 6 1907 \N +1067943 6 407 \N +1067944 6 1707 \N +1067945 9 1911 \N +1067946 9 1211 \N +1067947 9 2211 \N +1067948 9 711 \N +1067949 9 411 \N +1067950 9 2611 \N +1067951 9 2011 \N +1067952 9 1111 \N +1067953 9 2111 \N +1067954 9 2711 \N +1067955 9 611 \N +1067956 9 1411 \N +1067957 9 1511 \N +1067958 9 2911 \N +1067959 9 911 \N +1067960 9 211 \N +1067961 9 111 \N +1067962 9 511 \N +1067963 9 3011 \N +1067964 9 2411 \N +1067965 9 1011 \N +1067966 9 1611 \N +1067967 9 1711 \N +1067968 12 414 \N +1067969 12 2714 \N +1067970 12 3014 \N +1067971 12 2814 \N +1067972 12 614 \N +1067973 12 2114 \N +1067974 12 2614 \N +1067975 12 114 \N +1067976 12 1514 \N +1067977 12 514 \N +1067978 12 2914 \N +1067979 12 1014 \N +1067980 12 1914 \N +1067981 12 2514 \N +1067982 12 1414 \N +1067983 12 1614 \N +1067984 12 914 \N +1067985 12 2014 \N +1067986 12 2414 \N +1067987 12 1114 \N +1067988 15 1417 \N +1067989 15 417 \N +1067990 15 1717 \N +1067991 15 717 \N +1067992 15 1217 \N +1067993 15 217 \N +1067994 15 917 \N +1067995 15 1017 \N +1067996 15 1517 \N +1067997 15 3017 \N +1067998 15 1917 \N +1067999 15 517 \N +1068000 15 2717 \N +1068001 15 2017 \N +1068002 15 2417 \N +1068003 15 17 \N +1068004 15 2217 \N +1068005 18 2821 \N +1068006 18 2121 \N +1068007 18 1221 \N +1068008 18 2721 \N +1068009 18 1421 \N +1068010 18 1821 \N +1068011 18 621 \N +1068012 18 1621 \N +1068013 18 1121 \N +1068014 18 2521 \N +1068015 18 2221 \N +1068016 18 121 \N +1068017 18 921 \N +1068018 18 2321 \N +1068019 18 221 \N +1068020 18 2921 \N +1068021 18 1721 \N +1068022 18 1921 \N +1068023 18 1321 \N +1068024 18 721 \N +1068025 18 321 \N +1068026 18 821 \N +1068027 18 2421 \N +1068028 18 421 \N +1068029 18 2621 \N +1068030 18 3021 \N +1068031 21 924 \N +1068032 21 1924 \N +1068033 21 324 \N +1068034 21 2524 \N +1068035 21 2924 \N +1068036 21 1324 \N +1068037 21 1124 \N +1068038 21 2024 \N +1068039 21 2624 \N +1068040 21 1424 \N +1068041 21 2424 \N +1068042 21 424 \N +1068043 21 2124 \N +1068044 21 1524 \N +1068045 21 824 \N +1068046 21 2324 \N +1068047 21 3024 \N +1068048 21 24 \N +1068049 21 624 \N +1068050 21 1624 \N +1068051 21 524 \N +1068052 21 1024 \N +1068053 21 2824 \N +1068054 21 1824 \N +1068055 21 124 \N +1068056 21 2724 \N +1068057 24 1427 \N +1068058 24 1827 \N +1068059 24 2527 \N +1068060 24 2027 \N +1068061 24 2827 \N +1068062 24 427 \N +1068063 24 1927 \N +1068064 24 1727 \N +1068065 24 727 \N +1068066 24 1227 \N +1068067 24 327 \N +1068068 24 927 \N +1068069 24 227 \N +1068070 24 27 \N +1068071 24 2427 \N +1068072 24 1327 \N +1068073 24 527 \N +1068074 24 1027 \N +1068075 24 2727 \N +1068076 24 2327 \N +1068077 24 2227 \N +1068078 24 3027 \N +1068079 24 827 \N +1068080 24 1527 \N +1068081 27 1231 \N +1068082 27 2431 \N +1068083 27 2631 \N +1068084 27 931 \N +1068085 27 2931 \N +1068086 27 1631 \N +1068087 27 731 \N +1068088 27 2731 \N +1068089 27 2231 \N +1068090 27 231 \N +1068091 27 631 \N +1068092 27 1131 \N +1068093 27 3031 \N +1068094 27 2131 \N +1068095 27 1431 \N +1068096 27 1931 \N +1068097 27 1731 \N +1068098 27 431 \N +1068099 27 131 \N +1068100 30 2734 \N +1068101 30 2834 \N +1068102 30 834 \N +1068103 30 1134 \N +1068104 30 1934 \N +1068105 30 1834 \N +1068106 30 2134 \N +1068107 30 1334 \N +1068108 30 434 \N +1068109 30 334 \N +1068110 30 3034 \N +1068111 30 634 \N +1068112 30 934 \N +1068113 30 1634 \N +1068114 30 2434 \N +1068115 30 134 \N +1068116 30 2634 \N +1068117 30 1434 \N +1068118 30 2534 \N +1068119 30 2334 \N +1068120 30 2934 \N +1068121 33 936 \N +1068122 33 3036 \N +1068123 33 836 \N +1068124 33 2336 \N +1068125 33 236 \N +1068126 33 1636 \N +1068127 33 2136 \N +1068128 33 536 \N +1068129 33 2036 \N +1068130 33 1836 \N +1068131 33 2236 \N +1068132 33 136 \N +1068133 33 1436 \N +1068134 33 336 \N +1068135 33 2436 \N +1068136 33 636 \N +1068137 33 1036 \N +1068138 33 2536 \N +1068139 33 436 \N +1068140 33 1336 \N +1068141 33 2836 \N +1068142 33 1536 \N +1068143 33 2936 \N +1068144 33 2736 \N +1068145 33 1236 \N +1068146 33 2636 \N +1068147 33 736 \N +1068148 33 36 \N +1068149 33 1936 \N +1068150 33 1736 \N +1068151 33 1136 \N +1068152 36 2739 \N +1068153 36 2339 \N +1068154 36 1239 \N +1068155 36 39 \N +1068156 36 439 \N +1068157 36 1539 \N +1068158 36 839 \N +1068159 36 1439 \N +1068160 36 539 \N +1068161 36 2439 \N +1068162 36 1839 \N +1068163 36 1739 \N +1068164 36 339 \N +1068165 36 739 \N +1068166 36 2239 \N +1068167 36 939 \N +1068168 36 1939 \N +1068169 36 239 \N +1068170 36 1039 \N +1068171 36 3039 \N +1068172 36 1339 \N +1068173 36 2039 \N +1068174 39 2942 \N +1068175 39 1442 \N +1068176 39 2642 \N +1068177 39 2342 \N +1068178 39 742 \N +1068179 39 1142 \N +1068180 39 2742 \N +1068181 39 442 \N +1068182 39 3042 \N +1068183 39 842 \N +1068184 39 342 \N +1068185 39 2142 \N +1068186 39 1242 \N +1068187 39 642 \N +1068188 39 1642 \N +1068189 39 1942 \N +1068190 39 1342 \N +1068191 39 1842 \N +1068192 39 1742 \N +1068193 39 2242 \N +1068194 39 942 \N +1068195 39 2442 \N +1068196 39 142 \N +1068197 39 242 \N +1068198 42 3045 \N +1068199 42 1645 \N +1068200 42 2645 \N +1068201 42 345 \N +1068202 42 845 \N +1068203 42 1345 \N +1068204 42 2845 \N +1068205 42 1445 \N +1068206 42 2445 \N +1068207 42 645 \N +1068208 42 1845 \N +1068209 42 2945 \N +1068210 42 2545 \N +1068211 42 745 \N +1068212 42 1245 \N +1068213 42 245 \N +1068214 42 445 \N +1068215 42 1745 \N +1068216 42 1945 \N +1068217 42 2345 \N +1068218 42 2245 \N +1068219 42 1145 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1068220 42 145 2 -1068221 42 2745 5 -1068222 42 945 5 -1068223 42 2145 2 -1068224 45 1048 5 -1068225 45 48 5 -1068226 45 648 5 -1068227 45 2848 5 -1068228 45 1548 5 -1068229 45 448 0 -1068230 45 1248 1 -1068231 45 1348 3 -1068232 45 1148 5 -1068233 45 248 1 -1068234 45 2048 5 -1068235 45 2248 1 -1068236 45 2348 3 -1068237 45 1448 0 -1068238 45 548 5 -1068239 45 848 3 -1068240 45 2448 0 -1068241 45 2148 5 -1068242 45 2748 0 -1068243 45 748 1 -1068244 45 1748 1 -1068245 45 3048 0 -1068246 45 1948 0 -1068247 45 1648 5 -1068248 45 948 0 -1068249 45 2548 5 -1068250 45 1848 3 -1068251 45 348 3 -1068252 45 148 5 -1068253 48 2651 3 -1068254 48 1951 6 -1068255 48 851 5 -1068256 48 1451 6 -1068257 48 751 5 -1068258 48 2951 3 -1068259 48 2351 5 -1068260 48 351 5 -1068261 48 1851 5 -1068262 48 251 5 -1068263 48 2451 6 -1068264 48 2751 6 -1068265 48 1351 5 -1068266 48 1251 5 -1068267 48 2251 5 -1068268 48 951 6 -1068269 48 1751 5 -1068270 48 3051 6 -1068271 48 451 6 -1068272 51 1954 5 -1068273 51 654 2 -1068274 51 2854 0 -1068275 51 3054 5 -1068276 51 1154 2 -1068277 51 2754 5 -1068278 51 2454 5 -1068279 51 354 4 -1068280 51 454 5 -1068281 51 1654 2 -1068282 51 854 4 -1068283 51 154 2 -1068284 51 2954 2 -1068285 51 1854 4 -1068286 51 954 5 -1068287 51 2554 0 -1068288 51 1454 5 -1068289 51 1354 4 -1068290 51 2354 4 -1068291 51 2654 2 -1068292 51 2154 2 -1068293 54 857 3 -1068294 54 557 5 -1068295 54 357 3 -1068296 54 2757 0 -1068297 54 2557 5 -1068298 54 1657 5 -1068299 54 3057 0 -1068300 54 957 0 -1068301 54 1357 3 -1068302 54 257 1 -1068303 54 757 1 -1068304 54 2657 5 -1068305 54 1057 5 -1068306 54 1857 3 -1068307 54 2057 5 -1068308 54 57 5 -1068309 54 1957 0 -1068310 54 1257 1 -1068311 54 157 5 -1068312 54 1457 0 -1068313 54 2857 5 -1068314 54 2457 0 -1068315 54 2357 3 -1068316 54 2257 1 -1068317 54 1557 5 -1068318 54 457 0 -1068319 54 1757 1 -1068320 54 1157 5 -1068321 54 2957 5 -1068322 54 657 5 -1068323 54 2157 5 -1068324 57 60 1 -1068325 57 1560 1 -1068326 57 2260 5 -1068327 57 2760 6 -1068328 57 560 1 -1068329 57 3060 6 -1068330 57 1360 5 -1068331 57 2060 1 -1068332 57 1060 1 -1068333 57 2860 1 -1068334 57 1960 6 -1068335 57 2360 5 -1068336 57 1260 5 -1068337 57 2560 1 -1068338 57 960 6 -1068339 57 1860 5 -1068340 57 2460 6 -1068341 57 760 5 -1068342 57 860 5 -1068343 57 1460 6 -1068344 57 360 5 -1068345 57 260 5 -1068346 57 1760 5 -1068347 57 460 6 -1068348 60 2463 5 -1068349 60 1363 4 -1068350 60 363 4 -1068351 60 163 0 -1068352 60 2763 5 -1068353 60 863 4 -1068354 60 3063 5 -1068355 60 1163 0 -1068356 60 463 5 -1068357 60 2663 0 -1068358 60 963 5 -1068359 60 2363 4 -1068360 60 1463 5 -1068361 60 663 0 -1068362 60 2163 0 -1068363 60 2963 0 -1068364 60 1963 5 -1068365 60 1863 4 -1068366 60 1663 0 -1068367 63 366 4 -1068368 63 2766 5 -1068369 63 566 2 -1068370 63 2966 0 -1068371 63 266 4 -1068372 63 2266 4 -1068373 63 1866 4 -1068374 63 2166 0 -1068375 63 1966 5 -1068376 63 1466 5 -1068377 63 2666 0 -1068378 63 966 5 -1068379 63 466 5 -1068380 63 1366 4 -1068381 63 866 4 -1068382 63 766 4 -1068383 63 2066 2 -1068384 63 166 0 -1068385 63 1266 4 -1068386 63 1066 2 -1068387 63 66 2 -1068388 63 1566 2 -1068389 63 1766 4 -1068390 63 1666 0 -1068391 63 2466 5 -1068392 63 3066 5 -1068393 63 2366 4 -1068394 63 1166 0 -1068395 63 666 0 -1068396 66 1269 5 -1068397 66 2369 5 -1068398 66 2569 1 -1068399 66 1369 5 -1068400 66 369 5 -1068401 66 469 6 -1068402 66 1569 1 -1068403 66 69 1 -1068404 66 1969 6 -1068405 66 769 5 -1068406 66 869 5 -1068407 66 169 3 -1068408 66 2469 6 -1068409 66 1669 3 -1068410 66 2969 3 -1068411 66 969 6 -1068412 66 1869 5 -1068413 66 1069 1 -1068414 66 1469 6 -1068415 66 2069 1 -1068416 66 2769 6 -1068417 66 2169 3 -1068418 66 1769 5 -1068419 66 669 3 -1068420 66 2669 3 -1068421 66 2269 5 -1068422 66 2869 1 -1068423 66 269 5 -1068424 66 569 1 -1068425 66 3069 6 -1068426 66 1169 3 -1068427 69 372 4 -1068428 69 3072 5 -1068429 69 2072 0 -1068430 69 72 0 -1068431 69 972 5 -1068432 69 1872 4 -1068433 69 1972 5 -1068434 69 2272 4 -1068435 69 572 0 -1068436 69 1072 0 -1068437 69 1372 4 -1068438 69 772 4 -1068439 69 1272 4 -1068440 69 1572 0 -1068441 69 2372 4 -1068442 69 872 4 -1068443 69 272 4 -1068444 69 1472 5 -1068445 69 1772 4 -1068446 69 2772 5 -1068447 69 2472 5 -1068448 69 472 5 -1068449 72 2375 0 -1068450 72 775 2 -1068451 72 1675 4 -1068452 72 675 4 -1068453 72 375 0 -1068454 72 3075 3 -1068455 72 1975 3 -1068456 72 275 2 -1068457 72 1875 0 -1068458 72 1175 4 -1068459 72 975 3 -1068460 72 2275 2 -1068461 72 875 0 -1068462 72 1275 2 -1068463 72 2775 3 -1068464 72 1375 0 -1068465 72 2975 4 -1068466 72 2175 4 -1068467 72 175 4 -1068468 72 475 3 -1068469 72 1475 3 -1068470 72 2675 4 -1068471 72 2475 3 -1068472 72 1775 2 -1068473 75 279 4 -1068474 75 579 2 -1068475 75 1779 4 -1068476 75 779 4 -1068477 75 1679 0 -1068478 75 1079 2 -1068479 75 2879 2 -1068480 75 2179 0 -1068481 75 1979 5 -1068482 75 2479 5 -1068483 75 1479 5 -1068484 75 1279 4 -1068485 75 3079 5 -1068486 75 2779 5 -1068487 75 1179 0 -1068488 75 2079 2 -1068489 75 179 0 -1068490 75 2679 0 -1068491 75 2979 0 -1068492 75 2579 2 -1068493 75 979 5 -1068494 75 679 0 -1068495 75 1579 2 -1068496 75 2279 4 -1068497 75 79 2 -1068498 75 479 5 -1068499 78 1482 5 -1068500 78 2382 4 -1068501 78 2782 5 -1068502 78 882 4 -1068503 78 982 5 -1068504 78 3082 5 -1068505 78 1882 4 -1068506 78 1582 0 -1068507 78 1082 0 -1068508 78 82 0 -1068509 78 482 5 -1068510 78 2282 4 -1068511 78 282 4 -1068512 78 382 4 -1068513 78 2882 0 -1068514 78 1382 4 -1068515 78 1282 4 -1068516 78 2482 5 -1068517 78 2582 0 -1068518 78 1982 5 -1068519 78 2082 0 -1068520 78 582 0 -1068521 78 782 4 -1068522 78 1782 4 -1068523 81 985 3 -1068524 81 2185 4 -1068525 81 2685 4 -1068526 81 1785 2 -1068527 81 2985 4 -1068528 81 2485 3 -1068529 81 2285 2 -1068530 81 2785 3 -1068531 81 1985 3 -1068532 81 285 2 -1068533 81 485 3 -1068534 81 685 4 -1068535 81 1685 4 -1068536 81 1285 2 -1068537 81 3085 3 -1068538 81 1185 4 -1068539 81 185 4 -1068540 81 1485 3 -1068541 81 785 2 -1068542 84 1088 1 -1068543 84 2288 5 -1068544 84 1888 5 -1068545 84 1588 1 -1068546 84 988 6 -1068547 84 2988 3 -1068548 84 2488 6 -1068549 84 1388 5 -1068550 84 188 3 -1068551 84 3088 6 -1068552 84 88 1 -1068553 84 1688 3 -1068554 84 1188 3 -1068555 84 2788 6 -1068556 84 1488 6 -1068557 84 1988 6 -1068558 84 388 5 -1068559 84 288 5 -1068560 84 788 5 -1068561 84 1288 5 -1068562 84 888 5 -1068563 84 2388 5 -1068564 84 2088 1 -1068565 84 2688 3 -1068566 84 488 6 -1068567 84 1788 5 -1068568 84 688 3 -1068569 84 2188 3 -1068570 84 588 1 -1068571 87 3091 0 -1068572 87 91 5 -1068573 87 1091 5 -1068574 87 2891 5 -1068575 87 1991 0 -1068576 87 2991 5 -1068577 87 291 1 -1068578 87 2591 5 -1068579 87 1791 1 -1068580 87 2291 1 -1068581 87 1691 5 -1068582 87 2191 5 -1068583 87 591 5 -1068584 87 1491 0 -1068585 87 791 1 -1068586 87 1291 1 -1068587 87 691 5 -1068588 87 991 0 -1068589 87 1191 5 -1068590 87 2691 5 -1068591 87 2791 0 -1068592 87 1591 5 -1068593 87 491 0 -1068594 87 2491 0 -1068595 87 191 5 -1068596 87 2091 5 -1068597 90 94 2 -1068598 90 1394 4 -1068599 90 1894 4 -1068600 90 2494 5 -1068601 90 494 5 -1068602 90 594 2 -1068603 90 2394 4 -1068604 90 894 4 -1068605 90 1494 5 -1068606 90 1594 2 -1068607 90 3094 5 -1068608 90 994 5 -1068609 90 2094 2 -1068610 90 1994 5 -1068611 90 2794 5 -1068612 90 1094 2 -1068613 90 394 4 -1068614 93 2876 2 -1068615 93 1376 4 -1068616 93 676 0 -1068617 93 2976 0 -1068618 93 2276 4 -1068619 93 2176 0 -1068620 93 1276 4 -1068621 93 476 5 -1068622 93 1476 5 -1068623 93 1676 0 -1068624 93 1976 5 -1068625 93 2376 4 -1068626 93 976 5 -1068627 93 1776 4 -1068628 93 2576 2 -1068629 93 776 4 -1068630 93 176 0 -1068631 93 1176 0 -1068632 93 2676 0 -1068633 93 376 4 -1068634 93 276 4 -1068635 93 2776 5 -1068636 93 3076 5 -1068637 93 2476 5 -1068638 93 1876 4 -1068639 93 876 4 -1068640 96 1499 6 -1068641 96 1799 5 -1068642 96 1699 3 -1068643 96 2399 5 -1068644 96 799 5 -1068645 96 1899 5 -1068646 96 499 6 -1068647 96 999 6 -1068648 96 599 1 -1068649 96 2999 3 -1068650 96 2199 3 -1068651 96 1599 1 -1068652 96 1999 6 -1068653 96 3099 6 -1068654 96 1099 1 -1068655 96 2699 3 -1068656 96 699 3 -1068657 96 2099 1 -1068658 96 199 3 -1068659 96 2799 6 -1068660 96 99 1 -1068661 96 1199 3 -1068662 96 299 5 -1068663 96 2299 5 -1068664 96 1299 5 -1068665 96 399 5 -1068666 96 1399 5 -1068667 96 899 5 -1068668 96 2499 6 -1068669 99 3608 0 -1068670 99 3108 0 -1068671 99 4008 5 -1068672 99 3508 5 -1068673 99 3408 4 -1068674 99 3908 4 -1068675 102 3811 5 -1068676 102 4011 6 -1068677 102 3311 5 -1068678 102 3411 5 -1068679 102 3911 5 -1068680 102 3711 3 -1068681 102 3211 3 -1068682 102 3511 6 -1068683 105 3114 0 -1068684 105 3514 5 -1068685 105 3814 4 -1068686 105 3214 2 -1068687 105 4014 5 -1068688 105 3414 4 -1068689 105 3714 2 -1068690 105 3314 4 -1068691 105 3914 4 -1068692 105 3614 0 -1068693 108 3417 2 -1068694 108 3917 2 -1068695 108 3817 0 -1068696 108 3717 4 -1068697 108 4017 1 -1068698 108 3217 4 -1068699 108 3317 0 -1068700 108 3617 4 -1068701 108 3117 4 -1068702 108 3517 1 -1068703 111 3420 0 -1068704 111 3920 0 -1068705 111 4020 3 -1068706 111 3320 2 -1068707 111 3820 2 -1068708 111 3120 4 -1068709 111 3520 3 -1068710 111 3620 4 -1068711 114 3323 5 -1068712 114 3523 6 -1068713 114 4023 6 -1068714 114 3823 5 -1068715 114 3423 5 -1068716 114 3923 5 -1068717 114 3223 3 -1068718 114 3723 3 -1068719 117 3426 3 +1068220 42 145 \N +1068221 42 2745 \N +1068222 42 945 \N +1068223 42 2145 \N +1068224 45 1048 \N +1068225 45 48 \N +1068226 45 648 \N +1068227 45 2848 \N +1068228 45 1548 \N +1068229 45 448 \N +1068230 45 1248 \N +1068231 45 1348 \N +1068232 45 1148 \N +1068233 45 248 \N +1068234 45 2048 \N +1068235 45 2248 \N +1068236 45 2348 \N +1068237 45 1448 \N +1068238 45 548 \N +1068239 45 848 \N +1068240 45 2448 \N +1068241 45 2148 \N +1068242 45 2748 \N +1068243 45 748 \N +1068244 45 1748 \N +1068245 45 3048 \N +1068246 45 1948 \N +1068247 45 1648 \N +1068248 45 948 \N +1068249 45 2548 \N +1068250 45 1848 \N +1068251 45 348 \N +1068252 45 148 \N +1068253 48 2651 \N +1068254 48 1951 \N +1068255 48 851 \N +1068256 48 1451 \N +1068257 48 751 \N +1068258 48 2951 \N +1068259 48 2351 \N +1068260 48 351 \N +1068261 48 1851 \N +1068262 48 251 \N +1068263 48 2451 \N +1068264 48 2751 \N +1068265 48 1351 \N +1068266 48 1251 \N +1068267 48 2251 \N +1068268 48 951 \N +1068269 48 1751 \N +1068270 48 3051 \N +1068271 48 451 \N +1068272 51 1954 \N +1068273 51 654 \N +1068274 51 2854 \N +1068275 51 3054 \N +1068276 51 1154 \N +1068277 51 2754 \N +1068278 51 2454 \N +1068279 51 354 \N +1068280 51 454 \N +1068281 51 1654 \N +1068282 51 854 \N +1068283 51 154 \N +1068284 51 2954 \N +1068285 51 1854 \N +1068286 51 954 \N +1068287 51 2554 \N +1068288 51 1454 \N +1068289 51 1354 \N +1068290 51 2354 \N +1068291 51 2654 \N +1068292 51 2154 \N +1068293 54 857 \N +1068294 54 557 \N +1068295 54 357 \N +1068296 54 2757 \N +1068297 54 2557 \N +1068298 54 1657 \N +1068299 54 3057 \N +1068300 54 957 \N +1068301 54 1357 \N +1068302 54 257 \N +1068303 54 757 \N +1068304 54 2657 \N +1068305 54 1057 \N +1068306 54 1857 \N +1068307 54 2057 \N +1068308 54 57 \N +1068309 54 1957 \N +1068310 54 1257 \N +1068311 54 157 \N +1068312 54 1457 \N +1068313 54 2857 \N +1068314 54 2457 \N +1068315 54 2357 \N +1068316 54 2257 \N +1068317 54 1557 \N +1068318 54 457 \N +1068319 54 1757 \N +1068320 54 1157 \N +1068321 54 2957 \N +1068322 54 657 \N +1068323 54 2157 \N +1068324 57 60 \N +1068325 57 1560 \N +1068326 57 2260 \N +1068327 57 2760 \N +1068328 57 560 \N +1068329 57 3060 \N +1068330 57 1360 \N +1068331 57 2060 \N +1068332 57 1060 \N +1068333 57 2860 \N +1068334 57 1960 \N +1068335 57 2360 \N +1068336 57 1260 \N +1068337 57 2560 \N +1068338 57 960 \N +1068339 57 1860 \N +1068340 57 2460 \N +1068341 57 760 \N +1068342 57 860 \N +1068343 57 1460 \N +1068344 57 360 \N +1068345 57 260 \N +1068346 57 1760 \N +1068347 57 460 \N +1068348 60 2463 \N +1068349 60 1363 \N +1068350 60 363 \N +1068351 60 163 \N +1068352 60 2763 \N +1068353 60 863 \N +1068354 60 3063 \N +1068355 60 1163 \N +1068356 60 463 \N +1068357 60 2663 \N +1068358 60 963 \N +1068359 60 2363 \N +1068360 60 1463 \N +1068361 60 663 \N +1068362 60 2163 \N +1068363 60 2963 \N +1068364 60 1963 \N +1068365 60 1863 \N +1068366 60 1663 \N +1068367 63 366 \N +1068368 63 2766 \N +1068369 63 566 \N +1068370 63 2966 \N +1068371 63 266 \N +1068372 63 2266 \N +1068373 63 1866 \N +1068374 63 2166 \N +1068375 63 1966 \N +1068376 63 1466 \N +1068377 63 2666 \N +1068378 63 966 \N +1068379 63 466 \N +1068380 63 1366 \N +1068381 63 866 \N +1068382 63 766 \N +1068383 63 2066 \N +1068384 63 166 \N +1068385 63 1266 \N +1068386 63 1066 \N +1068387 63 66 \N +1068388 63 1566 \N +1068389 63 1766 \N +1068390 63 1666 \N +1068391 63 2466 \N +1068392 63 3066 \N +1068393 63 2366 \N +1068394 63 1166 \N +1068395 63 666 \N +1068396 66 1269 \N +1068397 66 2369 \N +1068398 66 2569 \N +1068399 66 1369 \N +1068400 66 369 \N +1068401 66 469 \N +1068402 66 1569 \N +1068403 66 69 \N +1068404 66 1969 \N +1068405 66 769 \N +1068406 66 869 \N +1068407 66 169 \N +1068408 66 2469 \N +1068409 66 1669 \N +1068410 66 2969 \N +1068411 66 969 \N +1068412 66 1869 \N +1068413 66 1069 \N +1068414 66 1469 \N +1068415 66 2069 \N +1068416 66 2769 \N +1068417 66 2169 \N +1068418 66 1769 \N +1068419 66 669 \N +1068420 66 2669 \N +1068421 66 2269 \N +1068422 66 2869 \N +1068423 66 269 \N +1068424 66 569 \N +1068425 66 3069 \N +1068426 66 1169 \N +1068427 69 372 \N +1068428 69 3072 \N +1068429 69 2072 \N +1068430 69 72 \N +1068431 69 972 \N +1068432 69 1872 \N +1068433 69 1972 \N +1068434 69 2272 \N +1068435 69 572 \N +1068436 69 1072 \N +1068437 69 1372 \N +1068438 69 772 \N +1068439 69 1272 \N +1068440 69 1572 \N +1068441 69 2372 \N +1068442 69 872 \N +1068443 69 272 \N +1068444 69 1472 \N +1068445 69 1772 \N +1068446 69 2772 \N +1068447 69 2472 \N +1068448 69 472 \N +1068449 72 2375 \N +1068450 72 775 \N +1068451 72 1675 \N +1068452 72 675 \N +1068453 72 375 \N +1068454 72 3075 \N +1068455 72 1975 \N +1068456 72 275 \N +1068457 72 1875 \N +1068458 72 1175 \N +1068459 72 975 \N +1068460 72 2275 \N +1068461 72 875 \N +1068462 72 1275 \N +1068463 72 2775 \N +1068464 72 1375 \N +1068465 72 2975 \N +1068466 72 2175 \N +1068467 72 175 \N +1068468 72 475 \N +1068469 72 1475 \N +1068470 72 2675 \N +1068471 72 2475 \N +1068472 72 1775 \N +1068473 75 279 \N +1068474 75 579 \N +1068475 75 1779 \N +1068476 75 779 \N +1068477 75 1679 \N +1068478 75 1079 \N +1068479 75 2879 \N +1068480 75 2179 \N +1068481 75 1979 \N +1068482 75 2479 \N +1068483 75 1479 \N +1068484 75 1279 \N +1068485 75 3079 \N +1068486 75 2779 \N +1068487 75 1179 \N +1068488 75 2079 \N +1068489 75 179 \N +1068490 75 2679 \N +1068491 75 2979 \N +1068492 75 2579 \N +1068493 75 979 \N +1068494 75 679 \N +1068495 75 1579 \N +1068496 75 2279 \N +1068497 75 79 \N +1068498 75 479 \N +1068499 78 1482 \N +1068500 78 2382 \N +1068501 78 2782 \N +1068502 78 882 \N +1068503 78 982 \N +1068504 78 3082 \N +1068505 78 1882 \N +1068506 78 1582 \N +1068507 78 1082 \N +1068508 78 82 \N +1068509 78 482 \N +1068510 78 2282 \N +1068511 78 282 \N +1068512 78 382 \N +1068513 78 2882 \N +1068514 78 1382 \N +1068515 78 1282 \N +1068516 78 2482 \N +1068517 78 2582 \N +1068518 78 1982 \N +1068519 78 2082 \N +1068520 78 582 \N +1068521 78 782 \N +1068522 78 1782 \N +1068523 81 985 \N +1068524 81 2185 \N +1068525 81 2685 \N +1068526 81 1785 \N +1068527 81 2985 \N +1068528 81 2485 \N +1068529 81 2285 \N +1068530 81 2785 \N +1068531 81 1985 \N +1068532 81 285 \N +1068533 81 485 \N +1068534 81 685 \N +1068535 81 1685 \N +1068536 81 1285 \N +1068537 81 3085 \N +1068538 81 1185 \N +1068539 81 185 \N +1068540 81 1485 \N +1068541 81 785 \N +1068542 84 1088 \N +1068543 84 2288 \N +1068544 84 1888 \N +1068545 84 1588 \N +1068546 84 988 \N +1068547 84 2988 \N +1068548 84 2488 \N +1068549 84 1388 \N +1068550 84 188 \N +1068551 84 3088 \N +1068552 84 88 \N +1068553 84 1688 \N +1068554 84 1188 \N +1068555 84 2788 \N +1068556 84 1488 \N +1068557 84 1988 \N +1068558 84 388 \N +1068559 84 288 \N +1068560 84 788 \N +1068561 84 1288 \N +1068562 84 888 \N +1068563 84 2388 \N +1068564 84 2088 \N +1068565 84 2688 \N +1068566 84 488 \N +1068567 84 1788 \N +1068568 84 688 \N +1068569 84 2188 \N +1068570 84 588 \N +1068571 87 3091 \N +1068572 87 91 \N +1068573 87 1091 \N +1068574 87 2891 \N +1068575 87 1991 \N +1068576 87 2991 \N +1068577 87 291 \N +1068578 87 2591 \N +1068579 87 1791 \N +1068580 87 2291 \N +1068581 87 1691 \N +1068582 87 2191 \N +1068583 87 591 \N +1068584 87 1491 \N +1068585 87 791 \N +1068586 87 1291 \N +1068587 87 691 \N +1068588 87 991 \N +1068589 87 1191 \N +1068590 87 2691 \N +1068591 87 2791 \N +1068592 87 1591 \N +1068593 87 491 \N +1068594 87 2491 \N +1068595 87 191 \N +1068596 87 2091 \N +1068597 90 94 \N +1068598 90 1394 \N +1068599 90 1894 \N +1068600 90 2494 \N +1068601 90 494 \N +1068602 90 594 \N +1068603 90 2394 \N +1068604 90 894 \N +1068605 90 1494 \N +1068606 90 1594 \N +1068607 90 3094 \N +1068608 90 994 \N +1068609 90 2094 \N +1068610 90 1994 \N +1068611 90 2794 \N +1068612 90 1094 \N +1068613 90 394 \N +1068614 93 2876 \N +1068615 93 1376 \N +1068616 93 676 \N +1068617 93 2976 \N +1068618 93 2276 \N +1068619 93 2176 \N +1068620 93 1276 \N +1068621 93 476 \N +1068622 93 1476 \N +1068623 93 1676 \N +1068624 93 1976 \N +1068625 93 2376 \N +1068626 93 976 \N +1068627 93 1776 \N +1068628 93 2576 \N +1068629 93 776 \N +1068630 93 176 \N +1068631 93 1176 \N +1068632 93 2676 \N +1068633 93 376 \N +1068634 93 276 \N +1068635 93 2776 \N +1068636 93 3076 \N +1068637 93 2476 \N +1068638 93 1876 \N +1068639 93 876 \N +1068640 96 1499 \N +1068641 96 1799 \N +1068642 96 1699 \N +1068643 96 2399 \N +1068644 96 799 \N +1068645 96 1899 \N +1068646 96 499 \N +1068647 96 999 \N +1068648 96 599 \N +1068649 96 2999 \N +1068650 96 2199 \N +1068651 96 1599 \N +1068652 96 1999 \N +1068653 96 3099 \N +1068654 96 1099 \N +1068655 96 2699 \N +1068656 96 699 \N +1068657 96 2099 \N +1068658 96 199 \N +1068659 96 2799 \N +1068660 96 99 \N +1068661 96 1199 \N +1068662 96 299 \N +1068663 96 2299 \N +1068664 96 1299 \N +1068665 96 399 \N +1068666 96 1399 \N +1068667 96 899 \N +1068668 96 2499 \N +1068669 99 3608 \N +1068670 99 3108 \N +1068671 99 4008 \N +1068672 99 3508 \N +1068673 99 3408 \N +1068674 99 3908 \N +1068675 102 3811 \N +1068676 102 4011 \N +1068677 102 3311 \N +1068678 102 3411 \N +1068679 102 3911 \N +1068680 102 3711 \N +1068681 102 3211 \N +1068682 102 3511 \N +1068683 105 3114 \N +1068684 105 3514 \N +1068685 105 3814 \N +1068686 105 3214 \N +1068687 105 4014 \N +1068688 105 3414 \N +1068689 105 3714 \N +1068690 105 3314 \N +1068691 105 3914 \N +1068692 105 3614 \N +1068693 108 3417 \N +1068694 108 3917 \N +1068695 108 3817 \N +1068696 108 3717 \N +1068697 108 4017 \N +1068698 108 3217 \N +1068699 108 3317 \N +1068700 108 3617 \N +1068701 108 3117 \N +1068702 108 3517 \N +1068703 111 3420 \N +1068704 111 3920 \N +1068705 111 4020 \N +1068706 111 3320 \N +1068707 111 3820 \N +1068708 111 3120 \N +1068709 111 3520 \N +1068710 111 3620 \N +1068711 114 3323 \N +1068712 114 3523 \N +1068713 114 4023 \N +1068714 114 3823 \N +1068715 114 3423 \N +1068716 114 3923 \N +1068717 114 3223 \N +1068718 114 3723 \N +1068719 117 3426 \N \. COPY action.hold_copy_map (id, hold, target_copy, proximity) FROM stdin; -1068720 117 3526 0 -1068721 117 4026 0 -1068722 117 3826 1 -1068723 117 3226 5 -1068724 117 3326 1 -1068725 117 3926 3 -1068726 117 3726 5 -1068727 120 3429 3 -1068728 120 3929 3 -1068729 120 3729 5 -1068730 120 3629 5 -1068731 120 3229 5 -1068732 120 3129 5 -1068733 120 3529 0 -1068734 120 4029 0 -1068735 123 3531 3 -1068736 123 3631 4 -1068737 123 4031 3 -1068738 123 3331 2 -1068739 123 3831 2 -1068740 123 3131 4 -1068741 126 3734 4 -1068742 126 3534 3 -1068743 126 3334 2 -1068744 126 3834 2 -1068745 126 4034 3 -1068746 126 3234 4 -1068747 129 4037 5 -1068748 129 3237 2 -1068749 129 3737 2 -1068750 129 3837 4 -1068751 129 3537 5 -1068752 129 3337 4 -1068753 132 3140 1 -1068754 132 3640 1 -1068755 132 4040 6 -1068756 132 3540 6 -1068757 132 3340 5 -1068758 132 3740 3 -1068759 132 3840 5 -1068760 132 3240 3 -1068761 135 4043 3 -1068762 135 3343 2 -1068763 135 3543 3 -1068764 135 3843 2 -1068765 138 3546 3 -1068766 138 3846 2 -1068767 138 4046 3 -1068768 138 3246 4 -1068769 138 3346 2 -1068770 138 3746 4 -1068771 141 3549 3 -1068772 141 4049 3 -1068773 141 3749 4 -1068774 141 3649 4 -1068775 141 3249 4 -1068776 141 3149 4 -1068777 144 4052 3 -1068778 144 3852 2 -1068779 144 3552 3 -1068780 144 3152 4 -1068781 144 3652 4 -1068782 144 3352 2 -1068783 147 4055 5 -1068784 147 3355 4 -1068785 147 3255 0 -1068786 147 3755 0 -1068787 147 3555 5 -1068788 147 3855 4 -1068789 150 4058 6 -1068790 150 3258 3 -1068791 150 3558 6 -1068792 150 3758 3 -1068793 150 3658 1 -1068794 150 3158 1 -1068795 153 4061 0 -1068796 153 3261 5 -1068797 153 3661 5 -1068798 153 3361 1 -1068799 153 3161 5 -1068800 153 3561 0 -1068801 153 3861 1 -1068802 153 3761 5 -1068803 157 3164 5 -1068804 157 3564 0 -1068805 157 4064 0 -1068806 157 3864 1 -1068807 157 3664 5 -1068808 157 3364 1 -1068809 161 3567 6 -1068810 161 3267 3 -1068811 161 3867 5 -1068812 161 3767 3 -1068813 161 4067 6 -1068814 161 3367 5 -1068815 165 3570 0 -1068816 165 3870 1 -1068817 165 3770 5 -1068818 165 3370 1 -1068819 165 4070 0 -1068820 165 3270 5 -1068821 169 3773 5 -1068822 169 3673 5 -1068823 169 3173 5 -1068824 169 3373 1 -1068825 169 4073 0 -1068826 169 3873 1 -1068827 169 3573 0 -1068828 169 3273 5 -1068829 173 4076 6 -1068830 173 3376 5 -1068831 173 3576 6 -1068832 173 3876 5 -1068833 177 3579 0 -1068834 177 3779 5 -1068835 177 3279 5 -1068836 177 4079 0 -1068837 181 3682 5 -1068838 181 3882 1 -1068839 181 3282 5 -1068840 181 3582 0 -1068841 181 3382 1 -1068842 181 3782 5 -1068843 181 3182 5 -1068844 181 4082 0 -1068845 185 3685 1 -1068846 185 4085 6 -1068847 185 3385 5 -1068848 185 3885 5 -1068849 185 3185 1 -1068850 185 3585 6 -1068851 189 3788 5 -1068852 189 3588 0 -1068853 189 4088 0 -1068854 189 3288 5 -1068855 193 3591 0 -1068856 193 3191 5 -1068857 193 3691 5 -1068858 193 4091 0 -1068859 193 3791 5 -1068860 193 3391 1 -1068861 193 3291 5 -1068862 193 3891 1 -1068863 197 3794 3 -1068864 197 3594 6 -1068865 197 3894 5 -1068866 197 3294 3 -1068867 197 4094 6 -1068868 197 3194 1 -1068869 197 3394 5 -1068870 197 3694 1 -1068871 201 3197 5 -1068872 201 3597 0 -1068873 201 3897 1 -1068874 201 3397 1 -1068875 201 3697 5 -1068876 205 3600 0 -1068877 205 3800 5 -1068878 205 3400 1 -1068879 205 3300 5 -1068880 205 3900 1 -1068881 209 3403 5 -1068882 209 3903 5 -1068883 209 3303 3 -1068884 209 3803 3 -1068885 209 3603 6 -1068886 217 4134 0 -1068887 217 4155 1 -1068888 217 4113 5 -1068889 217 4141 5 -1068890 217 4120 1 -1068891 217 4106 5 -1068892 217 4148 5 -1068893 217 4169 0 -1068894 221 4137 6 -1068895 221 4172 6 -1068896 225 4140 0 -1068897 225 4126 1 -1068898 225 4161 1 -1068899 225 4175 0 -1068900 225 4119 5 -1068901 225 4154 5 -1068902 229 4467 0 -1068903 229 4297 5 -1068904 229 4212 1 -1068905 229 4314 5 -1068906 229 4246 0 -1068907 229 4263 5 -1068908 229 4280 5 -1068909 229 4365 5 -1068910 229 4399 5 -1068911 229 4331 5 -1068912 229 4382 5 -1068913 229 4433 1 -1068914 229 4195 5 -1068915 229 4348 5 -1068916 229 4416 5 -1068917 229 4178 5 -1068918 233 4334 1 -1068919 233 4283 1 -1068920 233 4300 1 -1068921 233 4351 1 -1068922 233 4385 1 -1068923 233 4470 6 -1068924 233 4317 1 -1068925 233 4402 1 -1068926 233 4181 1 -1068927 233 4266 1 -1068928 233 4368 1 -1068929 233 4249 6 -1068930 237 4252 0 -1068931 237 4201 5 -1068932 237 4422 5 -1068933 237 4439 1 -1068934 237 4473 0 -1068935 237 4218 1 -1068936 241 4187 5 -1068937 241 4357 5 -1068938 241 4442 1 -1068939 241 4425 5 -1068940 241 4221 1 -1068941 241 4374 5 -1068942 241 4391 5 -1068943 241 4408 5 -1068944 241 4255 0 -1068945 241 4323 5 -1068946 241 4340 5 -1068947 241 4272 5 -1068948 241 4476 0 -1068949 241 4204 5 -1068950 241 4306 5 -1068951 241 4289 5 -1068952 245 4224 5 -1068953 245 4326 1 -1068954 245 4207 3 -1068955 245 4190 1 -1068956 245 4292 1 -1068957 245 4479 6 -1068958 245 4309 1 -1068959 245 4258 6 -1068960 245 4445 5 -1068961 245 4377 1 -1068962 245 4394 1 -1068963 245 4275 1 -1068964 245 4343 1 -1068965 245 4360 1 -1068966 245 4428 3 -1068967 245 4411 1 -1068968 249 4522 0 -1068969 249 4652 0 -1068970 249 4612 5 -1068971 249 4632 1 -1068972 249 4592 5 -1068973 249 4502 1 -1068974 249 4572 5 -1068975 249 4482 5 -1068976 249 4552 5 -1068977 249 4532 5 -1068978 249 4582 5 -1068979 249 4602 5 -1068980 249 4542 5 -1068981 249 4562 5 -1068982 253 4655 0 -1068983 253 4505 1 -1068984 253 4635 1 -1068985 253 4625 5 -1068986 253 4525 0 -1068987 253 4495 5 -1068988 257 4528 6 -1068989 257 4638 5 -1068990 257 4498 3 -1068991 257 4628 3 -1068992 257 4508 5 -1068993 257 4658 6 -1068994 261 4601 4 -1068995 261 4571 4 -1068996 261 4581 4 -1068997 261 4531 1 -1068998 261 4541 4 -1068999 261 4551 4 -1069000 261 4561 4 -1069001 261 4611 4 -1069002 261 4491 4 -1069003 261 4661 1 -1069004 261 4501 4 -1069005 261 4621 4 -1069006 261 4631 4 -1069007 261 4591 4 -1069008 264 757 4 -1069009 264 957 5 -1069010 264 1357 4 -1069011 264 257 4 -1069012 264 1657 4 -1069013 264 3057 5 -1069014 264 2757 5 -1069015 264 2557 4 -1069016 264 857 4 -1069017 264 557 4 -1069018 264 357 4 -1069019 264 1057 4 -1069020 264 2957 4 -1069021 264 657 4 -1069022 264 2157 4 -1069023 264 2657 4 -1069024 264 457 5 -1069025 264 1757 4 -1069026 264 1157 4 -1069027 264 2457 5 -1069028 264 2357 4 -1069029 264 2257 4 -1069030 264 1557 4 -1069031 264 1457 5 -1069032 264 2857 4 -1069033 264 1957 5 -1069034 264 1257 4 -1069035 264 157 4 -1069036 264 2057 4 -1069037 264 57 4 -1069038 264 1857 4 -1069039 265 1339 4 -1069040 265 2039 4 -1069041 265 3039 5 -1069042 265 1939 5 -1069043 265 939 5 -1069044 265 339 4 -1069045 265 2239 4 -1069046 265 739 4 -1069047 265 239 4 -1069048 265 1039 4 -1069049 265 2339 4 -1069050 265 1239 4 -1069051 265 2439 5 -1069052 265 1839 4 -1069053 265 1739 4 -1069054 265 439 5 -1069055 265 1539 4 -1069056 265 1439 5 -1069057 265 539 4 -1069058 265 839 4 -1069059 265 39 4 -1069060 265 2739 5 +1068720 117 3526 \N +1068721 117 4026 \N +1068722 117 3826 \N +1068723 117 3226 \N +1068724 117 3326 \N +1068725 117 3926 \N +1068726 117 3726 \N +1068727 120 3429 \N +1068728 120 3929 \N +1068729 120 3729 \N +1068730 120 3629 \N +1068731 120 3229 \N +1068732 120 3129 \N +1068733 120 3529 \N +1068734 120 4029 \N +1068735 123 3531 \N +1068736 123 3631 \N +1068737 123 4031 \N +1068738 123 3331 \N +1068739 123 3831 \N +1068740 123 3131 \N +1068741 126 3734 \N +1068742 126 3534 \N +1068743 126 3334 \N +1068744 126 3834 \N +1068745 126 4034 \N +1068746 126 3234 \N +1068747 129 4037 \N +1068748 129 3237 \N +1068749 129 3737 \N +1068750 129 3837 \N +1068751 129 3537 \N +1068752 129 3337 \N +1068753 132 3140 \N +1068754 132 3640 \N +1068755 132 4040 \N +1068756 132 3540 \N +1068757 132 3340 \N +1068758 132 3740 \N +1068759 132 3840 \N +1068760 132 3240 \N +1068761 135 4043 \N +1068762 135 3343 \N +1068763 135 3543 \N +1068764 135 3843 \N +1068765 138 3546 \N +1068766 138 3846 \N +1068767 138 4046 \N +1068768 138 3246 \N +1068769 138 3346 \N +1068770 138 3746 \N +1068771 141 3549 \N +1068772 141 4049 \N +1068773 141 3749 \N +1068774 141 3649 \N +1068775 141 3249 \N +1068776 141 3149 \N +1068777 144 4052 \N +1068778 144 3852 \N +1068779 144 3552 \N +1068780 144 3152 \N +1068781 144 3652 \N +1068782 144 3352 \N +1068783 147 4055 \N +1068784 147 3355 \N +1068785 147 3255 \N +1068786 147 3755 \N +1068787 147 3555 \N +1068788 147 3855 \N +1068789 150 4058 \N +1068790 150 3258 \N +1068791 150 3558 \N +1068792 150 3758 \N +1068793 150 3658 \N +1068794 150 3158 \N +1068795 153 4061 \N +1068796 153 3261 \N +1068797 153 3661 \N +1068798 153 3361 \N +1068799 153 3161 \N +1068800 153 3561 \N +1068801 153 3861 \N +1068802 153 3761 \N +1068803 157 3164 \N +1068804 157 3564 \N +1068805 157 4064 \N +1068806 157 3864 \N +1068807 157 3664 \N +1068808 157 3364 \N +1068809 161 3567 \N +1068810 161 3267 \N +1068811 161 3867 \N +1068812 161 3767 \N +1068813 161 4067 \N +1068814 161 3367 \N +1068815 165 3570 \N +1068816 165 3870 \N +1068817 165 3770 \N +1068818 165 3370 \N +1068819 165 4070 \N +1068820 165 3270 \N +1068821 169 3773 \N +1068822 169 3673 \N +1068823 169 3173 \N +1068824 169 3373 \N +1068825 169 4073 \N +1068826 169 3873 \N +1068827 169 3573 \N +1068828 169 3273 \N +1068829 173 4076 \N +1068830 173 3376 \N +1068831 173 3576 \N +1068832 173 3876 \N +1068833 177 3579 \N +1068834 177 3779 \N +1068835 177 3279 \N +1068836 177 4079 \N +1068837 181 3682 \N +1068838 181 3882 \N +1068839 181 3282 \N +1068840 181 3582 \N +1068841 181 3382 \N +1068842 181 3782 \N +1068843 181 3182 \N +1068844 181 4082 \N +1068845 185 3685 \N +1068846 185 4085 \N +1068847 185 3385 \N +1068848 185 3885 \N +1068849 185 3185 \N +1068850 185 3585 \N +1068851 189 3788 \N +1068852 189 3588 \N +1068853 189 4088 \N +1068854 189 3288 \N +1068855 193 3591 \N +1068856 193 3191 \N +1068857 193 3691 \N +1068858 193 4091 \N +1068859 193 3791 \N +1068860 193 3391 \N +1068861 193 3291 \N +1068862 193 3891 \N +1068863 197 3794 \N +1068864 197 3594 \N +1068865 197 3894 \N +1068866 197 3294 \N +1068867 197 4094 \N +1068868 197 3194 \N +1068869 197 3394 \N +1068870 197 3694 \N +1068871 201 3197 \N +1068872 201 3597 \N +1068873 201 3897 \N +1068874 201 3397 \N +1068875 201 3697 \N +1068876 205 3600 \N +1068877 205 3800 \N +1068878 205 3400 \N +1068879 205 3300 \N +1068880 205 3900 \N +1068881 209 3403 \N +1068882 209 3903 \N +1068883 209 3303 \N +1068884 209 3803 \N +1068885 209 3603 \N +1068886 217 4134 \N +1068887 217 4155 \N +1068888 217 4113 \N +1068889 217 4141 \N +1068890 217 4120 \N +1068891 217 4106 \N +1068892 217 4148 \N +1068893 217 4169 \N +1068894 221 4137 \N +1068895 221 4172 \N +1068896 225 4140 \N +1068897 225 4126 \N +1068898 225 4161 \N +1068899 225 4175 \N +1068900 225 4119 \N +1068901 225 4154 \N +1068902 229 4467 \N +1068903 229 4297 \N +1068904 229 4212 \N +1068905 229 4314 \N +1068906 229 4246 \N +1068907 229 4263 \N +1068908 229 4280 \N +1068909 229 4365 \N +1068910 229 4399 \N +1068911 229 4331 \N +1068912 229 4382 \N +1068913 229 4433 \N +1068914 229 4195 \N +1068915 229 4348 \N +1068916 229 4416 \N +1068917 229 4178 \N +1068918 233 4334 \N +1068919 233 4283 \N +1068920 233 4300 \N +1068921 233 4351 \N +1068922 233 4385 \N +1068923 233 4470 \N +1068924 233 4317 \N +1068925 233 4402 \N +1068926 233 4181 \N +1068927 233 4266 \N +1068928 233 4368 \N +1068929 233 4249 \N +1068930 237 4252 \N +1068931 237 4201 \N +1068932 237 4422 \N +1068933 237 4439 \N +1068934 237 4473 \N +1068935 237 4218 \N +1068936 241 4187 \N +1068937 241 4357 \N +1068938 241 4442 \N +1068939 241 4425 \N +1068940 241 4221 \N +1068941 241 4374 \N +1068942 241 4391 \N +1068943 241 4408 \N +1068944 241 4255 \N +1068945 241 4323 \N +1068946 241 4340 \N +1068947 241 4272 \N +1068948 241 4476 \N +1068949 241 4204 \N +1068950 241 4306 \N +1068951 241 4289 \N +1068952 245 4224 \N +1068953 245 4326 \N +1068954 245 4207 \N +1068955 245 4190 \N +1068956 245 4292 \N +1068957 245 4479 \N +1068958 245 4309 \N +1068959 245 4258 \N +1068960 245 4445 \N +1068961 245 4377 \N +1068962 245 4394 \N +1068963 245 4275 \N +1068964 245 4343 \N +1068965 245 4360 \N +1068966 245 4428 \N +1068967 245 4411 \N +1068968 249 4522 \N +1068969 249 4652 \N +1068970 249 4612 \N +1068971 249 4632 \N +1068972 249 4592 \N +1068973 249 4502 \N +1068974 249 4572 \N +1068975 249 4482 \N +1068976 249 4552 \N +1068977 249 4532 \N +1068978 249 4582 \N +1068979 249 4602 \N +1068980 249 4542 \N +1068981 249 4562 \N +1068982 253 4655 \N +1068983 253 4505 \N +1068984 253 4635 \N +1068985 253 4625 \N +1068986 253 4525 \N +1068987 253 4495 \N +1068988 257 4528 \N +1068989 257 4638 \N +1068990 257 4498 \N +1068991 257 4628 \N +1068992 257 4508 \N +1068993 257 4658 \N +1068994 261 4601 \N +1068995 261 4571 \N +1068996 261 4581 \N +1068997 261 4531 \N +1068998 261 4541 \N +1068999 261 4551 \N +1069000 261 4561 \N +1069001 261 4611 \N +1069002 261 4491 \N +1069003 261 4661 \N +1069004 261 4501 \N +1069005 261 4621 \N +1069006 261 4631 \N +1069007 261 4591 \N +1069008 264 757 \N +1069009 264 957 \N +1069010 264 1357 \N +1069011 264 257 \N +1069012 264 1657 \N +1069013 264 3057 \N +1069014 264 2757 \N +1069015 264 2557 \N +1069016 264 857 \N +1069017 264 557 \N +1069018 264 357 \N +1069019 264 1057 \N +1069020 264 2957 \N +1069021 264 657 \N +1069022 264 2157 \N +1069023 264 2657 \N +1069024 264 457 \N +1069025 264 1757 \N +1069026 264 1157 \N +1069027 264 2457 \N +1069028 264 2357 \N +1069029 264 2257 \N +1069030 264 1557 \N +1069031 264 1457 \N +1069032 264 2857 \N +1069033 264 1957 \N +1069034 264 1257 \N +1069035 264 157 \N +1069036 264 2057 \N +1069037 264 57 \N +1069038 264 1857 \N +1069039 265 1339 \N +1069040 265 2039 \N +1069041 265 3039 \N +1069042 265 1939 \N +1069043 265 939 \N +1069044 265 339 \N +1069045 265 2239 \N +1069046 265 739 \N +1069047 265 239 \N +1069048 265 1039 \N +1069049 265 2339 \N +1069050 265 1239 \N +1069051 265 2439 \N +1069052 265 1839 \N +1069053 265 1739 \N +1069054 265 439 \N +1069055 265 1539 \N +1069056 265 1439 \N +1069057 265 539 \N +1069058 265 839 \N +1069059 265 39 \N +1069060 265 2739 \N \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.survey_response.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.survey_response.sql index bc57bfa7d1..09a3b134fe 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/action.survey_response.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/action.survey_response.sql @@ -1,620 +1,620 @@ COPY action.survey_response (id, response_group_id, usr, survey, question, answer, answer_date, effective_date) FROM stdin; -1 \N 15 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -2 \N 15 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -3 \N 15 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -4 \N 1 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -5 \N 1 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -6 \N 1 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -7 \N 2 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -8 \N 2 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -9 \N 2 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -10 \N 3 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -11 \N 3 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -12 \N 3 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -13 \N 4 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -14 \N 4 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -15 \N 4 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -16 \N 5 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -17 \N 5 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -18 \N 5 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -19 \N 7 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -20 \N 7 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -21 \N 7 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -22 \N 8 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -23 \N 8 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -24 \N 8 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -25 \N 9 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -26 \N 9 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -27 \N 9 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -28 \N 10 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -29 \N 10 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -30 \N 10 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -31 \N 11 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -32 \N 11 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -33 \N 11 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -34 \N 13 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -35 \N 13 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -36 \N 13 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -37 \N 14 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -38 \N 14 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -39 \N 14 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -40 \N 16 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -41 \N 16 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -42 \N 16 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -43 \N 17 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -44 \N 17 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -45 \N 17 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -46 \N 19 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -47 \N 19 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -48 \N 19 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -49 \N 20 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -50 \N 20 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -51 \N 20 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -52 \N 21 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -53 \N 21 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -54 \N 21 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -55 \N 22 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -56 \N 22 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -57 \N 22 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -58 \N 23 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -59 \N 23 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -60 \N 23 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -61 \N 25 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -62 \N 25 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -63 \N 25 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -64 \N 26 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -65 \N 26 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -66 \N 26 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -67 \N 27 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -68 \N 27 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -69 \N 27 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -70 \N 28 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -71 \N 28 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -72 \N 28 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -73 \N 29 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -74 \N 29 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -75 \N 29 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -76 \N 31 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -77 \N 31 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -78 \N 31 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -79 \N 32 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -80 \N 32 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -81 \N 32 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -82 \N 33 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -83 \N 33 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -84 \N 33 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -85 \N 34 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -86 \N 34 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -87 \N 34 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -88 \N 35 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -89 \N 35 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -90 \N 35 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -91 \N 37 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -92 \N 37 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -93 \N 37 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -94 \N 38 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -95 \N 38 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -96 \N 38 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -97 \N 39 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -98 \N 39 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -99 \N 39 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -100 \N 40 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -101 \N 40 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -102 \N 40 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -103 \N 41 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -104 \N 41 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -105 \N 41 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -106 \N 43 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -107 \N 43 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -108 \N 43 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -109 \N 44 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -110 \N 44 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -111 \N 44 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -112 \N 45 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -113 \N 45 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -114 \N 45 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -115 \N 46 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -116 \N 46 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -117 \N 46 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -118 \N 47 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -119 \N 47 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -120 \N 47 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -121 \N 49 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -122 \N 49 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -123 \N 49 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -124 \N 50 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -125 \N 50 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -126 \N 50 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -127 \N 51 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -128 \N 51 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -129 \N 51 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -130 \N 52 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -131 \N 52 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -132 \N 52 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -133 \N 53 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -134 \N 53 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -135 \N 53 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -136 \N 55 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -137 \N 55 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -138 \N 55 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -139 \N 56 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -140 \N 56 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -141 \N 56 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -142 \N 57 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -143 \N 57 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -144 \N 57 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -145 \N 58 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -146 \N 58 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -147 \N 58 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -148 \N 59 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -149 \N 59 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -150 \N 59 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -151 \N 61 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -152 \N 61 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -153 \N 61 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -154 \N 62 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -155 \N 62 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -156 \N 62 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -157 \N 63 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -158 \N 63 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -159 \N 63 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -160 \N 64 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -161 \N 64 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -162 \N 64 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -163 \N 65 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -164 \N 65 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -165 \N 65 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -166 \N 67 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -167 \N 67 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -168 \N 67 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -169 \N 68 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -170 \N 68 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -171 \N 68 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -172 \N 69 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -173 \N 69 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -174 \N 69 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -175 \N 70 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -176 \N 70 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -177 \N 70 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -178 \N 71 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -179 \N 71 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -180 \N 71 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -181 \N 73 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -182 \N 73 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -183 \N 73 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -184 \N 74 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -185 \N 74 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -186 \N 74 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -187 \N 75 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -188 \N 75 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -189 \N 75 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -190 \N 76 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -191 \N 76 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -192 \N 76 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -193 \N 77 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -194 \N 77 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -195 \N 77 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -196 \N 79 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -197 \N 79 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -198 \N 79 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -199 \N 80 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -200 \N 80 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -201 \N 80 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -202 \N 81 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -203 \N 81 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -204 \N 81 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -205 \N 82 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -206 \N 82 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -207 \N 82 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -208 \N 83 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -209 \N 83 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -210 \N 83 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -211 \N 85 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -212 \N 85 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -213 \N 85 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -214 \N 86 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -215 \N 86 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -216 \N 86 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -217 \N 87 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -218 \N 87 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -219 \N 87 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -220 \N 88 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -221 \N 88 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -222 \N 88 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -223 \N 89 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -224 \N 89 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -225 \N 89 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -226 \N 91 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -227 \N 91 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -228 \N 91 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -229 \N 92 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -230 \N 92 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -231 \N 92 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -232 \N 93 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -233 \N 93 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -234 \N 93 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -235 \N 94 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -236 \N 94 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -237 \N 94 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -238 \N 95 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -239 \N 95 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -240 \N 95 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -241 \N 97 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -242 \N 97 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -243 \N 97 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -244 \N 98 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -245 \N 98 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -246 \N 98 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -247 \N 99 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -248 \N 99 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -249 \N 99 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -250 \N 100 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -251 \N 100 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -252 \N 100 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -253 \N 101 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -254 \N 101 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -255 \N 101 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -256 \N 103 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -257 \N 103 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -258 \N 103 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -259 \N 104 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -260 \N 104 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -261 \N 104 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -262 \N 105 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -263 \N 105 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -264 \N 105 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -265 \N 106 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -266 \N 106 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -267 \N 106 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -268 \N 107 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -269 \N 107 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -270 \N 107 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -271 \N 109 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -272 \N 109 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -273 \N 109 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -274 \N 110 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -275 \N 110 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -276 \N 110 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -277 \N 111 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -278 \N 111 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -279 \N 111 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -280 \N 112 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -281 \N 112 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -282 \N 112 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -283 \N 113 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -284 \N 113 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -285 \N 113 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -286 \N 115 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -287 \N 115 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -288 \N 115 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -289 \N 116 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -290 \N 116 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -291 \N 116 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -292 \N 117 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -293 \N 117 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -294 \N 117 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -295 \N 118 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -296 \N 118 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -297 \N 118 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -298 \N 119 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -299 \N 119 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -300 \N 119 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -301 \N 121 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -302 \N 121 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -303 \N 121 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -304 \N 122 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -305 \N 122 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -306 \N 122 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -307 \N 123 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -308 \N 123 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -309 \N 123 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -310 \N 124 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -311 \N 124 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -312 \N 124 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -313 \N 125 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -314 \N 125 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -315 \N 125 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -316 \N 127 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -317 \N 127 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -318 \N 127 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -319 \N 128 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -320 \N 128 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -321 \N 128 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -322 \N 129 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -323 \N 129 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -324 \N 129 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -325 \N 130 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -326 \N 130 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -327 \N 130 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -328 \N 131 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -329 \N 131 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -330 \N 131 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -331 \N 133 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -332 \N 133 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -333 \N 133 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -334 \N 134 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -335 \N 134 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -336 \N 134 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -337 \N 135 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -338 \N 135 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -339 \N 135 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -340 \N 136 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -341 \N 136 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -342 \N 136 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -343 \N 137 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -344 \N 137 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -345 \N 137 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -346 \N 139 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -347 \N 139 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -348 \N 139 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -349 \N 140 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -350 \N 140 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -351 \N 140 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -352 \N 141 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -353 \N 141 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -354 \N 141 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -355 \N 142 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -356 \N 142 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -357 \N 142 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -358 \N 143 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -359 \N 143 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -360 \N 143 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -361 \N 145 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -362 \N 145 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -363 \N 145 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -364 \N 146 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -365 \N 146 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -366 \N 146 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -367 \N 147 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -368 \N 147 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -369 \N 147 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -370 \N 148 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -371 \N 148 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -372 \N 148 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -373 \N 149 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -374 \N 149 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -375 \N 149 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -376 \N 151 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -377 \N 151 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -378 \N 151 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -379 \N 152 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -380 \N 152 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -381 \N 152 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -382 \N 153 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -383 \N 153 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -384 \N 153 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -385 \N 154 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -386 \N 154 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -387 \N 154 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -388 \N 155 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -389 \N 155 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -390 \N 155 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -391 \N 157 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -392 \N 157 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -393 \N 157 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -394 \N 158 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -395 \N 158 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -396 \N 158 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -397 \N 159 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -398 \N 159 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -399 \N 159 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -400 \N 160 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -401 \N 160 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -402 \N 160 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -403 \N 161 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -404 \N 161 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -405 \N 161 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -406 \N 163 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -407 \N 163 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -408 \N 163 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -409 \N 164 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -410 \N 164 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -411 \N 164 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -412 \N 165 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -413 \N 165 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -414 \N 165 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -415 \N 166 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -416 \N 166 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -417 \N 166 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -418 \N 167 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -419 \N 167 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -420 \N 167 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -421 \N 169 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -422 \N 169 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -423 \N 169 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -424 \N 170 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -425 \N 170 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -426 \N 170 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -427 \N 171 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -428 \N 171 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -429 \N 171 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -430 \N 172 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -431 \N 172 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -432 \N 172 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -433 \N 173 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -434 \N 173 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -435 \N 173 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -436 \N 175 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -437 \N 175 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -438 \N 175 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -439 \N 176 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -440 \N 176 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -441 \N 176 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -442 \N 177 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -443 \N 177 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -444 \N 177 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -445 \N 178 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -446 \N 178 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -447 \N 178 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -448 \N 179 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -449 \N 179 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -450 \N 179 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -451 \N 181 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -452 \N 181 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -453 \N 181 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -454 \N 182 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -455 \N 182 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -456 \N 182 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -457 \N 183 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -458 \N 183 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -459 \N 183 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -460 \N 184 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -461 \N 184 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -462 \N 184 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -463 \N 185 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -464 \N 185 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -465 \N 185 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -466 \N 187 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -467 \N 187 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -468 \N 187 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -469 \N 188 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -470 \N 188 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -471 \N 188 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -472 \N 189 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -473 \N 189 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -474 \N 189 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -475 \N 190 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -476 \N 190 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -477 \N 190 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -478 \N 191 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -479 \N 191 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -480 \N 191 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -481 \N 193 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -482 \N 193 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -483 \N 193 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -484 \N 194 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -485 \N 194 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -486 \N 194 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -487 \N 195 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -488 \N 195 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -489 \N 195 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -490 \N 196 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -491 \N 196 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -492 \N 196 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -493 \N 197 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -494 \N 197 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -495 \N 197 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -496 \N 199 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -497 \N 199 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -498 \N 199 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -499 \N 200 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -500 \N 200 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 +1 \N 15 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +2 \N 15 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +3 \N 15 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +4 \N 1 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +5 \N 1 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +6 \N 1 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +7 \N 2 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +8 \N 2 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +9 \N 2 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +10 \N 3 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +11 \N 3 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +12 \N 3 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +13 \N 4 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +14 \N 4 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +15 \N 4 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +16 \N 5 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +17 \N 5 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +18 \N 5 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +19 \N 7 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +20 \N 7 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +21 \N 7 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +22 \N 8 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +23 \N 8 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +24 \N 8 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +25 \N 9 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +26 \N 9 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +27 \N 9 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +28 \N 10 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +29 \N 10 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +30 \N 10 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +31 \N 11 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +32 \N 11 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +33 \N 11 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +34 \N 13 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +35 \N 13 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +36 \N 13 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +37 \N 14 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +38 \N 14 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +39 \N 14 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +40 \N 16 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +41 \N 16 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +42 \N 16 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +43 \N 17 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +44 \N 17 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +45 \N 17 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +46 \N 19 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +47 \N 19 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +48 \N 19 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +49 \N 20 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +50 \N 20 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +51 \N 20 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +52 \N 21 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +53 \N 21 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +54 \N 21 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +55 \N 22 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +56 \N 22 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +57 \N 22 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +58 \N 23 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +59 \N 23 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +60 \N 23 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +61 \N 25 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +62 \N 25 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +63 \N 25 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +64 \N 26 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +65 \N 26 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +66 \N 26 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +67 \N 27 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +68 \N 27 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +69 \N 27 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +70 \N 28 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +71 \N 28 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +72 \N 28 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +73 \N 29 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +74 \N 29 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +75 \N 29 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +76 \N 31 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +77 \N 31 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +78 \N 31 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +79 \N 32 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +80 \N 32 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +81 \N 32 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +82 \N 33 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +83 \N 33 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +84 \N 33 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +85 \N 34 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +86 \N 34 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +87 \N 34 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +88 \N 35 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +89 \N 35 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +90 \N 35 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +91 \N 37 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +92 \N 37 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +93 \N 37 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +94 \N 38 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +95 \N 38 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +96 \N 38 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +97 \N 39 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +98 \N 39 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +99 \N 39 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +100 \N 40 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +101 \N 40 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +102 \N 40 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +103 \N 41 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +104 \N 41 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +105 \N 41 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +106 \N 43 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +107 \N 43 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +108 \N 43 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +109 \N 44 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +110 \N 44 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +111 \N 44 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +112 \N 45 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +113 \N 45 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +114 \N 45 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +115 \N 46 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +116 \N 46 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +117 \N 46 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +118 \N 47 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +119 \N 47 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +120 \N 47 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +121 \N 49 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +122 \N 49 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +123 \N 49 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +124 \N 50 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +125 \N 50 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +126 \N 50 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +127 \N 51 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +128 \N 51 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +129 \N 51 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +130 \N 52 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +131 \N 52 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +132 \N 52 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +133 \N 53 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +134 \N 53 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +135 \N 53 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +136 \N 55 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +137 \N 55 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +138 \N 55 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +139 \N 56 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +140 \N 56 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +141 \N 56 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +142 \N 57 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +143 \N 57 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +144 \N 57 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +145 \N 58 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +146 \N 58 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +147 \N 58 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +148 \N 59 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +149 \N 59 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +150 \N 59 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +151 \N 61 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +152 \N 61 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +153 \N 61 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +154 \N 62 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +155 \N 62 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +156 \N 62 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +157 \N 63 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +158 \N 63 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +159 \N 63 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +160 \N 64 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +161 \N 64 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +162 \N 64 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +163 \N 65 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +164 \N 65 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +165 \N 65 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +166 \N 67 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +167 \N 67 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +168 \N 67 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +169 \N 68 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +170 \N 68 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +171 \N 68 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +172 \N 69 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +173 \N 69 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +174 \N 69 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +175 \N 70 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +176 \N 70 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +177 \N 70 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +178 \N 71 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +179 \N 71 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +180 \N 71 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +181 \N 73 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +182 \N 73 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +183 \N 73 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +184 \N 74 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +185 \N 74 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +186 \N 74 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +187 \N 75 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +188 \N 75 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +189 \N 75 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +190 \N 76 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +191 \N 76 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +192 \N 76 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +193 \N 77 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +194 \N 77 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +195 \N 77 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +196 \N 79 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +197 \N 79 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +198 \N 79 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +199 \N 80 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +200 \N 80 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +201 \N 80 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +202 \N 81 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +203 \N 81 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +204 \N 81 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +205 \N 82 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +206 \N 82 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +207 \N 82 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +208 \N 83 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +209 \N 83 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +210 \N 83 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +211 \N 85 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +212 \N 85 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +213 \N 85 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +214 \N 86 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +215 \N 86 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +216 \N 86 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +217 \N 87 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +218 \N 87 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +219 \N 87 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +220 \N 88 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +221 \N 88 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +222 \N 88 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +223 \N 89 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +224 \N 89 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +225 \N 89 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +226 \N 91 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +227 \N 91 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +228 \N 91 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +229 \N 92 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +230 \N 92 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +231 \N 92 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +232 \N 93 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +233 \N 93 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +234 \N 93 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +235 \N 94 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +236 \N 94 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +237 \N 94 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +238 \N 95 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +239 \N 95 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +240 \N 95 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +241 \N 97 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +242 \N 97 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +243 \N 97 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +244 \N 98 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +245 \N 98 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +246 \N 98 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +247 \N 99 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +248 \N 99 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +249 \N 99 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +250 \N 100 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +251 \N 100 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +252 \N 100 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +253 \N 101 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +254 \N 101 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +255 \N 101 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +256 \N 103 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +257 \N 103 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +258 \N 103 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +259 \N 104 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +260 \N 104 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +261 \N 104 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +262 \N 105 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +263 \N 105 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +264 \N 105 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +265 \N 106 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +266 \N 106 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +267 \N 106 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +268 \N 107 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +269 \N 107 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +270 \N 107 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +271 \N 109 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +272 \N 109 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +273 \N 109 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +274 \N 110 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +275 \N 110 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +276 \N 110 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +277 \N 111 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +278 \N 111 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +279 \N 111 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +280 \N 112 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +281 \N 112 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +282 \N 112 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +283 \N 113 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +284 \N 113 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +285 \N 113 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +286 \N 115 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +287 \N 115 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +288 \N 115 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +289 \N 116 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +290 \N 116 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +291 \N 116 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +292 \N 117 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +293 \N 117 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +294 \N 117 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +295 \N 118 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +296 \N 118 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +297 \N 118 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +298 \N 119 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +299 \N 119 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +300 \N 119 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +301 \N 121 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +302 \N 121 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +303 \N 121 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +304 \N 122 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +305 \N 122 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +306 \N 122 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +307 \N 123 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +308 \N 123 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +309 \N 123 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +310 \N 124 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +311 \N 124 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +312 \N 124 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +313 \N 125 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +314 \N 125 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +315 \N 125 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +316 \N 127 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +317 \N 127 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +318 \N 127 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +319 \N 128 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +320 \N 128 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +321 \N 128 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +322 \N 129 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +323 \N 129 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +324 \N 129 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +325 \N 130 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +326 \N 130 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +327 \N 130 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +328 \N 131 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +329 \N 131 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +330 \N 131 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +331 \N 133 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +332 \N 133 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +333 \N 133 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +334 \N 134 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +335 \N 134 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +336 \N 134 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +337 \N 135 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +338 \N 135 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +339 \N 135 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +340 \N 136 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +341 \N 136 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +342 \N 136 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +343 \N 137 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +344 \N 137 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +345 \N 137 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +346 \N 139 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +347 \N 139 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +348 \N 139 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +349 \N 140 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +350 \N 140 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +351 \N 140 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +352 \N 141 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +353 \N 141 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +354 \N 141 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +355 \N 142 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +356 \N 142 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +357 \N 142 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +358 \N 143 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +359 \N 143 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +360 \N 143 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +361 \N 145 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +362 \N 145 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +363 \N 145 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +364 \N 146 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +365 \N 146 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +366 \N 146 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +367 \N 147 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +368 \N 147 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +369 \N 147 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +370 \N 148 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +371 \N 148 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +372 \N 148 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +373 \N 149 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +374 \N 149 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +375 \N 149 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +376 \N 151 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +377 \N 151 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +378 \N 151 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +379 \N 152 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +380 \N 152 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +381 \N 152 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +382 \N 153 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +383 \N 153 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +384 \N 153 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +385 \N 154 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +386 \N 154 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +387 \N 154 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +388 \N 155 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +389 \N 155 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +390 \N 155 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +391 \N 157 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +392 \N 157 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +393 \N 157 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +394 \N 158 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +395 \N 158 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +396 \N 158 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +397 \N 159 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +398 \N 159 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +399 \N 159 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +400 \N 160 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +401 \N 160 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +402 \N 160 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +403 \N 161 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +404 \N 161 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +405 \N 161 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +406 \N 163 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +407 \N 163 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +408 \N 163 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +409 \N 164 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +410 \N 164 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +411 \N 164 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +412 \N 165 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +413 \N 165 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +414 \N 165 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +415 \N 166 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +416 \N 166 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +417 \N 166 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +418 \N 167 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +419 \N 167 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +420 \N 167 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +421 \N 169 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +422 \N 169 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +423 \N 169 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +424 \N 170 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +425 \N 170 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +426 \N 170 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +427 \N 171 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +428 \N 171 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +429 \N 171 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +430 \N 172 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +431 \N 172 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +432 \N 172 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +433 \N 173 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +434 \N 173 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +435 \N 173 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +436 \N 175 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +437 \N 175 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +438 \N 175 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +439 \N 176 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +440 \N 176 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +441 \N 176 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +442 \N 177 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +443 \N 177 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +444 \N 177 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +445 \N 178 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +446 \N 178 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +447 \N 178 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +448 \N 179 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +449 \N 179 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +450 \N 179 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +451 \N 181 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +452 \N 181 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +453 \N 181 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +454 \N 182 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +455 \N 182 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +456 \N 182 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +457 \N 183 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +458 \N 183 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +459 \N 183 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +460 \N 184 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +461 \N 184 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +462 \N 184 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +463 \N 185 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +464 \N 185 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +465 \N 185 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +466 \N 187 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +467 \N 187 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +468 \N 187 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +469 \N 188 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +470 \N 188 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +471 \N 188 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +472 \N 189 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +473 \N 189 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +474 \N 189 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +475 \N 190 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +476 \N 190 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +477 \N 190 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +478 \N 191 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +479 \N 191 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +480 \N 191 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +481 \N 193 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +482 \N 193 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +483 \N 193 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +484 \N 194 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +485 \N 194 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +486 \N 194 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +487 \N 195 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +488 \N 195 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +489 \N 195 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +490 \N 196 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +491 \N 196 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +492 \N 196 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +493 \N 197 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +494 \N 197 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +495 \N 197 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +496 \N 199 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +497 \N 199 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +498 \N 199 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +499 \N 200 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +500 \N 200 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 \. COPY action.survey_response (id, response_group_id, usr, survey, question, answer, answer_date, effective_date) FROM stdin; -501 \N 200 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -502 \N 201 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -503 \N 201 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -504 \N 201 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -505 \N 202 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -506 \N 202 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -507 \N 202 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -508 \N 203 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -509 \N 203 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -510 \N 203 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -511 \N 205 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -512 \N 205 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -513 \N 205 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -514 \N 206 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -515 \N 206 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -516 \N 206 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -517 \N 207 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -518 \N 207 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -519 \N 207 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -520 \N 208 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -521 \N 208 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -522 \N 208 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -523 \N 209 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -524 \N 209 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -525 \N 209 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -526 \N 211 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -527 \N 211 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -528 \N 211 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -529 \N 212 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -530 \N 212 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -531 \N 212 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -532 \N 213 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -533 \N 213 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -534 \N 213 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -535 \N 214 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -536 \N 214 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -537 \N 214 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -538 \N 215 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -539 \N 215 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -540 \N 215 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -541 \N 217 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -542 \N 217 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -543 \N 217 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -544 \N 218 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -545 \N 218 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -546 \N 218 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -547 \N 219 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -548 \N 219 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -549 \N 219 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -550 \N 220 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -551 \N 220 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -552 \N 220 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -553 \N 221 1 1 4 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -554 \N 221 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -555 \N 221 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -556 \N 223 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -557 \N 223 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -558 \N 223 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -559 \N 224 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -560 \N 224 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -561 \N 224 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -562 \N 225 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -563 \N 225 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -564 \N 225 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -565 \N 226 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -566 \N 226 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -567 \N 226 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -568 \N 227 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -569 \N 227 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -570 \N 227 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -571 \N 229 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -572 \N 229 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -573 \N 229 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -574 \N 230 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -575 \N 230 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -576 \N 230 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -577 \N 231 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -578 \N 231 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -579 \N 231 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -580 \N 232 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -581 \N 232 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -582 \N 232 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -583 \N 233 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -584 \N 233 1 2 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -585 \N 233 1 3 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -586 \N 235 1 1 3 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -587 \N 235 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -588 \N 235 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -589 \N 236 1 1 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -590 \N 236 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -591 \N 236 1 3 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -592 \N 237 1 1 7 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -593 \N 237 1 2 8 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -594 \N 237 1 3 15 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -595 \N 238 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -596 \N 238 1 2 9 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -597 \N 238 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -598 \N 239 1 1 2 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -599 \N 239 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -600 \N 239 1 3 14 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -601 \N 241 1 1 6 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -602 \N 241 1 2 10 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -603 \N 241 1 3 18 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -604 \N 242 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -605 \N 242 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -606 \N 242 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -607 \N 243 1 1 5 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -608 \N 243 1 2 11 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -609 \N 243 1 3 17 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 -610 3 244 1 1 1 2021-10-26 15:09:04.15324-05 2021-10-26 15:09:04.15324-05 -611 3 244 1 2 9 2021-10-26 15:09:04.15324-05 2021-10-26 15:09:04.15324-05 -612 3 244 1 3 13 2021-10-26 15:09:04.15324-05 2021-10-26 15:09:04.15324-05 -613 13 253 1 3 16 2021-10-26 15:35:15.940442-05 2021-10-26 15:35:15.940442-05 +501 \N 200 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +502 \N 201 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +503 \N 201 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +504 \N 201 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +505 \N 202 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +506 \N 202 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +507 \N 202 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +508 \N 203 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +509 \N 203 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +510 \N 203 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +511 \N 205 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +512 \N 205 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +513 \N 205 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +514 \N 206 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +515 \N 206 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +516 \N 206 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +517 \N 207 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +518 \N 207 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +519 \N 207 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +520 \N 208 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +521 \N 208 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +522 \N 208 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +523 \N 209 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +524 \N 209 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +525 \N 209 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +526 \N 211 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +527 \N 211 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +528 \N 211 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +529 \N 212 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +530 \N 212 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +531 \N 212 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +532 \N 213 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +533 \N 213 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +534 \N 213 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +535 \N 214 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +536 \N 214 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +537 \N 214 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +538 \N 215 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +539 \N 215 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +540 \N 215 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +541 \N 217 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +542 \N 217 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +543 \N 217 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +544 \N 218 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +545 \N 218 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +546 \N 218 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +547 \N 219 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +548 \N 219 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +549 \N 219 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +550 \N 220 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +551 \N 220 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +552 \N 220 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +553 \N 221 1 1 4 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +554 \N 221 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +555 \N 221 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +556 \N 223 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +557 \N 223 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +558 \N 223 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +559 \N 224 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +560 \N 224 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +561 \N 224 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +562 \N 225 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +563 \N 225 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +564 \N 225 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +565 \N 226 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +566 \N 226 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +567 \N 226 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +568 \N 227 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +569 \N 227 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +570 \N 227 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +571 \N 229 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +572 \N 229 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +573 \N 229 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +574 \N 230 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +575 \N 230 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +576 \N 230 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +577 \N 231 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +578 \N 231 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +579 \N 231 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +580 \N 232 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +581 \N 232 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +582 \N 232 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +583 \N 233 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +584 \N 233 1 2 12 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +585 \N 233 1 3 13 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +586 \N 235 1 1 3 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +587 \N 235 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +588 \N 235 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +589 \N 236 1 1 1 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +590 \N 236 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +591 \N 236 1 3 16 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +592 \N 237 1 1 7 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +593 \N 237 1 2 8 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +594 \N 237 1 3 15 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +595 \N 238 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +596 \N 238 1 2 9 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +597 \N 238 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +598 \N 239 1 1 2 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +599 \N 239 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +600 \N 239 1 3 14 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +601 \N 241 1 1 6 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +602 \N 241 1 2 10 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +603 \N 241 1 3 18 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +604 \N 242 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +605 \N 242 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +606 \N 242 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +607 \N 243 1 1 5 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +608 \N 243 1 2 11 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +609 \N 243 1 3 17 2023-01-23 09:07:47.279083-06 2020-10-27 09:26:51.426709-05 +610 3 244 1 1 1 2023-01-23 09:07:47.279083-06 2021-10-26 15:09:04.15324-05 +611 3 244 1 2 9 2023-01-23 09:07:47.279083-06 2021-10-26 15:09:04.15324-05 +612 3 244 1 3 13 2023-01-23 09:07:47.279083-06 2021-10-26 15:09:04.15324-05 +613 13 253 1 3 16 2023-01-23 09:07:47.279083-06 2021-10-26 15:35:15.940442-05 \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.org_unit_setting.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.org_unit_setting.sql index de8546270b..9554d76f63 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.org_unit_setting.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.org_unit_setting.sql @@ -1,8 +1,9 @@ -COPY actor.org_unit_setting (id, org_unit, name, value) FROM stdin; -16 5 lib.info_url "http://example.com/BR2" -17 6 lib.info_url "http://br3.example.com" -18 7 lib.info_url "http://br4.example.com/info" -20 1 circ.patron_edit.clone.copy_address true +COPY actor.org_unit_setting (org_unit, name, value) FROM stdin; +1 circ.patron_edit.clone.copy_address true +4 lib.info_url "http://example.com/BR1" +5 lib.info_url "http://example.com/BR2" +6 lib.info_url "http://br3.example.com" +7 lib.info_url "http://br4.example.com/info" \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.passwd.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.passwd.sql index fc587779bc..dde1985960 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.passwd.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.passwd.sql @@ -1,4 +1,5 @@ COPY actor.passwd (id, usr, salt, passwd, passwd_type, create_date, edit_date) FROM stdin; +1 1 $2a$10$AQ4PRNs/1y.58rvBxSxXfO $2a$10$AQ4PRNs/1y.58rvBxSxXfORu5kSruw4b147ca/5uAkBqZO6FbwpR6 main 2020-10-27 09:26:51.297778-05 2020-10-28 13:26:41.155389-05 2 244 $2a$10$v7ivz4K4vm1mfpw1U5oXbu $2a$10$v7ivz4K4vm1mfpw1U5oXbucM6t5KPImhg7aAG/uT1ZkRFbyGI/2F2 main 2021-10-26 15:09:03.944163-05 2021-10-26 15:09:03.944163-05 3 245 $2a$10$zMF0yOe9Gu.RwbxImTMNqe $2a$10$zMF0yOe9Gu.RwbxImTMNqexLWkqKm6f513X5TMGjjF4REa22dx9nO main 2021-10-26 15:12:01.856347-05 2021-10-26 15:12:01.856347-05 4 246 $2a$10$TOn2Y6nOsTG/Np0N1CYLpe $2a$10$TOn2Y6nOsTG/Np0N1CYLpePfRB/RzGyCBtgyqYrSVjsgAjUibsRYS main 2021-10-26 15:21:06.684406-05 2021-10-26 15:21:06.684406-05 diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.usr.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.usr.sql index 9f3c070ac8..435cf21c23 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.usr.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.usr.sql @@ -1,382 +1,382 @@ COPY actor.usr (id, card, profile, usrname, email, passwd, standing, ident_type, ident_value, ident_type2, ident_value2, net_access_level, photo_url, prefix, first_given_name, second_given_name, family_name, suffix, guardian, pref_prefix, pref_first_given_name, pref_second_given_name, pref_family_name, pref_suffix, name_keywords, name_kw_tsvector, alias, day_phone, evening_phone, other_phone, mailing_address, billing_address, home_ou, dob, active, master_account, super_user, barred, deleted, juvenile, usrgroup, claims_returned_count, credit_forward_balance, last_xact_id, create_date, expire_date, claims_never_checked_out_count, last_update_time, locale) FROM stdin; -2 2 2 99999395390 \N a0fc4480d713558de892a39eee54af98 1 3 \N \N \N 1 \N \N Terri Maria Brooks \N \N \N \N \N \N \N \N 'brook':5,6 'maria':3,4 'terri':1,2 \N \N \N \N 1 1 9 \N 1 0 0 0 0 0 2 0 0.00 1655501056.9002720714.0620610228 2020-10-27 09:26:51-05 2008-01-01 02:00:00-06 0 2022-06-17 16:24:16.942742-05 \N -3 3 2 99999320945 \N a9c4906a24536175d80f062424745406 1 1 \N \N \N 1 \N \N Shannon Thomas Jackson \N \N \N \N \N \N \N \N 'jackson':5,6 'shannon':1,2 'thoma':3,4 \N \N \N \N 2 2 5 \N 1 0 0 0 0 0 3 0 0.00 none 2020-10-27 09:26:51.426709-05 1999-01-01 02:00:00-06 0 2020-10-27 09:26:51.426709-05 \N -4 4 2 99999355250 \N 0a2614301fb4ef45e5ce043caaede04c 1 3 \N \N \N 1 \N \N Gregory Jones \N \N \N \N \N \N \N \N 'gregori':1,2 'jone':3,4 \N \N \N \N 3 3 5 \N 1 0 0 0 0 0 4 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-28 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -5 5 2 99999387993 \N 4b50d7e2ccbbf76e4156a3ffe19a906c 1 1 \N \N \N 1 \N \N Vincent Kenneth Moran \N \N \N \N \N \N \N \N 'kenneth':3,4 'moran':5,6 'vincent':1,2 \N \N \N \N 4 4 9 \N 1 0 0 0 0 0 5 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-11-03 09:26:51.426709-06 0 2020-10-27 09:26:51.426709-05 \N -6 6 2 99999335859 \N 0a2614301fb4ef45e5ce043caaede04c 1 1 \N \N \N 1 \N \N Gregory Adam Jones \N \N \N \N \N \N \N \N 'adam':3,4 'gregori':1,2 'jone':5,6 \N \N \N \N 5 5 8 \N 1 0 0 0 0 0 6 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-11-17 09:26:51.426709-06 0 2020-10-27 09:26:51.426709-05 \N -7 7 2 99999373186 \N 6a7a50712c19e2757b09faab4b4dd8c7 1 1 \N \N \N 1 \N \N Brittany Geraldine Walker \N \N \N \N \N \N \N \N 'brittani':1,2 'geraldin':3,4 'walker':5,6 \N \N \N \N 6 6 7 \N 1 0 0 0 0 0 7 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-20 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -8 8 2 99999384262 \N c46d83526b4051227657dc29a3d559be 1 1 \N \N \N 1 \N \N Ernesto Robert Miller II \N \N \N \N \N \N \N 'ernesto':1,2 'ii':7 'miller':5,6 'robert':3,4 \N \N \N \N 7 7 9 1997-02-02 1 0 0 0 0 0 8 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-06 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -9 9 2 99999373998 \N 7d8944cff4e5f5135d9ef308ad4a856e 1 1 \N \N \N 1 \N \N Robert Louis Hill III \N \N \N \N \N \N \N 'hill':5,6 'iii':7 'loui':3,4 'robert':1,2 \N \N \N \N 8 8 9 \N 1 0 0 0 0 0 9 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -10 10 2 99999376669 \N 06d4a3cd8253368b023a2cdac4883179 1 3 \N \N \N 1 \N \N Edward Robert Lopez II \N \N \N \N \N \N \N 'edward':1,2 'ii':7 'lopez':5,6 'robert':3,4 \N \N \N \N 9 9 7 \N 1 0 0 0 0 0 10 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -11 11 2 99999361076 \N bfd11cfa29a624a1987166e16aa99694 1 3 \N \N \N 1 \N \N Andrew Alberto Bell II \N \N \N \N \N \N \N 'alberto':3,4 'andrew':1,2 'bell':5,6 'ii':7 \N \N \N \N 10 10 8 \N 1 0 0 0 0 0 11 0 0.00 1655500193.7308338529.3853404818 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:09:53.774713-05 \N -12 12 2 99999376988 \N dd7d9a84b7121c7c7467587bf18bd2bf 1 1 \N \N \N 1 \N \N Jennifer Dorothy Mitchell \N \N \N \N \N \N \N \N 'dorothi':3,4 'jennif':1,2 'mitchel':5,6 \N \N \N \N 11 11 9 \N 1 0 0 0 0 0 12 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -13 13 2 99999390791 \N 7e65d8e4a0b88826128480dfa0243016 1 3 \N \N \N 1 \N \N Richard Ortiz \N \N \N \N \N \N \N \N 'ortiz':3,4 'richard':1,2 \N \N \N \N 12 12 7 \N 1 0 0 0 0 0 13 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -14 14 2 99999378730 \N 89d47ccc652b84fdc298f99682bf937b 1 1 \N \N \N 1 \N \N Robert Coy Wade \N \N \N \N \N \N \N \N 'coy':3,4 'robert':1,2 'wade':5,6 \N \N \N \N 13 13 6 \N 1 0 0 0 0 0 14 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -15 15 2 99999360638 \N f22891bdf2c0aa45cb95d76b48e49aa0 1 3 \N \N \N 1 \N \N Janet Wise \N \N \N \N \N \N \N \N 'janet':1,2 'wise':3,4 \N \N \N \N 14 14 5 \N 1 0 0 0 0 0 15 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -16 16 2 99999350419 \N e98740bbb66290028391ef682b60256f 1 1 \N \N \N 1 \N \N Donald Arnold Torres II \N \N \N \N \N \N \N 'arnold':3,4 'donald':1,2 'ii':7 'torr':5,6 \N \N \N \N 15 15 4 1974-06-26 1 0 0 0 0 0 16 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -17 17 2 99999354736 \N 1456b1819edfbcd0a05b29dc8a2e4ee8 1 1 \N \N \N 1 \N \N Jeff James Miller Sr \N \N \N \N \N \N \N 'jame':3,4 'jeff':1,2 'miller':5,6 'sr':7 \N \N \N \N 16 16 4 \N 1 0 0 0 0 0 17 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -18 18 2 99999329662 \N 4a846344e8d9fa138adedc60985b2115 1 1 \N \N \N 1 \N \N Leonard Estes III \N \N \N \N \N \N \N 'est':3,4 'iii':5 'leonard':1,2 \N \N \N \N 17 17 9 1994-05-07 1 0 0 0 0 0 18 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -19 19 2 99999397601 \N 34507a6f5b8d7032867c1ab4a20e4eb7 1 1 \N \N \N 1 \N \N Brittney Pamela Dunn \N \N \N \N \N \N \N \N 'brittney':1,2 'dunn':5,6 'pamela':3,4 \N \N \N \N 18 18 8 \N 1 0 0 0 0 0 19 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -20 20 2 99999377594 \N f536bbb356e5144478360bf658f8a583 1 3 \N \N \N 1 \N \N Jean Verna Wiggins \N \N \N \N \N \N \N \N 'jean':1,2 'verna':3,4 'wiggin':5,6 \N \N \N \N 19 19 4 \N 1 0 0 0 0 0 20 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -21 21 2 99999371252 \N 7e390ef4ca804446887c3899112df0a9 1 1 \N \N \N 1 \N \N Lela Sarah Thomas Sr \N \N \N \N \N \N \N 'lela':1,2 'sarah':3,4 'sr':7 'thoma':5,6 \N \N \N \N 20 20 9 1968-04-11 1 0 0 0 0 0 21 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -22 22 2 99999398023 \N 068deaa928eddf3326e4e5919fe49856 1 3 \N \N \N 1 \N \N Noah Joseph Phillips III \N \N \N \N \N \N \N 'iii':7 'joseph':3,4 'noah':1,2 'phillip':5,6 \N \N \N \N 21 21 8 \N 1 0 0 0 0 0 22 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -23 23 2 99999324566 \N 0a342f6d9625aef1cd6132cc5cf1eacd 1 3 \N \N \N 1 \N \N Carolyn Patrica Mitchell III \N \N \N \N \N \N \N 'carolyn':1,2 'iii':7 'mitchel':5,6 'patrica':3,4 \N \N \N \N 22 22 5 1981-09-03 1 0 0 0 0 0 23 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -24 24 2 99999379221 \N 73d22ed4107fa2595d2acc1c8cc6b7a2 1 3 \N \N \N 1 \N \N Kristen Vivian Wells \N \N \N \N \N \N \N \N 'kristen':1,2 'vivian':3,4 'well':5,6 \N \N \N \N 23 23 5 \N 1 0 0 0 0 0 24 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -25 25 2 99999373350 \N 97c1a0c5eda74313e53b11cd5f241cf7 1 1 \N \N \N 1 \N \N Noah Keith Lindsey \N \N \N \N \N \N \N \N 'keith':3,4 'lindsey':5,6 'noah':1,2 \N \N \N \N 24 24 8 \N 1 0 0 0 0 0 25 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -26 26 2 99999340920 \N 8daa28ce212792743cbfc4967ce35379 1 3 \N \N \N 1 \N \N Bertha Katherine Williams \N \N \N \N \N \N \N \N 'bertha':1,2 'katherin':3,4 'william':5,6 \N \N \N \N 25 25 4 \N 1 0 0 0 0 0 26 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -27 27 2 99999398482 \N b0928e861bd93850083169ee34c46dbf 1 1 \N \N \N 1 \N \N James Rodriguez \N \N \N \N \N \N \N \N 'jame':1,2 'rodriguez':3,4 \N \N \N \N 26 26 7 \N 1 0 0 0 0 0 27 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -28 28 2 99999394378 \N 1ea3fd06f7aa7b8085e0782c9af0840b 1 3 \N \N \N 1 \N \N Matthew David Byrd \N \N \N \N \N \N \N \N 'byrd':5,6 'david':3,4 'matthew':1,2 \N \N \N \N 27 27 5 \N 1 0 0 0 0 0 28 0 0.00 1655501587.1268120391.4014911301 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:33:07.169799-05 \N -29 29 2 99999382659 \N 51bb868bc07e89cd066c6b7806a188d4 1 1 \N \N \N 1 \N \N Sandra Pearlie Kelley Sr \N \N \N \N \N \N \N 'kelley':5,6 'pearli':3,4 'sandra':1,2 'sr':7 \N \N \N \N 28 28 4 1977-01-18 1 0 0 0 0 0 29 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -30 30 2 99999387130 \N 642da835f753b59ddb1ee7fa3d34c869 1 1 \N \N \N 1 \N \N Beth Michelle Wilson \N \N \N \N \N \N \N \N 'beth':1,2 'michell':3,4 'wilson':5,6 \N \N \N \N 29 29 7 \N 1 0 0 0 0 0 30 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -31 31 2 99999310765 \N 660a91892f762f0258aa98100fc9b6ca 1 3 \N \N \N 1 \N \N Randy Lawrence Daniels \N \N \N \N \N \N \N \N 'daniel':5,6 'lawrenc':3,4 'randi':1,2 \N \N \N \N 30 30 8 \N 1 0 0 0 0 0 31 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -32 32 2 99999335545 \N 9751396328a595b00a6ebe3d143a213f 1 1 \N \N \N 1 \N \N Steve Raymond Simpson \N \N \N \N \N \N \N \N 'raymond':3,4 'simpson':5,6 'steve':1,2 \N \N \N \N 31 31 9 \N 1 0 0 0 0 0 32 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -33 33 2 99999360529 \N a5b4e43ad7779cc4a420efb57a32fb87 1 3 \N \N \N 1 \N \N Jim Michael Hoskins III \N \N \N \N \N \N \N 'hoskin':5,6 'iii':7 'jim':1,2 'michael':3,4 \N \N \N \N 32 32 5 1983-08-02 1 0 0 0 0 0 33 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -34 34 2 99999357038 \N 2bb92c858561a83fe019f2528b5deca4 1 3 \N \N \N 1 \N \N Michael May II \N \N \N \N \N \N \N 'ii':5 'may':3,4 'michael':1,2 \N \N \N \N 33 33 5 1988-03-06 1 0 0 0 0 0 34 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -35 35 2 99999371688 \N 985b8bbd470d71ea0a800d4d1898542f 1 3 \N \N \N 1 \N \N Don John Ellison \N \N \N \N \N \N \N \N 'ellison':5,6 'john':3,4 \N \N \N \N 34 34 8 \N 1 0 0 0 0 0 35 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -36 36 2 99999312757 \N e87c5a2b339ec2502f17763fa1a1292d 1 1 \N \N \N 1 \N \N Joseph Bryant Hughes \N \N \N \N \N \N \N \N 'bryant':3,4 'hugh':5,6 'joseph':1,2 \N \N \N \N 35 35 4 \N 1 0 0 0 0 0 36 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -37 37 2 99999399015 \N 132b0f22ff2df32c2fef8d08412eccf7 1 1 \N \N \N 1 \N \N Cristina Karen Turner \N \N \N \N \N \N \N \N 'cristina':1,2 'karen':3,4 'turner':5,6 \N \N \N \N 36 36 8 \N 1 0 0 0 0 0 37 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -38 38 2 99999313973 \N 2c5c874051f5f4279be06fad7df1a532 1 3 \N \N \N 1 \N \N Victor James Langley \N \N \N \N \N \N \N \N 'jame':3,4 'langley':5,6 'victor':1,2 \N \N \N \N 37 37 4 \N 1 0 0 0 0 0 38 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -39 39 2 99999311521 \N a7ccd4e6fce24effe2ba9e79e39d73dd 1 1 \N \N \N 1 \N \N David Fields \N \N \N \N \N \N \N \N 'david':1,2 'field':3,4 \N \N \N \N 38 38 6 \N 1 0 0 0 0 0 39 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -40 40 2 99999388816 \N 85d26f27fc1ad3abe000123d6ae90402 1 1 \N \N \N 1 \N \N Gregory Thomas Hoffman II \N \N \N \N \N \N \N 'gregori':1,2 'hoffman':5,6 'ii':7 'thoma':3,4 \N \N \N \N 39 39 7 1999-11-13 1 0 0 0 0 0 40 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -41 41 2 99999345160 \N 55921db401c0e728ebdfac571cfe95d5 1 3 \N \N \N 1 \N \N Natalie Joan Gonzalez \N \N \N \N \N \N \N \N 'gonzalez':5,6 'joan':3,4 'natali':1,2 \N \N \N \N 40 40 8 \N 1 0 0 0 0 0 41 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -42 42 2 99999328966 \N 310f79c5cd2e33efb4724402c74e6b36 1 3 \N \N \N 1 \N \N Drew Rucker \N \N \N \N \N \N \N \N 'drew':1,2 'rucker':3,4 \N \N \N \N 41 41 9 \N 1 0 0 0 0 0 42 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -43 43 2 99999394635 \N 945d04af98c323c27419c7d331e20b71 1 3 \N \N \N 1 \N \N Kimberly Mitchell \N \N \N \N \N \N \N \N 'kimber':1,2 'mitchel':3,4 \N \N \N \N 42 42 9 \N 1 0 0 0 0 0 43 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -44 44 2 99999333308 \N da49b7be4497a9bc0334f922207b2f09 1 1 \N \N \N 1 \N \N Heather Margaret Murray \N \N \N \N \N \N \N \N 'heather':1,2 'margaret':3,4 'murray':5,6 \N \N \N \N 43 43 7 \N 1 0 0 0 0 0 44 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -45 45 2 99999316647 \N 82da849cf7fcb921c27908c29ac337df 1 1 \N \N \N 1 \N \N Roberta Norma Sosa \N \N \N \N \N \N \N \N 'norma':3,4 'roberta':1,2 'sosa':5,6 \N \N \N \N 44 44 7 \N 1 0 0 0 0 0 45 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -46 46 2 99999389066 \N 641e0d0f0fa9df2c41f88f99450af029 1 1 \N \N \N 1 \N \N Annette Angela Ramos II \N \N \N \N \N \N \N 'angela':3,4 'annett':1,2 'ii':7 'ramo':5,6 \N \N \N \N 45 45 4 1967-11-04 1 0 0 0 0 0 46 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -47 47 2 99999380162 \N 0b8d61655456fd271f7d27eccbb7771e 1 1 \N \N \N 1 \N \N Paul Jackson \N \N \N \N \N \N \N \N 'jackson':3,4 'paul':1,2 \N \N \N \N 46 46 8 \N 1 0 0 0 0 0 47 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -48 48 2 99999318240 \N 1b2ec51b35ac725b1ed304cdb4e70837 1 1 \N \N \N 1 \N \N John Charles Graham \N \N \N \N \N \N \N \N 'charl':3,4 'graham':5,6 'john':1,2 \N \N \N \N 47 47 7 \N 1 0 0 0 0 0 48 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -49 49 2 99999347267 \N b5647a31d76cd6feca794654eaa1db03 1 3 \N \N \N 1 \N \N Adam John Michael \N \N \N \N \N \N \N \N 'adam':1,2 'john':3,4 'michael':5,6 \N \N \N \N 48 48 7 \N 1 0 0 0 0 0 49 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -50 50 2 99999344618 \N 24a443d2c048bc2a7ca83f6db1155bce 1 3 \N \N \N 1 \N \N Helen Thomas \N \N \N \N \N \N \N \N 'helen':1,2 'thoma':3,4 \N \N \N \N 49 49 7 \N 1 0 0 0 0 0 50 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -51 51 2 99999301966 \N f72ba22dda80ec9dfac22f90c9d49ee8 1 1 \N \N \N 1 \N \N Meghan Rivas \N \N \N \N \N \N \N \N 'meghan':1,2 'riva':3,4 \N \N \N \N 50 50 7 \N 1 0 0 0 0 0 51 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -52 52 2 99999306663 \N 967c462610116e4eaefd5a2135404d34 1 3 \N \N \N 1 \N \N William Ian Hurst \N \N \N \N \N \N \N \N 'hurst':5,6 'ian':3,4 'william':1,2 \N \N \N \N 51 51 5 \N 1 0 0 0 0 0 52 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -53 53 2 99999329410 \N e8782e7575777227d06c0d216aef6f5f 1 3 \N \N \N 1 \N \N Kimberly Anna Bridges \N \N \N \N \N \N \N \N 'anna':3,4 'bridg':5,6 'kimber':1,2 \N \N \N \N 52 52 8 \N 1 0 0 0 0 0 53 0 0.00 1655500975.9114984525.1774478913 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:22:55.954618-05 \N -54 54 2 99999396820 \N 0cc1e3af72cc7d08dfcb157d28bd8213 1 3 \N \N \N 1 \N \N Beatrice Gloria Stewart \N \N \N \N \N \N \N \N 'beatric':1,2 'gloria':3,4 'stewart':5,6 \N \N \N \N 53 53 6 \N 1 0 0 0 0 0 54 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -55 55 2 99999398998 \N 7443e46a2739152516037b324038f83c 1 3 \N \N \N 1 \N \N Alejandra Christine Welsh III \N \N \N \N \N \N \N 'alejandra':1,2 'christin':3,4 'iii':7 'welsh':5,6 \N \N \N \N 54 54 7 1973-11-18 1 0 0 0 0 0 55 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -56 56 2 99999308688 \N fb6404f252225187ced775fee5b1b2e0 1 3 \N \N \N 1 \N \N Leona Osborne \N \N \N \N \N \N \N \N 'leona':1,2 'osborn':3,4 \N \N \N \N 55 55 9 \N 1 0 0 0 0 0 56 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -57 57 2 99999321465 \N af511f34b851e88a7153125582f4bdb2 1 3 \N \N \N 1 \N \N Luella Carole Sinclair II \N \N \N \N \N \N \N 'carol':3,4 'ii':7 'luella':1,2 'sinclair':5,6 \N \N \N \N 56 56 4 1993-10-15 1 0 0 0 0 0 57 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -58 58 2 99999399294 \N f59865798d2e8a83e9a90ef57daad512 1 3 \N \N \N 1 \N \N Joe Wayne Jones \N \N \N \N \N \N \N \N 'joe':1,2 'jone':5,6 'wayn':3,4 \N \N \N \N 57 57 5 \N 1 0 0 0 0 0 58 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -59 59 2 99999355645 \N 5a3182f7ce0d41bbbd695cdcb0c3bac5 1 3 \N \N \N 1 \N \N Willie Duncan \N \N \N \N \N \N \N \N 'duncan':3,4 'willi':1,2 \N \N \N \N 58 58 6 \N 1 0 0 0 0 0 59 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -60 60 2 99999359616 \N dfb12ddf4e1894e913d873a2dfd28f35 1 3 \N \N \N 1 \N \N Andrea Carney \N \N \N \N \N \N \N \N 'andrea':1,2 'carney':3,4 \N \N \N \N 59 59 6 \N 1 0 0 0 0 0 60 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -61 61 2 99999359143 \N b0ef3d46bae79cb32b397243c8ba614d 1 1 \N \N \N 1 \N \N Howard Ralph Hunt Jr \N \N \N \N \N \N \N 'howard':1,2 'hunt':5,6 'jr':7 'ralph':3,4 \N \N \N \N 60 60 9 1971-05-09 1 0 0 0 0 0 61 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -62 62 2 99999389009 \N a2f72fd3396f6226e9f1d149da574b53 1 3 \N \N \N 1 \N \N Eddie Anthony Martin \N \N \N \N \N \N \N \N 'anthoni':3,4 'eddi':1,2 'martin':5,6 \N \N \N \N 61 61 6 \N 1 0 0 0 0 0 62 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -63 63 2 99999327461 \N 04b95a5afa203f533b519e89303f036f 1 1 \N \N \N 1 \N \N Paul Richard Barry \N \N \N \N \N \N \N \N 'barri':5,6 'paul':1,2 'richard':3,4 \N \N \N \N 62 62 9 \N 1 0 0 0 0 0 63 0 0.00 1655500007.63855150402.028712866 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:06:47.682295-05 \N -64 64 2 99999319193 \N 4291e995480e0f0e1a74b7febdb7bd56 1 1 \N \N \N 1 \N \N Dennis Jimmie Wright II \N \N \N \N \N \N \N 'denni':1,2 'ii':7 'jimmi':3,4 'wright':5,6 \N \N \N \N 63 63 7 1992-09-05 1 0 0 0 0 0 64 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -65 65 2 99999378520 \N 585937c561a39306414f8bb5c63f2fe9 1 1 \N \N \N 1 \N \N Ruben Eric Saunders \N \N \N \N \N \N \N \N 'eric':3,4 'ruben':1,2 'saunder':5,6 \N \N \N \N 64 64 5 \N 1 0 0 0 0 0 65 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -66 66 2 99999366196 \N c8ae48e0abf798f2ee683c3ffdd66a78 1 3 \N \N \N 1 \N \N Jennifer Lane \N \N \N \N \N \N \N \N 'jennif':1,2 'lane':3,4 \N \N \N \N 65 65 7 \N 1 0 0 0 0 0 66 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -67 67 2 99999324371 \N f1ba779e9f9247af6b4423f6af9d3e3b 1 1 \N \N \N 1 \N \N Jo Mae Madden \N \N \N \N \N \N \N \N 'jo':1,2 'madden':5,6 'mae':3,4 \N \N \N \N 66 66 5 \N 1 0 0 0 0 0 67 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -68 68 2 99999316280 \N e8acadb02506f5721f85ae5430e85c48 1 3 \N \N \N 1 \N \N Naomi Julie Harding \N \N \N \N \N \N \N \N 'hard':5,6 'juli':3,4 'naomi':1,2 \N \N \N \N 67 67 8 \N 1 0 0 0 0 0 68 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -69 69 2 99999388575 \N d92fc81bad7e45b03712b1d80748a42d 1 3 \N \N \N 1 \N \N Blake George Davis \N \N \N \N \N \N \N \N 'blake':1,2 'davi':5,6 'georg':3,4 \N \N \N \N 68 68 5 \N 1 0 0 0 0 0 69 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -70 70 2 99999336610 \N b656ee7511fe5e3d08eca88954043517 1 3 \N \N \N 1 \N \N Norma Gail Barnes \N \N \N \N \N \N \N 'barn':5,6 'gail':3,4 'norma':1,2 \N \N \N \N 69 69 4 2023-10-27 1 0 0 0 0 0 70 0 0.00 1655499974.7673158007.7327569531 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:06:14.811382-05 \N -71 71 2 99999376864 \N 545b898305be25e5dd2be4e7626ea58f 1 3 \N \N \N 1 \N \N Leon Anderson \N \N \N \N \N \N \N \N 'anderson':3,4 'leon':1,2 \N \N \N \N 70 70 4 \N 1 0 0 0 0 0 71 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -72 72 2 99999391951 \N 8ad55f4e39fcf42a721912500fe597ba 1 1 \N \N \N 1 \N \N Misty Margaret Gillespie III \N \N \N \N \N \N \N 'gillespi':5,6 'iii':7 'margaret':3,4 'misti':1,2 \N \N \N \N 71 71 7 1993-10-19 1 0 0 0 0 0 72 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -73 73 2 99999368950 \N f3c714326d94fdbcfa4715e1c507cd1b 1 3 \N \N \N 1 \N \N Esther Mary Santos Sr \N \N \N \N \N \N \N 'esther':1,2 'mari':3,4 'santo':5,6 'sr':7 \N \N \N \N 72 72 7 1961-12-17 1 0 0 0 0 0 73 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -74 74 2 99999343281 \N a44954f75e1306dc4d40cba0446fc9a2 1 3 \N \N \N 1 \N \N Rebecca Vanessa Bradley \N \N \N \N \N \N \N \N 'bradley':5,6 'rebecca':1,2 'vanessa':3,4 \N \N \N \N 73 73 7 \N 1 0 0 0 0 0 74 0 0.00 1655500865.0973695373.5600714199 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:21:05.138297-05 \N -75 75 2 99999394534 \N 80151c7eeda055923cef47c1e14b5430 1 1 \N \N \N 1 \N \N Victor Hart \N \N \N \N \N \N \N \N 'hart':3,4 'victor':1,2 \N \N \N \N 74 74 4 \N 1 0 0 0 0 0 75 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -76 76 2 99999323404 \N d731974a7a0768fda348376003fadd5a 1 1 \N \N \N 1 \N \N Edward Lonnie Riley \N \N \N \N \N \N \N \N 'edward':1,2 'lonni':3,4 'riley':5,6 \N \N \N \N 75 75 8 \N 1 0 0 0 0 0 76 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -77 77 2 99999375760 \N ff277ae99a643d27b1d94d28b4b424ab 1 3 \N \N \N 1 \N \N Michelle Jordan III \N \N \N \N \N \N \N 'iii':5 'jordan':3,4 'michell':1,2 \N \N \N \N 76 76 5 1973-05-07 1 0 0 0 0 0 77 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -78 78 2 99999315742 \N 7a26a0a73dc952e3a70b6226b0a48518 1 1 \N \N \N 1 \N \N Mary Jill Brown \N \N \N \N \N \N \N \N 'brown':5,6 'jill':3,4 'mari':1,2 \N \N \N \N 77 77 7 \N 1 0 0 0 0 0 78 0 0.00 1655501349.19583107433.051531372 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:29:09.237816-05 \N -79 79 2 99999322514 \N 33381da820d3f1829ba224834ef6fa78 1 1 \N \N \N 1 \N \N Shawn Thomas Barber II \N \N \N \N \N \N \N 'barber':5,6 'ii':7 'shawn':1,2 'thoma':3,4 \N \N \N \N 78 78 7 1988-10-21 1 0 0 0 0 0 79 0 0.00 1655499924.3107517926.3638611513 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:05:24.354004-05 \N -80 80 2 99999342144 \N 967c462610116e4eaefd5a2135404d34 1 1 \N \N \N 1 \N \N William Phillip Harrison II \N \N \N \N \N \N \N 'harrison':5,6 'ii':7 'phillip':3,4 'william':1,2 \N \N \N \N 79 79 8 1990-04-09 1 0 0 0 0 0 80 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -81 81 2 99999320546 \N 09b2153e22a9bcc39ea205a4afb4555c 1 1 \N \N \N 1 \N \N Darlene Lisa Porter Jr \N \N \N \N \N \N \N 'darlen':1,2 'jr':7 'lisa':3,4 'porter':5,6 \N \N \N \N 80 80 7 1987-02-23 1 0 0 0 0 0 81 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -82 82 2 99999315474 \N d6f0f9b18bdfa125f850a04e3b20c513 1 3 \N \N \N 1 \N \N Joyce Donna Lopez Sr \N \N \N \N \N \N \N 'donna':3,4 'joyc':1,2 'lopez':5,6 'sr':7 \N \N \N \N 81 81 8 1980-06-28 1 0 0 0 0 0 82 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -83 83 2 99999371586 \N 6ac5b9af27837097a5ea1ef659cb7c91 1 1 \N \N \N 1 \N \N Larry Stevenson Sr \N \N \N \N \N \N \N 'larri':1,2 'sr':5 'stevenson':3,4 \N \N \N \N 82 82 9 1990-12-20 1 0 0 0 0 0 83 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -84 84 2 99999329832 \N f536913d2b1c008c6620d2042f3c3c69 1 1 \N \N \N 1 \N \N Nicholas Kinney \N \N \N \N \N \N \N \N 'kinney':3,4 'nichola':1,2 \N \N \N \N 83 83 4 \N 1 0 0 0 0 0 84 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -85 85 2 99999342948 \N f7da3a0e8d32ae980d59e79c59ec39d8 1 3 \N \N \N 1 \N \N Omar David Bernard Jr \N \N \N \N \N \N \N 'bernard':5,6 'david':3,4 'jr':7 'omar':1,2 \N \N \N \N 84 84 5 1981-08-19 1 0 0 0 0 0 85 0 0.00 1655500617.4459462137.6725189371 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:16:57.490542-05 \N -86 86 2 99999335091 \N 7a26a0a73dc952e3a70b6226b0a48518 1 3 \N \N \N 1 \N \N Mary Annie Brown \N \N \N \N \N \N \N \N 'anni':3,4 'brown':5,6 'mari':1,2 \N \N \N \N 85 85 9 \N 1 0 0 0 0 0 86 0 0.00 1655501143.032667118.59418346612 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:25:43.073981-05 \N -87 87 2 99999303411 \N f20bd9e11d992fab5ea35715b6a35b78 1 3 \N \N \N 1 \N \N Sarah Smith II \N \N \N \N \N \N \N 'ii':5 'sarah':1,2 'smith':3,4 \N \N \N \N 86 86 8 1990-01-13 1 0 0 0 0 0 87 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -88 88 2 99999327083 \N a04fd6b0169a5195b7d347e8635500de 1 1 \N \N \N 1 \N \N Cora Jones \N \N \N \N \N \N \N \N 'cora':1,2 'jone':3,4 \N \N \N \N 87 87 8 \N 1 0 0 0 0 0 88 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -89 89 2 99999300523 \N 72ac1c1ea60b2a04c0cde833482ef130 1 3 \N \N \N 1 \N \N Shawn Joseph Little \N \N \N \N \N \N \N \N 'joseph':3,4 'littl':5,6 'shawn':1,2 \N \N \N \N 88 88 7 \N 1 0 0 0 0 0 89 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -90 90 2 99999328829 \N 59e0b38a28cfdd5e0f89a59fdf6df84f 1 3 \N \N \N 1 \N \N Luann Donna Thurman \N \N \N \N \N \N \N \N 'donna':3,4 'luann':1,2 'thurman':5,6 \N \N \N \N 89 89 6 \N 1 0 0 0 0 0 90 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -91 91 2 99999394673 \N 9b1bb57f9ce6018fd5f96cba0beb527e 1 3 \N \N \N 1 \N \N Patricia Robin Scott \N \N \N \N \N \N \N \N 'patricia':1,2 'robin':3,4 'scott':5,6 \N \N \N \N 90 90 6 \N 1 0 0 0 0 0 91 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -92 92 2 99999355318 \N c9205c09e3046d49799c986961bceb94 1 1 \N \N \N 1 \N \N Esperanza Beth Lamb III \N \N \N \N \N \N \N 'beth':3,4 'esperanza':1,2 'iii':7 'lamb':5,6 \N \N \N \N 91 91 5 1995-06-13 1 0 0 0 0 0 92 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -93 93 2 99999377675 \N 82c3cc84986980dc2e7158517449dba2 1 1 \N \N \N 1 \N \N Wendi Mary Brown \N \N \N \N \N \N \N \N 'brown':5,6 'mari':3,4 'wendi':1,2 \N \N \N \N 92 92 8 \N 1 0 0 0 0 0 93 0 0.00 1655501396.920411992.29927764581 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:29:56.961877-05 \N -94 94 2 99999363186 \N 8bb0716ca81aaf772047c11a30d12f87 1 3 \N \N \N 1 \N \N Lawrence Vern Clarke \N \N \N \N \N \N \N \N 'clark':5,6 'lawrenc':1,2 'vern':3,4 \N \N \N \N 93 93 5 \N 1 0 0 0 0 0 94 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -95 95 2 99999346314 \N f79a3f26cac9dbf1385beb0ee2e7f487 1 1 \N \N \N 1 \N \N Daniel Ricky Clark \N \N \N \N \N \N \N \N 'clark':5,6 'daniel':1,2 'ricki':3,4 \N \N \N \N 94 94 8 \N 1 0 0 0 0 0 95 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -96 96 2 99999353477 \N 58acab00936dd787ce0b75d87a92c2cf 1 1 \N \N \N 1 \N \N John Robert Dennis \N \N \N \N \N \N \N \N 'denni':5,6 'john':1,2 'robert':3,4 \N \N \N \N 95 95 6 1975-03-04 1 0 0 0 0 0 96 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -97 97 2 99999312358 \N 36db594dd192292ea12f29654f73b1ea 1 1 \N \N \N 1 \N \N Jan Lindsey Copeland Jr \N \N \N \N \N \N \N 'copeland':5,6 'jan':1,2 'jr':7 'lindsey':3,4 \N \N \N \N 96 96 4 1998-06-14 1 0 0 0 0 0 97 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -98 98 2 99999360839 \N 5f08ec0f62f2364ce63730abb78f40f6 1 1 \N \N \N 1 \N \N Penny Martha Brooks II \N \N \N \N \N \N \N 'brook':5,6 'ii':7 'martha':3,4 'penni':1,2 \N \N \N \N 97 97 8 1980-03-13 1 0 0 0 0 0 98 0 0.00 1655501027.9916147127.0285821466 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:23:48.034818-05 \N -99 99 2 99999342446 \N 287a65efadf13665ae47261495b106c4 1 3 \N \N \N 1 \N \N Jeanne Johnson \N \N \N \N \N \N \N \N 'jeann':1,2 'johnson':3,4 \N \N \N \N 98 98 8 1980-02-03 1 0 0 0 0 0 99 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -100 100 2 99999358416 \N 9db140556bfbf9d1b253d7fc17d6f392 1 1 \N \N \N 1 \N \N Elizabeth Vanessa Sanford \N \N \N \N \N \N \N 'elizabeth':1,2 'sanford':5,6 'vanessa':3,4 \N \N \N \N 99 99 4 \N 1 0 0 0 0 0 100 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -101 101 2 99999361389 \N fc55042b668d17841674df6fee417af8 1 3 \N \N \N 1 \N \N Alan Claude Ramirez \N \N \N \N \N \N \N 'alan':1,2 'claud':3,4 'ramirez':5,6 \N \N \N \N 100 100 9 \N 1 0 0 0 0 0 101 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -102 102 2 jbautista \N 17ee83ed10c24a4c26cc656b08f04d26 1 3 \N \N \N 1 \N \N José Antonio Bautista \N \N \N \N \N \N \N 'antonio':3,4 'bautista':5,6 'jose':2 'josé':1 \N \N \N \N 101 101 9 \N 1 0 0 0 0 0 102 0 0.00 1655500112.440521797.08055932986 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2022-06-17 16:08:32.482411-05 \N -103 103 2 mkawasaki \N a44d7187d24b87f48c46df113c5a7efa 1 3 \N \N \N 1 \N \N 川﨑 宗則 Munenori Kawasaki \N \N \N \N \N \N \N 'kawasaki':6,7 'munenori':4,5 '宗則':2 '川﨑':1 '川﨑宗則':3 \N \N \N \N 102 102 9 \N 1 0 0 0 0 0 103 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -104 104 2 99999393001 \N 42d9dc1b23369f9e3b2f8f075240570c 1 3 \N \N \N 1 \N \N Marge Simpson \N \N \N \N \N \N \N 'marg':1,2 'simpson':3,4 \N \N \N \N 103 103 4 \N 1 0 0 0 0 0 104 0 0.00 none 2020-10-27 09:26:51.426709-05 2010-01-01 02:00:00-06 0 2020-10-27 09:26:51.426709-05 \N -105 105 2 99999393002 \N 4f024eb8e47a55622887e6916e85c1e4 1 3 \N \N \N 1 \N \N Homer Simpson \N \N \N \N \N \N \N 'homer':1,2 'simpson':3,4 \N \N \N \N 104 104 4 \N 1 0 0 0 1 0 105 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -106 106 2 99999393003 \N 7d6023debacdc8e383fe51956240cea9 1 3 \N \N \N 1 \N \N Bart Simpson \N \N \N \N \N \N \N 'bart':1,2 'simpson':3,4 \N \N \N \N 105 105 4 \N 1 0 0 1 0 0 106 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -107 107 2 99999393004 \N b1d589cf3c485e1544d2cc38ecea0742 1 3 \N \N \N 1 \N \N Lisa Simpson \N \N \N \N \N \N \N 'lisa':1,2 'simpson':3,4 \N \N \N \N 106 106 4 \N 1 0 0 0 0 0 107 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -108 108 2 99999393005 \N 58589c6a7cd52acfc29fff6b9d5455d7 1 3 \N \N \N 1 \N \N Maggie Simpson \N \N \N \N \N \N \N 'maggi':1,2 'simpson':3,4 \N \N \N \N 107 107 4 \N 0 0 0 0 0 0 108 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -109 109 2 99999393100 \N eeb1a8a285e5a740cb6ab8b3eb9b6078 1 3 \N \N \N 1 \N \N Shelbyville Manhattan \N \N \N \N \N \N \N 'manhattan':3,4 'shelbyvill':1,2 \N \N \N \N 108 108 6 \N 1 0 0 0 0 0 109 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -110 110 13 br3sforbes \N 346d47befd3d6611bde74b39c26a0ddc 1 3 \N \N \N 1 \N \N Samuel Eugene Forbes \N \N \N \N \N \N \N \N 'eugen':3,4 'forb':5,6 'samuel':1,2 \N \N \N \N 109 109 6 \N 1 0 0 0 0 0 110 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -111 111 13 br1vcampbell \N 2b3a81124746d441a694b8b504e492fb 1 1 \N \N \N 1 \N \N Vincent Lawrence Campbell \N \N \N \N \N \N \N \N 'campbel':5,6 'lawrenc':3,4 'vincent':1,2 \N \N \N \N 110 110 4 \N 1 0 0 0 0 0 111 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -112 112 15 bm1afrey \N 6b88452fdca4cb5d7abe997fc27eff77 1 3 \N \N \N 1 \N \N Annie Jessica Frey \N \N \N \N \N \N \N \N 'anni':1,2 'frey':5,6 'jessica':3,4 \N \N \N \N 111 111 9 \N 1 0 0 0 0 0 112 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -113 113 15 bm1msalinas \N 9c6f29cdabefb32b94a4ca8889500d6d 1 3 \N \N \N 1 \N \N Mark Christopher Salinas II \N \N \N \N \N \N \N 'christoph':3,4 'ii':7 'mark':1,2 'salina':5,6 \N \N \N \N 112 112 9 1999-06-13 1 0 0 0 0 0 113 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -114 114 15 sl1klindsey \N bdccb467ff26ad19980b74a6d376127e 1 1 \N \N \N 1 \N \N Kenneth Jesse Lindsey \N \N \N \N \N \N \N \N 'jess':3,4 'kenneth':1,2 'lindsey':5,6 \N \N \N \N 113 113 8 \N 1 0 0 0 0 0 114 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -115 115 15 sl1mdavis \N ae480f0db8eb2a31a75a5dd279c9fa66 1 3 \N \N \N 1 \N \N Martha Davis \N \N \N \N \N \N \N \N 'davi':3,4 'martha':1,2 \N \N \N \N 114 114 8 \N 1 0 0 0 0 0 115 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -116 116 15 br4vfreeman \N 09773715045651367b470c3613109b96 1 3 \N \N \N 1 \N \N Virginia Johanna Freeman Jr \N \N \N \N \N \N \N 'freeman':5,6 'johanna':3,4 'jr':7 'virginia':1,2 \N \N \N \N 115 115 7 1967-07-23 1 0 0 0 0 0 116 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -117 117 15 br4lmartinez \N d781d4a7e5317da68251b89ecfd1727c 1 3 \N \N \N 1 \N \N Leroy Brian Martinez \N \N \N \N \N \N \N \N 'brian':3,4 'leroy':1,2 'martinez':5,6 \N \N \N \N 116 116 7 \N 1 0 0 0 0 0 117 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -118 118 15 br3warmstrong \N 0a2c091f2ca3ef6243dd03a966c8c6c1 1 1 \N \N \N 1 \N \N William William Armstrong \N \N \N \N \N \N \N \N 'armstrong':5,6 'william':1,2,3,4 \N \N \N \N 117 117 6 \N 1 0 0 0 0 0 118 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -119 119 15 br3acotton \N 1e4d7601f2bf24741c766096782c67df 1 3 \N \N \N 1 \N \N Amy Ada Cotton \N \N \N \N \N \N \N \N 'ada':3,4 'ami':1,2 'cotton':5,6 \N \N \N \N 118 118 6 \N 1 0 0 0 0 0 119 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -120 120 15 br2sbarton \N bb8dfb1999c98423f9a3a29e31166921 1 1 \N \N \N 1 \N \N Sarah Valerie Barton \N \N \N \N \N \N \N \N 'barton':5,6 'sarah':1,2 'valeri':3,4 \N \N \N \N 119 119 5 \N 1 0 0 0 0 0 120 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -121 121 15 br2jhammond \N a8a0084258c7661707f1489ece079f2e 1 1 \N \N \N 1 \N \N James Michael Hammond \N \N \N \N \N \N \N \N 'hammond':5,6 'jame':1,2 'michael':3,4 \N \N \N \N 120 120 5 \N 1 0 0 0 0 0 121 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -122 122 15 br1ajoseph \N aae6e591b0554e7babae0e7d8aa4b3b0 1 3 \N \N \N 1 \N \N Alex Edward Joseph \N \N \N \N \N \N \N \N 'alex':1,2 'edward':3,4 'joseph':5,6 \N \N \N \N 121 121 4 \N 1 0 0 0 0 0 122 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -123 123 15 br1imccoy \N e130ec448d10245bf3535fce97b6a256 1 3 \N \N \N 1 \N \N Ida Gloria Mccoy \N \N \N \N \N \N \N \N 'gloria':3,4 'ida':1,2 'mccoy':5,6 \N \N \N \N 122 122 4 \N 1 0 0 0 0 0 123 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -124 124 14 bm1dwright \N 4291e995480e0f0e1a74b7febdb7bd56 1 3 \N \N \N 1 \N \N Dennis Ernest Wright \N \N \N \N \N \N \N \N 'denni':1,2 'ernest':3,4 'wright':5,6 \N \N \N \N 123 123 9 \N 1 0 0 0 0 0 124 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -125 125 14 bm1alynch \N daa8d30bff892b8552bb11446eeaea30 1 1 \N \N \N 1 \N \N Armando Lynch \N \N \N \N \N \N \N \N 'armando':1,2 'lynch':3,4 \N \N \N \N 124 124 9 \N 1 0 0 0 0 0 125 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -126 126 14 sl1rgraham \N 65347a3f46d8ae888878b15ede94770c 1 3 \N \N \N 1 \N \N Robert Graham \N \N \N \N \N \N \N \N 'graham':3,4 'robert':1,2 \N \N \N \N 125 125 8 \N 1 0 0 0 0 0 126 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -127 127 14 sl1sthompson \N ca13ec6afa2139c8828974ac246881d7 1 1 \N \N \N 1 \N \N Sherri Thompson \N \N \N \N \N \N \N \N 'sherri':1,2 'thompson':3,4 \N \N \N \N 126 126 8 \N 1 0 0 0 0 0 127 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -128 128 14 br4ngarcia \N 68863bc7bb511c443d137ebb05e5d35e 1 1 \N \N \N 1 \N \N Nanette Helen Garcia \N \N \N \N \N \N \N \N 'garcia':5,6 'helen':3,4 'nanett':1,2 \N \N \N \N 127 127 7 \N 1 0 0 0 0 0 128 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -129 129 14 br4rcook \N 4b4bcae9177490642528e39c7b3c795a 1 3 \N \N \N 1 \N \N Raymond Boyd Cook \N \N \N \N \N \N \N \N 'boyd':3,4 'cook':5,6 'raymond':1,2 \N \N \N \N 128 128 7 \N 1 0 0 0 0 0 129 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -130 130 14 br3kbrewer \N e19e2b1b27783cf395262e3873704954 1 3 \N \N \N 1 \N \N Katherine Brewer \N \N \N \N \N \N \N \N 'brewer':3,4 'katherin':1,2 \N \N \N \N 129 129 6 \N 1 0 0 0 0 0 130 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -131 131 14 br3cwashington \N 2f2a6e1ed3487154414f5d5cd6e293b5 1 1 \N \N \N 1 \N \N Christopher Washington \N \N \N \N \N \N \N \N 'christoph':1,2 'washington':3,4 \N \N \N \N 130 130 6 \N 1 0 0 0 0 0 131 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -132 132 14 br2dmurray \N 79d6748deba8c30c7a9289741e3a9e6c 1 3 \N \N \N 1 \N \N Dawn Katherine Murray \N \N \N \N \N \N \N \N 'dawn':1,2 'katherin':3,4 'murray':5,6 \N \N \N \N 131 131 5 \N 1 0 0 0 0 0 132 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -133 133 14 br2bwatts \N 289c0d44fc450c036380f16d9d4bb03f 1 1 \N \N \N 1 \N \N Barbara Gloria Watts \N \N \N \N \N \N \N \N 'barbara':1,2 'gloria':3,4 'watt':5,6 \N \N \N \N 132 132 5 \N 1 0 0 0 0 0 133 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -134 134 14 br1mmartin \N f47f493339a22518e7941333cd3cd12e 1 3 \N \N \N 1 \N \N Mary Shannon Martin Sr \N \N \N \N \N \N \N 'mari':1,2 'martin':5,6 'shannon':3,4 'sr':7 \N \N \N \N 133 133 4 \N 1 0 0 0 0 0 134 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -135 135 14 br1vford \N a5c36fdc783ba8f7268f77531da4b8e9 1 3 \N \N \N 1 \N \N Vivian Darlene Ford \N \N \N \N \N \N \N \N 'darlen':3,4 'ford':5,6 'vivian':1,2 \N \N \N \N 134 134 4 \N 1 0 0 0 0 0 135 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -136 136 12 bm1gsuarez \N b1d55773ab8d5cfa5b87d8d328a7d1e0 1 1 \N \N \N 1 \N \N Gary Joel Suarez Sr \N \N \N \N \N \N \N 'gari':1,2 'joel':3,4 'sr':7 'suarez':5,6 \N \N \N \N 135 135 9 \N 1 0 0 0 0 0 136 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -137 137 12 bm1eellis \N 336f52fe001a4e742b993a762bf7fb1a 1 1 \N \N \N 1 \N \N Edward David Ellis \N \N \N \N \N \N \N \N 'david':3,4 'edward':1,2 'elli':5,6 \N \N \N \N 136 136 9 \N 1 0 0 0 0 0 137 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -138 138 12 sl1nward \N 5faf93893ab5d0244f31c080d8a78fa3 1 1 \N \N \N 1 \N \N Naomi Angela Ward Sr \N \N \N \N \N \N \N 'angela':3,4 'naomi':1,2 'sr':7 'ward':5,6 \N \N \N \N 137 137 8 \N 1 0 0 0 0 0 138 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -139 139 12 sl1jrichards \N c2e50aa5ce0c5288dadd61cac4d0d041 1 1 \N \N \N 1 \N \N Joseph Thomas Richards \N \N \N \N \N \N \N \N 'joseph':1,2 'richard':5,6 'thoma':3,4 \N \N \N \N 138 138 8 \N 1 0 0 0 0 0 139 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -140 140 12 br4rsanders \N a859ceebcc2539e3eb8f3c836bcf8a17 1 3 \N \N \N 1 \N \N Roslyn Sanders \N \N \N \N \N \N \N \N 'roslyn':1,2 'sander':3,4 \N \N \N \N 139 139 7 \N 1 0 0 0 0 0 140 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -141 141 12 br4nrivera \N 071436ffe9defe6fbc38238e3409b3a3 1 1 \N \N \N 1 \N \N Nancy Anita Rivera Sr \N \N \N \N \N \N \N 'anita':3,4 'nanci':1,2 'rivera':5,6 'sr':7 \N \N \N \N 140 140 7 \N 1 0 0 0 0 0 141 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -142 142 12 br3cmartin \N 5df08ff602dfbeea103a934b0aabaf93 1 1 \N \N \N 1 \N \N Carl Charles Martin \N \N \N \N \N \N \N \N 'carl':1,2 'charl':3,4 'martin':5,6 \N \N \N \N 141 141 6 \N 1 0 0 0 0 0 142 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -143 143 12 br3telliott \N a8e983afb82a3dd71d79bb2e81c1cedf 1 1 \N \N \N 1 \N \N Thomas Marcus Elliott \N \N \N \N \N \N \N \N 'elliott':5,6 'marcus':3,4 'thoma':1,2 \N \N \N \N 142 142 6 \N 1 0 0 0 0 0 143 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -144 144 12 br2ocherry \N 5c9f312f6d4ffe02bf5eae5bbfc81ad6 1 3 \N \N \N 1 \N \N Olga Marie Cherry \N \N \N \N \N \N \N \N 'cherri':5,6 'mari':3,4 'olga':1,2 \N \N \N \N 143 143 5 \N 1 0 0 0 0 0 144 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -145 145 12 br2gdavenport \N b75e507d9bd932ab57b900bf92cfa6ce 1 1 \N \N \N 1 \N \N Gwendolyn Davenport Jr \N \N \N \N \N \N \N 'davenport':3,4 'gwendolyn':1,2 'jr':5 \N \N \N \N 144 144 5 \N 1 0 0 0 0 0 145 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -146 146 12 br1sbrock \N 070b32333aae5f4a3ca284d7d67c6bd6 1 3 \N \N \N 1 \N \N Scott George Brock \N \N \N \N \N \N \N \N 'brock':5,6 'georg':3,4 'scott':1,2 \N \N \N \N 145 145 4 \N 1 0 0 0 0 0 146 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -147 147 12 br1rjackson \N 25b47964d1b47f318d0c267b0b9e211a 1 3 \N \N \N 1 \N \N Ronald Robert Jackson Jr \N \N \N \N \N \N \N 'jackson':5,6 'jr':7 'robert':3,4 'ronald':1,2 \N \N \N \N 146 146 4 \N 1 0 0 0 0 0 147 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -148 148 11 bm1wjames \N e2803a51ced03c8968a5bec967f9e198 1 1 \N \N \N 1 \N \N Wayne George James \N \N \N \N \N \N \N \N 'georg':3,4 'jame':5,6 'wayn':1,2 \N \N \N \N 147 147 9 \N 1 0 0 0 0 0 148 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -149 149 11 bm1shernandez \N b4c9afa38a84c2ca20ff7cee46e1e8e5 1 1 \N \N \N 1 \N \N Sarah Elaine Hernandez \N \N \N \N \N \N \N \N 'elain':3,4 'hernandez':5,6 'sarah':1,2 \N \N \N \N 148 148 9 \N 1 0 0 0 0 0 149 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -150 150 11 sl1latkins \N 00e1e4a89eb25d43d14f61fe4e338def 1 3 \N \N \N 1 \N \N Louis Edward Atkins \N \N \N \N \N \N \N \N 'atkin':5,6 'edward':3,4 'loui':1,2 \N \N \N \N 149 149 8 \N 1 0 0 0 0 0 150 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -151 151 11 sl1wneal \N 317c37e25305ac965c85b0ccbef945fb 1 3 \N \N \N 1 \N \N Wayne Neal Jr \N \N \N \N \N \N \N 'jr':5 'neal':3,4 'wayn':1,2 \N \N \N \N 150 150 8 1977-06-05 1 0 0 0 0 0 151 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -152 152 11 br4mharrison \N 113ecd86bfaff9f8955a9554f1b59700 1 3 \N \N \N 1 \N \N Michelle Patricia Harrison \N \N \N \N \N \N \N \N 'harrison':5,6 'michell':1,2 'patricia':3,4 \N \N \N \N 151 151 7 \N 1 0 0 0 0 0 152 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -153 153 11 br4hwomack \N 4069a21274394392064afa49b9e90662 1 3 \N \N \N 1 \N \N Howard Womack \N \N \N \N \N \N \N \N 'howard':1,2 'womack':3,4 \N \N \N \N 152 152 7 \N 1 0 0 0 0 0 153 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -154 154 11 br3vbacon \N 7d78d3f7f8183480af7d457b0df7ed3b 1 3 \N \N \N 1 \N \N Virginia Celia Bacon \N \N \N \N \N \N \N \N 'bacon':5,6 'celia':3,4 'virginia':1,2 \N \N \N \N 153 153 6 \N 1 0 0 0 0 0 154 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -155 155 11 br3lbrooks \N 58c4631bf6c4ca99400e28d542f2883d 1 1 \N \N \N 1 \N \N Lonnie William Brooks \N \N \N \N \N \N \N \N 'brook':5,6 'lonni':1,2 'william':3,4 \N \N \N \N 154 154 6 \N 1 0 0 0 0 0 155 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -156 156 11 br2mgonzales \N 60966faa89b76ad9152626cfbca282bf 1 3 \N \N \N 1 \N \N Mary Jessica Gonzales \N \N \N \N \N \N \N \N 'gonzal':5,6 'jessica':3,4 'mari':1,2 \N \N \N \N 155 155 5 \N 1 0 0 0 0 0 156 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -157 157 11 br2mterry \N 1d31f5ff0fa5fd00c7d81b72c9f1efe3 1 1 \N \N \N 1 \N \N Michelle Kristy Terry \N \N \N \N \N \N \N \N 'kristi':3,4 'michell':1,2 'terri':5,6 \N \N \N \N 156 156 5 \N 1 0 0 0 0 0 157 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -158 158 11 br1mmeeks \N 236209d06561363f28a87ebd4567b53f 1 3 \N \N \N 1 \N \N Michelle Myra Meeks III \N \N \N \N \N \N \N 'iii':7 'meek':5,6 'michell':1,2 'myra':3,4 \N \N \N \N 157 157 4 1966-01-23 1 0 0 0 0 0 158 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -159 159 11 br1epalmer \N d04d32ac90e8be2bcd309918a3a45ed7 1 3 \N \N \N 1 \N \N Elva Tiffany Palmer Jr \N \N \N \N \N \N \N 'elva':1,2 'jr':7 'palmer':5,6 'tiffani':3,4 \N \N \N \N 158 158 4 1987-08-21 1 0 0 0 0 0 159 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -160 160 10 bm1mwilliams \N 66ff7f543f608902cbd338623d44068b 1 3 \N \N \N 1 \N \N Matthew Williams \N \N \N \N \N \N \N \N 'matthew':1,2 'william':3,4 \N \N \N \N 159 159 9 \N 1 0 0 0 0 0 160 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -161 161 10 bm1nperez \N f37f5e8c2886a75828e188148cf9958a 1 1 \N \N \N 1 \N \N Nicholas Joseph Perez \N \N \N \N \N \N \N \N 'joseph':3,4 'nichola':1,2 'perez':5,6 \N \N \N \N 160 160 9 \N 1 0 0 0 0 0 161 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -162 162 10 sl1bfisher \N 3a271d4f80d85857124227e89e92c79a 1 3 \N \N \N 1 \N \N Barbara Fisher \N \N \N \N \N \N \N \N 'barbara':1,2 'fisher':3,4 \N \N \N \N 161 161 8 \N 1 0 0 0 0 0 162 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -163 163 10 sl1mmendoza \N 9fa702d041d981507ea57c409af3b06e 1 3 \N \N \N 1 \N \N Miguel Mendoza \N \N \N \N \N \N \N \N 'mendoza':3,4 'miguel':1,2 \N \N \N \N 162 162 8 \N 1 0 0 0 0 0 163 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -164 164 10 br4ldickinson \N b62691eb4acc176e60057ed1ffb2f027 1 1 \N \N \N 1 \N \N Lee Annie Dickinson \N \N \N \N \N \N \N \N 'anni':3,4 'dickinson':5,6 'lee':1,2 \N \N \N \N 163 163 7 \N 1 0 0 0 0 0 164 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -165 165 10 br4awilliams \N bca377f2204465e38beac16da560344a 1 1 \N \N \N 1 \N \N Angelina Joan Williams \N \N \N \N \N \N \N \N 'angelina':1,2 'joan':3,4 'william':5,6 \N \N \N \N 164 164 7 \N 1 0 0 0 0 0 165 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -166 166 10 br3bsanchez \N 4bb717812e233b610fd95adeebc6d6e5 1 1 \N \N \N 1 \N \N Beth Deborah Sanchez \N \N \N \N \N \N \N \N 'beth':1,2 'deborah':3,4 'sanchez':5,6 \N \N \N \N 165 165 6 \N 1 0 0 0 0 0 166 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -167 167 10 br3ethompson \N 2e347c44e4fad157312c3c86a169598c 1 3 \N \N \N 1 \N \N Elvin Thompson \N \N \N \N \N \N \N \N 'elvin':1,2 'thompson':3,4 \N \N \N \N 166 166 6 \N 1 0 0 0 0 0 167 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -168 168 10 br2dlawson \N 3fb647ad4f7f340ab61e134567a178f4 1 1 \N \N \N 1 \N \N Dora Lawson \N \N \N \N \N \N \N \N 'dora':1,2 'lawson':3,4 \N \N \N \N 167 167 5 \N 1 0 0 0 0 0 168 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -169 169 10 br2lvargas \N 59f703fd0b55e6ed5916cd668144771f 1 1 \N \N \N 1 \N \N Laura Mildred Vargas III \N \N \N \N \N \N \N 'iii':7 'laura':1,2 'mildr':3,4 'varga':5,6 \N \N \N \N 168 168 5 1989-07-04 1 0 0 0 0 0 169 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -170 170 10 br1wrandall \N d90e720543f73e22472753f0bb438745 1 3 \N \N \N 1 \N \N William James Randall \N \N \N \N \N \N \N \N 'jame':3,4 'randal':5,6 'william':1,2 \N \N \N \N 169 169 4 \N 1 0 0 0 0 0 170 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -171 171 10 br1csmith \N 81b3339ccff5387b486e48384821b929 1 1 \N \N \N 1 \N \N Cathy Cheryl Smith \N \N \N \N \N \N \N \N 'cathi':1,2 'cheryl':3,4 'smith':5,6 \N \N \N \N 170 170 4 \N 1 0 0 0 0 0 171 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -172 172 9 bm1alopez \N b979df5dd19447317b31e4a7e09b9f1b 1 1 \N \N \N 1 \N \N Arline Amber Lopez III \N \N \N \N \N \N \N 'amber':3,4 'arlin':1,2 'iii':7 'lopez':5,6 \N \N \N \N 171 171 9 1985-05-05 1 0 0 0 0 0 172 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -173 173 9 bm1epeterson \N cf5fb3038a75ae18439c11832278fa7b 1 1 \N \N \N 1 \N \N Emma Peterson \N \N \N \N \N \N \N \N 'emma':1,2 'peterson':3,4 \N \N \N \N 172 172 9 \N 1 0 0 0 0 0 173 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -174 174 9 sl1okelly \N b62578dbf7fead8b1357c0a4e24517bb 1 1 \N \N \N 1 \N \N Opal Sara Kelly III \N \N \N \N \N \N \N 'iii':7 'kelli':5,6 'opal':1,2 'sara':3,4 \N \N \N \N 173 173 8 1975-01-18 1 0 0 0 0 0 174 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -175 175 9 sl1cdonovan \N 30375b9674c99cd3010e7bee31471d87 1 1 \N \N \N 1 \N \N Charlie David Donovan \N \N \N \N \N \N \N \N 'charli':1,2 'david':3,4 'donovan':5,6 \N \N \N \N 174 174 8 \N 1 0 0 0 0 0 175 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -176 176 9 br4msmith \N 20e83b8c245c563d56db8558d20833b4 1 3 \N \N \N 1 \N \N Martha Raquel Smith \N \N \N \N \N \N \N \N 'martha':1,2 'raquel':3,4 'smith':5,6 \N \N \N \N 175 175 7 \N 1 0 0 0 0 0 176 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -177 177 9 br4chouston \N 59559bd2c910149e3d23e846be8b023c 1 3 \N \N \N 1 \N \N Cheryl Houston \N \N \N \N \N \N \N \N 'cheryl':1,2 'houston':3,4 \N \N \N \N 176 176 7 \N 1 0 0 0 0 0 177 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -178 178 9 br3kwright \N 17ea9d657837fe2a558dcddb857e5c46 1 1 \N \N \N 1 \N \N Kay Anna Wright \N \N \N \N \N \N \N \N 'anna':3,4 'kay':1,2 'wright':5,6 \N \N \N \N 177 177 6 \N 1 0 0 0 0 0 178 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -179 179 9 br3mlane \N b1c596c45d3448e2eea8932a932d54ec 1 3 \N \N \N 1 \N \N Michelle Andrea Lane Sr \N \N \N \N \N \N \N 'andrea':3,4 'lane':5,6 'michell':1,2 'sr':7 \N \N \N \N 178 178 6 1963-06-14 1 0 0 0 0 0 179 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -180 180 9 br2rsmith \N dbbbab678e569f96537ab83a3fdd1b13 1 1 \N \N \N 1 \N \N Robert Smith \N \N \N \N \N \N \N \N 'robert':1,2 'smith':3,4 \N \N \N \N 179 179 5 \N 1 0 0 0 0 0 180 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -181 181 9 br2cdodson \N 9918aa391508b71d274b902be9111a8f 1 1 \N \N \N 1 \N \N Cleo Dodson \N \N \N \N \N \N \N \N 'cleo':1,2 'dodson':3,4 \N \N \N \N 180 180 5 \N 1 0 0 0 0 0 181 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -182 182 9 br1mneal \N 86d54f8523eaed02c7ff1a6f4ecc709a 1 1 \N \N \N 1 \N \N Melvin Richard Neal \N \N \N \N \N \N \N \N 'melvin':1,2 'neal':5,6 'richard':3,4 \N \N \N \N 181 181 4 \N 1 0 0 0 0 0 182 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -183 183 9 br1awilliams \N 66650130ecdca91cdffa0218cc4ea444 1 3 \N \N \N 1 \N \N Anna Justine Williams \N \N \N \N \N \N \N \N 'anna':1,2 'justin':3,4 'william':5,6 \N \N \N \N 182 182 4 \N 1 0 0 0 0 0 183 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -184 184 8 bm1emiller \N 11a379470cb6ec029270bd53fa141e23 1 1 \N \N \N 1 \N \N Edmond Vance Miller \N \N \N \N \N \N \N \N 'edmond':1,2 'miller':5,6 'vanc':3,4 \N \N \N \N 183 183 9 \N 1 0 0 0 0 0 184 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -185 185 8 bm1vlogan \N e92f010377ea068defe04435a29464a8 1 3 \N \N \N 1 \N \N Vanessa Cassandra Logan \N \N \N \N \N \N \N \N 'cassandra':3,4 'logan':5,6 'vanessa':1,2 \N \N \N \N 184 184 9 \N 1 0 0 0 0 0 185 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -186 186 8 sl1lthompson \N 31f8e09c19b546a880d5a20bfa55bce2 1 1 \N \N \N 1 \N \N Lisa Shirley Thompson \N \N \N \N \N \N \N \N 'lisa':1,2 'shirley':3,4 'thompson':5,6 \N \N \N \N 185 185 8 \N 1 0 0 0 0 0 186 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -187 187 8 sl1oshaffer \N 3d43699b3c4b859f56a0f60d6c13768d 1 1 \N \N \N 1 \N \N Ollie Monica Shaffer \N \N \N \N \N \N \N \N 'monica':3,4 'olli':1,2 'shaffer':5,6 \N \N \N \N 186 186 8 \N 1 0 0 0 0 0 187 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -188 188 8 br4randrews \N ad6b99a31a1d385fece37092d8895410 1 1 \N \N \N 1 \N \N Raymond Willie Andrews \N \N \N \N \N \N \N \N 'andrew':5,6 'raymond':1,2 'willi':3,4 \N \N \N \N 187 187 7 \N 1 0 0 0 0 0 188 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -189 189 8 br4emartinez \N 29e088345ac9a38d40008cf871f1c1b1 1 3 \N \N \N 1 \N \N Edna Judith Martinez \N \N \N \N \N \N \N \N 'edna':1,2 'judith':3,4 'martinez':5,6 \N \N \N \N 188 188 7 \N 1 0 0 0 0 0 189 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -190 190 8 br3jdavis \N 53489fe8877b8459efb6f8887341a122 1 3 \N \N \N 1 \N \N James Jerry Davis III \N \N \N \N \N \N \N 'davi':5,6 'iii':7 'jame':1,2 'jerri':3,4 \N \N \N \N 189 189 6 1970-06-11 1 0 0 0 0 0 190 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -191 191 8 br3droberts \N 280a6e18119a999e5e67a5291edafd7c 1 1 \N \N \N 1 \N \N Diane Teresa Roberts \N \N \N \N \N \N \N \N 'dian':1,2 'robert':5,6 'teresa':3,4 \N \N \N \N 190 190 6 \N 1 0 0 0 0 0 191 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -192 192 8 br2psantiago \N 5088612774065e8710c53fdb3dc8ce5d 1 1 \N \N \N 1 \N \N Paige Helen Santiago Sr \N \N \N \N \N \N \N 'helen':3,4 'paig':1,2 'santiago':5,6 'sr':7 \N \N \N \N 191 191 5 1979-08-23 1 0 0 0 0 0 192 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -193 193 8 br2awright \N 40e4ae7988842b678d779b3cea388ae9 1 1 \N \N \N 1 \N \N Alyssa Christine Wright \N \N \N \N \N \N \N \N 'alyssa':1,2 'christin':3,4 'wright':5,6 \N \N \N \N 192 192 5 \N 1 0 0 0 0 0 193 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -194 194 8 br1dbeck \N 7dc56adf395e1341ed3874d789d80bdb 1 3 \N \N \N 1 \N \N Diana Wilma Beck \N \N \N \N \N \N \N \N 'beck':5,6 'diana':1,2 'wilma':3,4 \N \N \N \N 193 193 4 \N 1 0 0 0 0 0 194 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -195 195 8 br1mclark \N ceda3b3d494f1880c0dc75d0c00f2b3b 1 1 \N \N \N 1 \N \N Monty Daniel Clark II \N \N \N \N \N \N \N 'clark':5,6 'daniel':3,4 'ii':7 'monti':1,2 \N \N \N \N 194 194 4 1984-05-19 1 0 0 0 0 0 195 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -196 196 7 bm1hstone \N 03b83ab3cd882b4b9c29bf053a93e169 1 3 \N \N \N 1 \N \N Hazel Sylvia Stone \N \N \N \N \N \N \N \N 'hazel':1,2 'stone':5,6 'sylvia':3,4 \N \N \N \N 195 195 9 \N 1 0 0 0 0 0 196 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -197 197 7 bm1dgarza \N 2d042aa899bb08665911f5d586bcadf5 1 1 \N \N \N 1 \N \N David Steven Garza \N \N \N \N \N \N \N \N 'david':1,2 'garza':5,6 'steven':3,4 \N \N \N \N 196 196 9 \N 1 0 0 0 0 0 197 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -198 198 7 sl1jevans \N 538743718792bc8277f9e6ffde3d0aed 1 3 \N \N \N 1 \N \N John Timothy Evans \N \N \N \N \N \N \N \N 'evan':5,6 'john':1,2 'timothi':3,4 \N \N \N \N 197 197 8 \N 1 0 0 0 0 0 198 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -199 199 7 sl1rpayton \N 9e2d5e75a0613c83c59a38dcc0d52dc2 1 3 \N \N \N 1 \N \N Robert Steven Payton Jr \N \N \N \N \N \N \N 'jr':7 'payton':5,6 'robert':1,2 'steven':3,4 \N \N \N \N 198 198 8 1994-05-07 1 0 0 0 0 0 199 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -200 200 7 br4ddavis \N 59ea2dbd6f7d6f42c515f924fb28e6e6 1 3 \N \N \N 1 \N \N Donald Gene Davis \N \N \N \N \N \N \N \N 'davi':5,6 'donald':1,2 'gene':3,4 \N \N \N \N 199 199 7 \N 1 0 0 0 0 0 200 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -201 201 7 br4gadams \N 03f813ed7eaec405ada2a77ac6d52d83 1 1 \N \N \N 1 \N \N Gene Adams III \N \N \N \N \N \N \N 'adam':3,4 'gene':1,2 'iii':5 \N \N \N \N 200 200 7 1974-02-18 1 0 0 0 0 0 201 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -202 202 7 br3hwhite \N 3444ef90fdd052046197c06bd348865f 1 1 \N \N \N 1 \N \N Humberto Kevin White Jr \N \N \N \N \N \N \N 'humberto':1,2 'jr':7 'kevin':3,4 'white':5,6 \N \N \N \N 201 201 6 1997-09-08 1 0 0 0 0 0 202 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -203 203 7 br3asnyder \N d1790984529c3a7d7efedeed6e6923a5 1 3 \N \N \N 1 \N \N Ana Snyder III \N \N \N \N \N \N \N 'ana':1,2 'iii':5 'snyder':3,4 \N \N \N \N 202 202 6 1991-05-23 1 0 0 0 0 0 203 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -204 204 7 br2jroberts \N afb70179d5a949e60994a9749f459fb8 1 1 \N \N \N 1 \N \N John Theodore Roberts \N \N \N \N \N \N \N \N 'john':1,2 'robert':5,6 'theodor':3,4 \N \N \N \N 203 203 5 \N 1 0 0 0 0 0 204 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -205 205 7 br2sheath \N b41dd5ff9d6ca11a6ce50156df890bec 1 3 \N \N \N 1 \N \N Steven Luke Heath \N \N \N \N \N \N \N \N 'heath':5,6 'luke':3,4 'steven':1,2 \N \N \N \N 204 204 5 \N 1 0 0 0 0 0 205 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -206 206 7 br1krush \N 630ffe8d1c42622c02ccdaf1fe240faa 1 1 \N \N \N 1 \N \N Keith Rush \N \N \N \N \N \N \N \N 'keith':1,2 'rush':3,4 \N \N \N \N 205 205 4 \N 1 0 0 0 0 0 206 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -207 207 7 br1lfarrell \N 53efcbad74d21362db79112613d86b8e 1 3 \N \N \N 1 \N \N Linda Linda Farrell \N \N \N \N \N \N \N \N 'farrel':5,6 'linda':1,2,3,4 \N \N \N \N 206 206 4 \N 1 0 0 0 0 0 207 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -208 208 6 bm1rharrison \N 029901ac486307695654973a29077b9a 1 3 \N \N \N 1 \N \N Richard Melvin Harrison \N \N \N \N \N \N \N \N 'harrison':5,6 'melvin':3,4 'richard':1,2 \N \N \N \N 207 207 9 \N 1 0 0 0 0 0 208 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -209 209 6 bm1ksmith \N 9e95eb84b5850775f741d91a27eb4d5f 1 1 \N \N \N 1 \N \N Kevin Timothy Smith \N \N \N \N \N \N \N \N 'kevin':1,2 'smith':5,6 'timothi':3,4 \N \N \N \N 208 208 9 \N 1 0 0 0 0 0 209 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -210 210 6 sl1fmoore \N 6fc1d2cab4756e9dec03f21b68b592a4 1 1 \N \N \N 1 \N \N Florence Michelle Moore Jr \N \N \N \N \N \N \N 'florenc':1,2 'jr':7 'michell':3,4 'moor':5,6 \N \N \N \N 209 209 8 1977-02-07 1 0 0 0 0 0 210 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -211 211 6 sl1bcruz \N fbb9ef0a59455dec1aa9e0867f371972 1 1 \N \N \N 1 \N \N Betty Shirley Cruz Sr \N \N \N \N \N \N \N 'betti':1,2 'cruz':5,6 'shirley':3,4 'sr':7 \N \N \N \N 210 210 8 1993-08-10 1 0 0 0 0 0 211 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -212 212 6 br4jjohnson \N d17ddd0a6498871e9c9a1670e3510bb7 1 1 \N \N \N 1 \N \N Joel Allen Johnson \N \N \N \N \N \N \N \N 'allen':3,4 'joel':1,2 'johnson':5,6 \N \N \N \N 211 211 7 \N 1 0 0 0 0 0 212 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -213 213 6 br4kburton \N 888d45956ff129f22e5aae711c65a412 1 1 \N \N \N 1 \N \N Kristen Dena Burton \N \N \N \N \N \N \N \N 'burton':5,6 'dena':3,4 'kristen':1,2 \N \N \N \N 212 212 7 \N 1 0 0 0 0 0 213 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -214 214 6 br3rpineda \N 9e2d5e75a0613c83c59a38dcc0d52dc2 1 1 \N \N \N 1 \N \N Robert Gordon Pineda \N \N \N \N \N \N \N \N 'gordon':3,4 'pineda':5,6 'robert':1,2 \N \N \N \N 213 213 6 \N 1 0 0 0 0 0 214 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -215 215 6 br3avaldez \N 5f8b2cb6d427f17b6eb3205e10dd5e68 1 1 \N \N \N 1 \N \N Alissa Gladys Valdez Jr \N \N \N \N \N \N \N 'alissa':1,2 'gladi':3,4 'jr':7 'valdez':5,6 \N \N \N \N 214 214 6 1994-03-25 1 0 0 0 0 0 215 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -216 216 6 br2krowland \N 741958e3ff4e96286168ffedc6e338b6 1 3 \N \N \N 1 \N \N Kenneth Ernest Rowland \N \N \N \N \N \N \N \N 'ernest':3,4 'kenneth':1,2 'rowland':5,6 \N \N \N \N 215 215 5 \N 1 0 0 0 0 0 216 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -217 217 6 br2thansen \N 53bd1f78a1535f00ba24c7fbf25c9466 1 1 \N \N \N 1 \N \N Terrance Hansen \N \N \N \N \N \N \N \N 'hansen':3,4 'terranc':1,2 \N \N \N \N 216 216 5 \N 1 0 0 0 0 0 217 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -218 218 6 br1breid \N 9228a701016b9d8edd453558f944696b 1 3 \N \N \N 1 \N \N Barbara Amanda Reid \N \N \N \N \N \N \N \N 'amanda':3,4 'barbara':1,2 'reid':5,6 \N \N \N \N 217 217 4 \N 1 0 0 0 0 0 218 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -219 219 6 br1mroberts \N 028d125d5d149b33c435511e53ebb842 1 1 \N \N \N 1 \N \N Michael Stephen Roberts \N \N \N \N \N \N \N \N 'michael':1,2 'robert':5,6 'stephen':3,4 \N \N \N \N 218 218 4 \N 1 0 0 0 0 0 219 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -220 220 5 bm1rkaufman \N b6daef43ee4af029c963199ff8c13dc1 1 3 \N \N \N 1 \N \N Rachel Vickie Kaufman \N \N \N \N \N \N \N \N 'kaufman':5,6 'rachel':1,2 'vicki':3,4 \N \N \N \N 219 219 9 \N 1 0 0 0 0 0 220 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -221 221 5 bm1csims \N da7c8d48c47e7d64e90bd584a39b3a18 1 3 \N \N \N 1 \N \N Christopher John Sims \N \N \N \N \N \N \N \N 'christoph':1,2 'john':3,4 'sim':5,6 \N \N \N \N 220 220 9 \N 1 0 0 0 0 0 221 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -222 222 5 sl1srobinson \N 8de9f53f97af15c411c80e4afce49251 1 1 \N \N \N 1 \N \N Sarah Robinson II \N \N \N \N \N \N \N 'ii':5 'robinson':3,4 'sarah':1,2 \N \N \N \N 221 221 8 1996-01-28 1 0 0 0 0 0 222 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -223 223 5 sl1jpayton \N 6ec867c234315d0f8ebfa5320d4b50e9 1 3 \N \N \N 1 \N \N Johnny Vincent Payton \N \N \N \N \N \N \N \N 'johnni':1,2 'payton':5,6 'vincent':3,4 \N \N \N \N 222 222 8 \N 1 0 0 0 0 0 223 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -224 224 5 br4djamison \N 1cdbe27bab29d06394251dcbc0f79522 1 3 \N \N \N 1 \N \N David Eric Jamison \N \N \N \N \N \N \N \N 'david':1,2 'eric':3,4 'jamison':5,6 \N \N \N \N 223 223 7 \N 1 0 0 0 0 0 224 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -225 225 5 br4jford \N 26b3ffd11323066c807827467f1a4481 1 3 \N \N \N 1 \N \N Jamie Ford \N \N \N \N \N \N \N \N 'ford':3,4 'jami':1,2 \N \N \N \N 224 224 7 \N 1 0 0 0 0 0 225 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -226 226 5 br3gwatson \N b754e5e945f5a2f3219807ae6547c03a 1 1 \N \N \N 1 \N \N Gerald Larry Watson \N \N \N \N \N \N \N \N 'gerald':1,2 'larri':3,4 'watson':5,6 \N \N \N \N 225 225 6 \N 1 0 0 0 0 0 226 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -227 227 5 br3clambert \N 589b3aec86e6390b4cc976e983f3b3a7 1 1 \N \N \N 1 \N \N Charles William Lambert Jr \N \N \N \N \N \N \N 'charl':1,2 'jr':7 'lambert':5,6 'william':3,4 \N \N \N \N 226 226 6 1995-09-22 1 0 0 0 0 0 227 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -228 228 5 br2mbarber \N 784d41b1e3fde2c95f88d7b7e33c676f 1 1 \N \N \N 1 \N \N Micheal Ramon Barber \N \N \N \N \N \N \N \N 'barber':5,6 'micheal':1,2 'ramon':3,4 \N \N \N \N 227 227 5 \N 1 0 0 0 0 0 228 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -229 229 5 br2tcruz \N 1bb7351832be835d4f38dbdd6abe395b 1 3 \N \N \N 1 \N \N Tom Eugene Cruz \N \N \N \N \N \N \N \N 'cruz':5,6 'eugen':3,4 'tom':1,2 \N \N \N \N 228 228 5 \N 1 0 0 0 0 0 229 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -230 230 5 br1iwalton \N 357b76d0f06ada57e8801050e8168561 1 1 \N \N \N 1 \N \N Inez Amanda Walton \N \N \N \N \N \N \N \N 'amanda':3,4 'inez':1,2 'walton':5,6 \N \N \N \N 229 229 4 \N 1 0 0 0 0 0 230 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -231 231 5 br1mtownsend \N 708046204f797ce3661ebad48826db62 1 3 \N \N \N 1 \N \N Mary Townsend Jr \N \N \N \N \N \N \N 'jr':5 'mari':1,2 'townsend':3,4 \N \N \N \N 230 230 4 1995-03-03 1 0 0 0 0 0 231 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -232 232 4 bm1cmartinez \N 0a342f6d9625aef1cd6132cc5cf1eacd 1 3 \N \N \N 1 \N \N Carolyn Sandra Martinez \N \N \N \N \N \N \N \N 'carolyn':1,2 'martinez':5,6 'sandra':3,4 \N \N \N \N 231 231 9 \N 1 0 0 0 0 0 232 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -233 233 4 bm1jjohnson \N e2887fe9aa1fbad0a20dddd849f6359f 1 1 \N \N \N 1 \N \N Jeremy Mark Johnson II \N \N \N \N \N \N \N 'ii':7 'jeremi':1,2 'johnson':5,6 'mark':3,4 \N \N \N \N 232 232 9 1970-03-14 1 0 0 0 0 0 233 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -234 234 4 sl1mscott \N 3b4ac8ba67df2a9382a7fce1714e6113 1 1 \N \N \N 1 \N \N Mae Sue Scott \N \N \N \N \N \N \N \N 'mae':1,2 'scott':5,6 'sue':3,4 \N \N \N \N 233 233 8 \N 1 0 0 0 0 0 234 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -235 235 4 sl1rstevens \N d8e2278e86c07ec9bd5b5d7a5c5e4b8d 1 3 \N \N \N 1 \N \N Russell Daniel Stevens Jr \N \N \N \N \N \N \N 'daniel':3,4 'jr':7 'russel':1,2 'steven':5,6 \N \N \N \N 234 234 8 1973-08-15 1 0 0 0 0 0 235 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -236 236 4 br4therrera \N 22c5913f12a8ede0a84c3326236bd05a 1 3 \N \N \N 1 \N \N Traci Edith Herrera Jr \N \N \N \N \N \N \N 'edith':3,4 'herrera':5,6 'jr':7 'traci':1,2 \N \N \N \N 235 235 7 1994-07-07 1 0 0 0 0 0 236 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -237 237 4 br4vgrimes \N 632b954eeae15a42d6a18abb6ad7a51f 1 3 \N \N \N 1 \N \N Virginia Jennifer Grimes \N \N \N \N \N \N \N \N 'grime':5,6 'jennif':3,4 'virginia':1,2 \N \N \N \N 236 236 7 \N 1 0 0 0 0 0 237 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -238 238 4 br3pward \N 49048421963ffe079db36506472120f9 1 1 \N \N \N 1 \N \N Paul Ward \N \N \N \N \N \N \N \N 'paul':1,2 'ward':3,4 \N \N \N \N 237 237 6 \N 1 0 0 0 0 0 238 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -239 239 4 br3bgreen \N 8a0509adc60a691b0c1f13ec167b2159 1 3 \N \N \N 1 \N \N Beatrice Janette Green \N \N \N \N \N \N \N \N 'beatric':1,2 'green':5,6 'janett':3,4 \N \N \N \N 238 238 6 \N 1 0 0 0 0 0 239 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -240 240 4 br2sschmidt \N afcef01d855c00d878c85883b960052b 1 1 \N \N \N 1 \N \N Scott Kyle Schmidt Sr \N \N \N \N \N \N \N 'kyle':3,4 'schmidt':5,6 'scott':1,2 'sr':7 \N \N \N \N 239 239 5 \N 1 0 0 0 0 0 240 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -241 241 4 br2jclark \N 44608b8935ad117cc49f74635eabe724 1 3 \N \N \N 1 \N \N Joanne Andrea Clark \N \N \N \N \N \N \N \N 'andrea':3,4 'clark':5,6 'joann':1,2 \N \N \N \N 240 240 5 \N 1 0 0 0 0 0 241 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -242 242 4 br1bbrown \N bdae5ad51d3a757ff0763ac675f58815 1 1 \N \N \N 1 \N \N Beverly Florence Brown \N \N \N \N \N \N \N \N 'bever':1,2 'brown':5,6 'florenc':3,4 \N \N \N \N 241 241 4 \N 1 0 0 0 0 0 242 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -243 243 4 br1jmcginnis \N ecd6718b679deadf41769cfd76800330 1 3 \N \N \N 1 \N \N Jose David Mcginnis \N \N \N \N \N \N \N \N 'david':3,4 'jose':1,2 'mcginni':5,6 \N \N \N \N 242 242 4 \N 1 0 0 0 0 0 243 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2020-10-27 09:26:51.426709-05 \N -244 244 4 hhplwayne \N d41d8cd98f00b204e9800998ecf8427e 1 1 RI-123456789 \N \N 2 \N \N Bruce Hamilton Wayne \N \N \N \N \N \N \N \N 'bruce':1,2 'hamilton':3,4 'wayn':5,6 \N \N \N \N 243 243 106 1971-10-26 1 1 0 0 0 0 271 0 0.00 1645223790.3550113272.0455618262 2021-10-26 15:09:03-05 2024-10-26 15:06:14-05 0 2022-02-18 16:36:30.358997-06 \N -245 245 4 hhplprince \N d41d8cd98f00b204e9800998ecf8427e 1 1 RI-999888999 \N \N 2 \N \N Diana \N Prince \N \N \N \N \N \N \N \N 'diana':1,2 'princ':3,4 \N 555-123-4467 \N \N 274 274 106 1995-02-17 1 1 0 0 0 0 272 0 0.00 1645224015.4097876535.9606706689 2021-10-26 15:12:01-05 2024-10-26 15:10:17-05 0 2022-02-18 16:40:15.420141-06 \N -246 246 9 hhplallen \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Barry \N Allen \N \N \N \N \N \N \N \N 'allen':3,4 'barri':1,2 \N \N \N \N 244 244 106 1956-02-27 1 0 0 0 0 0 245 0 0.00 1635279666.6801756423.6518653001 2021-10-26 15:21:06-05 2024-10-26 15:19:18-05 0 2021-10-26 15:21:06.684406-05 \N -247 247 5 hhplcurry \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Arthur \N Curry \N \N \N \N \N \N \N \N 'arthur':1,2 'curri':3,4 \N \N \N \N 245 245 106 1981-01-10 1 0 0 0 0 0 246 0 0.00 1635279927.6371383141.7914786336 2021-10-26 15:25:27-05 2024-10-26 15:23:49-05 0 2021-10-26 15:25:27.648639-05 \N -248 248 5 hhplstone \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Victor Samuel Stone \N \N \N \N \N \N \N \N 'samuel':3,4 'stone':5,6 'victor':1,2 \N \N \N \N 246 246 106 1981-01-10 1 0 0 0 0 0 247 0 0.00 1635280046.367793183.80580061213 2021-10-26 15:27:26-05 2024-10-26 15:25:26-05 0 2021-10-26 15:27:26.371894-05 \N -249 249 10 hhplpennyworth \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Alfred Joseph Pennyworth \N \N \N \N \N \N \N \N 'alfr':1,2 'joseph':3,4 'pennyworth':5,6 \N \N \N \N 247 247 106 1935-01-10 1 1 0 0 0 0 266 0 0.00 1645223817.276385315.07418754397 2021-10-26 15:29:17-05 2024-10-26 15:27:36-05 0 2022-02-18 16:36:57.281213-06 \N -250 250 12 hhplgordon \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N James \N Gordon \N \N \N \N \N \N \N \N 'gordon':3,4 'jame':1,2 \N \N \N \N 273 273 106 1981-01-10 1 1 0 0 0 0 267 0 0.00 1645223945.43975121148.83054093 2021-10-26 15:30:27-05 2024-10-26 15:29:09-05 0 2022-02-18 16:39:05.444114-06 \N -251 274 15 hhplstone2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Silas \N Stone \N \N \N \N \N \N \N \N 'sila':1,2 'stone':3,4 \N \N \N \N 271 271 106 2005-07-17 1 1 0 0 0 1 269 0 0.00 1645223747.677219888.2057369309 2021-10-26 15:32:06-05 2024-10-26 15:30:46-05 0 2022-02-18 16:35:47.681202-06 \N -252 252 8 hhplkent \N d41d8cd98f00b204e9800998ecf8427e 1 1 RI-1236679 \N \N 2 \N \N Martha Jane Kent \N \N \N \N \N \N \N \N 'jane':3,4 'kent':5,6 'martha':1,2 \N \N \N \N 272 272 106 1973-09-02 1 1 0 0 0 0 270 0 0.00 1645223856.09612350.800914292609 2021-10-26 15:33:48-05 2024-10-26 15:32:05-05 0 2022-02-18 16:37:36.101091-06 \N -253 253 15 hhplgur \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Yalan \N Gur \N \N \N \N \N \N \N \N 'gur':3,4 'yalan':1,2 \N \N \N \N 270 270 106 1991-03-19 1 1 0 0 0 0 268 0 0.00 1645223572.4966814017.2708519078 2021-10-26 15:35:15-05 2024-10-26 15:33:44-05 0 2022-02-18 16:32:52.501227-06 \N -254 254 4 lplsbagshot \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Bathilda Esmerelda Bagshot \N \N \N \N \N \N \N \N 'bagshot':5,6 'bathilda':1,2 'esmerelda':3,4 \N \N \N \N 248 248 102 1952-01-19 1 1 0 0 0 0 274 0 0.00 1645224783.920865191.45846091031 2021-10-26 15:49:47-05 2024-10-26 15:47:35-05 0 2022-02-18 16:53:03.925823-06 \N -255 255 4 lplsbones \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Amelia Marie Bones \N \N \N \N \N \N \N \N 'amelia':1,2 'bone':5,6 'mari':3,4 \N \N \N \N 281 281 103 1985-01-01 1 1 0 0 0 0 273 0 0.00 1645224783.920666909.22426997837 2021-10-26 15:51:26-05 2024-10-26 15:50:18-05 0 2022-02-18 16:53:03.925537-06 \N -256 256 10 lplsbrown \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Lavender Louise Brown \N \N \N \N \N \N \N \N 'brown':5,6 'lavend':1,2 'louis':3,4 \N \N \N \N 249 249 102 1971-09-02 1 0 0 0 0 0 250 0 0.00 1635281609.6591371273.4034551929 2021-10-26 15:53:29-05 2024-10-26 15:51:53-05 0 2021-10-26 15:53:29.663788-05 \N -257 257 9 lplsclearwater \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Penelope \N Clearwater \N \N \N \N \N \N \N \N 'clearwat':3,4 'penelop':1,2 \N \N \N \N 250 250 102 1917-01-19 1 0 0 0 0 0 251 0 0.00 1635282372.4277631835.0002659973 2021-10-26 15:54:39-05 2024-10-26 15:53:13-05 0 2021-10-26 16:06:12.432502-05 \N -258 258 12 lplscrabbe \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Vincent Jay Crabbe \N \N \N Vinny "The Whip" \N \N 'crabb':5,6 'jay':3,4 'thewhip':11 'vincent':1,2 'vinni':7,8 'whip':10 \N \N \N \N 251 251 102 1998-08-08 1 0 0 0 0 0 252 0 0.00 1635282416.8439260208.3398403086 2021-10-26 15:56:28-05 2024-10-26 15:55:04-05 0 2021-10-26 16:06:56.848136-05 \N -259 259 5 lplsdelacour \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Fleur Amelie Delacour \N \N \N \N \N \N \N \N 'ameli':3,4 'delacour':5,6 'fleur':1,2 \N \N \N \N 252 252 102 2001-05-05 1 0 0 0 0 0 253 0 0.00 1635282404.802514635.36647311665 2021-10-26 15:58:13-05 2024-10-26 15:56:34-05 0 2021-10-26 16:06:44.806777-05 \N -260 260 5 lplshuff \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Helga Henrietta Hufflepuff \N \N \N \N \N \N \N \N 'helga':1,2 'henrietta':3,4 'hufflepuff':5,6 \N \N \N \N 253 253 103 1999-09-09 1 0 0 0 0 0 254 0 0.00 1635281998.6095854259.4285324187 2021-10-26 15:59:58-05 2024-10-26 15:58:25-05 0 2021-10-26 15:59:58.614034-05 \N -261 261 8 lplsflamel \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Nicolas \N Flamel \N \N \N Nick \N \N \N \N 'flamel':3,4 'nick':5,6 'nicola':1,2 \N \N \N \N 254 254 102 1784-01-09 1 0 0 0 0 0 255 0 0.00 1635282110.4583196383.5351361247 2021-10-26 16:01:50-05 2024-10-26 16:00:04-05 0 2021-10-26 16:01:50.462015-05 \N -262 262 15 lplspomfrey \N d41d8cd98f00b204e9800998ecf8427e 1 1 MA19191717 \N \N 1 \N \N Poppy Penelope Pomfrey \N \N \N \N \N \N \N \N 'penelop':3,4 'pomfrey':5,6 'poppi':1,2 \N \N \N \N 255 255 102 2001-06-06 1 0 0 0 0 0 256 0 0.00 1635282243.5177563872.151147921 2021-10-26 16:04:03-05 2024-10-26 16:02:09-05 0 2021-10-26 16:04:03.52208-05 \N -263 263 15 lplspince \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Irma \N Pince \N \N \N \N \N \N \N \N 'irma':1,2 'pinc':3,4 \N \N \N \N 256 256 103 1979-09-03 1 0 0 0 0 0 257 0 0.00 1635282323.2943338623.0072659412 2021-10-26 16:05:23-05 2024-10-26 16:03:57-05 0 2021-10-26 16:05:23.302157-05 \N -264 264 2 hhplcash \N d41d8cd98f00b204e9800998ecf8427e 1 1 GA-123456789 \N \N 2 \N \N Aaron \N Cash \N \N \N \N \N \N \N \N 'aaron':1,2 'cash':3,4 \N 555-123-6798 \N \N 257 257 106 2001-03-01 1 0 0 0 0 0 258 0 0.00 1645224530.572748773.59022720257 2022-02-18 15:59:10-06 2025-02-18 15:57:02-06 0 2022-02-18 16:48:50.576904-06 \N -265 265 2 hhplbathound \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Ace \N Bathound \N \N \N \N \N \N \N \N 'ace':1,2 'bathound':3,4 \N 555-123-6799 \N \N 275 275 106 1971-02-12 1 1 0 0 0 0 264 0 0.00 1655500025.461228758.15064941562 2022-02-18 16:00:19-06 2025-02-18 15:58:49-06 0 2022-06-17 16:07:05.502186-05 \N -266 266 2 hhpllane \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Michael \N Lane \N \N \N \N \N \N \N \N 'lane':3,4 'michael':1,2 \N \N \N \N 258 258 106 1983-02-19 1 1 0 0 0 0 265 0 0.00 1645224671.9480242100.1953683088 2022-02-18 16:08:16-06 2025-02-18 16:06:14-06 0 2022-02-18 16:51:11.952427-06 \N -267 267 2 hhplgordon2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Barbara \N Gordon \N Commissioner Gordon \N \N \N \N \N \N 'barbara':1,2 'gordon':3,4 \N \N \N \N 276 276 106 1991-09-27 1 1 0 0 0 0 260 0 0.00 1645224549.9033825914.3992635904 2022-02-18 16:09:44-06 2025-02-18 16:07:52-06 0 2022-02-18 16:49:09.90773-06 \N -268 268 2 hhplbatwing \N d41d8cd98f00b204e9800998ecf8427e 1 1 RI 769892334 \N \N 1 \N \N Sam \N Batwing \N \N \N \N \N \N \N \N 'batw':3,4 'sam':1,2 \N \N \N \N 280 280 106 1967-09-12 1 1 0 0 0 0 261 0 0.00 1655500090.8172725320.1535482021 2022-02-18 16:11:49-06 2025-02-18 16:10:15-06 0 2022-06-17 16:08:10.858722-05 \N -269 269 18 hhplkelley \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N 1 \N \N Carrie Samantha Kelley \N Samantha Kelley \N \N \N \N \N \N 'carri':1,2 'kelley':5,6 'samantha':3,4 \N \N \N \N 278 278 106 2015-02-17 1 1 0 0 0 1 262 0 0.00 1645224564.2439319642.9416477781 2022-02-18 16:13:46-06 2027-02-18 16:12:03-06 0 2022-02-18 16:49:24.248425-06 \N -273 273 18 hhplcain \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Cassandra Clara Cain \N \N \N \N \N \N \N \N 'cain':5,6 'cassandra':1,2 'clara':3,4 \N \N \N \N 258 258 106 1998-03-03 1 1 0 0 0 0 263 0 0.00 1645224515.6203829262.3830236295 2022-02-18 16:18:53-06 2027-02-18 16:17:21-06 0 2022-02-18 16:48:35.624135-06 \N -274 275 17 hhplwayne2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Damian Bruce Wayne \N \N \N \N \N \N \N \N 'bruce':3,4 'damian':1,2 'wayn':5,6 \N \N \N \N 282 282 106 1942-09-12 1 0 0 0 0 0 275 0 0.00 1645224964.680221637.23187156652 2022-02-18 16:56:04-06 2024-02-18 16:53:55-06 0 2022-02-18 16:56:04.684323-06 \N -275 276 18 hhplranger \N d41d8cd98f00b204e9800998ecf8427e 1 1 RI-123456989 \N \N 2 \N \N Dave \N Ranger \N \N \N \N \N \N \N \N 'dave':1,2 'ranger':3,4 \N \N \N \N 283 283 106 1979-03-19 1 0 0 0 0 0 276 0 0.00 1645225044.6205982746.6274766563 2022-02-18 16:57:24-06 2027-02-18 16:55:46-06 0 2022-02-18 16:57:24.62488-06 \N -276 277 19 hhplzavimbe \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N David \N Zavimbe \N \N \N \N \N \N \N \N 'david':1,2 'zavimb':3,4 \N \N \N \N 284 284 106 2001-05-05 1 0 0 0 0 0 277 0 0.00 1645225129.9427318229.6903091918 2022-02-18 16:58:49-06 2025-02-18 16:57:05-06 0 2022-02-18 16:58:49.947158-06 \N -277 278 19 hhplgolden \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Dawn \N Golden \N \N \N \N \N \N \N \N 'dawn':1,2 'golden':3,4 \N \N \N \N 285 285 106 1984-01-29 1 0 0 0 0 0 278 0 0.00 1645225228.0638633614.5984296893 2022-02-18 17:00:28-06 2025-02-18 16:58:43-06 0 2022-02-18 17:00:28.06771-06 \N -278 279 16 hhplthomas \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Duke \N Thomas \N Max Thomas \N \N \N \N \N \N 'duke':1,2 'thoma':3,4 \N \N \N \N 286 286 106 2015-12-09 1 0 0 0 0 1 279 0 0.00 1645225320.9400414812.3722782116 2022-02-18 17:02:00-06 2023-02-18 17:00:18-06 0 2022-02-18 17:02:00.944307-06 \N -279 280 16 hhplbullock \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Harvey Sean Bullock \N \N \N \N \N \N \N \N 'bullock':5,6 'harvey':1,2 'sean':3,4 \N \N \N \N 287 287 106 2010-06-09 1 0 0 0 0 1 280 0 0.00 1655501470.321575380.99718182704 2022-02-18 17:03:43-06 2023-02-18 17:01:36-06 0 2022-06-17 16:31:10.36283-05 \N -280 281 2 lplscreevey \N d41d8cd98f00b204e9800998ecf8427e 1 1 MA-123-345-999 \N \N 2 \N \N Colin \N Creevey \N \N \N \N \N \N \N \N 'colin':1,2 'creevey':3,4 \N \N \N \N 288 288 102 1956-05-19 1 0 0 0 0 0 281 0 0.00 1645474176.68969120418.662109024 2022-02-21 14:09:36-06 2025-02-21 14:06:49-06 0 2022-02-21 14:09:36.694016-06 \N -281 282 2 lplsvane \N d41d8cd98f00b204e9800998ecf8427e 1 1 MA-999-999-1234 3 \N 1 \N \N Romilda Jessica Vane \N Jennifer Vane \N \N \N \N \N Gryffindor 'gryffindor':7 'jessica':3,4 'romilda':1,2 'vane':5,6 \N \N \N \N 289 289 102 2005-09-17 1 0 0 0 0 1 282 0 0.00 1645474370.0203437630.2709201771 2022-02-21 14:12:50-06 2025-02-21 14:10:57-06 0 2022-02-21 14:12:50.025982-06 \N -282 283 2 lplszabini \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N 2 \N \N Blaise \N Zabini \N \N \N \N \N \N \N \N 'blais':1,2 'zabini':3,4 \N \N \N \N 290 290 102 1997-02-02 1 0 0 0 0 0 283 0 0.00 1645474459.1889543105.1660344525 2022-02-21 14:14:19-06 2025-02-21 14:12:20-06 0 2022-02-21 14:14:19.193342-06 \N -283 284 2 lplsfinch \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Justin \N Finch-Fletchley \N \N \N \N \N \N \N \N 'finch':4 'finch-fletchley':3 'finchfletchley':6 'fletchley':5 'justin':1,2 \N \N \N \N 291 291 102 1953-06-06 1 0 0 0 0 0 284 0 0.00 1645474543.2079315985.6725336119 2022-02-21 14:15:43-06 2025-02-21 14:13:59-06 0 2022-02-21 14:15:43.211648-06 \N -284 285 2 lplsbell \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Katie Bell \N \N \N \N \N \N \N \N 'bell':3,4 'kati':1,2 \N \N \N \N 292 292 102 \N 1 0 0 0 0 0 285 0 0.00 1655500374.7103552492.7635250918 2022-02-21 14:17:10-06 2025-02-21 14:15:09-06 0 2022-06-17 16:12:54.764607-05 \N -285 286 18 lplsmclaggen \N d41d8cd98f00b204e9800998ecf8427e 1 1 MA-012-023-9989 \N \N 1 \N \N Cormac \N McLaggen \N Hamish McLaggen \N \N \N \N \N \N 'cormac':1,2 'mclaggen':3,4 \N \N \N \N 293 293 102 2005-01-01 0 0 0 0 0 1 286 0 0.00 1645474951.6080631628.1593363473 2022-02-21 14:22:31-06 2027-02-21 14:20:40-06 0 2022-02-21 14:22:31.612226-06 \N -286 287 18 lplssmith \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Zacharias \N Smith \N \N \N \N \N \N \N \N 'smith':3,4 'zacharia':1,2 \N \N \N \N 294 294 102 1987-02-09 1 0 0 0 0 0 287 0 0.00 1645475023.2096129154.8767554043 2022-02-21 14:23:43-06 2027-02-21 14:22:03-06 0 2022-02-21 14:23:43.214481-06 \N -287 288 17 lplsbrown2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Lavender \N Brown \N Sandra Brown \N \N \N \N \N \N 'brown':3,4 'lavend':1,2 \N \N \N \N 295 295 102 2020-03-03 1 0 0 0 0 1 288 0 0.00 1655501120.12664143393.871868614 2022-02-21 14:25:20-06 2024-02-21 14:23:30-06 0 2022-06-17 16:25:20.170547-05 \N -288 289 17 lplscreevey2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Dennis \N Creevey \N \N \N \N \N \N \N \N 'creevey':3,4 'denni':1,2 \N \N \N \N 296 296 102 1965-03-05 1 0 0 0 0 0 289 0 0.00 1645475202.647798655.88089026625 2022-02-21 14:26:42-06 2024-02-21 14:24:57-06 0 2022-02-21 14:26:42.651461-06 \N -289 290 19 lplsfinnigan \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Seamus \N Finnigan \N \N \N \N \N \N \N Gryffindor 'finnigan':3,4 'gryffindor':5 'seamus':1,2 \N \N \N \N 297 297 102 2019-02-19 1 0 0 0 0 1 290 0 0.00 1645475331.02771110193.949836636 2022-02-21 14:28:51-06 2025-02-21 14:27:07-06 0 2022-02-21 14:28:51.037718-06 \N -290 291 16 lplslongbottom \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Neville \N Longbottom \N \N \N \N \N \N \N Gryffindor 'gryffindor':5 'longbottom':3,4 'nevill':1,2 \N \N \N \N 298 298 102 2012-10-04 1 0 0 0 0 1 291 0 0.00 1645475430.2922620892.7161015687 2022-02-21 14:30:30-06 2023-02-21 14:28:30-06 0 2022-02-21 14:30:30.297183-06 \N -291 292 2 lplspatil \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Parvati \N Patil \N \N \N \N \N \N \N \N 'parvati':1,2 'patil':3,4 \N \N \N \N 299 299 103 1989-02-19 1 0 0 0 0 0 292 0 0.00 1645475627.86466206.017055673141 2022-02-21 14:33:47-06 2025-02-21 14:31:43-06 0 2022-02-21 14:33:47.868784-06 \N -292 293 2 lplsspinnet \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Alicia \N Spinnet \N \N \N \N \N \N \N \N 'alicia':1,2 'spinnet':3,4 \N \N \N \N 300 300 103 1917-02-06 1 0 0 0 0 0 293 0 0.00 1645475718.3571531539.1316588266 2022-02-21 14:35:18-06 2025-02-21 14:33:24-06 0 2022-02-21 14:35:18.365666-06 \N -293 294 2 lplsthomas \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Dawn \N Thomas \N \N \N \N \N \N \N \N 'dawn':1,2 'thoma':3,4 \N \N \N \N 301 301 103 1957-07-07 1 0 0 0 0 0 294 0 0.00 1645475799.5993823614.6785644369 2022-02-21 14:36:39-06 2025-02-21 14:34:53-06 0 2022-02-21 14:36:39.603269-06 \N -294 295 2 lplsweasley1 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Virginia \N Weasley \N \N \N Ginny \N \N \N \N 'ginni':5,6 'virginia':1,2 'weasley':3,4 \N \N \N \N 302 302 103 2015-05-05 1 0 0 0 0 1 295 0 0.00 1645475917.2811912119.6770628804 2022-02-21 14:38:37-06 2025-02-21 14:36:53-06 0 2022-02-21 14:38:37.284938-06 \N -295 296 2 lplsweasley2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Percival \N Weasley \N \N \N Percy \N \N \N \N 'perci':5,6 'perciv':1,2 'weasley':3,4 \N \N \N \N 303 303 103 2000-09-09 1 0 0 0 0 0 295 0 0.00 1645475987.0667649898.844309688 2022-02-21 14:39:47-06 2025-02-21 14:38:19-06 0 2022-02-21 14:39:47.070472-06 \N -296 297 19 lplsweasley3 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Fred \N Weasley \N \N \N \N \N \N \N \N 'fred':1,2 'weasley':3,4 \N \N \N \N 304 304 103 2000-05-05 1 0 0 0 0 0 295 0 0.00 1645476043.8440453987.7968522336 2022-02-21 14:40:43-06 2025-02-21 14:39:22-06 0 2022-02-21 14:40:43.848153-06 \N -297 298 19 lplsweasley4 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N George \N Weasley \N \N \N \N \N \N \N \N 'georg':1,2 'weasley':3,4 \N \N \N \N 305 305 103 1972-05-05 1 0 0 0 0 0 295 0 0.00 1645476125.1529222355.1121021687 2022-02-21 14:41:34-06 2025-02-21 14:40:13-06 0 2022-02-21 14:42:05.161859-06 \N -298 299 16 lplschang \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Cho \N Chang \N \N \N \N \N \N \N \N 'chang':3,4 'cho':1,2 \N \N \N \N 306 306 103 2003-12-19 1 0 0 0 0 0 296 0 0.00 1645476270.982849726.53439998154 2022-02-21 14:44:30-06 2023-02-21 14:42:47-06 0 2022-02-21 14:44:30.989638-06 \N -299 300 4 smallkent \N d41d8cd98f00b204e9800998ecf8427e 1 3 Daily Planet press card \N \N 2 \N \N Clark \N Kent \N \N \N \N \N \N \N krypton 'clark':1,2 'kent':3,4 'krypton':5 \N \N \N \N 307 307 114 1938-04-18 1 0 0 0 0 0 297 0 0.00 1645636588.4708929570.0618196019 2022-02-23 10:52:17-06 2025-02-23 10:48:39-06 0 2022-02-23 11:16:28.474589-06 \N -300 301 9 smalllane \N d41d8cd98f00b204e9800998ecf8427e 1 1 KS 989898999 \N \N 2 \N \N Lois \N Lane \N \N \N \N \N \N \N \N 'lane':3,4 'loi':1,2 \N \N \N \N 308 308 114 1981-03-03 1 0 0 0 0 0 298 0 0.00 1645636552.7186827056.606849974 2022-02-23 10:54:10-06 2025-02-23 10:52:29-06 0 2022-02-23 11:15:52.722246-06 \N -301 302 12 smallolsen \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N James \N Olsen \N \N \N Jimmy \N \N \N \N 'jame':1,2 'jimmi':5,6 'olsen':3,4 \N \N \N \N 309 309 114 1995-03-19 1 0 0 0 0 0 299 0 0.00 1645636484.4224510378.9332117562 2022-02-23 10:56:00-06 2025-02-23 10:53:50-06 0 2022-02-23 11:14:44.430223-06 \N -302 303 10 smallkerry \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Jonathen \N Kerry \N \N \N \N \N \N \N \N 'jonathen':1,2 'kerri':3,4 \N \N \N \N 310 310 114 1987-09-05 1 0 0 0 0 0 300 0 0.00 1645636447.7618527548.7434613701 2022-02-23 10:57:18-06 2025-02-23 10:55:33-06 0 2022-02-23 11:14:07.766538-06 \N -303 304 8 smallluthor \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Lionel \N Luthor \N \N \N \N \N \N \N \N 'lionel':1,2 'luthor':3,4 \N \N \N \N 311 311 114 1965-11-11 1 0 0 0 0 0 301 0 0.00 1645636409.6244789477.8391595887 2022-02-23 11:03:10-06 2025-02-23 11:01:24-06 0 2022-02-23 11:13:29.631951-06 \N -304 305 5 smallgrant \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Cat \N Grant \N \N \N \N \N \N \N \N 'cat':1,2 'grant':3,4 \N \N \N \N 312 312 114 \N 1 0 0 0 0 0 302 0 0.00 1645635917.326429165.3933876079 2022-02-23 11:05:17-06 2025-02-23 11:03:22-06 0 2022-02-23 11:05:17.334698-06 \N -305 306 5 smallwhite \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Perry \N White \N \N \N \N \N \N \N \N 'perri':1,2 'white':3,4 \N \N \N \N 313 313 114 1967-09-09 1 0 0 0 0 0 303 0 0.00 1645636022.94262103048.919725978 2022-02-23 11:07:02-06 2025-02-23 11:05:08-06 0 2022-02-23 11:07:02.946534-06 \N -306 307 5 smallsullivan \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Chloe \N Sullivan \N \N \N \N \N \N \N \N 'chloe':1,2 'sullivan':3,4 \N \N \N \N 314 314 114 1991-05-06 1 0 0 0 0 0 304 0 0.00 1645636133.9630239966.352935959 2022-02-23 11:08:53-06 2025-02-23 11:07:03-06 0 2022-02-23 11:08:53.966816-06 \N -307 308 2 smalltaylor \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N George \N Taylor \N \N \N \N \N \N \N \N 'georg':1,2 'taylor':3,4 \N \N \N \N 315 315 114 1999-09-09 1 0 0 0 0 0 305 0 0.00 1645636713.9696648336.4431088729 2022-02-23 11:18:33-06 2025-02-23 11:16:35-06 0 2022-02-23 11:18:33.973739-06 \N -308 309 2 smalltroupe \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Ron \N Troupe \N \N \N \N \N \N \N \N 'ron':1,2 'troup':3,4 \N \N \N \N 316 316 114 1977-01-01 1 0 0 0 0 0 306 0 0.00 1645636804.2377769787.9839030562 2022-02-23 11:20:04-06 2025-02-23 11:18:05-06 0 2022-02-23 11:20:04.247779-06 \N -309 310 2 smalllombard \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Steve \N Lombard \N \N \N \N \N \N \N \N 'lombard':3,4 'steve':1,2 \N \N \N \N 317 317 114 2005-01-09 1 0 0 0 0 1 307 0 0.00 1645636932.20458533.735167917113 2022-02-23 11:22:12-06 2025-02-23 11:19:47-06 0 2022-02-23 11:22:12.208362-06 \N -310 311 2 smallbibbowski \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Bibbo Bibbowski \N \N \N \N \N \N \N \N 'bibbo':1,2 'bibbowski':3,4 \N \N \N \N 318 318 114 1961-03-05 1 0 0 0 0 0 308 0 0.00 1655500640.9187935475.1797123931 2022-02-23 11:23:58-06 2025-02-23 11:22:16-06 0 2022-06-17 16:17:20.962308-05 \N -311 312 2 smallsawyer \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Margaret \N Sawyer \N \N \N Maggie \N \N \N \N 'maggi':5,6 'margaret':1,2 'sawyer':3,4 \N \N \N \N 319 319 114 1951-05-22 1 0 0 0 0 0 309 0 0.00 1645637136.91014100410.998176093 2022-02-23 11:25:36-06 2025-02-23 11:23:39-06 0 2022-02-23 11:25:36.914625-06 \N -312 313 18 smallturpin \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Dan \N Turpin \N \N \N \N \N \N \N \N 'dan':1,2 'turpin':3,4 \N \N \N \N 320 320 114 1999-01-03 1 0 0 0 0 0 310 0 0.00 1645637226.9120439121.8939263769 2022-02-23 11:27:06-06 2027-02-23 11:25:13-06 0 2022-02-23 11:27:06.915664-06 \N -313 314 17 smallberkowitz \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Frank \N Berkowitz \N \N \N \N \N \N \N \N 'berkowitz':3,4 'frank':1,2 \N \N \N \N 321 321 114 \N 1 0 0 0 0 0 311 0 0.00 1655500553.3417881264.2293715218 2022-02-23 11:28:21-06 2024-02-23 11:26:38-06 0 2022-06-17 16:15:53.38899-05 \N -314 315 19 smallarmstrong \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Dirk \N Armstrong \N \N \N \N \N \N \N \N 'armstrong':3,4 'dirk':1,2 \N \N \N \N 322 322 114 2012-02-28 1 0 0 0 0 1 312 0 0.00 1645638922.1419584851.4625527661 2022-02-23 11:55:22-06 2025-02-23 11:52:50-06 0 2022-02-23 11:55:22.146064-06 \N -315 316 16 smalllang \N d41d8cd98f00b204e9800998ecf8427e 1 1 KS-123-123-123 \N \N 3 \N \N Lana \N Lang \N \N \N \N \N \N \N \N 'lana':1,2 'lang':3,4 \N \N \N \N 323 323 114 2012-08-08 1 0 0 0 0 1 313 0 0.00 1645639038.5778946441.4491779206 2022-02-23 11:57:18-06 2023-02-23 11:55:00-06 0 2022-02-23 11:57:18.581418-06 \N -316 317 4 wakakillmonger \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Erik \N Killmonger \N \N \N \N \N \N \N \N 'erik':1,2 'killmong':3,4 \N \N \N \N 324 324 108 1989-03-09 1 0 0 0 0 0 314 0 0.00 1645639617.1700852847.161558018 2022-02-23 12:06:57-06 2025-02-23 12:05:13-06 0 2022-02-23 12:06:57.175739-06 \N -317 318 4 wakabarnes \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Bucky \N Barnes \N \N \N \N \N \N \N \N 'barn':3,4 'bucki':1,2 \N \N \N \N 325 325 108 1927-02-03 1 0 0 0 0 0 315 0 0.00 1645639731.6989215428.2671315119 2022-02-23 12:08:51-06 2025-02-23 12:06:40-06 0 2022-02-23 12:08:51.703594-06 \N -318 319 8 wakaross \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Everett \N Ross \N \N \N \N \N \N \N \N 'everett':1,2 'ross':3,4 \N \N \N \N 326 326 108 2000-01-01 1 0 0 0 0 0 316 0 0.00 1645639817.5464103731.853926843 2022-02-23 12:10:17-06 2025-02-23 12:08:28-06 0 2022-02-23 12:10:17.550652-06 \N -319 320 10 wakawright \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Shuri \N Wright \N \N \N \N \N \N \N \N 'shuri':1,2 'wright':3,4 \N \N \N \N 327 327 108 2001-01-23 1 0 0 0 0 0 317 0 0.00 1645639907.0987244223.923786073 2022-02-23 12:11:47-06 2025-02-23 12:09:58-06 0 2022-02-23 12:11:47.107719-06 \N -320 321 12 wakanyongo \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Nakia \N Nyong'o \N \N \N \N \N \N \N \N 'nakia':1,2 'nyong':3 'nyongo':5 'o':4 \N \N \N \N 328 328 108 1995-03-09 1 0 0 0 0 0 318 0 0.00 1645640028.8113544035.165638716 2022-02-23 12:13:48-06 2025-02-23 12:11:39-06 0 2022-02-23 12:13:48.815053-06 \N -321 322 9 wakaserkis \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Klaw \N Serkis \N \N \N \N \N \N \N \N 'klaw':1,2 'serki':3,4 \N \N \N \N 329 329 108 1959-03-09 1 0 0 0 0 0 319 0 0.00 1645640110.53727158780.803909268 2022-02-23 12:15:10-06 2025-02-23 12:13:22-06 0 2022-02-23 12:15:10.541108-06 \N -322 323 5 wakagurira \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Okoye \N Gurira \N \N \N \N \N \N \N \N 'gurira':3,4 'okoy':1,2 \N \N \N \N 330 330 109 1989-05-09 1 0 0 0 0 0 320 0 0.00 1645640202.1944782412.9853235064 2022-02-23 12:16:42-06 2025-02-23 12:14:39-06 0 2022-02-23 12:16:42.198626-06 \N -323 324 5 wakawhitaker \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Zuri \N Whitaker \N \N \N \N \N \N \N \N 'whitak':3,4 'zuri':1,2 \N \N \N \N 331 331 108 1985-10-10 1 0 0 0 0 0 321 0 0.00 1645640268.1200250846.6343583481 2022-02-23 12:17:48-06 2025-02-23 12:16:09-06 0 2022-02-23 12:17:48.123767-06 \N -324 325 2 wakajordan \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Michael B. Jordan \N \N \N \N \N \N \N \N 'b':3,4 'jordan':5,6 'michael':1,2 \N \N \N \N 332 332 108 1987-02-09 1 0 0 0 0 0 322 0 0.00 1645640690.2014817237.6479562395 2022-02-23 12:24:50-06 2025-02-23 12:22:51-06 0 2022-02-23 12:24:50.205048-06 \N -325 326 2 wakanyongo2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Lupita \N Nyong'o \N \N \N \N \N \N \N \N 'lupita':1,2 'nyong':3 'nyongo':5 'o':4 \N \N \N \N 333 333 108 2001-01-19 1 0 0 0 0 0 323 0 0.00 1645646087.770434525.29073635944 2022-02-23 13:54:47-06 2025-02-23 13:52:32-06 0 2022-02-23 13:54:47.77411-06 \N -326 327 2 wakagurira2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Danai \N Gurira \N \N \N \N \N \N \N \N 'danai':1,2 'gurira':3,4 \N \N \N \N 334 334 108 1989-03-09 1 0 0 0 0 0 324 0 0.00 1645646208.6938236735.8843025558 2022-02-23 13:56:48-06 2025-02-23 13:54:54-06 0 2022-02-23 13:56:48.697985-06 \N -327 328 2 wakaboseman \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Chadwick \N Boseman \N \N \N \N \N \N \N \N 'boseman':3,4 'chadwick':1,2 \N \N \N \N 335 335 108 1976-11-29 1 0 0 0 0 0 325 0 0.00 1655500661.1208721990.2963892936 2022-02-23 14:00:10-06 2025-02-23 13:57:53-06 0 2022-06-17 16:17:41.163084-05 \N -328 329 2 wakafreeman \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Martin \N Freeman \N \N \N \N \N \N \N \N 'freeman':3,4 'martin':1,2 \N \N \N \N 336 336 108 1978-03-19 1 0 0 0 0 0 326 0 0.00 1645646484.845772256.65745176549 2022-02-23 14:01:24-06 2025-02-23 13:59:42-06 0 2022-02-23 14:01:24.849843-06 \N -329 330 18 wakawright2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Letitia \N Wright \N \N \N \N \N \N \N \N 'letitia':1,2 'wright':3,4 \N \N \N \N 337 337 108 1962-03-02 1 0 0 0 0 0 327 0 0.00 1645646694.82654135749.323921665 2022-02-23 14:04:54-06 2027-02-23 14:02:26-06 0 2022-02-23 14:04:54.830538-06 \N -330 331 18 wakakaluuya \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Daniel \N Kaluuya \N \N \N \N \N \N \N \N 'daniel':1,2 'kaluuya':3,4 \N \N \N \N 338 338 108 1977-09-02 1 0 0 0 0 0 328 0 0.00 1645646872.9480964931.5419119867 2022-02-23 14:07:52-06 2027-02-23 14:05:27-06 0 2022-02-23 14:07:52.952204-06 \N -331 332 17 wakaduke \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Winston \N Duke \N \N \N \N \N \N \N \N 'duke':3,4 'winston':1,2 \N \N \N \N 339 339 108 1955-05-17 1 0 0 0 0 0 329 0 0.00 1645646971.1546323622.1756818577 2022-02-23 14:09:31-06 2024-02-23 14:07:41-06 0 2022-02-23 14:09:31.159187-06 \N -332 333 17 wakabrown \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Sterling K. Brown \N \N \N \N \N \N \N \N 'brown':5,6 'k':3,4 'sterl':1,2 \N \N \N \N 340 340 108 1942-12-02 1 0 0 0 0 0 330 0 0.00 1655501256.69887929.686695934305 2022-02-23 14:10:59-06 2024-02-23 14:09:05-06 0 2022-06-17 16:27:36.742104-05 \N -333 334 19 wakaserkis2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Andy \N Serkis \N \N \N \N \N \N \N \N 'andi':1,2 'serki':3,4 \N \N \N \N 341 341 108 1989-09-09 1 0 0 0 0 0 331 0 0.00 1645647238.4585859687.0937293465 2022-02-23 14:13:58-06 2025-02-23 14:11:48-06 0 2022-02-23 14:13:58.462926-06 \N -334 335 19 wakacarr \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Seth \N Carr \N \N \N \N \N \N \N \N 'carr':3,4 'seth':1,2 \N \N \N \N 342 342 108 1966-06-06 1 0 0 0 0 0 332 0 0.00 1645647329.623249928.5446708048 2022-02-23 14:15:29-06 2025-02-23 14:13:36-06 0 2022-02-23 14:15:29.626899-06 \N -335 336 16 wakakani \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Atwanda \N Kani \N Tamika Kani \N \N \N \N \N \N 'atwanda':1,2 'kani':3,4 \N \N \N \N 343 343 108 2012-02-02 1 0 0 0 0 1 333 0 0.00 1645647606.3069313162.848761119 2022-02-23 14:20:06-06 2023-02-23 14:18:16-06 0 2022-02-23 14:20:06.310822-06 \N -336 337 16 wakatyler \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Ashton \N Tyler \N Jackson Tyler \N \N \N \N \N \N 'ashton':1,2 'tyler':3,4 \N \N \N \N 344 344 108 2015-06-08 1 0 0 0 0 1 334 0 0.00 1645648081.237446340.1775135983 2022-02-23 14:28:01-06 2023-02-23 14:20:22-06 0 2022-02-23 14:28:01.24128-06 \N -337 338 9 wakabassett \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Angela \N Bassett \N \N \N \N \N \N \N \N 'angela':1,2 'bassett':3,4 \N \N \N \N 345 345 113 1971-09-27 1 0 0 0 0 0 335 0 0.00 1645648281.1892343078.2978522213 2022-02-23 14:31:21-06 2025-02-23 14:27:44-06 0 2022-02-23 14:31:21.193588-06 \N -338 339 5 wakaboseman2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N T'Challa \N Boseman \N \N \N \N \N \N \N \N 'boseman':4,5 'challa':2 'tchalla':3 \N \N \N \N 346 346 113 1978-09-09 1 0 0 0 0 0 336 0 0.00 1645648377.40157161277.108504576 2022-02-23 14:32:57-06 2025-02-23 14:31:06-06 0 2022-02-23 14:32:57.409131-06 \N -339 340 2 wakabankole \N d41d8cd98f00b204e9800998ecf8427e 1 1 MO-123490989 \N \N 2 \N \N Isaach \N De Bankolé \N \N \N \N \N \N \N \N 'bankolé':4 'de':3 'debankol':5 'isaach':1,2 \N \N \N \N 347 347 113 1957-09-02 1 0 0 0 0 0 337 0 0.00 1645650740.4939960980.0776098874 2022-02-23 15:12:20-06 2025-02-23 15:10:13-06 0 2022-02-23 15:12:20.497909-06 \N -340 341 2 wakachiume \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Connnie \N Chiume \N \N \N \N \N \N \N \N 'chium':3,4 'connni':1,2 \N \N \N \N 348 348 113 \N 1 0 0 0 0 0 338 0 0.00 1645650833.27073145146.596947003 2022-02-23 15:13:53-06 2025-02-23 15:12:03-06 0 2022-02-23 15:13:53.274322-06 \N -341 342 2 wakasteel \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Dorothy \N Steel \N \N \N \N \N \N \N \N 'dorothi':1,2 'steel':3,4 \N \N \N \N 349 349 113 1979-02-03 1 0 0 0 0 0 339 0 0.00 1645650921.1865696400.0895586479 2022-02-23 15:15:21-06 2025-02-23 15:13:23-06 0 2022-02-23 15:15:21.19064-06 \N -342 343 2 wakasapani \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Danny \N Sapani \N \N \N \N \N \N \N \N 'danni':1,2 'sapani':3,4 \N \N \N \N 350 350 113 2002-02-02 1 0 0 0 0 0 340 0 0.00 1645651008.2635910260.2899323199 2022-02-23 15:16:48-06 2025-02-23 15:14:54-06 0 2022-02-23 15:16:48.2678-06 \N -343 344 2 wakahockings \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Lucy \N Hockings \N \N \N \N \N \N \N \N 'hock':3,4 'luci':1,2 \N \N \N \N 351 351 113 \N 1 0 0 0 0 0 341 0 0.00 1645651112.7546113107.9399620741 2022-02-23 15:18:32-06 2025-02-23 15:16:21-06 0 2022-02-23 15:18:32.758592-06 \N -344 345 9 wakalee \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Stan \N Lee \N \N \N \N \N \N \N \N 'lee':3,4 'stan':1,2 \N \N \N \N 352 352 112 1932-12-25 1 0 0 0 0 0 342 0 0.00 1645651390.66653101235.210102982 2022-02-23 15:23:10-06 2025-02-23 15:21:13-06 0 2022-02-23 15:23:10.670254-06 \N -345 346 5 wakaduke2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N M'Baku \N Duke \N \N \N \N \N \N \N \N 'baku':2 'duke':4,5 'm':1 'mbaku':3 \N \N \N \N 353 353 112 1979-02-10 1 0 0 0 0 0 343 0 0.00 1645651631.2776272744.1530960707 2022-02-23 15:27:11-06 2025-02-23 15:23:58-06 0 2022-02-23 15:27:11.281409-06 \N -346 347 2 wakaross2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Everett K. Ross \N \N \N \N \N \N \N \N 'everett':1,2 'k':3,4 'ross':5,6 \N \N \N \N 354 354 112 1947-02-10 1 0 0 0 0 0 344 0 0.00 1645651882.4059479868.7451182072 2022-02-23 15:31:22-06 2025-02-23 15:29:27-06 0 2022-02-23 15:31:22.40979-06 \N -347 348 2 wakaklaue \N d41d8cd98f00b204e9800998ecf8427e 1 1 MO 0997990 \N \N 2 \N \N Ulysses Klaue \N \N \N \N \N \N \N \N 'klaue':3,4 'ulyss':1,2 \N \N \N \N 355 355 112 1937-09-17 1 0 0 0 0 0 345 0 0.00 1645651974.0251282479.5031197444 2022-02-23 15:32:54-06 2025-02-23 15:31:03-06 0 2022-02-23 15:32:54.028599-06 \N -348 349 2 wakamilaje \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Dora \N Milaje \N \N \N \N \N \N \N \N 'dora':1,2 'milaj':3,4 \N \N \N \N 356 356 112 \N 1 0 0 0 0 0 346 0 0.00 1645652050.7545676205.401020728 2022-02-23 15:34:10-06 2025-02-23 15:32:20-06 0 2022-02-23 15:34:10.75909-06 \N -349 350 2 wakadjalia \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Shuri \N Djalia \N \N \N \N \N \N \N \N 'djalia':3,4 'shuri':1,2 \N \N \N \N 357 357 112 2020-05-01 1 0 0 0 0 1 347 0 0.00 1645652146.2970324036.1804003783 2022-02-23 15:35:46-06 2025-02-23 15:33:50-06 0 2022-02-23 15:35:46.307725-06 \N -350 351 2 wakadoom \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Victor \N Von Doom \N \N \N \N \N \N \N \N 'doom':4 'victor':1,2 'von':3 'vondoom':5 \N \N \N \N 358 358 112 1978-12-12 1 0 0 0 0 0 348 0 0.00 1645652262.3023160176.82110017 2022-02-23 15:37:42-06 2025-02-23 15:35:28-06 0 2022-02-23 15:37:42.315727-06 \N -351 352 9 wakawhitaker2 \N d41d8cd98f00b204e9800998ecf8427e 1 1 MO 123-999-999 \N \N 2 \N \N Forest \N Whitaker \N \N \N \N \N \N \N \N 'forest':1,2 'whitak':3,4 \N \N \N \N 359 359 111 2000-12-12 1 0 0 0 0 0 349 0 0.00 1645652401.9067194613.6440663056 2022-02-23 15:40:01-06 2025-02-23 15:37:58-06 0 2022-02-23 15:40:01.910373-06 \N -352 353 5 wakajackson \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Jeannine \N Jackson \N \N \N \N \N \N \N \N 'jackson':3,4 'jeannin':1,2 \N \N \N \N 360 360 111 1976-02-09 1 0 0 0 0 0 350 0 0.00 1645652503.4697333173.2273030006 2022-02-23 15:41:43-06 2025-02-23 15:39:53-06 0 2022-02-23 15:41:43.473574-06 \N -353 354 2 wakadeclun \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Walter \N Declun \N \N \N \N \N \N \N \N 'declun':3,4 'walter':1,2 \N \N \N \N 361 361 111 2001-09-02 1 0 0 0 0 0 351 0 0.00 1645652712.3738177723.7386175116 2022-02-23 15:45:12-06 2025-02-23 15:43:20-06 0 2022-02-23 15:45:12.378053-06 \N -354 355 2 wakanamor \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Namor \N Submariner \N \N \N \N \N \N \N \N 'namor':1,2 'submarin':3,4 \N \N \N \N 362 362 111 \N 1 0 0 0 0 0 352 0 0.00 1645652820.88568143574.786422053 2022-02-23 15:47:00-06 2025-02-23 15:44:41-06 0 2022-02-23 15:47:00.889415-06 \N -355 356 2 wakaazzarison \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N S'yan \N Azzarison \N \N \N \N \N \N \N \N 'azzarison':4,5 'syan':3 'yan':2 \N \N \N \N 363 363 111 2010-01-29 1 0 0 0 0 1 353 0 0.00 1645652904.0934712405.4451245019 2022-02-23 15:48:24-06 2025-02-23 15:46:42-06 0 2022-02-23 15:48:24.097147-06 \N -356 357 2 wakarichards \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Reed \N Richards \N \N \N \N \N \N \N \N 'reed':1,2 'richard':3,4 \N \N \N \N 364 364 111 1967-01-10 1 0 0 0 0 0 354 0 0.00 1645653043.4660586146.2258202914 2022-02-23 15:50:43-06 2025-02-23 15:47:59-06 0 2022-02-23 15:50:43.469841-06 \N -357 358 2 wakagrimm \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Ben \N Grimm \N \N \N \N \N \N \N \N 'ben':1,2 'grimm':3,4 \N \N \N \N 365 365 111 1988-09-09 1 0 0 0 0 0 355 0 0.00 1645653115.132279887.699885869 2022-02-23 15:51:55-06 2025-02-23 15:50:10-06 0 2022-02-23 15:51:55.136475-06 \N -358 359 9 wakamunroe \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Ororo \N Munroe \N \N \N \N \N \N \N \N 'munro':3,4 'ororo':1,2 \N \N \N \N 366 366 110 1977-09-12 1 0 0 0 0 0 356 0 0.00 1645653254.16015159579.927624863 2022-02-23 15:54:14-06 2025-02-23 15:52:55-06 0 2022-02-23 15:54:14.163932-06 \N -359 360 5 wakahyde \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Sally \N Hyde \N \N \N \N \N \N \N \N 'hyde':3,4 'salli':1,2 \N \N \N \N 367 367 110 \N 1 0 0 0 0 0 357 0 0.00 1645653337.4941897967.6858937325 2022-02-23 15:55:37-06 2025-02-23 15:53:46-06 0 2022-02-23 15:55:37.499708-06 \N -360 361 2 wakarichards2 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Susan \N Richards \N \N \N Sue \N \N \N \N 'richard':3,4 'sue':5,6 'susan':1,2 \N \N \N \N 368 368 110 1966-02-09 1 0 0 0 0 0 358 0 0.00 1645653514.6412238106.6761798288 2022-02-23 15:58:34-06 2025-02-23 15:56:43-06 0 2022-02-23 15:58:34.645216-06 \N -361 362 2 wakarichards3 \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Johnny \N Richards \N Sue Richards \N \N \N \N \N \N 'johnni':1,2 'richard':3,4 \N \N \N \N 369 369 110 2020-01-09 1 0 0 0 0 1 359 0 0.00 1645653623.8699769757.8140247906 2022-02-23 16:00:23-06 2025-02-23 15:58:23-06 0 2022-02-23 16:00:23.873601-06 \N -362 363 2 wakalaroquette \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Samuel \N LaRoquette \N \N \N \N \N \N \N \N 'laroquett':3,4 'samuel':1,2 \N \N \N \N 370 370 110 1979-02-02 1 0 0 0 0 0 360 0 0.00 1645653825.16224144694.120041756 2022-02-23 16:03:45-06 2025-02-23 16:02:04-06 0 2022-02-23 16:03:45.171176-06 \N -363 364 2 wakabanner \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Bruce \N Banner \N \N \N \N \N \N \N hulk 'banner':3,4 'bruce':1,2 'hulk':5 \N \N \N \N 371 371 110 1964-02-19 1 0 0 0 0 0 361 0 0.00 1655499877.54119117370.403899298 2022-02-23 16:04:57-06 2025-02-23 16:03:16-06 0 2022-06-17 16:04:37.58257-05 \N -364 365 2 wakafrost \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Emma \N Frost \N \N \N \N \N \N \N \N 'emma':1,2 'frost':3,4 \N \N \N \N 372 372 110 1975-09-09 1 0 0 0 0 0 362 0 0.00 1645653979.38908101249.596546554 2022-02-23 16:06:19-06 2025-02-23 16:04:12-06 0 2022-02-23 16:06:19.401658-06 \N -365 366 9 wakastorm \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Susan \N Storm \N \N \N \N \N \N \N \N 'storm':3,4 'susan':1,2 \N \N \N \N 373 373 109 1988-09-02 1 0 0 0 0 0 363 0 0.00 1645654062.96501163751.158543986 2022-02-23 16:07:42-06 2025-02-23 16:05:54-06 0 2022-02-23 16:07:42.968564-06 \N -366 367 17 shiretook \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Belladonna \N Took \N \N \N \N \N \N \N \N 'belladonna':1,2 'took':3,4 \N \N \N \N 374 374 7 1923-09-12 1 0 0 0 0 0 364 0 0.00 1645712189.5960585308.6523316419 2022-02-24 08:16:29-06 2024-02-24 08:13:44-06 0 2022-02-24 08:16:29.600389-06 \N -367 368 18 shireoakenshield \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Thorin \N Oakenshield \N \N \N \N \N \N \N \N 'oakenshield':3,4 'thorin':1,2 \N \N \N \N 375 375 7 1975-09-12 1 0 0 0 0 0 365 0 0.00 1645712287.0315156474.65544327 2022-02-24 08:18:07-06 2027-02-24 08:16:01-06 0 2022-02-24 08:18:07.035379-06 \N -368 369 16 shireking d41d8cd98f00b204e9800998ecf8427e 1 3 Student ID 7899867 \N \N 1 \N \N Elrond \N King \N Elder King \N \N \N \N \N \N 'elrond':1,2 'king':3,4 \N \N \N \N 376 376 7 2018-07-07 1 0 0 0 0 1 366 0 0.00 1645712433.2880615065.0527643663 2022-02-24 08:20:33-06 2023-02-24 08:18:18-06 0 2022-02-24 08:20:33.292086-06 \N -369 370 19 shiretrollshaws \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Thomas \N Trollshaws \N \N \N Tom \N \N \N \N 'thoma':1,2 'tom':5,6 'trollshaw':3,4 \N \N \N \N 377 377 7 \N 1 0 0 0 0 0 367 0 0.00 1645712526.7839774794.0633611432 2022-02-24 08:22:06-06 2025-02-24 08:20:12-06 0 2022-02-24 08:22:06.787801-06 \N -370 371 17 shirebowman \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Bard \N Bowman \N \N \N \N \N \N \N \N 'bard':1,2 'bowman':3,4 \N \N \N \N 378 378 9 1937-09-02 1 0 0 0 0 0 368 0 0.00 1655500758.3728784526.2746359991 2022-02-24 08:54:07-06 2024-02-24 08:52:01-06 0 2022-06-17 16:19:18.414378-05 \N -371 372 16 shirebear \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Beorn \N Bear \N \N \N \N \N \N \N \N 'bear':3,4 'beorn':1,2 \N \N \N \N 379 379 9 2019-03-09 1 0 0 0 0 1 369 0 0.00 1655500128.5367585996.3885537252 2022-02-24 08:55:53-06 2023-02-24 08:53:38-06 0 2022-06-17 16:08:48.578977-05 \N -372 373 19 shirehuggins \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N William \N Huggins \N \N \N Bill \N \N \N \N 'bill':5,6 'huggin':3,4 'william':1,2 \N \N \N \N 380 380 9 1967-07-07 1 0 0 0 0 0 370 0 0.00 1645714652.9595916975.7012083712 2022-02-24 08:57:32-06 2025-02-24 08:55:29-06 0 2022-02-24 08:57:32.964193-06 \N -373 374 18 rohangamgee \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 2 \N \N Samuel Patrick Gamgee \N \N \N Sam \N \N \N \N 'gamge':5,6 'patrick':3,4 'sam':7,8 'samuel':1,2 \N 555-864-3642 \N \N 381 381 4 1976-07-25 1 0 0 0 0 0 371 0 0.00 1645715043.0589920705.1128562011 2022-02-24 09:04:03-06 2027-02-24 09:01:48-06 0 2022-02-24 09:04:03.062882-06 \N -374 375 16 rohanbrandybuck \N d41d8cd98f00b204e9800998ecf8427e 1 3 Student ID Card \N \N 1 \N \N Merriweather \N Brandybuck \N \N \N Merry \N \N \N \N 'brandybuck':3,4 'merri':5,6 'merriweath':1,2 \N \N \N \N 382 382 4 2012-05-05 1 0 0 0 0 1 372 0 0.00 1655500916.3225721990.0109456041 2022-02-24 09:06:00-06 2023-02-24 09:04:05-06 0 2022-06-17 16:21:56.366007-05 \N -375 376 16 rohanlorien \N d41d8cd98f00b204e9800998ecf8427e 1 3 Student ID Card \N \N 1 \N \N Haldir \N Lorien \N \N \N \N \N \N \N \N 'haldir':1,2 'lorien':3,4 \N \N \N \N 383 383 4 2019-03-30 1 0 0 0 0 1 373 0 0.00 1645715249.97254148260.554478024 2022-02-24 09:07:29-06 2023-02-24 09:05:24-06 0 2022-02-24 09:07:29.976525-06 \N -376 377 17 rohansackville \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Lobelia \N Sackville-Baggins \N \N \N \N \N \N \N \N 'baggin':5 'lobelia':1,2 'sackvill':4 'sackville-baggin':3 'sackvillebaggin':6 \N \N \N \N 384 384 8 1942-09-17 1 0 0 0 0 0 374 0 0.00 1645715762.7989480075.1170909716 2022-02-24 09:16:02-06 2024-02-24 09:14:06-06 0 2022-02-24 09:16:02.808532-06 \N -377 378 19 rohangoatleaf \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 3 \N \N Harold \N Goatleaf \N \N \N Harry \N \N \N \N 'goatleaf':3,4 'harold':1,2 'harri':5,6 \N \N \N \N 385 385 4 1976-09-05 1 0 0 0 0 0 375 0 0.00 1645715857.5130236698.6146866558 2022-02-24 09:17:37-06 2025-02-24 09:15:39-06 0 2022-02-24 09:17:37.517784-06 \N -378 379 18 rohanproudfoot \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Everard \N Proudfoot \N \N \N \N \N \N \N \N 'everard':1,2 'proudfoot':3,4 \N \N \N \N 386 386 8 1990-08-08 1 0 0 0 0 0 376 0 0.00 1645715958.0690824022.1219043994 2022-02-24 09:19:18-06 2027-02-24 09:17:17-06 0 2022-02-24 09:19:18.073529-06 \N -379 380 19 rohandreary \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N 3 \N \N Albert \N Dreary \N \N \N \N \N \N \N \N 'albert':1,2 'dreari':3,4 \N \N \N \N 387 387 8 2001-01-19 1 0 0 0 0 0 377 0 0.00 1645716084.29063159684.192195187 2022-02-24 09:21:24-06 2025-02-24 09:19:30-06 0 2022-02-24 09:21:24.294123-06 \N -380 381 18 rohantook \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Pippin \N Took \N \N \N \N \N \N \N \N 'pippin':1,2 'took':3,4 \N \N \N \N 388 388 5 2005-12-12 1 0 0 0 0 1 378 0 0.00 1645716201.70466156334.591733394 2022-02-24 09:23:21-06 2027-02-24 09:20:55-06 0 2022-02-24 09:23:21.7088-06 \N -381 382 16 rohancotton \N d41d8cd98f00b204e9800998ecf8427e 1 3 Student ID \N \N 1 \N \N Rosemary \N Cotton \N \N \N Rosie \N \N \N \N 'cotton':3,4 'rosemari':1,2 'rosi':5,6 \N \N \N \N 389 389 5 2017-09-07 1 0 0 0 0 1 379 0 0.00 1645716352.1576791225.9440611501 2022-02-24 09:24:49-06 2023-02-24 09:23:06-06 0 2022-02-24 09:25:52.169281-06 \N -382 383 17 rohangardner \N d41d8cd98f00b204e9800998ecf8427e 1 3 \N \N \N 1 \N \N Elanor \N Gardner \N \N \N \N \N \N \N \N 'elanor':1,2 'gardner':3,4 \N \N \N \N 390 390 5 1945-04-05 1 0 0 0 0 0 380 0 0.00 1645716430.4717897641.3961493353 2022-02-24 09:27:10-06 2024-02-24 09:25:18-06 0 2022-02-24 09:27:10.475335-06 \N +2 2 2 99999395390 \N ca33524c6af3e3836159e2cc2422e6fe 1 3 \N \N \N 1 \N \N Terri Maria Brooks \N \N \N \N \N \N \N \N 'brook':5,6 'maria':3,4 'terri':1,2 \N \N \N \N 1 1 9 \N 1 0 0 0 0 0 2 0 0.00 1655501056.9002720714.0620610228 2020-10-27 09:26:51-05 2008-01-01 02:00:00-06 0 2023-01-23 09:07:47.279083-06 \N +3 3 2 99999320945 \N 852df2bfa866af2952f8fe7d0c7152ac 1 1 \N \N \N 1 \N \N Shannon Thomas Jackson \N \N \N \N \N \N \N \N 'jackson':5,6 'shannon':1,2 'thoma':3,4 \N \N \N \N 2 2 5 \N 1 0 0 0 0 0 3 0 0.00 none 2020-10-27 09:26:51.426709-05 1999-01-01 02:00:00-06 0 2023-01-23 09:07:47.279083-06 \N +4 4 2 99999355250 \N b2e79db122fb765fa2d595ef6a318985 1 3 \N \N \N 1 \N \N Gregory Jones \N \N \N \N \N \N \N \N 'gregori':1,2 'jone':3,4 \N \N \N \N 3 3 5 \N 1 0 0 0 0 0 4 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-28 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +5 5 2 99999387993 \N 2d98123b59bd04648b5776b36b1b4cd4 1 1 \N \N \N 1 \N \N Vincent Kenneth Moran \N \N \N \N \N \N \N \N 'kenneth':3,4 'moran':5,6 'vincent':1,2 \N \N \N \N 4 4 9 \N 1 0 0 0 0 0 5 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-11-03 09:26:51.426709-06 0 2023-01-23 09:07:47.279083-06 \N +6 6 2 99999335859 \N b2e79db122fb765fa2d595ef6a318985 1 1 \N \N \N 1 \N \N Gregory Adam Jones \N \N \N \N \N \N \N \N 'adam':3,4 'gregori':1,2 'jone':5,6 \N \N \N \N 5 5 8 \N 1 0 0 0 0 0 6 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-11-17 09:26:51.426709-06 0 2023-01-23 09:07:47.279083-06 \N +7 7 2 99999373186 \N e116a7385cc0b739da2c7771b1b97348 1 1 \N \N \N 1 \N \N Brittany Geraldine Walker \N \N \N \N \N \N \N \N 'brittani':1,2 'geraldin':3,4 'walker':5,6 \N \N \N \N 6 6 7 \N 1 0 0 0 0 0 7 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-20 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +8 8 2 99999384262 \N 8c4dbb6533e793e4b1d0fe1dace8b693 1 1 \N \N \N 1 \N \N Ernesto Robert Miller II \N \N \N \N \N \N \N 'ernesto':1,2 'ii':7 'miller':5,6 'robert':3,4 \N \N \N \N 7 7 9 1997-02-02 1 0 0 0 0 0 8 0 0.00 none 2020-10-27 09:26:51.426709-05 2020-10-06 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +9 9 2 99999373998 \N 7ebf23b1a65cae5c3b054fdf8877f722 1 1 \N \N \N 1 \N \N Robert Louis Hill III \N \N \N \N \N \N \N 'hill':5,6 'iii':7 'loui':3,4 'robert':1,2 \N \N \N \N 8 8 9 \N 1 0 0 0 0 0 9 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +10 10 2 99999376669 \N 4012a26ded3f664c72e4b05159aeac14 1 3 \N \N \N 1 \N \N Edward Robert Lopez II \N \N \N \N \N \N \N 'edward':1,2 'ii':7 'lopez':5,6 'robert':3,4 \N \N \N \N 9 9 7 \N 1 0 0 0 0 0 10 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +11 11 2 99999361076 \N 71269da801c2d9d21116919da15aec25 1 3 \N \N \N 1 \N \N Andrew Alberto Bell II \N \N \N \N \N \N \N 'alberto':3,4 'andrew':1,2 'bell':5,6 'ii':7 \N \N \N \N 10 10 8 \N 1 0 0 0 0 0 11 0 0.00 1655500193.7308338529.3853404818 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +12 12 2 99999376988 \N eed973eb0a936477169fa8bc1071fb40 1 1 \N \N \N 1 \N \N Jennifer Dorothy Mitchell \N \N \N \N \N \N \N \N 'dorothi':3,4 'jennif':1,2 'mitchel':5,6 \N \N \N \N 11 11 9 \N 1 0 0 0 0 0 12 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +13 13 2 99999390791 \N c753b18279a26e3b7820e33045e2fb91 1 3 \N \N \N 1 \N \N Richard Ortiz \N \N \N \N \N \N \N \N 'ortiz':3,4 'richard':1,2 \N \N \N \N 12 12 7 \N 1 0 0 0 0 0 13 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +14 14 2 99999378730 \N 94fbc3a0985709772a91acea18ed5c62 1 1 \N \N \N 1 \N \N Robert Coy Wade \N \N \N \N \N \N \N \N 'coy':3,4 'robert':1,2 'wade':5,6 \N \N \N \N 13 13 6 \N 1 0 0 0 0 0 14 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +15 15 2 99999360638 \N 438a3be6b24c900bb200aa611cc30d9f 1 3 \N \N \N 1 \N \N Janet Wise \N \N \N \N \N \N \N \N 'janet':1,2 'wise':3,4 \N \N \N \N 14 14 5 \N 1 0 0 0 0 0 15 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +16 16 2 99999350419 \N 9054a71e0a2199bb172a60cd9c4d46f5 1 1 \N \N \N 1 \N \N Donald Arnold Torres II \N \N \N \N \N \N \N 'arnold':3,4 'donald':1,2 'ii':7 'torr':5,6 \N \N \N \N 15 15 4 1974-06-26 1 0 0 0 0 0 16 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +17 17 2 99999354736 \N 09875546c9c691a462ee89bd74542ec4 1 1 \N \N \N 1 \N \N Jeff James Miller Sr \N \N \N \N \N \N \N 'jame':3,4 'jeff':1,2 'miller':5,6 'sr':7 \N \N \N \N 16 16 4 \N 1 0 0 0 0 0 17 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +18 18 2 99999329662 \N 4058458a1577d57c00db908d4778a867 1 1 \N \N \N 1 \N \N Leonard Estes III \N \N \N \N \N \N \N 'est':3,4 'iii':5 'leonard':1,2 \N \N \N \N 17 17 9 1994-05-07 1 0 0 0 0 0 18 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +19 19 2 99999397601 \N ed16bde9a707d66db9bd77d331db6e69 1 1 \N \N \N 1 \N \N Brittney Pamela Dunn \N \N \N \N \N \N \N \N 'brittney':1,2 'dunn':5,6 'pamela':3,4 \N \N \N \N 18 18 8 \N 1 0 0 0 0 0 19 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +20 20 2 99999377594 \N e6d814a55eb60bfedf2da86ff53308ad 1 3 \N \N \N 1 \N \N Jean Verna Wiggins \N \N \N \N \N \N \N \N 'jean':1,2 'verna':3,4 'wiggin':5,6 \N \N \N \N 19 19 4 \N 1 0 0 0 0 0 20 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +21 21 2 99999371252 \N d5610b3357efa29b1544fdb8a84455de 1 1 \N \N \N 1 \N \N Lela Sarah Thomas Sr \N \N \N \N \N \N \N 'lela':1,2 'sarah':3,4 'sr':7 'thoma':5,6 \N \N \N \N 20 20 9 1968-04-11 1 0 0 0 0 0 21 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +22 22 2 99999398023 \N 9847c4906338e77855eb6ed15d413452 1 3 \N \N \N 1 \N \N Noah Joseph Phillips III \N \N \N \N \N \N \N 'iii':7 'joseph':3,4 'noah':1,2 'phillip':5,6 \N \N \N \N 21 21 8 \N 1 0 0 0 0 0 22 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +23 23 2 99999324566 \N 9dac9c4e8ac3e793d331c6f70e225b85 1 3 \N \N \N 1 \N \N Carolyn Patrica Mitchell III \N \N \N \N \N \N \N 'carolyn':1,2 'iii':7 'mitchel':5,6 'patrica':3,4 \N \N \N \N 22 22 5 1981-09-03 1 0 0 0 0 0 23 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +24 24 2 99999379221 \N 4f042e0254a02b9de50dc1e6ec3a3e0f 1 3 \N \N \N 1 \N \N Kristen Vivian Wells \N \N \N \N \N \N \N \N 'kristen':1,2 'vivian':3,4 'well':5,6 \N \N \N \N 23 23 5 \N 1 0 0 0 0 0 24 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +25 25 2 99999373350 \N fd3dfed7df5997ca4f25c3d6f5476de9 1 1 \N \N \N 1 \N \N Noah Keith Lindsey \N \N \N \N \N \N \N \N 'keith':3,4 'lindsey':5,6 'noah':1,2 \N \N \N \N 24 24 8 \N 1 0 0 0 0 0 25 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +26 26 2 99999340920 \N f26b3edf5428e7f989256fbb323b2037 1 3 \N \N \N 1 \N \N Bertha Katherine Williams \N \N \N \N \N \N \N \N 'bertha':1,2 'katherin':3,4 'william':5,6 \N \N \N \N 25 25 4 \N 1 0 0 0 0 0 26 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +27 27 2 99999398482 \N 9aec8f9ae8ce2f7e7bf25ff0ab057407 1 1 \N \N \N 1 \N \N James Rodriguez \N \N \N \N \N \N \N \N 'jame':1,2 'rodriguez':3,4 \N \N \N \N 26 26 7 \N 1 0 0 0 0 0 27 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +28 28 2 99999394378 \N 0836beda3fea2b6a3dab43311ebbed20 1 3 \N \N \N 1 \N \N Matthew David Byrd \N \N \N \N \N \N \N \N 'byrd':5,6 'david':3,4 'matthew':1,2 \N \N \N \N 27 27 5 \N 1 0 0 0 0 0 28 0 0.00 1655501587.1268120391.4014911301 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +29 29 2 99999382659 \N 86249c1de2c4100fd944569312411bd0 1 1 \N \N \N 1 \N \N Sandra Pearlie Kelley Sr \N \N \N \N \N \N \N 'kelley':5,6 'pearli':3,4 'sandra':1,2 'sr':7 \N \N \N \N 28 28 4 1977-01-18 1 0 0 0 0 0 29 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +30 30 2 99999387130 \N 3be4cd60efc13c51f60e1bd1db392ea9 1 1 \N \N \N 1 \N \N Beth Michelle Wilson \N \N \N \N \N \N \N \N 'beth':1,2 'michell':3,4 'wilson':5,6 \N \N \N \N 29 29 7 \N 1 0 0 0 0 0 30 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +31 31 2 99999310765 \N 87cedf58cf23d794d39c5562f62f4832 1 3 \N \N \N 1 \N \N Randy Lawrence Daniels \N \N \N \N \N \N \N \N 'daniel':5,6 'lawrenc':3,4 'randi':1,2 \N \N \N \N 30 30 8 \N 1 0 0 0 0 0 31 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +32 32 2 99999335545 \N 5eeb85ab5d0d58a884d48c3e058fbe63 1 1 \N \N \N 1 \N \N Steve Raymond Simpson \N \N \N \N \N \N \N \N 'raymond':3,4 'simpson':5,6 'steve':1,2 \N \N \N \N 31 31 9 \N 1 0 0 0 0 0 32 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +33 33 2 99999360529 \N a2b41e944a2f65fa8c1f222e5a80d252 1 3 \N \N \N 1 \N \N Jim Michael Hoskins III \N \N \N \N \N \N \N 'hoskin':5,6 'iii':7 'jim':1,2 'michael':3,4 \N \N \N \N 32 32 5 1983-08-02 1 0 0 0 0 0 33 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +34 34 2 99999357038 \N 74a6e7604acf4928a51bf754f112341e 1 3 \N \N \N 1 \N \N Michael May II \N \N \N \N \N \N \N 'ii':5 'may':3,4 'michael':1,2 \N \N \N \N 33 33 5 1988-03-06 1 0 0 0 0 0 34 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +35 35 2 99999371688 \N 90f3c28bf57bb7129e20f1b1a26182de 1 3 \N \N \N 1 \N \N Don John Ellison \N \N \N \N \N \N \N \N 'ellison':5,6 'john':3,4 \N \N \N \N 34 34 8 \N 1 0 0 0 0 0 35 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +36 36 2 99999312757 \N 077df61596512c81a7dfed85a1a7e357 1 1 \N \N \N 1 \N \N Joseph Bryant Hughes \N \N \N \N \N \N \N \N 'bryant':3,4 'hugh':5,6 'joseph':1,2 \N \N \N \N 35 35 4 \N 1 0 0 0 0 0 36 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +37 37 2 99999399015 \N 0fe171831dfac3a9c165cbfedec67f08 1 1 \N \N \N 1 \N \N Cristina Karen Turner \N \N \N \N \N \N \N \N 'cristina':1,2 'karen':3,4 'turner':5,6 \N \N \N \N 36 36 8 \N 1 0 0 0 0 0 37 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +38 38 2 99999313973 \N a59ae3d3ea2334c8e4c9b708dbc7b243 1 3 \N \N \N 1 \N \N Victor James Langley \N \N \N \N \N \N \N \N 'jame':3,4 'langley':5,6 'victor':1,2 \N \N \N \N 37 37 4 \N 1 0 0 0 0 0 38 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +39 39 2 99999311521 \N 6b72376ca237b914947b60164cbaa858 1 1 \N \N \N 1 \N \N David Fields \N \N \N \N \N \N \N \N 'david':1,2 'field':3,4 \N \N \N \N 38 38 6 \N 1 0 0 0 0 0 39 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +40 40 2 99999388816 \N 20a8882d803c808527988d1a255b3ddf 1 1 \N \N \N 1 \N \N Gregory Thomas Hoffman II \N \N \N \N \N \N \N 'gregori':1,2 'hoffman':5,6 'ii':7 'thoma':3,4 \N \N \N \N 39 39 7 1999-11-13 1 0 0 0 0 0 40 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +41 41 2 99999345160 \N 5978ae6ba1a6d585b5e67b302529b7cd 1 3 \N \N \N 1 \N \N Natalie Joan Gonzalez \N \N \N \N \N \N \N \N 'gonzalez':5,6 'joan':3,4 'natali':1,2 \N \N \N \N 40 40 8 \N 1 0 0 0 0 0 41 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +42 42 2 99999328966 \N 519327fc08250b23caeeaa5c25750af0 1 3 \N \N \N 1 \N \N Drew Rucker \N \N \N \N \N \N \N \N 'drew':1,2 'rucker':3,4 \N \N \N \N 41 41 9 \N 1 0 0 0 0 0 42 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +43 43 2 99999394635 \N 01d993e26a2d28e57f3334a623f55b16 1 3 \N \N \N 1 \N \N Kimberly Mitchell \N \N \N \N \N \N \N \N 'kimber':1,2 'mitchel':3,4 \N \N \N \N 42 42 9 \N 1 0 0 0 0 0 43 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +44 44 2 99999333308 \N 834902c58a2cc7f3ec8260204e88600f 1 1 \N \N \N 1 \N \N Heather Margaret Murray \N \N \N \N \N \N \N \N 'heather':1,2 'margaret':3,4 'murray':5,6 \N \N \N \N 43 43 7 \N 1 0 0 0 0 0 44 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +45 45 2 99999316647 \N 696eb1cf77bb28d7a47f8315715af784 1 1 \N \N \N 1 \N \N Roberta Norma Sosa \N \N \N \N \N \N \N \N 'norma':3,4 'roberta':1,2 'sosa':5,6 \N \N \N \N 44 44 7 \N 1 0 0 0 0 0 45 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +46 46 2 99999389066 \N 482f491742dc2a5a50cb324b7faaa651 1 1 \N \N \N 1 \N \N Annette Angela Ramos II \N \N \N \N \N \N \N 'angela':3,4 'annett':1,2 'ii':7 'ramo':5,6 \N \N \N \N 45 45 4 1967-11-04 1 0 0 0 0 0 46 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +47 47 2 99999380162 \N 1e02ea0db044d8dbe13e4c7b5c4ad9bc 1 1 \N \N \N 1 \N \N Paul Jackson \N \N \N \N \N \N \N \N 'jackson':3,4 'paul':1,2 \N \N \N \N 46 46 8 \N 1 0 0 0 0 0 47 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +48 48 2 99999318240 \N 57bd582e3eb5adcb2ded429251f5801b 1 1 \N \N \N 1 \N \N John Charles Graham \N \N \N \N \N \N \N \N 'charl':3,4 'graham':5,6 'john':1,2 \N \N \N \N 47 47 7 \N 1 0 0 0 0 0 48 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +49 49 2 99999347267 \N db82fb53ee5a059e3fefb5e43cfa1ed7 1 3 \N \N \N 1 \N \N Adam John Michael \N \N \N \N \N \N \N \N 'adam':1,2 'john':3,4 'michael':5,6 \N \N \N \N 48 48 7 \N 1 0 0 0 0 0 49 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +50 50 2 99999344618 \N 05f74ce6680409550de5b0ebd026c2da 1 3 \N \N \N 1 \N \N Helen Thomas \N \N \N \N \N \N \N \N 'helen':1,2 'thoma':3,4 \N \N \N \N 49 49 7 \N 1 0 0 0 0 0 50 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +51 51 2 99999301966 \N 290db208c9e68383249283e2d54b9929 1 1 \N \N \N 1 \N \N Meghan Rivas \N \N \N \N \N \N \N \N 'meghan':1,2 'riva':3,4 \N \N \N \N 50 50 7 \N 1 0 0 0 0 0 51 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +52 52 2 99999306663 \N 2fdbc02c797f047b59a43891a8a0eef2 1 3 \N \N \N 1 \N \N William Ian Hurst \N \N \N \N \N \N \N \N 'hurst':5,6 'ian':3,4 'william':1,2 \N \N \N \N 51 51 5 \N 1 0 0 0 0 0 52 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +53 53 2 99999329410 \N a30c1ec7dbd27d322d010888e82eca4e 1 3 \N \N \N 1 \N \N Kimberly Anna Bridges \N \N \N \N \N \N \N \N 'anna':3,4 'bridg':5,6 'kimber':1,2 \N \N \N \N 52 52 8 \N 1 0 0 0 0 0 53 0 0.00 1655500975.9114984525.1774478913 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +54 54 2 99999396820 \N d3bac082083e23edaf7f24c3f07e5ec8 1 3 \N \N \N 1 \N \N Beatrice Gloria Stewart \N \N \N \N \N \N \N \N 'beatric':1,2 'gloria':3,4 'stewart':5,6 \N \N \N \N 53 53 6 \N 1 0 0 0 0 0 54 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +55 55 2 99999398998 \N fb64b42648419805947a448417ac04c4 1 3 \N \N \N 1 \N \N Alejandra Christine Welsh III \N \N \N \N \N \N \N 'alejandra':1,2 'christin':3,4 'iii':7 'welsh':5,6 \N \N \N \N 54 54 7 1973-11-18 1 0 0 0 0 0 55 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +56 56 2 99999308688 \N 35446bae2b9d4424dbbb9ce056463cdd 1 3 \N \N \N 1 \N \N Leona Osborne \N \N \N \N \N \N \N \N 'leona':1,2 'osborn':3,4 \N \N \N \N 55 55 9 \N 1 0 0 0 0 0 56 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +57 57 2 99999321465 \N 9885a6a3d79a94015dd75559ea44a732 1 3 \N \N \N 1 \N \N Luella Carole Sinclair II \N \N \N \N \N \N \N 'carol':3,4 'ii':7 'luella':1,2 'sinclair':5,6 \N \N \N \N 56 56 4 1993-10-15 1 0 0 0 0 0 57 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +58 58 2 99999399294 \N 5e04e916dd02bd448bbc5126cacec9b0 1 3 \N \N \N 1 \N \N Joe Wayne Jones \N \N \N \N \N \N \N \N 'joe':1,2 'jone':5,6 'wayn':3,4 \N \N \N \N 57 57 5 \N 1 0 0 0 0 0 58 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +59 59 2 99999355645 \N 3ef2b97919efe08dc62c36a541725ff3 1 3 \N \N \N 1 \N \N Willie Duncan \N \N \N \N \N \N \N \N 'duncan':3,4 'willi':1,2 \N \N \N \N 58 58 6 \N 1 0 0 0 0 0 59 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +60 60 2 99999359616 \N 120192a782e3a8f4714ffd45c7a35ae3 1 3 \N \N \N 1 \N \N Andrea Carney \N \N \N \N \N \N \N \N 'andrea':1,2 'carney':3,4 \N \N \N \N 59 59 6 \N 1 0 0 0 0 0 60 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +61 61 2 99999359143 \N dbe9137f3c01d392418fc7bae1a4145b 1 1 \N \N \N 1 \N \N Howard Ralph Hunt Jr \N \N \N \N \N \N \N 'howard':1,2 'hunt':5,6 'jr':7 'ralph':3,4 \N \N \N \N 60 60 9 1971-05-09 1 0 0 0 0 0 61 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +62 62 2 99999389009 \N e8355c524a09678651fb62af13022919 1 3 \N \N \N 1 \N \N Eddie Anthony Martin \N \N \N \N \N \N \N \N 'anthoni':3,4 'eddi':1,2 'martin':5,6 \N \N \N \N 61 61 6 \N 1 0 0 0 0 0 62 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +63 63 2 99999327461 \N 0e392bb9389ea1c3a36b1e36580b9203 1 1 \N \N \N 1 \N \N Paul Richard Barry \N \N \N \N \N \N \N \N 'barri':5,6 'paul':1,2 'richard':3,4 \N \N \N \N 62 62 9 \N 1 0 0 0 0 0 63 0 0.00 1655500007.63855150402.028712866 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +64 64 2 99999319193 \N 1faccec0d5de24ea6d136eb8abb757da 1 1 \N \N \N 1 \N \N Dennis Jimmie Wright II \N \N \N \N \N \N \N 'denni':1,2 'ii':7 'jimmi':3,4 'wright':5,6 \N \N \N \N 63 63 7 1992-09-05 1 0 0 0 0 0 64 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +65 65 2 99999378520 \N 7f94df77b85248da026d09cdef2bc565 1 1 \N \N \N 1 \N \N Ruben Eric Saunders \N \N \N \N \N \N \N \N 'eric':3,4 'ruben':1,2 'saunder':5,6 \N \N \N \N 64 64 5 \N 1 0 0 0 0 0 65 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +66 66 2 99999366196 \N 8ff301961a4870c007ca65f94ec39be4 1 3 \N \N \N 1 \N \N Jennifer Lane \N \N \N \N \N \N \N \N 'jennif':1,2 'lane':3,4 \N \N \N \N 65 65 7 \N 1 0 0 0 0 0 66 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +67 67 2 99999324371 \N 666f64504986c691835531fc037c450d 1 1 \N \N \N 1 \N \N Jo Mae Madden \N \N \N \N \N \N \N \N 'jo':1,2 'madden':5,6 'mae':3,4 \N \N \N \N 66 66 5 \N 1 0 0 0 0 0 67 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +68 68 2 99999316280 \N 8d1c8ef1909da1171cfa6f452901edc0 1 3 \N \N \N 1 \N \N Naomi Julie Harding \N \N \N \N \N \N \N \N 'hard':5,6 'juli':3,4 'naomi':1,2 \N \N \N \N 67 67 8 \N 1 0 0 0 0 0 68 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +69 69 2 99999388575 \N 838c20ca1cfaf2d08101b6279c1d0431 1 3 \N \N \N 1 \N \N Blake George Davis \N \N \N \N \N \N \N \N 'blake':1,2 'davi':5,6 'georg':3,4 \N \N \N \N 68 68 5 \N 1 0 0 0 0 0 69 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +70 70 2 99999336610 \N 6d8f998f87701b7ed2f98ac4cf8dfeed 1 3 \N \N \N 1 \N \N Norma Gail Barnes \N \N \N \N \N \N \N 'barn':5,6 'gail':3,4 'norma':1,2 \N \N \N \N 69 69 4 2023-10-27 1 0 0 0 0 0 70 0 0.00 1655499974.7673158007.7327569531 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +71 71 2 99999376864 \N 90c65b8b7a93081e53baddfbd16aa34c 1 3 \N \N \N 1 \N \N Leon Anderson \N \N \N \N \N \N \N \N 'anderson':3,4 'leon':1,2 \N \N \N \N 70 70 4 \N 1 0 0 0 0 0 71 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +72 72 2 99999391951 \N 32b19d81f4099f270136508778d8955b 1 1 \N \N \N 1 \N \N Misty Margaret Gillespie III \N \N \N \N \N \N \N 'gillespi':5,6 'iii':7 'margaret':3,4 'misti':1,2 \N \N \N \N 71 71 7 1993-10-19 1 0 0 0 0 0 72 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +73 73 2 99999368950 \N b08427f49d00ef8a7f7cac2d3d2a24e4 1 3 \N \N \N 1 \N \N Esther Mary Santos Sr \N \N \N \N \N \N \N 'esther':1,2 'mari':3,4 'santo':5,6 'sr':7 \N \N \N \N 72 72 7 1961-12-17 1 0 0 0 0 0 73 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +74 74 2 99999343281 \N 92ece2a23fae063f336d805a3eb6f3cd 1 3 \N \N \N 1 \N \N Rebecca Vanessa Bradley \N \N \N \N \N \N \N \N 'bradley':5,6 'rebecca':1,2 'vanessa':3,4 \N \N \N \N 73 73 7 \N 1 0 0 0 0 0 74 0 0.00 1655500865.0973695373.5600714199 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +75 75 2 99999394534 \N 07c160c3cb9389662eddff4c54220f5f 1 1 \N \N \N 1 \N \N Victor Hart \N \N \N \N \N \N \N \N 'hart':3,4 'victor':1,2 \N \N \N \N 74 74 4 \N 1 0 0 0 0 0 75 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +76 76 2 99999323404 \N 5373770ce37669c590f72de45378141e 1 1 \N \N \N 1 \N \N Edward Lonnie Riley \N \N \N \N \N \N \N \N 'edward':1,2 'lonni':3,4 'riley':5,6 \N \N \N \N 75 75 8 \N 1 0 0 0 0 0 76 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +77 77 2 99999375760 \N c32514286ca4b6741308734cb9bbbd9f 1 3 \N \N \N 1 \N \N Michelle Jordan III \N \N \N \N \N \N \N 'iii':5 'jordan':3,4 'michell':1,2 \N \N \N \N 76 76 5 1973-05-07 1 0 0 0 0 0 77 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +78 78 2 99999315742 \N a94159bb594a3ba64035a0411af30699 1 1 \N \N \N 1 \N \N Mary Jill Brown \N \N \N \N \N \N \N \N 'brown':5,6 'jill':3,4 'mari':1,2 \N \N \N \N 77 77 7 \N 1 0 0 0 0 0 78 0 0.00 1655501349.19583107433.051531372 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +79 79 2 99999322514 \N 534e9115614458220649bd05a651ca30 1 1 \N \N \N 1 \N \N Shawn Thomas Barber II \N \N \N \N \N \N \N 'barber':5,6 'ii':7 'shawn':1,2 'thoma':3,4 \N \N \N \N 78 78 7 1988-10-21 1 0 0 0 0 0 79 0 0.00 1655499924.3107517926.3638611513 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +80 80 2 99999342144 \N 2fdbc02c797f047b59a43891a8a0eef2 1 1 \N \N \N 1 \N \N William Phillip Harrison II \N \N \N \N \N \N \N 'harrison':5,6 'ii':7 'phillip':3,4 'william':1,2 \N \N \N \N 79 79 8 1990-04-09 1 0 0 0 0 0 80 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +81 81 2 99999320546 \N b72aa132d388482fd2a8c5ab32372c50 1 1 \N \N \N 1 \N \N Darlene Lisa Porter Jr \N \N \N \N \N \N \N 'darlen':1,2 'jr':7 'lisa':3,4 'porter':5,6 \N \N \N \N 80 80 7 1987-02-23 1 0 0 0 0 0 81 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +82 82 2 99999315474 \N 8bb602fea946d9bfce9c991ecf68808e 1 3 \N \N \N 1 \N \N Joyce Donna Lopez Sr \N \N \N \N \N \N \N 'donna':3,4 'joyc':1,2 'lopez':5,6 'sr':7 \N \N \N \N 81 81 8 1980-06-28 1 0 0 0 0 0 82 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +83 83 2 99999371586 \N 91c3fb2e3fa2a2643c455bb8eb8f2d1a 1 1 \N \N \N 1 \N \N Larry Stevenson Sr \N \N \N \N \N \N \N 'larri':1,2 'sr':5 'stevenson':3,4 \N \N \N \N 82 82 9 1990-12-20 1 0 0 0 0 0 83 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +84 84 2 99999329832 \N 8bd6503a351960f6df9cbad578117724 1 1 \N \N \N 1 \N \N Nicholas Kinney \N \N \N \N \N \N \N \N 'kinney':3,4 'nichola':1,2 \N \N \N \N 83 83 4 \N 1 0 0 0 0 0 84 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +85 85 2 99999342948 \N 4ac9f3b5d9d3eb8ebd6b60922ef4e7ab 1 3 \N \N \N 1 \N \N Omar David Bernard Jr \N \N \N \N \N \N \N 'bernard':5,6 'david':3,4 'jr':7 'omar':1,2 \N \N \N \N 84 84 5 1981-08-19 1 0 0 0 0 0 85 0 0.00 1655500617.4459462137.6725189371 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +86 86 2 99999335091 \N a94159bb594a3ba64035a0411af30699 1 3 \N \N \N 1 \N \N Mary Annie Brown \N \N \N \N \N \N \N \N 'anni':3,4 'brown':5,6 'mari':1,2 \N \N \N \N 85 85 9 \N 1 0 0 0 0 0 86 0 0.00 1655501143.032667118.59418346612 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +87 87 2 99999303411 \N 6d8dd7dff99ed8b3cfa6578e31e489fd 1 3 \N \N \N 1 \N \N Sarah Smith II \N \N \N \N \N \N \N 'ii':5 'sarah':1,2 'smith':3,4 \N \N \N \N 86 86 8 1990-01-13 1 0 0 0 0 0 87 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +88 88 2 99999327083 \N 99f13d84bbb4e785c6c3297b6e3e7e32 1 1 \N \N \N 1 \N \N Cora Jones \N \N \N \N \N \N \N \N 'cora':1,2 'jone':3,4 \N \N \N \N 87 87 8 \N 1 0 0 0 0 0 88 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +89 89 2 99999300523 \N 5b7058ef81af647f753984f2eea76c0b 1 3 \N \N \N 1 \N \N Shawn Joseph Little \N \N \N \N \N \N \N \N 'joseph':3,4 'littl':5,6 'shawn':1,2 \N \N \N \N 88 88 7 \N 1 0 0 0 0 0 89 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +90 90 2 99999328829 \N abdbb93e391f3acd56b9cea3c8dd2097 1 3 \N \N \N 1 \N \N Luann Donna Thurman \N \N \N \N \N \N \N \N 'donna':3,4 'luann':1,2 'thurman':5,6 \N \N \N \N 89 89 6 \N 1 0 0 0 0 0 90 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +91 91 2 99999394673 \N 1131d18e29ddb05002ad065fbe120503 1 3 \N \N \N 1 \N \N Patricia Robin Scott \N \N \N \N \N \N \N \N 'patricia':1,2 'robin':3,4 'scott':5,6 \N \N \N \N 90 90 6 \N 1 0 0 0 0 0 91 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +92 92 2 99999355318 \N 279370af45e9208bb16cf2926aac2f49 1 1 \N \N \N 1 \N \N Esperanza Beth Lamb III \N \N \N \N \N \N \N 'beth':3,4 'esperanza':1,2 'iii':7 'lamb':5,6 \N \N \N \N 91 91 5 1995-06-13 1 0 0 0 0 0 92 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +93 93 2 99999377675 \N 5c95ada9c443b6a5a4d0172de0d9c757 1 1 \N \N \N 1 \N \N Wendi Mary Brown \N \N \N \N \N \N \N \N 'brown':5,6 'mari':3,4 'wendi':1,2 \N \N \N \N 92 92 8 \N 1 0 0 0 0 0 93 0 0.00 1655501396.920411992.29927764581 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +94 94 2 99999363186 \N 677cb09ab6691811455db8cb1843e607 1 3 \N \N \N 1 \N \N Lawrence Vern Clarke \N \N \N \N \N \N \N \N 'clark':5,6 'lawrenc':1,2 'vern':3,4 \N \N \N \N 93 93 5 \N 1 0 0 0 0 0 94 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +95 95 2 99999346314 \N 5abbc9374945f05383677aea3cc45c1f 1 1 \N \N \N 1 \N \N Daniel Ricky Clark \N \N \N \N \N \N \N \N 'clark':5,6 'daniel':1,2 'ricki':3,4 \N \N \N \N 94 94 8 \N 1 0 0 0 0 0 95 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +96 96 2 99999353477 \N 5e8fa4c69090df36f48089948833fbdf 1 1 \N \N \N 1 \N \N John Robert Dennis \N \N \N \N \N \N \N \N 'denni':5,6 'john':1,2 'robert':3,4 \N \N \N \N 95 95 6 1975-03-04 1 0 0 0 0 0 96 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +97 97 2 99999312358 \N 2f10e1adeee255275ea262dabc600fb0 1 1 \N \N \N 1 \N \N Jan Lindsey Copeland Jr \N \N \N \N \N \N \N 'copeland':5,6 'jan':1,2 'jr':7 'lindsey':3,4 \N \N \N \N 96 96 4 1998-06-14 1 0 0 0 0 0 97 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +98 98 2 99999360839 \N ff619455e44c66556e771e6744a5f9aa 1 1 \N \N \N 1 \N \N Penny Martha Brooks II \N \N \N \N \N \N \N 'brook':5,6 'ii':7 'martha':3,4 'penni':1,2 \N \N \N \N 97 97 8 1980-03-13 1 0 0 0 0 0 98 0 0.00 1655501027.9916147127.0285821466 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +99 99 2 99999342446 \N 7709832bbcf4ffb6cd09486720c278f4 1 3 \N \N \N 1 \N \N Jeanne Johnson \N \N \N \N \N \N \N \N 'jeann':1,2 'johnson':3,4 \N \N \N \N 98 98 8 1980-02-03 1 0 0 0 0 0 99 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +100 100 2 99999358416 \N 243266c1207e8008b0006120838c2a80 1 1 \N \N \N 1 \N \N Elizabeth Vanessa Sanford \N \N \N \N \N \N \N 'elizabeth':1,2 'sanford':5,6 'vanessa':3,4 \N \N \N \N 99 99 4 \N 1 0 0 0 0 0 100 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +101 101 2 99999361389 \N 5b90ed923988918bfb42898a15dedb90 1 3 \N \N \N 1 \N \N Alan Claude Ramirez \N \N \N \N \N \N \N 'alan':1,2 'claud':3,4 'ramirez':5,6 \N \N \N \N 100 100 9 \N 1 0 0 0 0 0 101 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +102 102 2 jbautista \N 0624b4d0e53ba00fb44c7cdd9f35be00 1 3 \N \N \N 1 \N \N José Antonio Bautista \N \N \N \N \N \N \N 'antonio':3,4 'bautista':5,6 'jose':2 'josé':1 \N \N \N \N 101 101 9 \N 1 0 0 0 0 0 102 0 0.00 1655500112.440521797.08055932986 2020-10-27 09:26:51-05 2023-10-27 09:26:51-05 0 2023-01-23 09:07:47.279083-06 \N +103 103 2 mkawasaki \N c9faf34fb874d3af4060872526692af4 1 3 \N \N \N 1 \N \N 川﨑 宗則 Munenori Kawasaki \N \N \N \N \N \N \N 'kawasaki':6,7 'munenori':4,5 '宗則':2 '川﨑':1 '川﨑宗則':3 \N \N \N \N 102 102 9 \N 1 0 0 0 0 0 103 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +104 104 2 99999393001 \N 9ee07f26cfdfacdf4c77902c037923b5 1 3 \N \N \N 1 \N \N Marge Simpson \N \N \N \N \N \N \N 'marg':1,2 'simpson':3,4 \N \N \N \N 103 103 4 \N 1 0 0 0 0 0 104 0 0.00 none 2020-10-27 09:26:51.426709-05 2010-01-01 02:00:00-06 0 2023-01-23 09:07:47.279083-06 \N +105 105 2 99999393002 \N 9b743abe80cff3571f7f70a128e2c2b1 1 3 \N \N \N 1 \N \N Homer Simpson \N \N \N \N \N \N \N 'homer':1,2 'simpson':3,4 \N \N \N \N 104 104 4 \N 1 0 0 0 1 0 105 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +106 106 2 99999393003 \N eccb14a2504385507fce9fc714e72fec 1 3 \N \N \N 1 \N \N Bart Simpson \N \N \N \N \N \N \N 'bart':1,2 'simpson':3,4 \N \N \N \N 105 105 4 \N 1 0 0 1 0 0 106 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +107 107 2 99999393004 \N 680c7230b2f328b9cd1db2aa5447a10d 1 3 \N \N \N 1 \N \N Lisa Simpson \N \N \N \N \N \N \N 'lisa':1,2 'simpson':3,4 \N \N \N \N 106 106 4 \N 1 0 0 0 0 0 107 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +108 108 2 99999393005 \N d935060376329e0dee132804e7358240 1 3 \N \N \N 1 \N \N Maggie Simpson \N \N \N \N \N \N \N 'maggi':1,2 'simpson':3,4 \N \N \N \N 107 107 4 \N 0 0 0 0 0 0 108 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +109 109 2 99999393100 \N 645333d862e6d0fb8b3509ae8465d235 1 3 \N \N \N 1 \N \N Shelbyville Manhattan \N \N \N \N \N \N \N 'manhattan':3,4 'shelbyvill':1,2 \N \N \N \N 108 108 6 \N 1 0 0 0 0 0 109 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +110 110 13 br3sforbes \N b72126b4483171e07a4efcb26e5913d3 1 3 \N \N \N 1 \N \N Samuel Eugene Forbes \N \N \N \N \N \N \N \N 'eugen':3,4 'forb':5,6 'samuel':1,2 \N \N \N \N 109 109 6 \N 1 0 0 0 0 0 110 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +111 111 13 br1vcampbell \N e64f92273469769368ed5e6b39170916 1 1 \N \N \N 1 \N \N Vincent Lawrence Campbell \N \N \N \N \N \N \N \N 'campbel':5,6 'lawrenc':3,4 'vincent':1,2 \N \N \N \N 110 110 4 \N 1 0 0 0 0 0 111 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +112 112 15 bm1afrey \N ee5444adf19c2b916de37f17a23e6d91 1 3 \N \N \N 1 \N \N Annie Jessica Frey \N \N \N \N \N \N \N \N 'anni':1,2 'frey':5,6 'jessica':3,4 \N \N \N \N 111 111 9 \N 1 0 0 0 0 0 112 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +113 113 15 bm1msalinas \N 36002d4864fc38b959123242466ed4e8 1 3 \N \N \N 1 \N \N Mark Christopher Salinas II \N \N \N \N \N \N \N 'christoph':3,4 'ii':7 'mark':1,2 'salina':5,6 \N \N \N \N 112 112 9 1999-06-13 1 0 0 0 0 0 113 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +114 114 15 sl1klindsey \N 67979e51b2fb8e9bc4789984b830b7e5 1 1 \N \N \N 1 \N \N Kenneth Jesse Lindsey \N \N \N \N \N \N \N \N 'jess':3,4 'kenneth':1,2 'lindsey':5,6 \N \N \N \N 113 113 8 \N 1 0 0 0 0 0 114 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +115 115 15 sl1mdavis \N 32ca41aa3502a0274fa42767831b248c 1 3 \N \N \N 1 \N \N Martha Davis \N \N \N \N \N \N \N \N 'davi':3,4 'martha':1,2 \N \N \N \N 114 114 8 \N 1 0 0 0 0 0 115 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +116 116 15 br4vfreeman \N 871465572496f12cab0e9f94cc0cf561 1 3 \N \N \N 1 \N \N Virginia Johanna Freeman Jr \N \N \N \N \N \N \N 'freeman':5,6 'johanna':3,4 'jr':7 'virginia':1,2 \N \N \N \N 115 115 7 1967-07-23 1 0 0 0 0 0 116 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +117 117 15 br4lmartinez \N b8dd905c81cc3d6ac7e82d8b11cb2e40 1 3 \N \N \N 1 \N \N Leroy Brian Martinez \N \N \N \N \N \N \N \N 'brian':3,4 'leroy':1,2 'martinez':5,6 \N \N \N \N 116 116 7 \N 1 0 0 0 0 0 117 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +118 118 15 br3warmstrong \N c39e0ef60c49580786f7cacff606da71 1 1 \N \N \N 1 \N \N William William Armstrong \N \N \N \N \N \N \N \N 'armstrong':5,6 'william':1,2,3,4 \N \N \N \N 117 117 6 \N 1 0 0 0 0 0 118 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +119 119 15 br3acotton \N 8265fb441e84cd7f0705108e4ab31b44 1 3 \N \N \N 1 \N \N Amy Ada Cotton \N \N \N \N \N \N \N \N 'ada':3,4 'ami':1,2 'cotton':5,6 \N \N \N \N 118 118 6 \N 1 0 0 0 0 0 119 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +120 120 15 br2sbarton \N 450c8d1dc2bad960bb48509d031cfc70 1 1 \N \N \N 1 \N \N Sarah Valerie Barton \N \N \N \N \N \N \N \N 'barton':5,6 'sarah':1,2 'valeri':3,4 \N \N \N \N 119 119 5 \N 1 0 0 0 0 0 120 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +121 121 15 br2jhammond \N 1d8601c12e916d259ae1addd8af94f9f 1 1 \N \N \N 1 \N \N James Michael Hammond \N \N \N \N \N \N \N \N 'hammond':5,6 'jame':1,2 'michael':3,4 \N \N \N \N 120 120 5 \N 1 0 0 0 0 0 121 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +122 122 15 br1ajoseph \N 660866ce666c578a36acc12777d6d6e9 1 3 \N \N \N 1 \N \N Alex Edward Joseph \N \N \N \N \N \N \N \N 'alex':1,2 'edward':3,4 'joseph':5,6 \N \N \N \N 121 121 4 \N 1 0 0 0 0 0 122 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +123 123 15 br1imccoy \N 7bb5a76300f30173e65d7163d5bab5a3 1 3 \N \N \N 1 \N \N Ida Gloria Mccoy \N \N \N \N \N \N \N \N 'gloria':3,4 'ida':1,2 'mccoy':5,6 \N \N \N \N 122 122 4 \N 1 0 0 0 0 0 123 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +124 124 14 bm1dwright \N 1faccec0d5de24ea6d136eb8abb757da 1 3 \N \N \N 1 \N \N Dennis Ernest Wright \N \N \N \N \N \N \N \N 'denni':1,2 'ernest':3,4 'wright':5,6 \N \N \N \N 123 123 9 \N 1 0 0 0 0 0 124 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +125 125 14 bm1alynch \N 0d6217f7080ae8f3de3c4364e477ee74 1 1 \N \N \N 1 \N \N Armando Lynch \N \N \N \N \N \N \N \N 'armando':1,2 'lynch':3,4 \N \N \N \N 124 124 9 \N 1 0 0 0 0 0 125 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +126 126 14 sl1rgraham \N f5590c68fb28c172a5b1ed5442b02dc3 1 3 \N \N \N 1 \N \N Robert Graham \N \N \N \N \N \N \N \N 'graham':3,4 'robert':1,2 \N \N \N \N 125 125 8 \N 1 0 0 0 0 0 126 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +127 127 14 sl1sthompson \N d9602ef3db8c8138490ecb1bb3e9348d 1 1 \N \N \N 1 \N \N Sherri Thompson \N \N \N \N \N \N \N \N 'sherri':1,2 'thompson':3,4 \N \N \N \N 126 126 8 \N 1 0 0 0 0 0 127 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +128 128 14 br4ngarcia \N 500bbe0dc361da2702d02b2581b5fea8 1 1 \N \N \N 1 \N \N Nanette Helen Garcia \N \N \N \N \N \N \N \N 'garcia':5,6 'helen':3,4 'nanett':1,2 \N \N \N \N 127 127 7 \N 1 0 0 0 0 0 128 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +129 129 14 br4rcook \N 986f15ddfb473a69514d3272c94baff9 1 3 \N \N \N 1 \N \N Raymond Boyd Cook \N \N \N \N \N \N \N \N 'boyd':3,4 'cook':5,6 'raymond':1,2 \N \N \N \N 128 128 7 \N 1 0 0 0 0 0 129 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +130 130 14 br3kbrewer \N c8faabb681f1825bf0ccb5415bc65c15 1 3 \N \N \N 1 \N \N Katherine Brewer \N \N \N \N \N \N \N \N 'brewer':3,4 'katherin':1,2 \N \N \N \N 129 129 6 \N 1 0 0 0 0 0 130 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +131 131 14 br3cwashington \N fe82307dfd440073220a05a97fa80676 1 1 \N \N \N 1 \N \N Christopher Washington \N \N \N \N \N \N \N \N 'christoph':1,2 'washington':3,4 \N \N \N \N 130 130 6 \N 1 0 0 0 0 0 131 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +132 132 14 br2dmurray \N 103c6af5ef93fbbb28d9a7bb73f3602d 1 3 \N \N \N 1 \N \N Dawn Katherine Murray \N \N \N \N \N \N \N \N 'dawn':1,2 'katherin':3,4 'murray':5,6 \N \N \N \N 131 131 5 \N 1 0 0 0 0 0 132 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +133 133 14 br2bwatts \N 5c5b8f9f77065322fbc320173829820d 1 1 \N \N \N 1 \N \N Barbara Gloria Watts \N \N \N \N \N \N \N \N 'barbara':1,2 'gloria':3,4 'watt':5,6 \N \N \N \N 132 132 5 \N 1 0 0 0 0 0 133 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +134 134 14 br1mmartin \N 7c0681d0901ad5b8cf40b66d9506abe5 1 3 \N \N \N 1 \N \N Mary Shannon Martin Sr \N \N \N \N \N \N \N 'mari':1,2 'martin':5,6 'shannon':3,4 'sr':7 \N \N \N \N 133 133 4 \N 1 0 0 0 0 0 134 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +135 135 14 br1vford \N e5e50e26095960b83fe01cda46cdb47a 1 3 \N \N \N 1 \N \N Vivian Darlene Ford \N \N \N \N \N \N \N \N 'darlen':3,4 'ford':5,6 'vivian':1,2 \N \N \N \N 134 134 4 \N 1 0 0 0 0 0 135 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +136 136 12 bm1gsuarez \N f991f94a8edfb05df933722b9f9820dd 1 1 \N \N \N 1 \N \N Gary Joel Suarez Sr \N \N \N \N \N \N \N 'gari':1,2 'joel':3,4 'sr':7 'suarez':5,6 \N \N \N \N 135 135 9 \N 1 0 0 0 0 0 136 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +137 137 12 bm1eellis \N e0d473f3f04bf8ae314ab0032aa36baa 1 1 \N \N \N 1 \N \N Edward David Ellis \N \N \N \N \N \N \N \N 'david':3,4 'edward':1,2 'elli':5,6 \N \N \N \N 136 136 9 \N 1 0 0 0 0 0 137 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +138 138 12 sl1nward \N 1a17998513caa544b48be2b6c372fb8b 1 1 \N \N \N 1 \N \N Naomi Angela Ward Sr \N \N \N \N \N \N \N 'angela':3,4 'naomi':1,2 'sr':7 'ward':5,6 \N \N \N \N 137 137 8 \N 1 0 0 0 0 0 138 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +139 139 12 sl1jrichards \N f5cc381fc79395c5869bc08f21cdc5a7 1 1 \N \N \N 1 \N \N Joseph Thomas Richards \N \N \N \N \N \N \N \N 'joseph':1,2 'richard':5,6 'thoma':3,4 \N \N \N \N 138 138 8 \N 1 0 0 0 0 0 139 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +140 140 12 br4rsanders \N c801a249c36e49db04e0d1c0f3b3d133 1 3 \N \N \N 1 \N \N Roslyn Sanders \N \N \N \N \N \N \N \N 'roslyn':1,2 'sander':3,4 \N \N \N \N 139 139 7 \N 1 0 0 0 0 0 140 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +141 141 12 br4nrivera \N 1f442a4bf5edfdcf6312e8808a67d7bb 1 1 \N \N \N 1 \N \N Nancy Anita Rivera Sr \N \N \N \N \N \N \N 'anita':3,4 'nanci':1,2 'rivera':5,6 'sr':7 \N \N \N \N 140 140 7 \N 1 0 0 0 0 0 141 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +142 142 12 br3cmartin \N 378f0fe3c17c308adfaa5ef456499ec0 1 1 \N \N \N 1 \N \N Carl Charles Martin \N \N \N \N \N \N \N \N 'carl':1,2 'charl':3,4 'martin':5,6 \N \N \N \N 141 141 6 \N 1 0 0 0 0 0 142 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +143 143 12 br3telliott \N f357e44245952cef7990cecc5d319902 1 1 \N \N \N 1 \N \N Thomas Marcus Elliott \N \N \N \N \N \N \N \N 'elliott':5,6 'marcus':3,4 'thoma':1,2 \N \N \N \N 142 142 6 \N 1 0 0 0 0 0 143 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +144 144 12 br2ocherry \N 0b35e6c6b99789379e20b6d25b763e9f 1 3 \N \N \N 1 \N \N Olga Marie Cherry \N \N \N \N \N \N \N \N 'cherri':5,6 'mari':3,4 'olga':1,2 \N \N \N \N 143 143 5 \N 1 0 0 0 0 0 144 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +145 145 12 br2gdavenport \N 704b6eaba88c5cc527b4e1e6a49a2628 1 1 \N \N \N 1 \N \N Gwendolyn Davenport Jr \N \N \N \N \N \N \N 'davenport':3,4 'gwendolyn':1,2 'jr':5 \N \N \N \N 144 144 5 \N 1 0 0 0 0 0 145 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +146 146 12 br1sbrock \N 8be0f0b4946c3b796a8bb083f0133c85 1 3 \N \N \N 1 \N \N Scott George Brock \N \N \N \N \N \N \N \N 'brock':5,6 'georg':3,4 'scott':1,2 \N \N \N \N 145 145 4 \N 1 0 0 0 0 0 146 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +147 147 12 br1rjackson \N 4de9e1144ac0e9da8ba895947375d6d0 1 3 \N \N \N 1 \N \N Ronald Robert Jackson Jr \N \N \N \N \N \N \N 'jackson':5,6 'jr':7 'robert':3,4 'ronald':1,2 \N \N \N \N 146 146 4 \N 1 0 0 0 0 0 147 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +148 148 11 bm1wjames \N ef1f74cf957d1ac22dd599139b53e768 1 1 \N \N \N 1 \N \N Wayne George James \N \N \N \N \N \N \N \N 'georg':3,4 'jame':5,6 'wayn':1,2 \N \N \N \N 147 147 9 \N 1 0 0 0 0 0 148 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +149 149 11 bm1shernandez \N 8c69a18a6791c973a0972bb776fbcd57 1 1 \N \N \N 1 \N \N Sarah Elaine Hernandez \N \N \N \N \N \N \N \N 'elain':3,4 'hernandez':5,6 'sarah':1,2 \N \N \N \N 148 148 9 \N 1 0 0 0 0 0 149 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +150 150 11 sl1latkins \N bc170f2f7e85ca75cedb5b696b60132b 1 3 \N \N \N 1 \N \N Louis Edward Atkins \N \N \N \N \N \N \N \N 'atkin':5,6 'edward':3,4 'loui':1,2 \N \N \N \N 149 149 8 \N 1 0 0 0 0 0 150 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +151 151 11 sl1wneal \N e8c2922acf2579d002f2bfa4ba33e943 1 3 \N \N \N 1 \N \N Wayne Neal Jr \N \N \N \N \N \N \N 'jr':5 'neal':3,4 'wayn':1,2 \N \N \N \N 150 150 8 1977-06-05 1 0 0 0 0 0 151 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +152 152 11 br4mharrison \N f7eae1ee04555073b9fc6e9fc108b6e4 1 3 \N \N \N 1 \N \N Michelle Patricia Harrison \N \N \N \N \N \N \N \N 'harrison':5,6 'michell':1,2 'patricia':3,4 \N \N \N \N 151 151 7 \N 1 0 0 0 0 0 152 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +153 153 11 br4hwomack \N 19d314f4d362716964c5562d9c60c57a 1 3 \N \N \N 1 \N \N Howard Womack \N \N \N \N \N \N \N \N 'howard':1,2 'womack':3,4 \N \N \N \N 152 152 7 \N 1 0 0 0 0 0 153 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +154 154 11 br3vbacon \N 1d8748357553feb4aedbd4777c21518d 1 3 \N \N \N 1 \N \N Virginia Celia Bacon \N \N \N \N \N \N \N \N 'bacon':5,6 'celia':3,4 'virginia':1,2 \N \N \N \N 153 153 6 \N 1 0 0 0 0 0 154 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +155 155 11 br3lbrooks \N 5c6b59c5249c12c359fb1eee25cc3758 1 1 \N \N \N 1 \N \N Lonnie William Brooks \N \N \N \N \N \N \N \N 'brook':5,6 'lonni':1,2 'william':3,4 \N \N \N \N 154 154 6 \N 1 0 0 0 0 0 155 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +156 156 11 br2mgonzales \N 02759dfbb462488925fce9eea35ec541 1 3 \N \N \N 1 \N \N Mary Jessica Gonzales \N \N \N \N \N \N \N \N 'gonzal':5,6 'jessica':3,4 'mari':1,2 \N \N \N \N 155 155 5 \N 1 0 0 0 0 0 156 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +157 157 11 br2mterry \N 95a5d59dae19b2c540e55a5d4db97a12 1 1 \N \N \N 1 \N \N Michelle Kristy Terry \N \N \N \N \N \N \N \N 'kristi':3,4 'michell':1,2 'terri':5,6 \N \N \N \N 156 156 5 \N 1 0 0 0 0 0 157 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +158 158 11 br1mmeeks \N fd0f6e7bea26ef2d7741b27913174c54 1 3 \N \N \N 1 \N \N Michelle Myra Meeks III \N \N \N \N \N \N \N 'iii':7 'meek':5,6 'michell':1,2 'myra':3,4 \N \N \N \N 157 157 4 1966-01-23 1 0 0 0 0 0 158 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +159 159 11 br1epalmer \N b475ca32a1c51693a1e0e9abd66d159b 1 3 \N \N \N 1 \N \N Elva Tiffany Palmer Jr \N \N \N \N \N \N \N 'elva':1,2 'jr':7 'palmer':5,6 'tiffani':3,4 \N \N \N \N 158 158 4 1987-08-21 1 0 0 0 0 0 159 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +160 160 10 bm1mwilliams \N 21791e848107acc2a430f802dbb841f1 1 3 \N \N \N 1 \N \N Matthew Williams \N \N \N \N \N \N \N \N 'matthew':1,2 'william':3,4 \N \N \N \N 159 159 9 \N 1 0 0 0 0 0 160 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +161 161 10 bm1nperez \N aa2cf21ab6379488db8aedbc62494c8b 1 1 \N \N \N 1 \N \N Nicholas Joseph Perez \N \N \N \N \N \N \N \N 'joseph':3,4 'nichola':1,2 'perez':5,6 \N \N \N \N 160 160 9 \N 1 0 0 0 0 0 161 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +162 162 10 sl1bfisher \N 16c360df8710f2b15c6da412be4194e1 1 3 \N \N \N 1 \N \N Barbara Fisher \N \N \N \N \N \N \N \N 'barbara':1,2 'fisher':3,4 \N \N \N \N 161 161 8 \N 1 0 0 0 0 0 162 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +163 163 10 sl1mmendoza \N 10ccbab29e02488b49cd465687cf4404 1 3 \N \N \N 1 \N \N Miguel Mendoza \N \N \N \N \N \N \N \N 'mendoza':3,4 'miguel':1,2 \N \N \N \N 162 162 8 \N 1 0 0 0 0 0 163 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +164 164 10 br4ldickinson \N b3be2d4729c0db580322335304949415 1 1 \N \N \N 1 \N \N Lee Annie Dickinson \N \N \N \N \N \N \N \N 'anni':3,4 'dickinson':5,6 'lee':1,2 \N \N \N \N 163 163 7 \N 1 0 0 0 0 0 164 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +165 165 10 br4awilliams \N df9d03fc307b53c282b6605cb290ff22 1 1 \N \N \N 1 \N \N Angelina Joan Williams \N \N \N \N \N \N \N \N 'angelina':1,2 'joan':3,4 'william':5,6 \N \N \N \N 164 164 7 \N 1 0 0 0 0 0 165 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +166 166 10 br3bsanchez \N 7ac7d8fc59c408e258514914fa563238 1 1 \N \N \N 1 \N \N Beth Deborah Sanchez \N \N \N \N \N \N \N \N 'beth':1,2 'deborah':3,4 'sanchez':5,6 \N \N \N \N 165 165 6 \N 1 0 0 0 0 0 166 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +167 167 10 br3ethompson \N 62c4cb6f0760fa1b51217292e85e5e21 1 3 \N \N \N 1 \N \N Elvin Thompson \N \N \N \N \N \N \N \N 'elvin':1,2 'thompson':3,4 \N \N \N \N 166 166 6 \N 1 0 0 0 0 0 167 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +168 168 10 br2dlawson \N 2a9b0412566a71cf70ef79f094c79e7d 1 1 \N \N \N 1 \N \N Dora Lawson \N \N \N \N \N \N \N \N 'dora':1,2 'lawson':3,4 \N \N \N \N 167 167 5 \N 1 0 0 0 0 0 168 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +169 169 10 br2lvargas \N ab588fe60df668597805cac9f71ab154 1 1 \N \N \N 1 \N \N Laura Mildred Vargas III \N \N \N \N \N \N \N 'iii':7 'laura':1,2 'mildr':3,4 'varga':5,6 \N \N \N \N 168 168 5 1989-07-04 1 0 0 0 0 0 169 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +170 170 10 br1wrandall \N 461b7f62402ef4b6d78579cf43cb779d 1 3 \N \N \N 1 \N \N William James Randall \N \N \N \N \N \N \N \N 'jame':3,4 'randal':5,6 'william':1,2 \N \N \N \N 169 169 4 \N 1 0 0 0 0 0 170 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +171 171 10 br1csmith \N 7877f7a10d3a776b01ef8bb412b24607 1 1 \N \N \N 1 \N \N Cathy Cheryl Smith \N \N \N \N \N \N \N \N 'cathi':1,2 'cheryl':3,4 'smith':5,6 \N \N \N \N 170 170 4 \N 1 0 0 0 0 0 171 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +172 172 9 bm1alopez \N 63b5b6a80ca8b5fb956dd8a6970fd44b 1 1 \N \N \N 1 \N \N Arline Amber Lopez III \N \N \N \N \N \N \N 'amber':3,4 'arlin':1,2 'iii':7 'lopez':5,6 \N \N \N \N 171 171 9 1985-05-05 1 0 0 0 0 0 172 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +173 173 9 bm1epeterson \N 3f25b57c6424a4054ee40efd9d00f0b4 1 1 \N \N \N 1 \N \N Emma Peterson \N \N \N \N \N \N \N \N 'emma':1,2 'peterson':3,4 \N \N \N \N 172 172 9 \N 1 0 0 0 0 0 173 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +174 174 9 sl1okelly \N 4ba2956b2e76062dece39e121edb30f5 1 1 \N \N \N 1 \N \N Opal Sara Kelly III \N \N \N \N \N \N \N 'iii':7 'kelli':5,6 'opal':1,2 'sara':3,4 \N \N \N \N 173 173 8 1975-01-18 1 0 0 0 0 0 174 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +175 175 9 sl1cdonovan \N d6aaa60223fb3a6bf205f757460c26d8 1 1 \N \N \N 1 \N \N Charlie David Donovan \N \N \N \N \N \N \N \N 'charli':1,2 'david':3,4 'donovan':5,6 \N \N \N \N 174 174 8 \N 1 0 0 0 0 0 175 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +176 176 9 br4msmith \N 8fc2425409e93993dea3b3e548545584 1 3 \N \N \N 1 \N \N Martha Raquel Smith \N \N \N \N \N \N \N \N 'martha':1,2 'raquel':3,4 'smith':5,6 \N \N \N \N 175 175 7 \N 1 0 0 0 0 0 176 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +177 177 9 br4chouston \N 6b6c7cd8f7f8715a5de0007e1307dab1 1 3 \N \N \N 1 \N \N Cheryl Houston \N \N \N \N \N \N \N \N 'cheryl':1,2 'houston':3,4 \N \N \N \N 176 176 7 \N 1 0 0 0 0 0 177 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +178 178 9 br3kwright \N b055c7d146affafa2df51e2da83d9f4a 1 1 \N \N \N 1 \N \N Kay Anna Wright \N \N \N \N \N \N \N \N 'anna':3,4 'kay':1,2 'wright':5,6 \N \N \N \N 177 177 6 \N 1 0 0 0 0 0 178 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +179 179 9 br3mlane \N 547dd1c31c382aef65204f5934dc19a7 1 3 \N \N \N 1 \N \N Michelle Andrea Lane Sr \N \N \N \N \N \N \N 'andrea':3,4 'lane':5,6 'michell':1,2 'sr':7 \N \N \N \N 178 178 6 1963-06-14 1 0 0 0 0 0 179 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +180 180 9 br2rsmith \N 3a7e9aa3cf361b770ce07c9bbe1382f8 1 1 \N \N \N 1 \N \N Robert Smith \N \N \N \N \N \N \N \N 'robert':1,2 'smith':3,4 \N \N \N \N 179 179 5 \N 1 0 0 0 0 0 180 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +181 181 9 br2cdodson \N 476a0603b111d72fd49632c154ac057f 1 1 \N \N \N 1 \N \N Cleo Dodson \N \N \N \N \N \N \N \N 'cleo':1,2 'dodson':3,4 \N \N \N \N 180 180 5 \N 1 0 0 0 0 0 181 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +182 182 9 br1mneal \N 79e113d60ca15977e86f25053fedfca5 1 1 \N \N \N 1 \N \N Melvin Richard Neal \N \N \N \N \N \N \N \N 'melvin':1,2 'neal':5,6 'richard':3,4 \N \N \N \N 181 181 4 \N 1 0 0 0 0 0 182 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +183 183 9 br1awilliams \N 808ec12ca232aa51aae657ae97251927 1 3 \N \N \N 1 \N \N Anna Justine Williams \N \N \N \N \N \N \N \N 'anna':1,2 'justin':3,4 'william':5,6 \N \N \N \N 182 182 4 \N 1 0 0 0 0 0 183 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +184 184 8 bm1emiller \N 1abef93354655c7033b4213c2a2c00c1 1 1 \N \N \N 1 \N \N Edmond Vance Miller \N \N \N \N \N \N \N \N 'edmond':1,2 'miller':5,6 'vanc':3,4 \N \N \N \N 183 183 9 \N 1 0 0 0 0 0 184 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +185 185 8 bm1vlogan \N 34c2829807619a4ae272849d7ce1b1ee 1 3 \N \N \N 1 \N \N Vanessa Cassandra Logan \N \N \N \N \N \N \N \N 'cassandra':3,4 'logan':5,6 'vanessa':1,2 \N \N \N \N 184 184 9 \N 1 0 0 0 0 0 185 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +186 186 8 sl1lthompson \N 45a5a9e87d48c0c0346841dbf8c934d8 1 1 \N \N \N 1 \N \N Lisa Shirley Thompson \N \N \N \N \N \N \N \N 'lisa':1,2 'shirley':3,4 'thompson':5,6 \N \N \N \N 185 185 8 \N 1 0 0 0 0 0 186 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +187 187 8 sl1oshaffer \N 8c1a526e52cc4a8ce2d597a8f7a9f4a7 1 1 \N \N \N 1 \N \N Ollie Monica Shaffer \N \N \N \N \N \N \N \N 'monica':3,4 'olli':1,2 'shaffer':5,6 \N \N \N \N 186 186 8 \N 1 0 0 0 0 0 187 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +188 188 8 br4randrews \N 44eae002164e838d00dcdf11b63eff3f 1 1 \N \N \N 1 \N \N Raymond Willie Andrews \N \N \N \N \N \N \N \N 'andrew':5,6 'raymond':1,2 'willi':3,4 \N \N \N \N 187 187 7 \N 1 0 0 0 0 0 188 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +189 189 8 br4emartinez \N 726e8c09b552180f0a3aae06081180dd 1 3 \N \N \N 1 \N \N Edna Judith Martinez \N \N \N \N \N \N \N \N 'edna':1,2 'judith':3,4 'martinez':5,6 \N \N \N \N 188 188 7 \N 1 0 0 0 0 0 189 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +190 190 8 br3jdavis \N 8a74ac43142ddd6602a60647d28151e6 1 3 \N \N \N 1 \N \N James Jerry Davis III \N \N \N \N \N \N \N 'davi':5,6 'iii':7 'jame':1,2 'jerri':3,4 \N \N \N \N 189 189 6 1970-06-11 1 0 0 0 0 0 190 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +191 191 8 br3droberts \N a73df38ff661f73e091645e80899a3f4 1 1 \N \N \N 1 \N \N Diane Teresa Roberts \N \N \N \N \N \N \N \N 'dian':1,2 'robert':5,6 'teresa':3,4 \N \N \N \N 190 190 6 \N 1 0 0 0 0 0 191 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +192 192 8 br2psantiago \N ffd22013caeb9cb8bdd4125a8d3be952 1 1 \N \N \N 1 \N \N Paige Helen Santiago Sr \N \N \N \N \N \N \N 'helen':3,4 'paig':1,2 'santiago':5,6 'sr':7 \N \N \N \N 191 191 5 1979-08-23 1 0 0 0 0 0 192 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +193 193 8 br2awright \N 1a7a16cbf323370e1cfab0f804152e1d 1 1 \N \N \N 1 \N \N Alyssa Christine Wright \N \N \N \N \N \N \N \N 'alyssa':1,2 'christin':3,4 'wright':5,6 \N \N \N \N 192 192 5 \N 1 0 0 0 0 0 193 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +194 194 8 br1dbeck \N c460edc2231b89ca4aaa7e7c4685721b 1 3 \N \N \N 1 \N \N Diana Wilma Beck \N \N \N \N \N \N \N \N 'beck':5,6 'diana':1,2 'wilma':3,4 \N \N \N \N 193 193 4 \N 1 0 0 0 0 0 194 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +195 195 8 br1mclark \N 837cd12b0e4da01bc82ea62f568e9cb9 1 1 \N \N \N 1 \N \N Monty Daniel Clark II \N \N \N \N \N \N \N 'clark':5,6 'daniel':3,4 'ii':7 'monti':1,2 \N \N \N \N 194 194 4 1984-05-19 1 0 0 0 0 0 195 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +196 196 7 bm1hstone \N 045e3d7ea3fec48d7e7aa6e9c5942449 1 3 \N \N \N 1 \N \N Hazel Sylvia Stone \N \N \N \N \N \N \N \N 'hazel':1,2 'stone':5,6 'sylvia':3,4 \N \N \N \N 195 195 9 \N 1 0 0 0 0 0 196 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +197 197 7 bm1dgarza \N 2b886c6347a36d135f2d5f6aab50e6f9 1 1 \N \N \N 1 \N \N David Steven Garza \N \N \N \N \N \N \N \N 'david':1,2 'garza':5,6 'steven':3,4 \N \N \N \N 196 196 9 \N 1 0 0 0 0 0 197 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +198 198 7 sl1jevans \N d8dc5bfc38cc04de3e2e2b6215e4b3ee 1 3 \N \N \N 1 \N \N John Timothy Evans \N \N \N \N \N \N \N \N 'evan':5,6 'john':1,2 'timothi':3,4 \N \N \N \N 197 197 8 \N 1 0 0 0 0 0 198 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +199 199 7 sl1rpayton \N d89a91c1fff12d6001853aefe41a6be7 1 3 \N \N \N 1 \N \N Robert Steven Payton Jr \N \N \N \N \N \N \N 'jr':7 'payton':5,6 'robert':1,2 'steven':3,4 \N \N \N \N 198 198 8 1994-05-07 1 0 0 0 0 0 199 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +200 200 7 br4ddavis \N 20bab6a40e05384a300ea28a607ca76e 1 3 \N \N \N 1 \N \N Donald Gene Davis \N \N \N \N \N \N \N \N 'davi':5,6 'donald':1,2 'gene':3,4 \N \N \N \N 199 199 7 \N 1 0 0 0 0 0 200 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +201 201 7 br4gadams \N eea06567768eabbec9a67d5893798e30 1 1 \N \N \N 1 \N \N Gene Adams III \N \N \N \N \N \N \N 'adam':3,4 'gene':1,2 'iii':5 \N \N \N \N 200 200 7 1974-02-18 1 0 0 0 0 0 201 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +202 202 7 br3hwhite \N 0ed6fef4d59f5d0709ef9f694618e364 1 1 \N \N \N 1 \N \N Humberto Kevin White Jr \N \N \N \N \N \N \N 'humberto':1,2 'jr':7 'kevin':3,4 'white':5,6 \N \N \N \N 201 201 6 1997-09-08 1 0 0 0 0 0 202 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +203 203 7 br3asnyder \N b4f2fc10869ce24d1399ae30f39d54b6 1 3 \N \N \N 1 \N \N Ana Snyder III \N \N \N \N \N \N \N 'ana':1,2 'iii':5 'snyder':3,4 \N \N \N \N 202 202 6 1991-05-23 1 0 0 0 0 0 203 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +204 204 7 br2jroberts \N 1f065cc104f33d83807ae8fc0070838b 1 1 \N \N \N 1 \N \N John Theodore Roberts \N \N \N \N \N \N \N \N 'john':1,2 'robert':5,6 'theodor':3,4 \N \N \N \N 203 203 5 \N 1 0 0 0 0 0 204 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +205 205 7 br2sheath \N 65a5e09d0ece4f58569821d78ed25c9f 1 3 \N \N \N 1 \N \N Steven Luke Heath \N \N \N \N \N \N \N \N 'heath':5,6 'luke':3,4 'steven':1,2 \N \N \N \N 204 204 5 \N 1 0 0 0 0 0 205 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +206 206 7 br1krush \N 64460dcec4fad8cb5cb25835a4ffcd2d 1 1 \N \N \N 1 \N \N Keith Rush \N \N \N \N \N \N \N \N 'keith':1,2 'rush':3,4 \N \N \N \N 205 205 4 \N 1 0 0 0 0 0 206 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +207 207 7 br1lfarrell \N b5e7eedca8f9a8f3dad9a8d1a691ec80 1 3 \N \N \N 1 \N \N Linda Linda Farrell \N \N \N \N \N \N \N \N 'farrel':5,6 'linda':1,2,3,4 \N \N \N \N 206 206 4 \N 1 0 0 0 0 0 207 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +208 208 6 bm1rharrison \N 7e0fee4e5e1026903aed965734947090 1 3 \N \N \N 1 \N \N Richard Melvin Harrison \N \N \N \N \N \N \N \N 'harrison':5,6 'melvin':3,4 'richard':1,2 \N \N \N \N 207 207 9 \N 1 0 0 0 0 0 208 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +209 209 6 bm1ksmith \N 0c2fc045b1d6c7f652345714dcfdf43a 1 1 \N \N \N 1 \N \N Kevin Timothy Smith \N \N \N \N \N \N \N \N 'kevin':1,2 'smith':5,6 'timothi':3,4 \N \N \N \N 208 208 9 \N 1 0 0 0 0 0 209 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +210 210 6 sl1fmoore \N 7ba3bcb1a366e9a2939679e5d89fab5a 1 1 \N \N \N 1 \N \N Florence Michelle Moore Jr \N \N \N \N \N \N \N 'florenc':1,2 'jr':7 'michell':3,4 'moor':5,6 \N \N \N \N 209 209 8 1977-02-07 1 0 0 0 0 0 210 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +211 211 6 sl1bcruz \N 831facf2f55dc167a68f4ab32a3795f2 1 1 \N \N \N 1 \N \N Betty Shirley Cruz Sr \N \N \N \N \N \N \N 'betti':1,2 'cruz':5,6 'shirley':3,4 'sr':7 \N \N \N \N 210 210 8 1993-08-10 1 0 0 0 0 0 211 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +212 212 6 br4jjohnson \N 446dfe0899265d9f06fbfadf459a3c16 1 1 \N \N \N 1 \N \N Joel Allen Johnson \N \N \N \N \N \N \N \N 'allen':3,4 'joel':1,2 'johnson':5,6 \N \N \N \N 211 211 7 \N 1 0 0 0 0 0 212 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +213 213 6 br4kburton \N ae460c8ffd4e666b31db856647578079 1 1 \N \N \N 1 \N \N Kristen Dena Burton \N \N \N \N \N \N \N \N 'burton':5,6 'dena':3,4 'kristen':1,2 \N \N \N \N 212 212 7 \N 1 0 0 0 0 0 213 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +214 214 6 br3rpineda \N d89a91c1fff12d6001853aefe41a6be7 1 1 \N \N \N 1 \N \N Robert Gordon Pineda \N \N \N \N \N \N \N \N 'gordon':3,4 'pineda':5,6 'robert':1,2 \N \N \N \N 213 213 6 \N 1 0 0 0 0 0 214 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +215 215 6 br3avaldez \N 3529ca3dd12d97525b55f5e7ce046f5d 1 1 \N \N \N 1 \N \N Alissa Gladys Valdez Jr \N \N \N \N \N \N \N 'alissa':1,2 'gladi':3,4 'jr':7 'valdez':5,6 \N \N \N \N 214 214 6 1994-03-25 1 0 0 0 0 0 215 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +216 216 6 br2krowland \N ff97d48b2453873acbbfe82119ebd01a 1 3 \N \N \N 1 \N \N Kenneth Ernest Rowland \N \N \N \N \N \N \N \N 'ernest':3,4 'kenneth':1,2 'rowland':5,6 \N \N \N \N 215 215 5 \N 1 0 0 0 0 0 216 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +217 217 6 br2thansen \N 5d969c393975215b554b7995cc8c15f8 1 1 \N \N \N 1 \N \N Terrance Hansen \N \N \N \N \N \N \N \N 'hansen':3,4 'terranc':1,2 \N \N \N \N 216 216 5 \N 1 0 0 0 0 0 217 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +218 218 6 br1breid \N a1bbda9151aeed18181747dbd6769489 1 3 \N \N \N 1 \N \N Barbara Amanda Reid \N \N \N \N \N \N \N \N 'amanda':3,4 'barbara':1,2 'reid':5,6 \N \N \N \N 217 217 4 \N 1 0 0 0 0 0 218 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +219 219 6 br1mroberts \N cfe968696e56be709709f7aa89bcc876 1 1 \N \N \N 1 \N \N Michael Stephen Roberts \N \N \N \N \N \N \N \N 'michael':1,2 'robert':5,6 'stephen':3,4 \N \N \N \N 218 218 4 \N 1 0 0 0 0 0 219 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +220 220 5 bm1rkaufman \N 6f9f3a781e95a04843aff9fee76219be 1 3 \N \N \N 1 \N \N Rachel Vickie Kaufman \N \N \N \N \N \N \N \N 'kaufman':5,6 'rachel':1,2 'vicki':3,4 \N \N \N \N 219 219 9 \N 1 0 0 0 0 0 220 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +221 221 5 bm1csims \N 4a106b8787e451fc65820b1698e26b86 1 3 \N \N \N 1 \N \N Christopher John Sims \N \N \N \N \N \N \N \N 'christoph':1,2 'john':3,4 'sim':5,6 \N \N \N \N 220 220 9 \N 1 0 0 0 0 0 221 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +222 222 5 sl1srobinson \N 6dc6c3459865cf925fa8bd8f6881e516 1 1 \N \N \N 1 \N \N Sarah Robinson II \N \N \N \N \N \N \N 'ii':5 'robinson':3,4 'sarah':1,2 \N \N \N \N 221 221 8 1996-01-28 1 0 0 0 0 0 222 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +223 223 5 sl1jpayton \N 1ff260a9ac36168ddbe75344527ef7b4 1 3 \N \N \N 1 \N \N Johnny Vincent Payton \N \N \N \N \N \N \N \N 'johnni':1,2 'payton':5,6 'vincent':3,4 \N \N \N \N 222 222 8 \N 1 0 0 0 0 0 223 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +224 224 5 br4djamison \N e1eba6a4e352cd412aeafa9f3ce73ec7 1 3 \N \N \N 1 \N \N David Eric Jamison \N \N \N \N \N \N \N \N 'david':1,2 'eric':3,4 'jamison':5,6 \N \N \N \N 223 223 7 \N 1 0 0 0 0 0 224 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +225 225 5 br4jford \N ea33dfe4122877f47fa99b1a98a6fc48 1 3 \N \N \N 1 \N \N Jamie Ford \N \N \N \N \N \N \N \N 'ford':3,4 'jami':1,2 \N \N \N \N 224 224 7 \N 1 0 0 0 0 0 225 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +226 226 5 br3gwatson \N da99e806ffb0c98a845f227cfb0cd421 1 1 \N \N \N 1 \N \N Gerald Larry Watson \N \N \N \N \N \N \N \N 'gerald':1,2 'larri':3,4 'watson':5,6 \N \N \N \N 225 225 6 \N 1 0 0 0 0 0 226 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +227 227 5 br3clambert \N 7a22e0a8bf03f67d34b5aa60a22f1746 1 1 \N \N \N 1 \N \N Charles William Lambert Jr \N \N \N \N \N \N \N 'charl':1,2 'jr':7 'lambert':5,6 'william':3,4 \N \N \N \N 226 226 6 1995-09-22 1 0 0 0 0 0 227 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +228 228 5 br2mbarber \N 4141a0328730db30a80976b5c5928296 1 1 \N \N \N 1 \N \N Micheal Ramon Barber \N \N \N \N \N \N \N \N 'barber':5,6 'micheal':1,2 'ramon':3,4 \N \N \N \N 227 227 5 \N 1 0 0 0 0 0 228 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +229 229 5 br2tcruz \N 52ae6c86a04736ad48d445e1e0029ba5 1 3 \N \N \N 1 \N \N Tom Eugene Cruz \N \N \N \N \N \N \N \N 'cruz':5,6 'eugen':3,4 'tom':1,2 \N \N \N \N 228 228 5 \N 1 0 0 0 0 0 229 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +230 230 5 br1iwalton \N 9a009ff57069b0c0631b503ddb71d4e5 1 1 \N \N \N 1 \N \N Inez Amanda Walton \N \N \N \N \N \N \N \N 'amanda':3,4 'inez':1,2 'walton':5,6 \N \N \N \N 229 229 4 \N 1 0 0 0 0 0 230 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +231 231 5 br1mtownsend \N 2d1256c7df7f126b8048c558a9b6debb 1 3 \N \N \N 1 \N \N Mary Townsend Jr \N \N \N \N \N \N \N 'jr':5 'mari':1,2 'townsend':3,4 \N \N \N \N 230 230 4 1995-03-03 1 0 0 0 0 0 231 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +232 232 4 bm1cmartinez \N 9dac9c4e8ac3e793d331c6f70e225b85 1 3 \N \N \N 1 \N \N Carolyn Sandra Martinez \N \N \N \N \N \N \N \N 'carolyn':1,2 'martinez':5,6 'sandra':3,4 \N \N \N \N 231 231 9 \N 1 0 0 0 0 0 232 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +233 233 4 bm1jjohnson \N 7ff30ecc5aedbc70667a2db15e9dd54f 1 1 \N \N \N 1 \N \N Jeremy Mark Johnson II \N \N \N \N \N \N \N 'ii':7 'jeremi':1,2 'johnson':5,6 'mark':3,4 \N \N \N \N 232 232 9 1970-03-14 1 0 0 0 0 0 233 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +234 234 4 sl1mscott \N 1aaaf51fbe8e92a41ace0adceb7e09f3 1 1 \N \N \N 1 \N \N Mae Sue Scott \N \N \N \N \N \N \N \N 'mae':1,2 'scott':5,6 'sue':3,4 \N \N \N \N 233 233 8 \N 1 0 0 0 0 0 234 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +235 235 4 sl1rstevens \N f83ba330d0f36d84bcd93c61c91b26da 1 3 \N \N \N 1 \N \N Russell Daniel Stevens Jr \N \N \N \N \N \N \N 'daniel':3,4 'jr':7 'russel':1,2 'steven':5,6 \N \N \N \N 234 234 8 1973-08-15 1 0 0 0 0 0 235 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +236 236 4 br4therrera \N fa84d5f9d60621ead3f7b2003ab8ea39 1 3 \N \N \N 1 \N \N Traci Edith Herrera Jr \N \N \N \N \N \N \N 'edith':3,4 'herrera':5,6 'jr':7 'traci':1,2 \N \N \N \N 235 235 7 1994-07-07 1 0 0 0 0 0 236 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +237 237 4 br4vgrimes \N 1c47f6c25b5c15712364a801b920a1ee 1 3 \N \N \N 1 \N \N Virginia Jennifer Grimes \N \N \N \N \N \N \N \N 'grime':5,6 'jennif':3,4 'virginia':1,2 \N \N \N \N 236 236 7 \N 1 0 0 0 0 0 237 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +238 238 4 br3pward \N 931d744d5d38fbb7c271a6c405218bfc 1 1 \N \N \N 1 \N \N Paul Ward \N \N \N \N \N \N \N \N 'paul':1,2 'ward':3,4 \N \N \N \N 237 237 6 \N 1 0 0 0 0 0 238 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +239 239 4 br3bgreen \N 89dc9b3f12b38f7c6b19d59735f20358 1 3 \N \N \N 1 \N \N Beatrice Janette Green \N \N \N \N \N \N \N \N 'beatric':1,2 'green':5,6 'janett':3,4 \N \N \N \N 238 238 6 \N 1 0 0 0 0 0 239 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +240 240 4 br2sschmidt \N b928a84c033a63ba7f3b96481a227746 1 1 \N \N \N 1 \N \N Scott Kyle Schmidt Sr \N \N \N \N \N \N \N 'kyle':3,4 'schmidt':5,6 'scott':1,2 'sr':7 \N \N \N \N 239 239 5 \N 1 0 0 0 0 0 240 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +241 241 4 br2jclark \N b7408026e37ddae086910db6e15fab50 1 3 \N \N \N 1 \N \N Joanne Andrea Clark \N \N \N \N \N \N \N \N 'andrea':3,4 'clark':5,6 'joann':1,2 \N \N \N \N 240 240 5 \N 1 0 0 0 0 0 241 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +242 242 4 br1bbrown \N 293e520b5468d2b8b88ff1a9def22e7f 1 1 \N \N \N 1 \N \N Beverly Florence Brown \N \N \N \N \N \N \N \N 'bever':1,2 'brown':5,6 'florenc':3,4 \N \N \N \N 241 241 4 \N 1 0 0 0 0 0 242 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +243 243 4 br1jmcginnis \N 82fc69ed1f4cecab5a45d19f9a5b8960 1 3 \N \N \N 1 \N \N Jose David Mcginnis \N \N \N \N \N \N \N \N 'david':3,4 'jose':1,2 'mcginni':5,6 \N \N \N \N 242 242 4 \N 1 0 0 0 0 0 243 0 0.00 none 2020-10-27 09:26:51.426709-05 2023-10-27 09:26:51.426709-05 0 2023-01-23 09:07:47.279083-06 \N +244 244 4 hhplwayne \N 74be16979710d4c4e7c6647856088456 1 1 RI-123456789 \N \N 2 \N \N Bruce Hamilton Wayne \N \N \N \N \N \N \N \N 'bruce':1,2 'hamilton':3,4 'wayn':5,6 \N \N \N \N 243 243 106 1971-10-26 1 1 0 0 0 0 271 0 0.00 1645223790.3550113272.0455618262 2021-10-26 15:09:03-05 2024-10-26 15:06:14-05 0 2023-01-23 09:07:47.279083-06 \N +245 245 4 hhplprince \N 74be16979710d4c4e7c6647856088456 1 1 RI-999888999 \N \N 2 \N \N Diana \N Prince \N \N \N \N \N \N \N \N 'diana':1,2 'princ':3,4 \N 555-123-4467 \N \N 274 274 106 1995-02-17 1 1 0 0 0 0 272 0 0.00 1645224015.4097876535.9606706689 2021-10-26 15:12:01-05 2024-10-26 15:10:17-05 0 2023-01-23 09:07:47.279083-06 \N +246 246 9 hhplallen \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Barry \N Allen \N \N \N \N \N \N \N \N 'allen':3,4 'barri':1,2 \N \N \N \N 244 244 106 1956-02-27 1 0 0 0 0 0 245 0 0.00 1635279666.6801756423.6518653001 2021-10-26 15:21:06-05 2024-10-26 15:19:18-05 0 2023-01-23 09:07:47.279083-06 \N +247 247 5 hhplcurry \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Arthur \N Curry \N \N \N \N \N \N \N \N 'arthur':1,2 'curri':3,4 \N \N \N \N 245 245 106 1981-01-10 1 0 0 0 0 0 246 0 0.00 1635279927.6371383141.7914786336 2021-10-26 15:25:27-05 2024-10-26 15:23:49-05 0 2023-01-23 09:07:47.279083-06 \N +248 248 5 hhplstone \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Victor Samuel Stone \N \N \N \N \N \N \N \N 'samuel':3,4 'stone':5,6 'victor':1,2 \N \N \N \N 246 246 106 1981-01-10 1 0 0 0 0 0 247 0 0.00 1635280046.367793183.80580061213 2021-10-26 15:27:26-05 2024-10-26 15:25:26-05 0 2023-01-23 09:07:47.279083-06 \N +249 249 10 hhplpennyworth \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Alfred Joseph Pennyworth \N \N \N \N \N \N \N \N 'alfr':1,2 'joseph':3,4 'pennyworth':5,6 \N \N \N \N 247 247 106 1935-01-10 1 1 0 0 0 0 266 0 0.00 1645223817.276385315.07418754397 2021-10-26 15:29:17-05 2024-10-26 15:27:36-05 0 2023-01-23 09:07:47.279083-06 \N +250 250 12 hhplgordon \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N James \N Gordon \N \N \N \N \N \N \N \N 'gordon':3,4 'jame':1,2 \N \N \N \N 273 273 106 1981-01-10 1 1 0 0 0 0 267 0 0.00 1645223945.43975121148.83054093 2021-10-26 15:30:27-05 2024-10-26 15:29:09-05 0 2023-01-23 09:07:47.279083-06 \N +251 274 15 hhplstone2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Silas \N Stone \N \N \N \N \N \N \N \N 'sila':1,2 'stone':3,4 \N \N \N \N 271 271 106 2005-07-17 1 1 0 0 0 1 269 0 0.00 1645223747.677219888.2057369309 2021-10-26 15:32:06-05 2024-10-26 15:30:46-05 0 2023-01-23 09:07:47.279083-06 \N +252 252 8 hhplkent \N 74be16979710d4c4e7c6647856088456 1 1 RI-1236679 \N \N 2 \N \N Martha Jane Kent \N \N \N \N \N \N \N \N 'jane':3,4 'kent':5,6 'martha':1,2 \N \N \N \N 272 272 106 1973-09-02 1 1 0 0 0 0 270 0 0.00 1645223856.09612350.800914292609 2021-10-26 15:33:48-05 2024-10-26 15:32:05-05 0 2023-01-23 09:07:47.279083-06 \N +253 253 15 hhplgur \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Yalan \N Gur \N \N \N \N \N \N \N \N 'gur':3,4 'yalan':1,2 \N \N \N \N 270 270 106 1991-03-19 1 1 0 0 0 0 268 0 0.00 1645223572.4966814017.2708519078 2021-10-26 15:35:15-05 2024-10-26 15:33:44-05 0 2023-01-23 09:07:47.279083-06 \N +254 254 4 lplsbagshot \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Bathilda Esmerelda Bagshot \N \N \N \N \N \N \N \N 'bagshot':5,6 'bathilda':1,2 'esmerelda':3,4 \N \N \N \N 248 248 102 1952-01-19 1 1 0 0 0 0 274 0 0.00 1645224783.920865191.45846091031 2021-10-26 15:49:47-05 2024-10-26 15:47:35-05 0 2023-01-23 09:07:47.279083-06 \N +255 255 4 lplsbones \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Amelia Marie Bones \N \N \N \N \N \N \N \N 'amelia':1,2 'bone':5,6 'mari':3,4 \N \N \N \N 281 281 103 1985-01-01 1 1 0 0 0 0 273 0 0.00 1645224783.920666909.22426997837 2021-10-26 15:51:26-05 2024-10-26 15:50:18-05 0 2023-01-23 09:07:47.279083-06 \N +256 256 10 lplsbrown \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Lavender Louise Brown \N \N \N \N \N \N \N \N 'brown':5,6 'lavend':1,2 'louis':3,4 \N \N \N \N 249 249 102 1971-09-02 1 0 0 0 0 0 250 0 0.00 1635281609.6591371273.4034551929 2021-10-26 15:53:29-05 2024-10-26 15:51:53-05 0 2023-01-23 09:07:47.279083-06 \N +257 257 9 lplsclearwater \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Penelope \N Clearwater \N \N \N \N \N \N \N \N 'clearwat':3,4 'penelop':1,2 \N \N \N \N 250 250 102 1917-01-19 1 0 0 0 0 0 251 0 0.00 1635282372.4277631835.0002659973 2021-10-26 15:54:39-05 2024-10-26 15:53:13-05 0 2023-01-23 09:07:47.279083-06 \N +258 258 12 lplscrabbe \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Vincent Jay Crabbe \N \N \N Vinny "The Whip" \N \N 'crabb':5,6 'jay':3,4 'thewhip':11 'vincent':1,2 'vinni':7,8 'whip':10 \N \N \N \N 251 251 102 1998-08-08 1 0 0 0 0 0 252 0 0.00 1635282416.8439260208.3398403086 2021-10-26 15:56:28-05 2024-10-26 15:55:04-05 0 2023-01-23 09:07:47.279083-06 \N +259 259 5 lplsdelacour \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Fleur Amelie Delacour \N \N \N \N \N \N \N \N 'ameli':3,4 'delacour':5,6 'fleur':1,2 \N \N \N \N 252 252 102 2001-05-05 1 0 0 0 0 0 253 0 0.00 1635282404.802514635.36647311665 2021-10-26 15:58:13-05 2024-10-26 15:56:34-05 0 2023-01-23 09:07:47.279083-06 \N +260 260 5 lplshuff \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Helga Henrietta Hufflepuff \N \N \N \N \N \N \N \N 'helga':1,2 'henrietta':3,4 'hufflepuff':5,6 \N \N \N \N 253 253 103 1999-09-09 1 0 0 0 0 0 254 0 0.00 1635281998.6095854259.4285324187 2021-10-26 15:59:58-05 2024-10-26 15:58:25-05 0 2023-01-23 09:07:47.279083-06 \N +261 261 8 lplsflamel \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Nicolas \N Flamel \N \N \N Nick \N \N \N \N 'flamel':3,4 'nick':5,6 'nicola':1,2 \N \N \N \N 254 254 102 1784-01-09 1 0 0 0 0 0 255 0 0.00 1635282110.4583196383.5351361247 2021-10-26 16:01:50-05 2024-10-26 16:00:04-05 0 2023-01-23 09:07:47.279083-06 \N +262 262 15 lplspomfrey \N 74be16979710d4c4e7c6647856088456 1 1 MA19191717 \N \N 1 \N \N Poppy Penelope Pomfrey \N \N \N \N \N \N \N \N 'penelop':3,4 'pomfrey':5,6 'poppi':1,2 \N \N \N \N 255 255 102 2001-06-06 1 0 0 0 0 0 256 0 0.00 1635282243.5177563872.151147921 2021-10-26 16:04:03-05 2024-10-26 16:02:09-05 0 2023-01-23 09:07:47.279083-06 \N +263 263 15 lplspince \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Irma \N Pince \N \N \N \N \N \N \N \N 'irma':1,2 'pinc':3,4 \N \N \N \N 256 256 103 1979-09-03 1 0 0 0 0 0 257 0 0.00 1635282323.2943338623.0072659412 2021-10-26 16:05:23-05 2024-10-26 16:03:57-05 0 2023-01-23 09:07:47.279083-06 \N +264 264 2 hhplcash \N 74be16979710d4c4e7c6647856088456 1 1 GA-123456789 \N \N 2 \N \N Aaron \N Cash \N \N \N \N \N \N \N \N 'aaron':1,2 'cash':3,4 \N 555-123-6798 \N \N 257 257 106 2001-03-01 1 0 0 0 0 0 258 0 0.00 1645224530.572748773.59022720257 2022-02-18 15:59:10-06 2025-02-18 15:57:02-06 0 2023-01-23 09:07:47.279083-06 \N +265 265 2 hhplbathound \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Ace \N Bathound \N \N \N \N \N \N \N \N 'ace':1,2 'bathound':3,4 \N 555-123-6799 \N \N 275 275 106 1971-02-12 1 1 0 0 0 0 264 0 0.00 1655500025.461228758.15064941562 2022-02-18 16:00:19-06 2025-02-18 15:58:49-06 0 2023-01-23 09:07:47.279083-06 \N +266 266 2 hhpllane \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Michael \N Lane \N \N \N \N \N \N \N \N 'lane':3,4 'michael':1,2 \N \N \N \N 258 258 106 1983-02-19 1 1 0 0 0 0 265 0 0.00 1645224671.9480242100.1953683088 2022-02-18 16:08:16-06 2025-02-18 16:06:14-06 0 2023-01-23 09:07:47.279083-06 \N +267 267 2 hhplgordon2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Barbara \N Gordon \N Commissioner Gordon \N \N \N \N \N \N 'barbara':1,2 'gordon':3,4 \N \N \N \N 276 276 106 1991-09-27 1 1 0 0 0 0 260 0 0.00 1645224549.9033825914.3992635904 2022-02-18 16:09:44-06 2025-02-18 16:07:52-06 0 2023-01-23 09:07:47.279083-06 \N +268 268 2 hhplbatwing \N 74be16979710d4c4e7c6647856088456 1 1 RI 769892334 \N \N 1 \N \N Sam \N Batwing \N \N \N \N \N \N \N \N 'batw':3,4 'sam':1,2 \N \N \N \N 280 280 106 1967-09-12 1 1 0 0 0 0 261 0 0.00 1655500090.8172725320.1535482021 2022-02-18 16:11:49-06 2025-02-18 16:10:15-06 0 2023-01-23 09:07:47.279083-06 \N +269 269 18 hhplkelley \N 74be16979710d4c4e7c6647856088456 1 3 \N \N 1 \N \N Carrie Samantha Kelley \N Samantha Kelley \N \N \N \N \N \N 'carri':1,2 'kelley':5,6 'samantha':3,4 \N \N \N \N 278 278 106 2015-02-17 1 1 0 0 0 1 262 0 0.00 1645224564.2439319642.9416477781 2022-02-18 16:13:46-06 2027-02-18 16:12:03-06 0 2023-01-23 09:07:47.279083-06 \N +273 273 18 hhplcain \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Cassandra Clara Cain \N \N \N \N \N \N \N \N 'cain':5,6 'cassandra':1,2 'clara':3,4 \N \N \N \N 258 258 106 1998-03-03 1 1 0 0 0 0 263 0 0.00 1645224515.6203829262.3830236295 2022-02-18 16:18:53-06 2027-02-18 16:17:21-06 0 2023-01-23 09:07:47.279083-06 \N +274 275 17 hhplwayne2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Damian Bruce Wayne \N \N \N \N \N \N \N \N 'bruce':3,4 'damian':1,2 'wayn':5,6 \N \N \N \N 282 282 106 1942-09-12 1 0 0 0 0 0 275 0 0.00 1645224964.680221637.23187156652 2022-02-18 16:56:04-06 2024-02-18 16:53:55-06 0 2023-01-23 09:07:47.279083-06 \N +275 276 18 hhplranger \N 74be16979710d4c4e7c6647856088456 1 1 RI-123456989 \N \N 2 \N \N Dave \N Ranger \N \N \N \N \N \N \N \N 'dave':1,2 'ranger':3,4 \N \N \N \N 283 283 106 1979-03-19 1 0 0 0 0 0 276 0 0.00 1645225044.6205982746.6274766563 2022-02-18 16:57:24-06 2027-02-18 16:55:46-06 0 2023-01-23 09:07:47.279083-06 \N +276 277 19 hhplzavimbe \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N David \N Zavimbe \N \N \N \N \N \N \N \N 'david':1,2 'zavimb':3,4 \N \N \N \N 284 284 106 2001-05-05 1 0 0 0 0 0 277 0 0.00 1645225129.9427318229.6903091918 2022-02-18 16:58:49-06 2025-02-18 16:57:05-06 0 2023-01-23 09:07:47.279083-06 \N +277 278 19 hhplgolden \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Dawn \N Golden \N \N \N \N \N \N \N \N 'dawn':1,2 'golden':3,4 \N \N \N \N 285 285 106 1984-01-29 1 0 0 0 0 0 278 0 0.00 1645225228.0638633614.5984296893 2022-02-18 17:00:28-06 2025-02-18 16:58:43-06 0 2023-01-23 09:07:47.279083-06 \N +278 279 16 hhplthomas \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Duke \N Thomas \N Max Thomas \N \N \N \N \N \N 'duke':1,2 'thoma':3,4 \N \N \N \N 286 286 106 2015-12-09 1 0 0 0 0 1 279 0 0.00 1645225320.9400414812.3722782116 2022-02-18 17:02:00-06 2023-02-18 17:00:18-06 0 2023-01-23 09:07:47.279083-06 \N +279 280 16 hhplbullock \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Harvey Sean Bullock \N \N \N \N \N \N \N \N 'bullock':5,6 'harvey':1,2 'sean':3,4 \N \N \N \N 287 287 106 2010-06-09 1 0 0 0 0 1 280 0 0.00 1655501470.321575380.99718182704 2022-02-18 17:03:43-06 2023-02-18 17:01:36-06 0 2023-01-23 09:07:47.279083-06 \N +280 281 2 lplscreevey \N 74be16979710d4c4e7c6647856088456 1 1 MA-123-345-999 \N \N 2 \N \N Colin \N Creevey \N \N \N \N \N \N \N \N 'colin':1,2 'creevey':3,4 \N \N \N \N 288 288 102 1956-05-19 1 0 0 0 0 0 281 0 0.00 1645474176.68969120418.662109024 2022-02-21 14:09:36-06 2025-02-21 14:06:49-06 0 2023-01-23 09:07:47.279083-06 \N +281 282 2 lplsvane \N 74be16979710d4c4e7c6647856088456 1 1 MA-999-999-1234 3 \N 1 \N \N Romilda Jessica Vane \N Jennifer Vane \N \N \N \N \N Gryffindor 'gryffindor':7 'jessica':3,4 'romilda':1,2 'vane':5,6 \N \N \N \N 289 289 102 2005-09-17 1 0 0 0 0 1 282 0 0.00 1645474370.0203437630.2709201771 2022-02-21 14:12:50-06 2025-02-21 14:10:57-06 0 2023-01-23 09:07:47.279083-06 \N +282 283 2 lplszabini \N 74be16979710d4c4e7c6647856088456 1 3 \N \N 2 \N \N Blaise \N Zabini \N \N \N \N \N \N \N \N 'blais':1,2 'zabini':3,4 \N \N \N \N 290 290 102 1997-02-02 1 0 0 0 0 0 283 0 0.00 1645474459.1889543105.1660344525 2022-02-21 14:14:19-06 2025-02-21 14:12:20-06 0 2023-01-23 09:07:47.279083-06 \N +283 284 2 lplsfinch \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Justin \N Finch-Fletchley \N \N \N \N \N \N \N \N 'finch':4 'finch-fletchley':3 'finchfletchley':6 'fletchley':5 'justin':1,2 \N \N \N \N 291 291 102 1953-06-06 1 0 0 0 0 0 284 0 0.00 1645474543.2079315985.6725336119 2022-02-21 14:15:43-06 2025-02-21 14:13:59-06 0 2023-01-23 09:07:47.279083-06 \N +284 285 2 lplsbell \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Katie Bell \N \N \N \N \N \N \N \N 'bell':3,4 'kati':1,2 \N \N \N \N 292 292 102 \N 1 0 0 0 0 0 285 0 0.00 1655500374.7103552492.7635250918 2022-02-21 14:17:10-06 2025-02-21 14:15:09-06 0 2023-01-23 09:07:47.279083-06 \N +285 286 18 lplsmclaggen \N 74be16979710d4c4e7c6647856088456 1 1 MA-012-023-9989 \N \N 1 \N \N Cormac \N McLaggen \N Hamish McLaggen \N \N \N \N \N \N 'cormac':1,2 'mclaggen':3,4 \N \N \N \N 293 293 102 2005-01-01 0 0 0 0 0 1 286 0 0.00 1645474951.6080631628.1593363473 2022-02-21 14:22:31-06 2027-02-21 14:20:40-06 0 2023-01-23 09:07:47.279083-06 \N +286 287 18 lplssmith \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Zacharias \N Smith \N \N \N \N \N \N \N \N 'smith':3,4 'zacharia':1,2 \N \N \N \N 294 294 102 1987-02-09 1 0 0 0 0 0 287 0 0.00 1645475023.2096129154.8767554043 2022-02-21 14:23:43-06 2027-02-21 14:22:03-06 0 2023-01-23 09:07:47.279083-06 \N +287 288 17 lplsbrown2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Lavender \N Brown \N Sandra Brown \N \N \N \N \N \N 'brown':3,4 'lavend':1,2 \N \N \N \N 295 295 102 2020-03-03 1 0 0 0 0 1 288 0 0.00 1655501120.12664143393.871868614 2022-02-21 14:25:20-06 2024-02-21 14:23:30-06 0 2023-01-23 09:07:47.279083-06 \N +288 289 17 lplscreevey2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Dennis \N Creevey \N \N \N \N \N \N \N \N 'creevey':3,4 'denni':1,2 \N \N \N \N 296 296 102 1965-03-05 1 0 0 0 0 0 289 0 0.00 1645475202.647798655.88089026625 2022-02-21 14:26:42-06 2024-02-21 14:24:57-06 0 2023-01-23 09:07:47.279083-06 \N +289 290 19 lplsfinnigan \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Seamus \N Finnigan \N \N \N \N \N \N \N Gryffindor 'finnigan':3,4 'gryffindor':5 'seamus':1,2 \N \N \N \N 297 297 102 2019-02-19 1 0 0 0 0 1 290 0 0.00 1645475331.02771110193.949836636 2022-02-21 14:28:51-06 2025-02-21 14:27:07-06 0 2023-01-23 09:07:47.279083-06 \N +290 291 16 lplslongbottom \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Neville \N Longbottom \N \N \N \N \N \N \N Gryffindor 'gryffindor':5 'longbottom':3,4 'nevill':1,2 \N \N \N \N 298 298 102 2012-10-04 1 0 0 0 0 1 291 0 0.00 1645475430.2922620892.7161015687 2022-02-21 14:30:30-06 2023-02-21 14:28:30-06 0 2023-01-23 09:07:47.279083-06 \N +291 292 2 lplspatil \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Parvati \N Patil \N \N \N \N \N \N \N \N 'parvati':1,2 'patil':3,4 \N \N \N \N 299 299 103 1989-02-19 1 0 0 0 0 0 292 0 0.00 1645475627.86466206.017055673141 2022-02-21 14:33:47-06 2025-02-21 14:31:43-06 0 2023-01-23 09:07:47.279083-06 \N +292 293 2 lplsspinnet \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Alicia \N Spinnet \N \N \N \N \N \N \N \N 'alicia':1,2 'spinnet':3,4 \N \N \N \N 300 300 103 1917-02-06 1 0 0 0 0 0 293 0 0.00 1645475718.3571531539.1316588266 2022-02-21 14:35:18-06 2025-02-21 14:33:24-06 0 2023-01-23 09:07:47.279083-06 \N +293 294 2 lplsthomas \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Dawn \N Thomas \N \N \N \N \N \N \N \N 'dawn':1,2 'thoma':3,4 \N \N \N \N 301 301 103 1957-07-07 1 0 0 0 0 0 294 0 0.00 1645475799.5993823614.6785644369 2022-02-21 14:36:39-06 2025-02-21 14:34:53-06 0 2023-01-23 09:07:47.279083-06 \N +294 295 2 lplsweasley1 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Virginia \N Weasley \N \N \N Ginny \N \N \N \N 'ginni':5,6 'virginia':1,2 'weasley':3,4 \N \N \N \N 302 302 103 2015-05-05 1 0 0 0 0 1 295 0 0.00 1645475917.2811912119.6770628804 2022-02-21 14:38:37-06 2025-02-21 14:36:53-06 0 2023-01-23 09:07:47.279083-06 \N +295 296 2 lplsweasley2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Percival \N Weasley \N \N \N Percy \N \N \N \N 'perci':5,6 'perciv':1,2 'weasley':3,4 \N \N \N \N 303 303 103 2000-09-09 1 0 0 0 0 0 295 0 0.00 1645475987.0667649898.844309688 2022-02-21 14:39:47-06 2025-02-21 14:38:19-06 0 2023-01-23 09:07:47.279083-06 \N +296 297 19 lplsweasley3 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Fred \N Weasley \N \N \N \N \N \N \N \N 'fred':1,2 'weasley':3,4 \N \N \N \N 304 304 103 2000-05-05 1 0 0 0 0 0 295 0 0.00 1645476043.8440453987.7968522336 2022-02-21 14:40:43-06 2025-02-21 14:39:22-06 0 2023-01-23 09:07:47.279083-06 \N +297 298 19 lplsweasley4 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N George \N Weasley \N \N \N \N \N \N \N \N 'georg':1,2 'weasley':3,4 \N \N \N \N 305 305 103 1972-05-05 1 0 0 0 0 0 295 0 0.00 1645476125.1529222355.1121021687 2022-02-21 14:41:34-06 2025-02-21 14:40:13-06 0 2023-01-23 09:07:47.279083-06 \N +298 299 16 lplschang \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Cho \N Chang \N \N \N \N \N \N \N \N 'chang':3,4 'cho':1,2 \N \N \N \N 306 306 103 2003-12-19 1 0 0 0 0 0 296 0 0.00 1645476270.982849726.53439998154 2022-02-21 14:44:30-06 2023-02-21 14:42:47-06 0 2023-01-23 09:07:47.279083-06 \N +299 300 4 smallkent \N 74be16979710d4c4e7c6647856088456 1 3 Daily Planet press card \N \N 2 \N \N Clark \N Kent \N \N \N \N \N \N \N krypton 'clark':1,2 'kent':3,4 'krypton':5 \N \N \N \N 307 307 114 1938-04-18 1 0 0 0 0 0 297 0 0.00 1645636588.4708929570.0618196019 2022-02-23 10:52:17-06 2025-02-23 10:48:39-06 0 2023-01-23 09:07:47.279083-06 \N +300 301 9 smalllane \N 74be16979710d4c4e7c6647856088456 1 1 KS 989898999 \N \N 2 \N \N Lois \N Lane \N \N \N \N \N \N \N \N 'lane':3,4 'loi':1,2 \N \N \N \N 308 308 114 1981-03-03 1 0 0 0 0 0 298 0 0.00 1645636552.7186827056.606849974 2022-02-23 10:54:10-06 2025-02-23 10:52:29-06 0 2023-01-23 09:07:47.279083-06 \N +301 302 12 smallolsen \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N James \N Olsen \N \N \N Jimmy \N \N \N \N 'jame':1,2 'jimmi':5,6 'olsen':3,4 \N \N \N \N 309 309 114 1995-03-19 1 0 0 0 0 0 299 0 0.00 1645636484.4224510378.9332117562 2022-02-23 10:56:00-06 2025-02-23 10:53:50-06 0 2023-01-23 09:07:47.279083-06 \N +302 303 10 smallkerry \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Jonathen \N Kerry \N \N \N \N \N \N \N \N 'jonathen':1,2 'kerri':3,4 \N \N \N \N 310 310 114 1987-09-05 1 0 0 0 0 0 300 0 0.00 1645636447.7618527548.7434613701 2022-02-23 10:57:18-06 2025-02-23 10:55:33-06 0 2023-01-23 09:07:47.279083-06 \N +303 304 8 smallluthor \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Lionel \N Luthor \N \N \N \N \N \N \N \N 'lionel':1,2 'luthor':3,4 \N \N \N \N 311 311 114 1965-11-11 1 0 0 0 0 0 301 0 0.00 1645636409.6244789477.8391595887 2022-02-23 11:03:10-06 2025-02-23 11:01:24-06 0 2023-01-23 09:07:47.279083-06 \N +304 305 5 smallgrant \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Cat \N Grant \N \N \N \N \N \N \N \N 'cat':1,2 'grant':3,4 \N \N \N \N 312 312 114 \N 1 0 0 0 0 0 302 0 0.00 1645635917.326429165.3933876079 2022-02-23 11:05:17-06 2025-02-23 11:03:22-06 0 2023-01-23 09:07:47.279083-06 \N +305 306 5 smallwhite \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Perry \N White \N \N \N \N \N \N \N \N 'perri':1,2 'white':3,4 \N \N \N \N 313 313 114 1967-09-09 1 0 0 0 0 0 303 0 0.00 1645636022.94262103048.919725978 2022-02-23 11:07:02-06 2025-02-23 11:05:08-06 0 2023-01-23 09:07:47.279083-06 \N +306 307 5 smallsullivan \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Chloe \N Sullivan \N \N \N \N \N \N \N \N 'chloe':1,2 'sullivan':3,4 \N \N \N \N 314 314 114 1991-05-06 1 0 0 0 0 0 304 0 0.00 1645636133.9630239966.352935959 2022-02-23 11:08:53-06 2025-02-23 11:07:03-06 0 2023-01-23 09:07:47.279083-06 \N +307 308 2 smalltaylor \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N George \N Taylor \N \N \N \N \N \N \N \N 'georg':1,2 'taylor':3,4 \N \N \N \N 315 315 114 1999-09-09 1 0 0 0 0 0 305 0 0.00 1645636713.9696648336.4431088729 2022-02-23 11:18:33-06 2025-02-23 11:16:35-06 0 2023-01-23 09:07:47.279083-06 \N +308 309 2 smalltroupe \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Ron \N Troupe \N \N \N \N \N \N \N \N 'ron':1,2 'troup':3,4 \N \N \N \N 316 316 114 1977-01-01 1 0 0 0 0 0 306 0 0.00 1645636804.2377769787.9839030562 2022-02-23 11:20:04-06 2025-02-23 11:18:05-06 0 2023-01-23 09:07:47.279083-06 \N +309 310 2 smalllombard \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Steve \N Lombard \N \N \N \N \N \N \N \N 'lombard':3,4 'steve':1,2 \N \N \N \N 317 317 114 2005-01-09 1 0 0 0 0 1 307 0 0.00 1645636932.20458533.735167917113 2022-02-23 11:22:12-06 2025-02-23 11:19:47-06 0 2023-01-23 09:07:47.279083-06 \N +310 311 2 smallbibbowski \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Bibbo Bibbowski \N \N \N \N \N \N \N \N 'bibbo':1,2 'bibbowski':3,4 \N \N \N \N 318 318 114 1961-03-05 1 0 0 0 0 0 308 0 0.00 1655500640.9187935475.1797123931 2022-02-23 11:23:58-06 2025-02-23 11:22:16-06 0 2023-01-23 09:07:47.279083-06 \N +311 312 2 smallsawyer \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Margaret \N Sawyer \N \N \N Maggie \N \N \N \N 'maggi':5,6 'margaret':1,2 'sawyer':3,4 \N \N \N \N 319 319 114 1951-05-22 1 0 0 0 0 0 309 0 0.00 1645637136.91014100410.998176093 2022-02-23 11:25:36-06 2025-02-23 11:23:39-06 0 2023-01-23 09:07:47.279083-06 \N +312 313 18 smallturpin \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Dan \N Turpin \N \N \N \N \N \N \N \N 'dan':1,2 'turpin':3,4 \N \N \N \N 320 320 114 1999-01-03 1 0 0 0 0 0 310 0 0.00 1645637226.9120439121.8939263769 2022-02-23 11:27:06-06 2027-02-23 11:25:13-06 0 2023-01-23 09:07:47.279083-06 \N +313 314 17 smallberkowitz \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Frank \N Berkowitz \N \N \N \N \N \N \N \N 'berkowitz':3,4 'frank':1,2 \N \N \N \N 321 321 114 \N 1 0 0 0 0 0 311 0 0.00 1655500553.3417881264.2293715218 2022-02-23 11:28:21-06 2024-02-23 11:26:38-06 0 2023-01-23 09:07:47.279083-06 \N +314 315 19 smallarmstrong \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Dirk \N Armstrong \N \N \N \N \N \N \N \N 'armstrong':3,4 'dirk':1,2 \N \N \N \N 322 322 114 2012-02-28 1 0 0 0 0 1 312 0 0.00 1645638922.1419584851.4625527661 2022-02-23 11:55:22-06 2025-02-23 11:52:50-06 0 2023-01-23 09:07:47.279083-06 \N +315 316 16 smalllang \N 74be16979710d4c4e7c6647856088456 1 1 KS-123-123-123 \N \N 3 \N \N Lana \N Lang \N \N \N \N \N \N \N \N 'lana':1,2 'lang':3,4 \N \N \N \N 323 323 114 2012-08-08 1 0 0 0 0 1 313 0 0.00 1645639038.5778946441.4491779206 2022-02-23 11:57:18-06 2023-02-23 11:55:00-06 0 2023-01-23 09:07:47.279083-06 \N +316 317 4 wakakillmonger \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Erik \N Killmonger \N \N \N \N \N \N \N \N 'erik':1,2 'killmong':3,4 \N \N \N \N 324 324 108 1989-03-09 1 0 0 0 0 0 314 0 0.00 1645639617.1700852847.161558018 2022-02-23 12:06:57-06 2025-02-23 12:05:13-06 0 2023-01-23 09:07:47.279083-06 \N +317 318 4 wakabarnes \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Bucky \N Barnes \N \N \N \N \N \N \N \N 'barn':3,4 'bucki':1,2 \N \N \N \N 325 325 108 1927-02-03 1 0 0 0 0 0 315 0 0.00 1645639731.6989215428.2671315119 2022-02-23 12:08:51-06 2025-02-23 12:06:40-06 0 2023-01-23 09:07:47.279083-06 \N +318 319 8 wakaross \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Everett \N Ross \N \N \N \N \N \N \N \N 'everett':1,2 'ross':3,4 \N \N \N \N 326 326 108 2000-01-01 1 0 0 0 0 0 316 0 0.00 1645639817.5464103731.853926843 2022-02-23 12:10:17-06 2025-02-23 12:08:28-06 0 2023-01-23 09:07:47.279083-06 \N +319 320 10 wakawright \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Shuri \N Wright \N \N \N \N \N \N \N \N 'shuri':1,2 'wright':3,4 \N \N \N \N 327 327 108 2001-01-23 1 0 0 0 0 0 317 0 0.00 1645639907.0987244223.923786073 2022-02-23 12:11:47-06 2025-02-23 12:09:58-06 0 2023-01-23 09:07:47.279083-06 \N +320 321 12 wakanyongo \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Nakia \N Nyong'o \N \N \N \N \N \N \N \N 'nakia':1,2 'nyong':3 'nyongo':5 'o':4 \N \N \N \N 328 328 108 1995-03-09 1 0 0 0 0 0 318 0 0.00 1645640028.8113544035.165638716 2022-02-23 12:13:48-06 2025-02-23 12:11:39-06 0 2023-01-23 09:07:47.279083-06 \N +321 322 9 wakaserkis \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Klaw \N Serkis \N \N \N \N \N \N \N \N 'klaw':1,2 'serki':3,4 \N \N \N \N 329 329 108 1959-03-09 1 0 0 0 0 0 319 0 0.00 1645640110.53727158780.803909268 2022-02-23 12:15:10-06 2025-02-23 12:13:22-06 0 2023-01-23 09:07:47.279083-06 \N +322 323 5 wakagurira \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Okoye \N Gurira \N \N \N \N \N \N \N \N 'gurira':3,4 'okoy':1,2 \N \N \N \N 330 330 109 1989-05-09 1 0 0 0 0 0 320 0 0.00 1645640202.1944782412.9853235064 2022-02-23 12:16:42-06 2025-02-23 12:14:39-06 0 2023-01-23 09:07:47.279083-06 \N +323 324 5 wakawhitaker \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Zuri \N Whitaker \N \N \N \N \N \N \N \N 'whitak':3,4 'zuri':1,2 \N \N \N \N 331 331 108 1985-10-10 1 0 0 0 0 0 321 0 0.00 1645640268.1200250846.6343583481 2022-02-23 12:17:48-06 2025-02-23 12:16:09-06 0 2023-01-23 09:07:47.279083-06 \N +324 325 2 wakajordan \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Michael B. Jordan \N \N \N \N \N \N \N \N 'b':3,4 'jordan':5,6 'michael':1,2 \N \N \N \N 332 332 108 1987-02-09 1 0 0 0 0 0 322 0 0.00 1645640690.2014817237.6479562395 2022-02-23 12:24:50-06 2025-02-23 12:22:51-06 0 2023-01-23 09:07:47.279083-06 \N +325 326 2 wakanyongo2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Lupita \N Nyong'o \N \N \N \N \N \N \N \N 'lupita':1,2 'nyong':3 'nyongo':5 'o':4 \N \N \N \N 333 333 108 2001-01-19 1 0 0 0 0 0 323 0 0.00 1645646087.770434525.29073635944 2022-02-23 13:54:47-06 2025-02-23 13:52:32-06 0 2023-01-23 09:07:47.279083-06 \N +326 327 2 wakagurira2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Danai \N Gurira \N \N \N \N \N \N \N \N 'danai':1,2 'gurira':3,4 \N \N \N \N 334 334 108 1989-03-09 1 0 0 0 0 0 324 0 0.00 1645646208.6938236735.8843025558 2022-02-23 13:56:48-06 2025-02-23 13:54:54-06 0 2023-01-23 09:07:47.279083-06 \N +327 328 2 wakaboseman \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Chadwick \N Boseman \N \N \N \N \N \N \N \N 'boseman':3,4 'chadwick':1,2 \N \N \N \N 335 335 108 1976-11-29 1 0 0 0 0 0 325 0 0.00 1655500661.1208721990.2963892936 2022-02-23 14:00:10-06 2025-02-23 13:57:53-06 0 2023-01-23 09:07:47.279083-06 \N +328 329 2 wakafreeman \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Martin \N Freeman \N \N \N \N \N \N \N \N 'freeman':3,4 'martin':1,2 \N \N \N \N 336 336 108 1978-03-19 1 0 0 0 0 0 326 0 0.00 1645646484.845772256.65745176549 2022-02-23 14:01:24-06 2025-02-23 13:59:42-06 0 2023-01-23 09:07:47.279083-06 \N +329 330 18 wakawright2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Letitia \N Wright \N \N \N \N \N \N \N \N 'letitia':1,2 'wright':3,4 \N \N \N \N 337 337 108 1962-03-02 1 0 0 0 0 0 327 0 0.00 1645646694.82654135749.323921665 2022-02-23 14:04:54-06 2027-02-23 14:02:26-06 0 2023-01-23 09:07:47.279083-06 \N +330 331 18 wakakaluuya \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Daniel \N Kaluuya \N \N \N \N \N \N \N \N 'daniel':1,2 'kaluuya':3,4 \N \N \N \N 338 338 108 1977-09-02 1 0 0 0 0 0 328 0 0.00 1645646872.9480964931.5419119867 2022-02-23 14:07:52-06 2027-02-23 14:05:27-06 0 2023-01-23 09:07:47.279083-06 \N +331 332 17 wakaduke \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Winston \N Duke \N \N \N \N \N \N \N \N 'duke':3,4 'winston':1,2 \N \N \N \N 339 339 108 1955-05-17 1 0 0 0 0 0 329 0 0.00 1645646971.1546323622.1756818577 2022-02-23 14:09:31-06 2024-02-23 14:07:41-06 0 2023-01-23 09:07:47.279083-06 \N +332 333 17 wakabrown \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Sterling K. Brown \N \N \N \N \N \N \N \N 'brown':5,6 'k':3,4 'sterl':1,2 \N \N \N \N 340 340 108 1942-12-02 1 0 0 0 0 0 330 0 0.00 1655501256.69887929.686695934305 2022-02-23 14:10:59-06 2024-02-23 14:09:05-06 0 2023-01-23 09:07:47.279083-06 \N +333 334 19 wakaserkis2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Andy \N Serkis \N \N \N \N \N \N \N \N 'andi':1,2 'serki':3,4 \N \N \N \N 341 341 108 1989-09-09 1 0 0 0 0 0 331 0 0.00 1645647238.4585859687.0937293465 2022-02-23 14:13:58-06 2025-02-23 14:11:48-06 0 2023-01-23 09:07:47.279083-06 \N +334 335 19 wakacarr \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Seth \N Carr \N \N \N \N \N \N \N \N 'carr':3,4 'seth':1,2 \N \N \N \N 342 342 108 1966-06-06 1 0 0 0 0 0 332 0 0.00 1645647329.623249928.5446708048 2022-02-23 14:15:29-06 2025-02-23 14:13:36-06 0 2023-01-23 09:07:47.279083-06 \N +335 336 16 wakakani \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Atwanda \N Kani \N Tamika Kani \N \N \N \N \N \N 'atwanda':1,2 'kani':3,4 \N \N \N \N 343 343 108 2012-02-02 1 0 0 0 0 1 333 0 0.00 1645647606.3069313162.848761119 2022-02-23 14:20:06-06 2023-02-23 14:18:16-06 0 2023-01-23 09:07:47.279083-06 \N +336 337 16 wakatyler \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Ashton \N Tyler \N Jackson Tyler \N \N \N \N \N \N 'ashton':1,2 'tyler':3,4 \N \N \N \N 344 344 108 2015-06-08 1 0 0 0 0 1 334 0 0.00 1645648081.237446340.1775135983 2022-02-23 14:28:01-06 2023-02-23 14:20:22-06 0 2023-01-23 09:07:47.279083-06 \N +337 338 9 wakabassett \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Angela \N Bassett \N \N \N \N \N \N \N \N 'angela':1,2 'bassett':3,4 \N \N \N \N 345 345 113 1971-09-27 1 0 0 0 0 0 335 0 0.00 1645648281.1892343078.2978522213 2022-02-23 14:31:21-06 2025-02-23 14:27:44-06 0 2023-01-23 09:07:47.279083-06 \N +338 339 5 wakaboseman2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N T'Challa \N Boseman \N \N \N \N \N \N \N \N 'boseman':4,5 'challa':2 'tchalla':3 \N \N \N \N 346 346 113 1978-09-09 1 0 0 0 0 0 336 0 0.00 1645648377.40157161277.108504576 2022-02-23 14:32:57-06 2025-02-23 14:31:06-06 0 2023-01-23 09:07:47.279083-06 \N +339 340 2 wakabankole \N 74be16979710d4c4e7c6647856088456 1 1 MO-123490989 \N \N 2 \N \N Isaach \N De Bankolé \N \N \N \N \N \N \N \N 'bankolé':4 'de':3 'debankol':5 'isaach':1,2 \N \N \N \N 347 347 113 1957-09-02 1 0 0 0 0 0 337 0 0.00 1645650740.4939960980.0776098874 2022-02-23 15:12:20-06 2025-02-23 15:10:13-06 0 2023-01-23 09:07:47.279083-06 \N +340 341 2 wakachiume \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Connnie \N Chiume \N \N \N \N \N \N \N \N 'chium':3,4 'connni':1,2 \N \N \N \N 348 348 113 \N 1 0 0 0 0 0 338 0 0.00 1645650833.27073145146.596947003 2022-02-23 15:13:53-06 2025-02-23 15:12:03-06 0 2023-01-23 09:07:47.279083-06 \N +341 342 2 wakasteel \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Dorothy \N Steel \N \N \N \N \N \N \N \N 'dorothi':1,2 'steel':3,4 \N \N \N \N 349 349 113 1979-02-03 1 0 0 0 0 0 339 0 0.00 1645650921.1865696400.0895586479 2022-02-23 15:15:21-06 2025-02-23 15:13:23-06 0 2023-01-23 09:07:47.279083-06 \N +342 343 2 wakasapani \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Danny \N Sapani \N \N \N \N \N \N \N \N 'danni':1,2 'sapani':3,4 \N \N \N \N 350 350 113 2002-02-02 1 0 0 0 0 0 340 0 0.00 1645651008.2635910260.2899323199 2022-02-23 15:16:48-06 2025-02-23 15:14:54-06 0 2023-01-23 09:07:47.279083-06 \N +343 344 2 wakahockings \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Lucy \N Hockings \N \N \N \N \N \N \N \N 'hock':3,4 'luci':1,2 \N \N \N \N 351 351 113 \N 1 0 0 0 0 0 341 0 0.00 1645651112.7546113107.9399620741 2022-02-23 15:18:32-06 2025-02-23 15:16:21-06 0 2023-01-23 09:07:47.279083-06 \N +344 345 9 wakalee \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Stan \N Lee \N \N \N \N \N \N \N \N 'lee':3,4 'stan':1,2 \N \N \N \N 352 352 112 1932-12-25 1 0 0 0 0 0 342 0 0.00 1645651390.66653101235.210102982 2022-02-23 15:23:10-06 2025-02-23 15:21:13-06 0 2023-01-23 09:07:47.279083-06 \N +345 346 5 wakaduke2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N M'Baku \N Duke \N \N \N \N \N \N \N \N 'baku':2 'duke':4,5 'm':1 'mbaku':3 \N \N \N \N 353 353 112 1979-02-10 1 0 0 0 0 0 343 0 0.00 1645651631.2776272744.1530960707 2022-02-23 15:27:11-06 2025-02-23 15:23:58-06 0 2023-01-23 09:07:47.279083-06 \N +346 347 2 wakaross2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Everett K. Ross \N \N \N \N \N \N \N \N 'everett':1,2 'k':3,4 'ross':5,6 \N \N \N \N 354 354 112 1947-02-10 1 0 0 0 0 0 344 0 0.00 1645651882.4059479868.7451182072 2022-02-23 15:31:22-06 2025-02-23 15:29:27-06 0 2023-01-23 09:07:47.279083-06 \N +347 348 2 wakaklaue \N 74be16979710d4c4e7c6647856088456 1 1 MO 0997990 \N \N 2 \N \N Ulysses Klaue \N \N \N \N \N \N \N \N 'klaue':3,4 'ulyss':1,2 \N \N \N \N 355 355 112 1937-09-17 1 0 0 0 0 0 345 0 0.00 1645651974.0251282479.5031197444 2022-02-23 15:32:54-06 2025-02-23 15:31:03-06 0 2023-01-23 09:07:47.279083-06 \N +348 349 2 wakamilaje \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Dora \N Milaje \N \N \N \N \N \N \N \N 'dora':1,2 'milaj':3,4 \N \N \N \N 356 356 112 \N 1 0 0 0 0 0 346 0 0.00 1645652050.7545676205.401020728 2022-02-23 15:34:10-06 2025-02-23 15:32:20-06 0 2023-01-23 09:07:47.279083-06 \N +349 350 2 wakadjalia \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Shuri \N Djalia \N \N \N \N \N \N \N \N 'djalia':3,4 'shuri':1,2 \N \N \N \N 357 357 112 2020-05-01 1 0 0 0 0 1 347 0 0.00 1645652146.2970324036.1804003783 2022-02-23 15:35:46-06 2025-02-23 15:33:50-06 0 2023-01-23 09:07:47.279083-06 \N +350 351 2 wakadoom \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Victor \N Von Doom \N \N \N \N \N \N \N \N 'doom':4 'victor':1,2 'von':3 'vondoom':5 \N \N \N \N 358 358 112 1978-12-12 1 0 0 0 0 0 348 0 0.00 1645652262.3023160176.82110017 2022-02-23 15:37:42-06 2025-02-23 15:35:28-06 0 2023-01-23 09:07:47.279083-06 \N +351 352 9 wakawhitaker2 \N 74be16979710d4c4e7c6647856088456 1 1 MO 123-999-999 \N \N 2 \N \N Forest \N Whitaker \N \N \N \N \N \N \N \N 'forest':1,2 'whitak':3,4 \N \N \N \N 359 359 111 2000-12-12 1 0 0 0 0 0 349 0 0.00 1645652401.9067194613.6440663056 2022-02-23 15:40:01-06 2025-02-23 15:37:58-06 0 2023-01-23 09:07:47.279083-06 \N +352 353 5 wakajackson \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Jeannine \N Jackson \N \N \N \N \N \N \N \N 'jackson':3,4 'jeannin':1,2 \N \N \N \N 360 360 111 1976-02-09 1 0 0 0 0 0 350 0 0.00 1645652503.4697333173.2273030006 2022-02-23 15:41:43-06 2025-02-23 15:39:53-06 0 2023-01-23 09:07:47.279083-06 \N +353 354 2 wakadeclun \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Walter \N Declun \N \N \N \N \N \N \N \N 'declun':3,4 'walter':1,2 \N \N \N \N 361 361 111 2001-09-02 1 0 0 0 0 0 351 0 0.00 1645652712.3738177723.7386175116 2022-02-23 15:45:12-06 2025-02-23 15:43:20-06 0 2023-01-23 09:07:47.279083-06 \N +354 355 2 wakanamor \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Namor \N Submariner \N \N \N \N \N \N \N \N 'namor':1,2 'submarin':3,4 \N \N \N \N 362 362 111 \N 1 0 0 0 0 0 352 0 0.00 1645652820.88568143574.786422053 2022-02-23 15:47:00-06 2025-02-23 15:44:41-06 0 2023-01-23 09:07:47.279083-06 \N +355 356 2 wakaazzarison \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N S'yan \N Azzarison \N \N \N \N \N \N \N \N 'azzarison':4,5 'syan':3 'yan':2 \N \N \N \N 363 363 111 2010-01-29 1 0 0 0 0 1 353 0 0.00 1645652904.0934712405.4451245019 2022-02-23 15:48:24-06 2025-02-23 15:46:42-06 0 2023-01-23 09:07:47.279083-06 \N +356 357 2 wakarichards \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Reed \N Richards \N \N \N \N \N \N \N \N 'reed':1,2 'richard':3,4 \N \N \N \N 364 364 111 1967-01-10 1 0 0 0 0 0 354 0 0.00 1645653043.4660586146.2258202914 2022-02-23 15:50:43-06 2025-02-23 15:47:59-06 0 2023-01-23 09:07:47.279083-06 \N +357 358 2 wakagrimm \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Ben \N Grimm \N \N \N \N \N \N \N \N 'ben':1,2 'grimm':3,4 \N \N \N \N 365 365 111 1988-09-09 1 0 0 0 0 0 355 0 0.00 1645653115.132279887.699885869 2022-02-23 15:51:55-06 2025-02-23 15:50:10-06 0 2023-01-23 09:07:47.279083-06 \N +358 359 9 wakamunroe \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Ororo \N Munroe \N \N \N \N \N \N \N \N 'munro':3,4 'ororo':1,2 \N \N \N \N 366 366 110 1977-09-12 1 0 0 0 0 0 356 0 0.00 1645653254.16015159579.927624863 2022-02-23 15:54:14-06 2025-02-23 15:52:55-06 0 2023-01-23 09:07:47.279083-06 \N +359 360 5 wakahyde \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Sally \N Hyde \N \N \N \N \N \N \N \N 'hyde':3,4 'salli':1,2 \N \N \N \N 367 367 110 \N 1 0 0 0 0 0 357 0 0.00 1645653337.4941897967.6858937325 2022-02-23 15:55:37-06 2025-02-23 15:53:46-06 0 2023-01-23 09:07:47.279083-06 \N +360 361 2 wakarichards2 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Susan \N Richards \N \N \N Sue \N \N \N \N 'richard':3,4 'sue':5,6 'susan':1,2 \N \N \N \N 368 368 110 1966-02-09 1 0 0 0 0 0 358 0 0.00 1645653514.6412238106.6761798288 2022-02-23 15:58:34-06 2025-02-23 15:56:43-06 0 2023-01-23 09:07:47.279083-06 \N +361 362 2 wakarichards3 \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Johnny \N Richards \N Sue Richards \N \N \N \N \N \N 'johnni':1,2 'richard':3,4 \N \N \N \N 369 369 110 2020-01-09 1 0 0 0 0 1 359 0 0.00 1645653623.8699769757.8140247906 2022-02-23 16:00:23-06 2025-02-23 15:58:23-06 0 2023-01-23 09:07:47.279083-06 \N +362 363 2 wakalaroquette \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Samuel \N LaRoquette \N \N \N \N \N \N \N \N 'laroquett':3,4 'samuel':1,2 \N \N \N \N 370 370 110 1979-02-02 1 0 0 0 0 0 360 0 0.00 1645653825.16224144694.120041756 2022-02-23 16:03:45-06 2025-02-23 16:02:04-06 0 2023-01-23 09:07:47.279083-06 \N +363 364 2 wakabanner \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Bruce \N Banner \N \N \N \N \N \N \N hulk 'banner':3,4 'bruce':1,2 'hulk':5 \N \N \N \N 371 371 110 1964-02-19 1 0 0 0 0 0 361 0 0.00 1655499877.54119117370.403899298 2022-02-23 16:04:57-06 2025-02-23 16:03:16-06 0 2023-01-23 09:07:47.279083-06 \N +364 365 2 wakafrost \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Emma \N Frost \N \N \N \N \N \N \N \N 'emma':1,2 'frost':3,4 \N \N \N \N 372 372 110 1975-09-09 1 0 0 0 0 0 362 0 0.00 1645653979.38908101249.596546554 2022-02-23 16:06:19-06 2025-02-23 16:04:12-06 0 2023-01-23 09:07:47.279083-06 \N +365 366 9 wakastorm \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Susan \N Storm \N \N \N \N \N \N \N \N 'storm':3,4 'susan':1,2 \N \N \N \N 373 373 109 1988-09-02 1 0 0 0 0 0 363 0 0.00 1645654062.96501163751.158543986 2022-02-23 16:07:42-06 2025-02-23 16:05:54-06 0 2023-01-23 09:07:47.279083-06 \N +366 367 17 shiretook \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Belladonna \N Took \N \N \N \N \N \N \N \N 'belladonna':1,2 'took':3,4 \N \N \N \N 374 374 7 1923-09-12 1 0 0 0 0 0 364 0 0.00 1645712189.5960585308.6523316419 2022-02-24 08:16:29-06 2024-02-24 08:13:44-06 0 2023-01-23 09:07:47.279083-06 \N +367 368 18 shireoakenshield \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Thorin \N Oakenshield \N \N \N \N \N \N \N \N 'oakenshield':3,4 'thorin':1,2 \N \N \N \N 375 375 7 1975-09-12 1 0 0 0 0 0 365 0 0.00 1645712287.0315156474.65544327 2022-02-24 08:18:07-06 2027-02-24 08:16:01-06 0 2023-01-23 09:07:47.279083-06 \N +368 369 16 shireking 74be16979710d4c4e7c6647856088456 1 3 Student ID 7899867 \N \N 1 \N \N Elrond \N King \N Elder King \N \N \N \N \N \N 'elrond':1,2 'king':3,4 \N \N \N \N 376 376 7 2018-07-07 1 0 0 0 0 1 366 0 0.00 1645712433.2880615065.0527643663 2022-02-24 08:20:33-06 2023-02-24 08:18:18-06 0 2023-01-23 09:07:47.279083-06 \N +369 370 19 shiretrollshaws \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Thomas \N Trollshaws \N \N \N Tom \N \N \N \N 'thoma':1,2 'tom':5,6 'trollshaw':3,4 \N \N \N \N 377 377 7 \N 1 0 0 0 0 0 367 0 0.00 1645712526.7839774794.0633611432 2022-02-24 08:22:06-06 2025-02-24 08:20:12-06 0 2023-01-23 09:07:47.279083-06 \N +370 371 17 shirebowman \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Bard \N Bowman \N \N \N \N \N \N \N \N 'bard':1,2 'bowman':3,4 \N \N \N \N 378 378 9 1937-09-02 1 0 0 0 0 0 368 0 0.00 1655500758.3728784526.2746359991 2022-02-24 08:54:07-06 2024-02-24 08:52:01-06 0 2023-01-23 09:07:47.279083-06 \N +371 372 16 shirebear \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Beorn \N Bear \N \N \N \N \N \N \N \N 'bear':3,4 'beorn':1,2 \N \N \N \N 379 379 9 2019-03-09 1 0 0 0 0 1 369 0 0.00 1655500128.5367585996.3885537252 2022-02-24 08:55:53-06 2023-02-24 08:53:38-06 0 2023-01-23 09:07:47.279083-06 \N +372 373 19 shirehuggins \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N William \N Huggins \N \N \N Bill \N \N \N \N 'bill':5,6 'huggin':3,4 'william':1,2 \N \N \N \N 380 380 9 1967-07-07 1 0 0 0 0 0 370 0 0.00 1645714652.9595916975.7012083712 2022-02-24 08:57:32-06 2025-02-24 08:55:29-06 0 2023-01-23 09:07:47.279083-06 \N +373 374 18 rohangamgee \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 2 \N \N Samuel Patrick Gamgee \N \N \N Sam \N \N \N \N 'gamge':5,6 'patrick':3,4 'sam':7,8 'samuel':1,2 \N 555-864-3642 \N \N 381 381 4 1976-07-25 1 0 0 0 0 0 371 0 0.00 1645715043.0589920705.1128562011 2022-02-24 09:04:03-06 2027-02-24 09:01:48-06 0 2023-01-23 09:07:47.279083-06 \N +374 375 16 rohanbrandybuck \N 74be16979710d4c4e7c6647856088456 1 3 Student ID Card \N \N 1 \N \N Merriweather \N Brandybuck \N \N \N Merry \N \N \N \N 'brandybuck':3,4 'merri':5,6 'merriweath':1,2 \N \N \N \N 382 382 4 2012-05-05 1 0 0 0 0 1 372 0 0.00 1655500916.3225721990.0109456041 2022-02-24 09:06:00-06 2023-02-24 09:04:05-06 0 2023-01-23 09:07:47.279083-06 \N +375 376 16 rohanlorien \N 74be16979710d4c4e7c6647856088456 1 3 Student ID Card \N \N 1 \N \N Haldir \N Lorien \N \N \N \N \N \N \N \N 'haldir':1,2 'lorien':3,4 \N \N \N \N 383 383 4 2019-03-30 1 0 0 0 0 1 373 0 0.00 1645715249.97254148260.554478024 2022-02-24 09:07:29-06 2023-02-24 09:05:24-06 0 2023-01-23 09:07:47.279083-06 \N +376 377 17 rohansackville \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Lobelia \N Sackville-Baggins \N \N \N \N \N \N \N \N 'baggin':5 'lobelia':1,2 'sackvill':4 'sackville-baggin':3 'sackvillebaggin':6 \N \N \N \N 384 384 8 1942-09-17 1 0 0 0 0 0 374 0 0.00 1645715762.7989480075.1170909716 2022-02-24 09:16:02-06 2024-02-24 09:14:06-06 0 2023-01-23 09:07:47.279083-06 \N +377 378 19 rohangoatleaf \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 3 \N \N Harold \N Goatleaf \N \N \N Harry \N \N \N \N 'goatleaf':3,4 'harold':1,2 'harri':5,6 \N \N \N \N 385 385 4 1976-09-05 1 0 0 0 0 0 375 0 0.00 1645715857.5130236698.6146866558 2022-02-24 09:17:37-06 2025-02-24 09:15:39-06 0 2023-01-23 09:07:47.279083-06 \N +378 379 18 rohanproudfoot \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Everard \N Proudfoot \N \N \N \N \N \N \N \N 'everard':1,2 'proudfoot':3,4 \N \N \N \N 386 386 8 1990-08-08 1 0 0 0 0 0 376 0 0.00 1645715958.0690824022.1219043994 2022-02-24 09:19:18-06 2027-02-24 09:17:17-06 0 2023-01-23 09:07:47.279083-06 \N +379 380 19 rohandreary \N 74be16979710d4c4e7c6647856088456 1 3 \N \N 3 \N \N Albert \N Dreary \N \N \N \N \N \N \N \N 'albert':1,2 'dreari':3,4 \N \N \N \N 387 387 8 2001-01-19 1 0 0 0 0 0 377 0 0.00 1645716084.29063159684.192195187 2022-02-24 09:21:24-06 2025-02-24 09:19:30-06 0 2023-01-23 09:07:47.279083-06 \N +380 381 18 rohantook \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Pippin \N Took \N \N \N \N \N \N \N \N 'pippin':1,2 'took':3,4 \N \N \N \N 388 388 5 2005-12-12 1 0 0 0 0 1 378 0 0.00 1645716201.70466156334.591733394 2022-02-24 09:23:21-06 2027-02-24 09:20:55-06 0 2023-01-23 09:07:47.279083-06 \N +381 382 16 rohancotton \N 74be16979710d4c4e7c6647856088456 1 3 Student ID \N \N 1 \N \N Rosemary \N Cotton \N \N \N Rosie \N \N \N \N 'cotton':3,4 'rosemari':1,2 'rosi':5,6 \N \N \N \N 389 389 5 2017-09-07 1 0 0 0 0 1 379 0 0.00 1645716352.1576791225.9440611501 2022-02-24 09:24:49-06 2023-02-24 09:23:06-06 0 2023-01-23 09:07:47.279083-06 \N +382 383 17 rohangardner \N 74be16979710d4c4e7c6647856088456 1 3 \N \N \N 1 \N \N Elanor \N Gardner \N \N \N \N \N \N \N \N 'elanor':1,2 'gardner':3,4 \N \N \N \N 390 390 5 1945-04-05 1 0 0 0 0 0 380 0 0.00 1645716430.4717897641.3961493353 2022-02-24 09:27:10-06 2024-02-24 09:25:18-06 0 2023-01-23 09:07:47.279083-06 \N \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.workstation.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.workstation.sql index 114f147aa7..ef0570f63a 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.workstation.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/actor.workstation.sql @@ -1,28 +1,28 @@ COPY actor.workstation (id, name, owning_lib) FROM stdin; -1 BR1-skiddoo 4 -2 BR1-rfrasur_isl 4 -3 CONS-lfloyd 1 -4 BR1-lfloyd 4 -5 CONS-rogan-laptop 1 -6 CONS-roganlaptop 1 -7 BR1-terran 4 -8 HHPL-terran 105 -9 CONS-CS 1 -10 WAKA-MAIN-lfloyd 108 -11 CONS-rfrasur 1 -12 BR1-JP-SITKA 4 -13 BR1-chrisy 4 -14 BR2-CS 5 -15 BR3-CS 6 -16 HHPL-HHPL-sitka 106 -17 RPLS-WEPL-tiffany 4 -18 HHPL-HHPL-rfrasur 106 -19 HHPL-HHPL-skiddoo 106 -20 WAKA-MAIN-cwmars - jamundson 108 -21 SMALL-SMALL-cwmars-jamundson 114 -22 LPLS-terran 101 -23 HHPL-HHPL-terran 106 -24 SMALL-SMALL-terran 114 +1 RPLS-WEPL-1 4 +2 RPLS-WEPL-2 4 +3 CONS-3 1 +4 RPLS-WEPL-4 4 +5 CONS-5 1 +6 CONS-6 1 +7 RPLS-WEPL-7 4 +8 HHPL-8 105 +9 CONS-9 1 +10 WAKA-MAIN-10 108 +11 CONS-11 1 +12 RPLS-WEPL-12 4 +13 RPLS-WEPL-13 4 +14 RPLS-HDPL-14 5 +15 SPLS-HPL-15 6 +16 HHPL-HHPL-16 106 +17 RPLS-WEPL-17 4 +18 HHPL-HHPL-18 106 +19 HHPL-HHPL-19 106 +20 WAKA-MAIN-20 108 +21 SMALL-SMALL-21 114 +22 LPLS-22 101 +23 HHPL-HHPL-23 106 +24 SMALL-SMALL-24 114 \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.call_number.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.call_number.sql index c022fe3d72..27425ac6a5 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.call_number.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.call_number.sql @@ -1,39 +1,39 @@ COPY asset.call_number (id, creator, create_date, editor, edit_date, record, owning_lib, label, deleted, prefix, suffix, label_class, label_sortkey) FROM stdin; -1 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 76 2 ##URI## 0 -1 -1 1 URI -2 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 77 2 ##URI## 0 -1 -1 1 URI -3 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 78 2 ##URI## 0 -1 -1 1 URI -4 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 79 2 ##URI## 0 -1 -1 1 URI +1 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 76 2 ##URI## 1 -1 -1 1 URI +2 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 77 2 ##URI## 1 -1 -1 1 URI +3 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 78 2 ##URI## 1 -1 -1 1 URI +4 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 79 2 ##URI## 1 -1 -1 1 URI 5 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 80 2 ##URI## 1 -1 -1 1 URI 6 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 81 2 ##URI## 1 -1 -1 1 URI -7 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 82 2 ##URI## 0 -1 -1 1 URI -8 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 83 2 ##URI## 0 -1 -1 1 URI -9 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 84 2 ##URI## 0 -1 -1 1 URI -10 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 85 2 ##URI## 0 -1 -1 1 URI -11 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 86 2 ##URI## 0 -1 -1 1 URI -12 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 87 2 ##URI## 0 -1 -1 1 URI -13 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 88 2 ##URI## 0 -1 -1 1 URI -14 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 89 2 ##URI## 0 -1 -1 1 URI -15 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 90 2 ##URI## 0 -1 -1 1 URI -16 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 91 6 ##URI## 0 -1 -1 1 URI -17 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 91 2 ##URI## 0 -1 -1 1 URI -18 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 92 6 ##URI## 0 -1 -1 1 URI -19 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 92 2 ##URI## 0 -1 -1 1 URI -20 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 93 6 ##URI## 0 -1 -1 1 URI -21 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 93 2 ##URI## 0 -1 -1 1 URI -22 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 94 6 ##URI## 0 -1 -1 1 URI -23 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 94 2 ##URI## 0 -1 -1 1 URI -24 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 95 6 ##URI## 0 -1 -1 1 URI -25 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 95 2 ##URI## 0 -1 -1 1 URI -26 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 96 6 ##URI## 0 -1 -1 1 URI -27 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 96 2 ##URI## 0 -1 -1 1 URI -28 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 97 6 ##URI## 0 -1 -1 1 URI -29 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 97 2 ##URI## 0 -1 -1 1 URI -30 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 98 6 ##URI## 0 -1 -1 1 URI -31 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 98 2 ##URI## 0 -1 -1 1 URI -32 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 99 6 ##URI## 0 -1 -1 1 URI -33 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 99 2 ##URI## 0 -1 -1 1 URI -34 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 100 6 ##URI## 0 -1 -1 1 URI -35 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 100 2 ##URI## 0 -1 -1 1 URI +7 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 82 2 ##URI## 1 -1 -1 1 URI +8 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 83 2 ##URI## 1 -1 -1 1 URI +9 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 84 2 ##URI## 1 -1 -1 1 URI +10 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 85 2 ##URI## 1 -1 -1 1 URI +11 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 86 2 ##URI## 1 -1 -1 1 URI +12 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 87 2 ##URI## 1 -1 -1 1 URI +13 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 88 2 ##URI## 1 -1 -1 1 URI +14 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 89 2 ##URI## 1 -1 -1 1 URI +15 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 90 2 ##URI## 1 -1 -1 1 URI +16 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 91 6 ##URI## 1 -1 -1 1 URI +17 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 91 2 ##URI## 1 -1 -1 1 URI +18 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 92 6 ##URI## 1 -1 -1 1 URI +19 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 92 2 ##URI## 1 -1 -1 1 URI +20 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 93 6 ##URI## 1 -1 -1 1 URI +21 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 93 2 ##URI## 1 -1 -1 1 URI +22 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 94 6 ##URI## 1 -1 -1 1 URI +23 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 94 2 ##URI## 1 -1 -1 1 URI +24 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 95 6 ##URI## 1 -1 -1 1 URI +25 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 95 2 ##URI## 1 -1 -1 1 URI +26 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 96 6 ##URI## 1 -1 -1 1 URI +27 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 96 2 ##URI## 1 -1 -1 1 URI +28 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 97 6 ##URI## 1 -1 -1 1 URI +29 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 97 2 ##URI## 1 -1 -1 1 URI +30 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 98 6 ##URI## 1 -1 -1 1 URI +31 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 98 2 ##URI## 1 -1 -1 1 URI +32 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 99 6 ##URI## 1 -1 -1 1 URI +33 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 99 2 ##URI## 1 -1 -1 1 URI +34 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 100 6 ##URI## 1 -1 -1 1 URI +35 1 2020-10-27 09:26:51.426709-05 1 2023-01-23 09:07:47.279083-06 100 2 ##URI## 1 -1 -1 1 URI 36 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 1 4 ML 2533 B34 C1 0 -1 -1 3 ML2533 B34 C1 37 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 2 4 ML 2533 B34 C2 0 -1 -1 3 ML2533 B34 C2 38 1 2020-10-27 09:26:51.426709-05 1 2020-10-27 09:26:51.426709-05 3 4 ML 2533 B34 C3 0 -1 -1 3 ML2533 B34 C3 @@ -1768,8 +1768,8 @@ COPY asset.call_number (id, creator, create_date, editor, edit_date, record, own 1758 1 2021-08-05 12:30:16.606942-05 1 2021-08-05 12:30:16.606942-05 240 1 ##URI## 0 -1 -1 1 URI 1759 1 2021-08-05 12:30:16.606942-05 1 2021-08-05 12:30:16.606942-05 239 1 ##URI## 0 -1 -1 1 URI 1760 1 2021-08-05 12:30:16.322365-05 1 2021-08-05 12:30:16.322365-05 238 1 ##URI## 0 -1 -1 1 URI -1761 1 2021-08-05 12:30:16.322365-05 1 2021-08-05 12:30:16.322365-05 81 2 ##URI## 0 -1 -1 1 URI -1762 1 2021-08-05 12:30:16.322365-05 1 2021-08-05 12:30:16.322365-05 80 2 ##URI## 0 -1 -1 1 URI +1761 1 2021-08-05 12:30:16.322365-05 1 2023-01-23 09:07:47.279083-06 81 2 ##URI## 1 -1 -1 1 URI +1762 1 2021-08-05 12:30:16.322365-05 1 2023-01-23 09:07:47.279083-06 80 2 ##URI## 1 -1 -1 1 URI 1763 1 2022-01-26 09:48:56.510968-06 1 2022-01-26 09:48:56.510968-06 269 4 Periodicals v.97 no.1 (2022 Jan. 3) 0 -1 -1 1 PERIODICALS V.97 NO.1 2022 JAN. 3 1764 1 2022-01-26 11:09:00.752845-06 1 2022-01-26 11:09:00.752845-06 267 4 2022 Jan. 01 0 -1 -1 1 2022 JAN. 01 1765 1 2022-01-26 12:03:01.237333-06 1 2022-01-26 12:03:01.237333-06 271 5 2022 Jan.17/24 0 -1 -1 1 2022 JAN.17 24 diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.copy.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.copy.sql index 8a20874177..fb2b9fbd22 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.copy.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.copy.sql @@ -4825,12 +4825,6 @@ COPY asset.copy (id, circ_lib, creator, call_number, editor, create_date, edit_d 4797 6 1 1754 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 \N 0 1 1 1 \N 1 0 0 1 0.00 4.99 EQUIP1754 \N \N \N \N \N 1 0 \N \N 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 \N 4798 9 1 1755 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 \N 0 1 1 1 \N 1 0 0 1 0.00 10.99 TECH1755 \N \N \N \N \N 1 0 \N \N 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 \N 4799 9 1 1756 1 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 \N 0 1 1 1 \N 1 0 0 1 0.00 10.99 TECH1756 \N \N \N \N \N 1 0 \N \N 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 \N -4800 4 1 1763 1 2022-01-26 09:48:56-06 2022-01-26 09:48:56-06 \N 0 132 2 2 \N 1 0 0 1 0.00 \N BR123456 serial \N \N \N \N 1 0 \N \N 2022-01-26 09:48:56-06 2022-01-26 09:48:56-06 1 \N -4801 4 1 1764 1 2022-01-26 11:09:00-06 2022-01-26 11:09:00-06 \N 0 136 2 2 \N 0 0 0 0 0.00 \N BR123457 serial \N \N \N \N 1 0 \N \N 2022-01-26 11:09:00-06 2022-01-26 11:09:00-06 1 \N -4802 5 1 1765 1 2022-01-26 12:03:01-06 2022-01-26 12:03:01-06 \N 0 134 2 2 \N 1 0 0 1 0.00 \N BR2123456 serial \N \N \N \N 1 0 \N \N 2022-01-26 12:03:01-06 2022-01-26 12:03:01-06 1 \N -4803 5 1 1766 1 2022-01-26 12:56:45-06 2022-01-26 12:56:45-06 \N 0 125 2 2 \N 0 0 1 0 0.00 \N BR2123457 reference \N \N \N \N 1 0 \N \N 2022-01-26 12:56:45-06 2022-01-26 12:56:45-06 1 \N -4804 5 1 1767 1 2022-01-26 12:57:51-06 2022-01-26 12:57:51-06 \N 0 134 2 2 \N 1 0 0 1 0.00 \N BR2123458 serial \N \N \N \N 1 0 \N \N 2022-01-26 12:57:51-06 2022-01-26 12:57:51-06 1 \N -4805 6 1 1768 1 2022-01-26 14:37:47-06 2022-01-26 14:37:47-06 \N 0 133 2 2 \N 1 0 0 1 0.00 \N BR3123456 serial \N \N \N \N 1 0 \N \N 2022-01-26 14:37:47-06 2022-01-26 14:37:47-06 1 \N 4806 103 1 1769 1 2022-06-17 10:45:51-05 2022-06-17 10:49:31.453287-05 \N 9 158 2 2 \N 1 0 0 1 0.00 20.99 ACQ5 \N \N \N \N \N 1 0 \N \N 2022-06-17 10:45:51-05 \N 1 20.99 4807 103 1 1770 1 2022-06-17 10:45:51.72198-05 2022-06-17 10:45:51.72198-05 \N 9 158 2 2 \N 1 0 0 1 0.00 19.99 ACQ20 \N \N \N \N \N 1 0 \N \N 2022-06-17 10:45:51.72198-05 \N 1 \N 4808 103 1 1771 1 2022-06-17 10:45:51-05 2022-06-17 10:49:31.453287-05 \N 5 158 2 2 \N 1 0 0 1 0.00 19.99 ACQ7 \N \N \N \N \N 1 0 \N \N 2022-06-17 10:47:52-05 \N 1 16.32 diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri.sql index 6f8f346fe3..b05792624f 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri.sql @@ -1,9 +1,14 @@ COPY asset.uri (id, href, label, use_restriction, active) FROM stdin; -1 http://example.com/ Link text here Public note here 1 8 http://example.com/ebookapi/t/001 Click to access online \N 1 9 http://example.com/ebookapi/t/002 Click to access online \N 1 10 http://example.com/ebookapi/t/003 Click to access online \N 1 11 http://example.com/ebookapi/t/004 Click to access online \N 1 +12 http://ezproxy.uwindsor.ca/login?url=http://books.scholarsportal.info/viewdoc.html?id=/ebooks/ebooks2/springer/2011-04-14/2/3540095144 Available Online \N 1 +13 http://ezproxy.uwindsor.ca/login?url=http://dx.doi.org/10.1007/BFb0070997 Available Online \N 1 +14 http://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/4-431-28775-2 http://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/4-431-28775-2 Available online from SpringerLink 1 +15 http://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9784431287759 http://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9784431287759 Available online from ScholarsPortal 1 +16 http://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/3-540-46145-0 http://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/3-540-46145-0 Available online from SpringerLink 1 +17 http://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9783540461456 http://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9783540461456 Available online from Scholars Portal 1 \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri_call_number_map.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri_call_number_map.sql index 3267c93852..99cd241a8b 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri_call_number_map.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/asset.uri_call_number_map.sql @@ -1,43 +1,8 @@ COPY asset.uri_call_number_map (id, uri, call_number) FROM stdin; -1 1 1 -2 1 2 -3 1 3 -4 1 4 -7 1 7 -8 1 8 -9 1 9 -10 1 10 -11 1 11 -12 1 12 -13 1 13 -14 1 14 -15 1 15 -16 1 16 -17 1 17 -18 1 18 -19 1 19 -20 1 20 -21 1 21 -22 1 22 -23 1 23 -24 1 24 -25 1 25 -26 1 26 -27 1 27 -28 1 28 -29 1 29 -30 1 30 -31 1 31 -32 1 32 -33 1 33 -34 1 34 -35 1 35 40 11 1757 41 10 1758 42 9 1759 43 8 1760 -44 1 1761 -45 1 1762 \. \echo sequence update column: id diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/biblio.record_entry.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/biblio.record_entry.sql index 11f14254f2..b2f9e3f220 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/biblio.record_entry.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/biblio.record_entry.sql @@ -10,7 +10,7 @@ COPY biblio.record_entry (id, creator, editor, source, quality, create_date, edi 9 1 1 \N 12 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:criticalentertainments Author:rosen PartName: PartNumber: AUTOGEN 9 01343nam a2200181 a 45009CONS20020209140320.0000523s2000 mau 000 eng dML 60 R7848 2000Rosen, Charles,1927-Critical entertainments :music old and new /Charles RosenCambridge, MA :Harvard University Press,2000328 pPerformance and musicology / The aesthetics of stage fright -- The discipline of philology: oliver strunk -- The eighteenth century / Keyboard music of bach and handel -- The rediscovering of haydn -- Describing mozart -- Beaumarchais: inventor of morden opera - Radical, conventional mozart -- Beethoven's career -- Brahms/ Brahms: influence, plagiarism, and inspiration -- Brahms the subversive -- Brahms: classicism and the inspiration of Awkardness -- Musical studies: contrasting views / The benefits of authenticity -- Dictionaries: the old harvard -- Dictionaries: the new grove's -- The new musicology -- The crisis of the modern / Schoenberg: the possibilities of disquiet -- The performance of contemporary music: carter's double concerto -- The irrelevance of serious musicMusicHistory and criticism9AUTOGEN9biblio IMPORT CONCERTO \N \N \N \N 10 1 1 \N 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 1 Title:pianoconcertoindflat1936sonatina1959toccata1932 Author:khachaturian PartName: PartNumber: AUTOGEN 10 00805njm a2200241 a 450010CONS20000621095430.0000621s1997 enkuuu eng d5221Khachaturian, Aram,1903-1978Piano concerto in D flat (1936) ; Sonatina (1959) ; Toccata (1932)London :ASV,19971 sound disc :digital, stereoCOMPACT DISC(S)Alberto Portugheis, piano ; London Symphony Orchestra ; Loris Tjeknavorian, conductorConcertos (Piano)Piano musicPortguheis, AlbertoTjeknavorian, LorisLondon Symphony Orchestra10AUTOGEN10biblio IMPORT CONCERTO \N \N \N \N 11 1 1 \N 38 2020-10-27 09:26:51-05 2020-10-27 09:26:51-05 1 0 Title:compositionstudentrecitalapril62000huntingtonuniversitycompositionstudentsofdanielbedard Author:huntington PartName: PartNumber: AUTOGEN 11 02724njm a2200529 a 450011CONS20020514155446.0000919s2000 oncuuu eng d5237Composition student recital, April 6, 2000, Huntington University / composition students of Daniel BédardSudbury, Ont. :Huntington University,20001 sound disc :digital, stereoCOMPACT DISC(S)Student composers' concertSelections recorded live at the Social Centre, Huntington University, Sudbury, Ontario, on April 6, 2000.Off the top of my head / Joyce Van Eyk -- Monophonic for solo French horn / Bryan Lautenbach (Laura Heino, horn) -- Katabasis / Mitch Ross -- Working man's concerto : for guitar and track / Andy Burns (Andy Burns, guitar) -- Woven flute voices / Joyce Van Eyk (Shannon Coyle, soprano ; Nancy Thurson, flute) -- Three impromptus / Chris Dixon [Dickson] (Desmond Maley, piano) -- Are you speaking? / Bryan Lautenbach -- 4600 : for fiddle and track / Sylvie Julien (Don Reed, violin) -- Wandering jazz night / Joyce Van Eyk (Sarah Toop, clarinet) -- Examine how they change : for sax and track / Mitch Ross (Mike McArthur, sax) -- Oohs / Sylvie Julien -- Eluding perception : for trumpets (3) and track / Bryan Lautenbach (Catherine Burns, Stefan Laakso, Tracy Finucane, trumpets) -- Fascinating / Mitch RossSaxophone and electronic musicTrumpets (3) and electronic musicPiano musicViolin and electronic musicHorn musicClarinet with electronics.Songs (High voice) with fluteVan Eyk, Joyce.Woven flute voicesVan Eyk, Joyce.Off the top of my headLautenbach, Bryan.Monophonic,hornLautenbach, Bryan.Eluding perceptionLautenbach, Bryan.Are you speaking?Ross, Mitchell.Examine how they changeBurns, Andy.Working man's concertoDickson, Christopher.Impromptus (3),pianoRoss, Mitchell.FascinatingRoss, Mitchell.KatabasisJulien, Sylvie.4600Heino, Laura.prf.(CONS)14Coyle, Shannon.prf.Thurston, Nancy.prf.Reed, Don.prf.Toop, Sarah,prf.McArthur, Michael.prf.Maley, Desmond,1954-prf.Burns, Catherine.prf.Laakso, Stefan.prf.Finucane, Tracy.prf.Bédard, Daniel,1957-11AUTOGEN11biblio 1657101665.9651228073.2689653593 \N \N \N \N -12 1 1 \N 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:pianoconcertoincmajorop39 Author:busoni PartName: PartNumber: AUTOGEN 12 00817njm a2200241 a 450012CONS20020521145858.0000922s1999 enkuuu eng d5238Busoni, Ferruccio,1866-1924Piano concerto in C major, op. 39London :Hyperion,1999\\1 sound disc :digital, stereoCOMPACT DISC(S)The Romantic Piano Concerto ;# 22Marc-André Hamelin, piano ; City of Birmingham Symphony Orchestra ; Mark Elder, conductorConcertos (Piano)Hamelin, Marc-André,1961-Elder, MarkCity of Birmingham Symphony Orchestra12AUTOGEN12biblio IMPORT CONCERTO \N \N \N \N +12 1 1 \N 13 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:pianoconcertoincmajorop39 Author:busoni PartName: PartNumber: AUTOGEN 12 00817njm a2200241 a 450012CONS20020521145858.0000922s1999 enkuuu eng d5238Busoni, Ferruccio,1866-1924Piano concerto in C major, op. 39London :Hyperion,1999\\\\1 sound disc :digital, stereoCOMPACT DISC(S)The Romantic Piano Concerto ;# 22Marc-André Hamelin, piano ; City of Birmingham Symphony Orchestra ; Mark Elder, conductorConcertos (Piano)Hamelin, Marc-André,1961-Elder, MarkCity of Birmingham Symphony Orchestra12AUTOGEN12biblio IMPORT CONCERTO \N \N \N \N 13 1 1 \N 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:concertos Author:brahms PartName: PartNumber:op102aminor AUTOGEN 13 01086njm a2200277 a 450013CONS20030124135156.0971014n nyuuuu eng 4523Brahms, Johannes,1833-1897.Concertos,violin, violoncello,op. 102,A minorDouble concerto in A minor, op. 102 ; Variations on a theme by Haydn, op. 56a ; Tragic overture, op. 81New York, NY :Columbia [Records].1 sound disc :33 1/3 rpm, mono.PHONO RECORDIsaac Stern, violin ; Leonard Rose, violoncello ; Philharmonic-Symphony of New York ; Bruno Walter, conductor.Concertos (Violin and violoncello)Stern, Isaac,1920-2001.Rose, Leonard,1918-1984Walter, Bruno,1876-1962New York PhilharmonicTragische OuvertüreVariationen über ein Thema von Haydn, op. 56a13AUTOGEN13biblio IMPORT CONCERTO \N \N \N \N 14 1 1 \N 20 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:concertos Author:rouse PartName: PartNumber:1991 AUTOGEN 14 01088njm a2200301 a 450014CONS19971015135024.0971015s1996 sweuuu eng 4532Rouse, Christopher,1949-author: movement # 1Concertos,trombone(1991)Trombone concerto (1991) subject: americanDjursholm :Bis,19961 sound disc :digital, stereo.COMPACT DISC(S)American Trombone Concertos ;2Trombone concerto / Rouse -- Trombone concerto / Chávez -- Meditation / Thomas.Christian Lindberg, trombone ; BBC National Orchestra of Wales ; Grant Llewellyn, conductor.American -concertoWorking title: being and nothingnessChávez, Carlos,1899-1978Thomas, Augusta Read,1964-Lindberg, ChristianLlewellyn, GrantBBC National Orchestra of WalesMeditation,trombone, orchestraConcertos,trombone(1976-77)14AUTOGEN14biblio IMPORT CONCERTO \N \N \N \N 15 1 1 \N 16 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:concertos Author:bartok PartName: PartNumber:no21938 AUTOGEN 15 00990njm a2200277 a 450015CONS19991211181244.0971015s1966 enkuuu eng 4537Bartók, Béla,1881-1945.Concertos,violin,no. 2,(1938)Violin concerto no. 2 ; Six duos (from 44 Duos)London :Angel,19661 sound disc :33 1/3 rpm, stereo.PHONO RECORDYehudi Menuhin, violin ; Nell Gotkovsky, violin (for Duos only) ; New Philharmonia Orchestra ; Antal Dorati, conductor.Concertos (Violin)Violin music (Violins (2))Menuhin, Yehudi,1916-1999.Gotkovsky, NellDorati, Antal,1906-1988.New Philharmonia OrchestraDuos (44),violins (2). Selections15AUTOGEN15biblio IMPORT CONCERTO \N \N \N \N @@ -210,7 +210,7 @@ COPY biblio.record_entry (id, creator, editor, source, quality, create_date, edi 209 1 1 \N 57 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:laozishuoizhizhedediyu Author:cai PartName: PartNumber: AUTOGEN 209 02145cam a2200505Ia 4500209CONS20061016090635.0060622s2005 cc a 000 0 chi d7801885120 :$7.35(MAnMC)964180(OCoLC)70159732BKLBKLBKLACTRANOGchiengNOGA$1880-01Cai, Zhizhong,1948-880-02Laozi shuo I : Zhi zhe de di yu =the Dao speaks I : the whispers of wisdom /Cai Zhizhong zhu ; Brian Bruya yi.880-03Zhi zhe de di yuDao speaks IWhispers of wisdom880-04Di 1 ban.880-05Beijing Shi :Xian dai chu ban she,2005.4, 93 p. :chiefly ill. ;21 cm.880-06Cai Zhizhong man hua zhong ying wen ban.880-07Laozi.Dao de jing.880-08LaoziCriticism and interpretation.880-09LaoziCaricatures and cartoons.Chinese language materials.Philosophy, TaoistCaricatures and cartoons.TaoismComic books, strips, etc.100-01/$1蔡志忠,1948-245-02/$1老子说 I : 智者的低语 =the Dao speaks I : the whispers of wisdom /蔡志忠著 ; Brian Bruya 译.246-03/$1智者的低语250-04/$1第1版.260-05/$1北京市 :现代出版社,2005.440-06/$1蔡志忠漫画中英文版.600-07/$1老子.道德經.600-08/$1老子Criticism and interpretation.600-09/$1老子Caricatures and cartoons.100701106101601-0C0NOGnobcw 10-16-2006gaaagplMBIMBIStacksC 299.5 C123LA V.1book3186700219120812.00nonreferenceholdablecirculatingvisibleAvailablegaaagplMBIMBIStacksC 299.5 C123LA V.1book3186700218768512.00nonreferenceholdablecirculatingvisibleAvailable209AUTOGEN209biblio IMPORT G880 \N \N \N \N 210 1 1 \N 139 2020-10-27 09:26:51-05 2020-10-27 09:26:51-05 1 0 Title:harrypottergobletoffire Author:rowling PartName: PartNumber: AUTOGEN 210 01483cam a2200361Ia 4500210CONS20110603140152.0020801r20022000nyua c 000 1 eng d0439139600 (pbk.) :$8.99(MAnMC)800255(OCoLC)ocm50279560OCOOCOMRQUtOrBLWMRQAJ(MVLC)442287Rowling, J. K.Harry Potter and the goblet of fire /by J.K. Rowling ; illustrations by Mary GrandPré.New York :Scholastic,2002.xi, 734 p. :ill. ;19 cm.Year four at HogwartsHarry Potter: Year four at HogwartsSequel to: Harry Potter and the prisoner of Azkaban.Fourteen-year-old Harry Potter joins the Weasleys at the Quidditch World Cup, then enters his fourth year at Hogwarts Academy where he is mysteriously entered in an unusual contest that challenges his wizarding skills, friendships and character, amid signs that an old enemy is growing stronger.Hogwarts School of Witchcraft and Wizardry (Imaginary place)Fiction.WizardsFiction(MVLC)373715(CONS)141MagicFiction(MVLC)398525(CONS)139SchoolsFiction(MVLC)379065EnglandFiction.(MVLC)486319Fantasy fictionJuvenile fiction.gsafdFantasy fictionJuvenile fiction.GrandPré, Mary(MVLC)176539Rowling, J. K.Year ... at HogwartsHarry Potter: Year four at HogwartsX0MRQ210AUTOGEN210biblio 1657101642.10621497.90238943325 \N \N \N \N 211 1 1 \N 130 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:fatherhunt Author:stout PartName: PartNumber: AUTOGEN 211 00962cam a22002891 4500CONS20130416184900.0701012s1968 nyu 000 1 eng 211 68021584 //r933(CONS)690(SC LENDS)27848PZ3.S8894FatFICSTOStout, Rex,1886-1975The father hunt;a Nero Wolfe novel.New York,Viking Press[1968]183 p.21 cm.Twenty-two-year-old Amy Denovo needs Nero Wolfe's help. She is determined to learn the identity of her father, a secret her mother scrupulously guarded — and took to her grave when struck by a hit-and-run driver. Now Wolfe and his sidekick, Archie, have just one clue to go on: a note from Amy's mother and a box with over 50,000. Seems every month since Amy's birth, her mother received ,000 from an unknown source and saved it for Amy's future. It's easily enough for Amy to afford Wolfe's services, and he grudgingly agrees. But as the weeks go by, Wolfe realizes this may be one of his most challenging cases ever. Someone doesn't want Amy's pedigree discovered, and that someone appears to wield great power. It isn't long before Wolfe and Archie come to believe that Amy's mother was murdered — and that Amy could be next.Wolfe, Nero (Fictitious character)Fiction.Goodwin, Archie (Fictitious character)Fiction.Private investigatorsNew York (N.Y.)Fiction.New York (NY.)Fiction.Detective and mystery stories.gsafd[MYS] BCAF[MYS] HHAF03/23/199403/21/20003211AUTOGEN211biblio IMPORT FIC \N \N \N \N -212 1 1 \N 122 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:southerngods Author:jacobs PartName: PartNumber: AUTOGEN 212 00942cam a2200229Ka 4500212CONS20130416184621.0110401s2011 cau 000 1 eng d9781597802857(CONS)687(SC LENDS)1981659\FIC\JACJacobs, John Hornor.Southern Gods /John Hornor Jacobs.San Francisco, CA :Night Shade Books,2011.270 p. ;22 cm.Recent World War II veteran Bull Ingram is working as muscle when a Memphis DJ hires him to find Ramblin' John Hastur. The mysterious blues man's dark, driving music broadcast at ever-shifting frequencies by a phantom radio station is said to make living men insane and dead men rise.Blues musiciansFiction.Blues (Music)Fiction.Cthulhu MythosFiction.Horror FictionFiction.Suspense fiction.gsafd.212AUTOGEN212biblio IMPORT FIC \N \N \N \N +212 1 1 \N 122 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:southerngods Author:jacobs PartName: PartNumber: AUTOGEN 212 00942cam a2200229Ka 4500212CONS20130416184621.0110401s2011 cau 000 1 eng d9781597802857(CONS)687(SC LENDS)1981659\\FIC\\JACJacobs, John Hornor.Southern Gods /John Hornor Jacobs.San Francisco, CA :Night Shade Books,2011.270 p. ;22 cm.Recent World War II veteran Bull Ingram is working as muscle when a Memphis DJ hires him to find Ramblin' John Hastur. The mysterious blues man's dark, driving music broadcast at ever-shifting frequencies by a phantom radio station is said to make living men insane and dead men rise.Blues musiciansFiction.Blues (Music)Fiction.Cthulhu MythosFiction.Horror FictionFiction.Suspense fiction.gsafd.212AUTOGEN212biblio IMPORT FIC \N \N \N \N 213 1 1 \N 122 2020-10-27 09:26:51-05 2020-10-27 09:26:51-05 1 0 Title:winterofourdiscontent Author:steinbeck PartName: PartNumber: AUTOGEN 213 00959cam a2200253Ia 4500213CONS20130416184354.0950227s1995 nyu 000 0 eng d(CONS)680(SC LENDS)1121347Steinbeck, John,1902-1968.The winter of our discontent /John Steinbeck.New York :Book-of-the-Month Club,1961.311 p. ;22 cm.In awarding John Steinbeck the 1962 Nobel Prize in Literature, the Nobel committee stated that with The Winter of Our Discontent, he had "resumed his position as an independent expounder of the truth, with an unbiased instinct for what is genuinely American. Ethan Allen Hawley, the novel's protagonist, works as a clerk in a grocery store that his prominent family once owned. Without status in the town, his wife is restless, and his teenage children are hungry for the tantalizing material comforts he cannot provide. Then one day, in a moment of moral crisis, Ethan decides to take a holiday from his own scrupulous standards. In The Winter of Our Discontent, John Steinbeck, perhaps the master writer of the American working class, explores the cultural malaise of the 1960s and its far-ranging implications: social, familial, and personal.New York (N.Y.)Fiction.(CONS)148EthicsFiction.Conduct of lifeFiction.American CultureFiction.F Steinbeck, JohnASISBAFI$25.0024781726X0SAL2 4213AUTOGEN213biblio 1657101641.4870818927.0837807878 \N \N \N \N 214 1 1 \N 125 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:cliffsnotessteinbecksofmicemen Author:van PartName: PartNumber: AUTOGEN 214 01055nam a2200337 a 4500214CONS20130416183812.0000811s2001 cau b 001 0 eng 00107749 9780764586767 (pbk. : alk. paper)(CONS)679(SC LENDS)1450806PS3537.T3234O475 2001813/.5221813.52Van KirkVan Kirk, Susan,1946-CliffsNotes Steinbeck's Of mice and men /by Susan Van Kirk.Steinbeck's Of mice and menOf mice and menFoster City, CA :IDG Books Worldwide,c2001.iv, 74 p. ;22 cm.Includes bibliographical references (p. [67]-69) and index.The original CliffsNotes study guides offer expert commentary on major themes, plots, characters, literary devices, and historical background. The latest generation of titles in the series also feature glossaries and visual elements that complement the classic, familiar format.Steinbeck, John,1902-1968.214AUTOGEN214biblio IMPORT FIC \N \N \N \N 215 1 1 \N 131 2020-10-27 09:26:51.426709-05 2020-10-27 09:26:51.426709-05 1 0 Title:rumdiary Author:sony PartName: PartNumber: AUTOGEN 215 03103cgm a2200601Ia 4500215CONS20130416184001.0111220s2012 cau120 vleng dvd cvaizq04339639491939491Columbia TriStar Home Entertainment(CONS)678(SC LENDS)1987537TEFMTTEFMTTEFMR0TEFengengspaengnwpr---PN1997.2.R86 2012791.43/7223DVDRUMThe rum diary[videorecording] /Film District and GK Films/Infinitum Nihil/Film Engine production ; produced by Johnny Depp, Christi Dembrowski ; screenplay by Bruce Robinson ; directed by Bruce Robinson.Culver City, CA :Sony Pictures Home Entertainment,c2011.1 videodisc (120 min.) :sd., col. ;4 3/4 in.DVD ; anamorphic widescreen (1.85:1) presentation ; Dolby digital 5.1 surround.In English, with optional subtitles in English or Spanish.Closed-captioned.Johnny Depp, Giovanni Ribisi, Aaron Eckhart, Amber Heard, Michael Rispoli, Richard Jenkins.Music, Christopher Young ; editor, Carol Littleton ; director of photography, Dariusz Wolski.Based on the novel by Hunter S. Thompson.DVD release of the 2011 motion picture.MPAA rating: R; for language, brief drug use and sexuality.Tired of the noise and madness of New York, journalist Paul Kemp moves to Puerto Rico to write for a local newspaper. Adopting the rum-soaked life of the island, Kemp becomes obsessed with the fiancee of Sanderson, a businessman involved in shady property development deals. When he is recruited by Sanderson to write favorably about his latest unsavory scheme, Kemp is presented with the choice to use his words for the corrupt businessman's financial benefit, or use them to take him down.Video recordings.DVD-Video discs.JournalistsPuerto RicoDrama.Comedy films.lcgftDepp, Johnny.Eckhart, Aaron.Thompson, Hunter S.Rum Diary.Sony Pictures Home Entertainment (Firm)215AUTOGEN215biblio IMPORT FIC \N \N \N \N diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/config.remote_account.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/config.remote_account.sql deleted file mode 100644 index c814737192..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/config.remote_account.sql +++ /dev/null @@ -1,7 +0,0 @@ -COPY config.remote_account (id, label, host, username, password, account, path, owner, last_activity) FROM stdin; -1 Brodart (Full processing) ftp://ftp.com username password 12345 /in 2 \N -2 Initech (Covers only) ftp://ftp.com user pw \N .in 4 \N -\. - -\echo sequence update column: id -SELECT SETVAL('config.remote_account_id_seq', (SELECT MAX(id) FROM config.remote_account)); diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/config.upgrade_log.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/config.upgrade_log.sql new file mode 100644 index 0000000000..d3bf497349 --- /dev/null +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/config.upgrade_log.sql @@ -0,0 +1,31 @@ +COPY config.upgrade_log (version, install_date, applied_to) FROM stdin; +1326 2023-01-23 09:07:40.702363-06 \N +1327 2023-01-23 09:09:59.440276-06 enhanced_concerto_script +1328 2023-01-23 09:09:59.476631-06 enhanced_concerto_script +1329 2023-01-23 09:09:59.514596-06 enhanced_concerto_script +1330 2023-01-23 09:09:59.563224-06 enhanced_concerto_script +1331 2023-01-23 09:09:59.59903-06 enhanced_concerto_script +1332 2023-01-23 09:09:59.635707-06 enhanced_concerto_script +1333 2023-01-23 09:09:59.671488-06 enhanced_concerto_script +1334 2023-01-23 09:09:59.709196-06 enhanced_concerto_script +1335 2023-01-23 09:09:59.745422-06 enhanced_concerto_script +1336 2023-01-23 09:09:59.78202-06 enhanced_concerto_script +1337 2023-01-23 09:09:59.817761-06 enhanced_concerto_script +1338 2023-01-23 09:09:59.863997-06 enhanced_concerto_script +1339 2023-01-23 09:09:59.901489-06 enhanced_concerto_script +1340 2023-01-23 09:09:59.942334-06 enhanced_concerto_script +1341 2023-01-23 09:09:59.994223-06 enhanced_concerto_script +1342 2023-01-23 09:10:00.034458-06 enhanced_concerto_script +1343 2023-01-23 09:10:00.0756-06 enhanced_concerto_script +1344 2023-01-23 09:10:00.124941-06 enhanced_concerto_script +1345 2023-01-23 09:10:01.853049-06 enhanced_concerto_script +1346 2023-01-23 09:10:01.908584-06 enhanced_concerto_script +1347 2023-01-23 09:10:01.951773-06 enhanced_concerto_script +1348 2023-01-23 09:10:01.990843-06 enhanced_concerto_script +1349 2023-01-23 09:10:02.038836-06 enhanced_concerto_script +1350 2023-01-23 09:10:02.076415-06 enhanced_concerto_script +1351 2023-01-23 09:10:02.115085-06 enhanced_concerto_script +1352 2023-01-23 09:10:02.153571-06 enhanced_concerto_script +1353 2023-01-23 09:10:02.189843-06 enhanced_concerto_script +\. + diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/load_all.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/load_all.sql index 18424410ad..15e1e6f2e1 100644 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/load_all.sql +++ b/Open-ILS/tests/datasets/sql/concerto_enhanced/load_all.sql @@ -66,15 +66,9 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading money.grocery \i money.grocery.sql -\echo loading money.billable_xact -\i money.billable_xact.sql - \echo loading money.billing \i money.billing.sql -\echo loading money.bnm_desk_payment -\i money.bnm_desk_payment.sql - \echo loading acq.acq_lineitem_history \i acq.acq_lineitem_history.sql @@ -267,9 +261,6 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading config.hold_matrix_matchpoint \i config.hold_matrix_matchpoint.sql -\echo loading config.remote_account -\i config.remote_account.sql - \echo loading config.remoteauth_profile \i config.remoteauth_profile.sql @@ -306,9 +297,6 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading money.account_adjustment \i money.account_adjustment.sql -\echo loading money.bnm_payment -\i money.bnm_payment.sql - \echo loading money.cash_payment \i money.cash_payment.sql @@ -327,9 +315,6 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading money.goods_payment \i money.goods_payment.sql -\echo loading money.payment -\i money.payment.sql - \echo loading money.work_payment \i money.work_payment.sql @@ -387,9 +372,6 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading vandelay.match_set_point \i vandelay.match_set_point.sql -\echo loading vandelay.queue -\i vandelay.queue.sql - \echo loading vandelay.queued_authority_record \i vandelay.queued_authority_record.sql @@ -399,9 +381,6 @@ SET CONSTRAINTS ALL DEFERRED; \echo loading vandelay.queued_bib_record \i vandelay.queued_bib_record.sql -\echo loading vandelay.queued_record -\i vandelay.queued_record.sql - \echo loading vandelay.session_tracker \i vandelay.session_tracker.sql diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.billable_xact.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/money.billable_xact.sql deleted file mode 100644 index 712ee22c85..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.billable_xact.sql +++ /dev/null @@ -1,567 +0,0 @@ -COPY money.billable_xact (id, usr, xact_start, xact_finish, unrecovered) FROM stdin; -1 4 2014-05-14 07:39:13.070326-05 \N \N -2 4 2014-05-14 07:39:13.070326-05 \N \N -3 4 2014-05-14 07:39:13.070326-05 \N \N -4 4 2014-05-14 07:39:13.070326-05 \N \N -5 4 2014-05-14 07:39:13.070326-05 \N \N -6 4 2014-05-14 07:39:13.070326-05 \N \N -7 5 2014-05-14 07:39:13.070326-05 \N \N -8 5 2020-10-20 09:26:51.426709-05 \N \N -9 5 2020-10-20 09:26:51.426709-05 \N \N -10 5 2020-10-03 09:26:51.426709-05 \N \N -11 5 2014-05-14 07:39:13.070326-05 \N \N -12 5 2014-05-14 07:39:13.070326-05 \N \N -13 6 2014-05-14 07:39:13.070326-05 \N \N -14 6 2014-05-14 07:39:13.070326-05 \N \N -15 6 2014-05-14 07:39:13.070326-05 \N \N -16 6 2014-05-14 07:39:13.070326-05 \N \N -17 6 2020-10-27 07:26:51-05 \N \N -18 6 2020-10-13 09:26:51.426709-05 \N \N -19 7 2020-10-20 09:26:51-05 \N \N -20 7 2020-10-20 09:26:51-05 \N \N -21 7 2020-10-20 09:26:51.426709-05 \N \N -22 7 2020-09-22 09:26:51-05 \N \N -23 7 2020-10-20 07:26:51-05 \N \N -24 7 2020-10-06 09:26:51.426709-05 \N \N -25 8 2020-10-06 09:26:51-05 \N \N -26 8 2020-10-06 09:26:51-05 \N \N -27 8 2020-10-06 09:26:51.426709-05 \N \N -28 8 2020-09-08 09:26:51-05 \N \N -29 8 2020-10-06 07:26:51-05 \N \N -30 8 2020-09-22 09:26:51.426709-05 \N \N -31 9 2020-10-27 09:26:51-05 \N \N -32 9 2020-10-27 09:26:51-05 \N \N -33 9 2020-10-27 09:26:51.426709-05 \N \N -34 9 2020-09-29 09:26:51-05 \N \N -35 9 2020-10-27 07:26:51-05 \N \N -36 9 2020-10-13 09:26:51.426709-05 \N \N -37 10 2020-10-27 09:26:51-05 \N \N -38 10 2020-10-27 09:26:51-05 \N \N -39 10 2020-10-27 09:26:51.426709-05 \N \N -40 10 2020-09-29 09:26:51-05 \N \N -41 10 2020-10-27 07:26:51-05 \N \N -42 10 2020-10-13 09:26:51.426709-05 \N \N -43 11 2020-10-27 09:26:51-05 \N \N -44 11 2020-10-27 09:26:51-05 \N \N -45 11 2020-10-27 09:26:51.426709-05 \N \N -46 11 2020-09-29 09:26:51-05 \N \N -47 11 2020-10-27 07:26:51-05 \N \N -48 11 2020-10-13 09:26:51.426709-05 \N \N -49 12 2020-10-27 09:26:51-05 \N \N -50 12 2020-10-27 09:26:51-05 \N \N -51 12 2020-10-27 09:26:51.426709-05 \N \N -52 12 2020-09-29 09:26:51-05 \N \N -53 12 2020-10-27 07:26:51-05 \N \N -54 12 2020-10-13 09:26:51.426709-05 \N \N -55 13 2020-10-27 09:26:51-05 \N \N -56 13 2020-10-27 09:26:51-05 \N \N -57 13 2020-10-27 09:26:51.426709-05 \N \N -58 13 2020-09-29 09:26:51-05 \N \N -59 13 2020-10-27 07:26:51-05 \N \N -60 13 2020-10-13 09:26:51.426709-05 \N \N -61 14 2020-10-27 09:26:51-05 \N \N -62 14 2020-10-27 09:26:51-05 \N \N -63 14 2020-10-27 09:26:51.426709-05 \N \N -64 14 2020-09-29 09:26:51-05 \N \N -65 14 2020-10-27 07:26:51-05 \N \N -66 14 2020-10-13 09:26:51.426709-05 \N \N -67 15 2020-10-27 09:26:51-05 \N \N -68 15 2020-10-27 09:26:51-05 \N \N -69 15 2020-10-27 09:26:51.426709-05 \N \N -70 15 2020-09-29 09:26:51-05 \N \N -71 15 2020-10-27 07:26:51-05 \N \N -72 15 2020-10-13 09:26:51.426709-05 \N \N -73 16 2020-10-27 09:26:51-05 \N \N -74 16 2020-10-27 09:26:51-05 \N \N -75 16 2020-10-27 09:26:51.426709-05 \N \N -76 16 2020-09-29 09:26:51-05 \N \N -77 16 2020-10-27 07:26:51-05 \N \N -78 16 2020-10-13 09:26:51.426709-05 \N \N -79 17 2020-10-27 09:26:51-05 \N \N -80 17 2020-10-27 09:26:51-05 \N \N -81 17 2020-10-27 09:26:51.426709-05 \N \N -82 17 2020-09-29 09:26:51-05 \N \N -83 17 2020-10-27 07:26:51-05 \N \N -84 17 2020-10-13 09:26:51.426709-05 \N \N -85 18 2020-10-27 09:26:51-05 \N \N -86 18 2020-10-27 09:26:51-05 \N \N -87 18 2020-10-27 09:26:51.426709-05 \N \N -88 18 2020-09-29 09:26:51-05 \N \N -89 18 2020-10-27 07:26:51-05 \N \N -90 18 2020-10-13 09:26:51.426709-05 \N \N -91 19 2020-10-27 09:26:51-05 \N \N -92 19 2020-10-27 09:26:51-05 \N \N -93 19 2020-10-27 09:26:51.426709-05 \N \N -94 19 2020-09-29 09:26:51-05 \N \N -95 19 2020-10-27 07:26:51-05 \N \N -96 19 2020-10-13 09:26:51.426709-05 \N \N -97 20 2020-10-27 09:26:51-05 \N \N -98 20 2020-10-27 09:26:51-05 \N \N -99 20 2020-10-27 09:26:51.426709-05 \N \N -100 20 2020-09-29 09:26:51-05 \N \N -101 20 2020-10-27 07:26:51-05 \N \N -102 20 2020-10-13 09:26:51.426709-05 \N \N -103 21 2020-10-27 09:26:51-05 \N \N -104 21 2020-10-27 09:26:51-05 \N \N -105 21 2020-10-27 09:26:51.426709-05 \N \N -106 21 2020-09-29 09:26:51-05 \N \N -107 21 2020-10-27 07:26:51-05 \N \N -108 21 2020-10-13 09:26:51.426709-05 \N \N -109 22 2020-10-27 09:26:51-05 \N \N -110 22 2020-10-27 09:26:51-05 \N \N -111 22 2020-10-27 09:26:51.426709-05 \N \N -112 22 2020-09-29 09:26:51-05 \N \N -113 22 2020-10-27 07:26:51-05 \N \N -114 22 2020-10-13 09:26:51.426709-05 \N \N -115 23 2020-10-27 09:26:51-05 \N \N -116 23 2020-10-27 09:26:51-05 \N \N -117 23 2020-10-27 09:26:51.426709-05 \N \N -118 23 2020-09-29 09:26:51-05 \N \N -119 23 2020-10-27 07:26:51-05 \N \N -120 23 2020-10-13 09:26:51.426709-05 \N \N -121 24 2020-10-27 09:26:51-05 \N \N -122 24 2020-10-27 09:26:51-05 \N \N -123 24 2020-10-27 09:26:51.426709-05 \N \N -124 24 2020-09-29 09:26:51-05 \N \N -125 24 2020-10-27 07:26:51-05 \N \N -126 24 2020-10-13 09:26:51.426709-05 \N \N -127 25 2020-10-27 09:26:51-05 \N \N -128 25 2020-10-27 09:26:51-05 \N \N -129 25 2020-10-27 09:26:51.426709-05 \N \N -130 25 2020-09-29 09:26:51-05 \N \N -131 25 2020-10-27 07:26:51-05 \N \N -132 25 2020-10-13 09:26:51.426709-05 \N \N -133 26 2020-10-27 09:26:51-05 \N \N -134 26 2020-10-27 09:26:51-05 \N \N -135 26 2020-10-27 09:26:51.426709-05 \N \N -136 26 2020-09-29 09:26:51-05 \N \N -137 26 2020-10-27 07:26:51-05 \N \N -138 26 2020-10-13 09:26:51.426709-05 \N \N -139 27 2020-10-27 09:26:51-05 \N \N -140 27 2020-10-27 09:26:51-05 \N \N -141 27 2020-10-27 09:26:51.426709-05 \N \N -142 27 2020-09-29 09:26:51-05 \N \N -143 27 2020-10-27 07:26:51-05 \N \N -144 27 2020-10-13 09:26:51.426709-05 \N \N -145 28 2020-10-27 09:26:51-05 \N \N -146 28 2020-10-27 09:26:51-05 \N \N -147 28 2020-10-27 09:26:51.426709-05 \N \N -148 28 2020-09-29 09:26:51-05 \N \N -149 28 2020-10-27 07:26:51-05 \N \N -150 28 2020-10-13 09:26:51.426709-05 \N \N -151 29 2020-10-27 09:26:51-05 \N \N -152 29 2020-10-27 09:26:51-05 \N \N -153 29 2020-10-27 09:26:51.426709-05 \N \N -154 29 2020-09-29 09:26:51-05 \N \N -155 29 2020-10-27 07:26:51-05 \N \N -156 29 2020-10-13 09:26:51.426709-05 \N \N -157 30 2020-10-27 09:26:51-05 \N \N -158 30 2020-10-27 09:26:51-05 \N \N -159 30 2020-10-27 09:26:51.426709-05 \N \N -160 30 2020-09-29 09:26:51-05 \N \N -161 30 2020-10-27 07:26:51-05 \N \N -162 30 2020-10-13 09:26:51.426709-05 \N \N -163 31 2020-10-27 09:26:51-05 \N \N -164 31 2020-10-27 09:26:51-05 \N \N -165 31 2020-10-27 09:26:51.426709-05 \N \N -166 31 2020-09-29 09:26:51-05 \N \N -167 31 2020-10-27 07:26:51-05 \N \N -168 31 2020-10-13 09:26:51.426709-05 \N \N -169 32 2020-10-27 09:26:51-05 \N \N -170 32 2020-10-27 09:26:51-05 \N \N -171 32 2020-10-27 09:26:51.426709-05 \N \N -172 32 2020-09-29 09:26:51-05 \N \N -173 32 2020-10-27 07:26:51-05 \N \N -174 32 2020-10-13 09:26:51.426709-05 \N \N -175 33 2020-10-27 09:26:51-05 \N \N -176 33 2020-10-27 09:26:51-05 \N \N -177 33 2020-10-27 09:26:51.426709-05 \N \N -178 33 2020-09-29 09:26:51-05 \N \N -179 33 2020-10-27 07:26:51-05 \N \N -180 33 2020-10-13 09:26:51.426709-05 \N \N -181 34 2020-10-27 09:26:51-05 \N \N -182 34 2020-10-27 09:26:51-05 \N \N -183 34 2020-10-27 09:26:51.426709-05 \N \N -184 34 2020-09-29 09:26:51-05 \N \N -185 34 2020-10-27 07:26:51-05 \N \N -186 34 2020-10-13 09:26:51.426709-05 \N \N -187 35 2020-10-27 09:26:51-05 \N \N -188 35 2020-10-27 09:26:51-05 \N \N -189 35 2020-10-27 09:26:51.426709-05 \N \N -190 35 2020-09-29 09:26:51-05 \N \N -191 35 2020-10-27 07:26:51-05 \N \N -192 35 2020-10-13 09:26:51.426709-05 \N \N -193 36 2020-10-27 09:26:51-05 \N \N -194 36 2020-10-27 09:26:51-05 \N \N -195 36 2020-10-27 09:26:51.426709-05 \N \N -196 36 2020-09-29 09:26:51-05 \N \N -197 36 2020-10-27 07:26:51-05 \N \N -198 36 2020-10-13 09:26:51.426709-05 \N \N -199 37 2020-10-27 09:26:51-05 \N \N -200 37 2020-10-27 09:26:51-05 \N \N -201 37 2020-10-27 09:26:51.426709-05 \N \N -202 37 2020-09-29 09:26:51-05 \N \N -203 37 2020-10-27 07:26:51-05 \N \N -204 37 2020-10-13 09:26:51.426709-05 \N \N -205 38 2020-10-27 09:26:51-05 \N \N -206 38 2020-10-27 09:26:51-05 \N \N -207 38 2020-10-27 09:26:51.426709-05 \N \N -208 38 2020-09-29 09:26:51-05 \N \N -209 38 2020-10-27 07:26:51-05 \N \N -210 38 2020-10-13 09:26:51.426709-05 \N \N -211 39 2020-10-27 09:26:51-05 \N \N -212 39 2020-10-27 09:26:51-05 \N \N -213 39 2020-10-27 09:26:51.426709-05 \N \N -214 39 2020-09-29 09:26:51-05 \N \N -215 39 2020-10-27 07:26:51-05 \N \N -216 39 2020-10-13 09:26:51.426709-05 \N \N -217 40 2020-10-27 09:26:51-05 \N \N -218 40 2020-10-27 09:26:51-05 \N \N -219 40 2020-10-27 09:26:51.426709-05 \N \N -220 40 2020-09-29 09:26:51-05 \N \N -221 40 2020-10-27 07:26:51-05 \N \N -222 40 2020-10-13 09:26:51.426709-05 \N \N -223 41 2020-10-27 09:26:51-05 \N \N -224 41 2020-10-27 09:26:51-05 \N \N -225 41 2020-10-27 09:26:51.426709-05 \N \N -226 41 2020-09-29 09:26:51-05 \N \N -227 41 2020-10-27 07:26:51-05 \N \N -228 41 2020-10-13 09:26:51.426709-05 \N \N -229 42 2020-10-27 09:26:51-05 \N \N -230 42 2020-10-27 09:26:51-05 \N \N -231 42 2020-10-27 09:26:51.426709-05 \N \N -232 42 2020-09-29 09:26:51-05 \N \N -233 42 2020-10-27 07:26:51-05 \N \N -234 42 2020-10-13 09:26:51.426709-05 \N \N -235 43 2020-10-27 09:26:51-05 \N \N -236 43 2020-10-27 09:26:51-05 \N \N -237 43 2020-10-27 09:26:51.426709-05 \N \N -238 43 2020-09-29 09:26:51-05 \N \N -239 43 2020-10-27 07:26:51-05 \N \N -240 43 2020-10-13 09:26:51.426709-05 \N \N -241 44 2020-10-27 09:26:51-05 \N \N -242 44 2020-10-27 09:26:51-05 \N \N -243 44 2020-10-27 09:26:51.426709-05 \N \N -244 44 2020-09-29 09:26:51-05 \N \N -245 44 2020-10-27 07:26:51-05 \N \N -246 44 2020-10-13 09:26:51.426709-05 \N \N -247 45 2020-10-27 09:26:51-05 \N \N -248 45 2020-10-27 09:26:51-05 \N \N -249 45 2020-10-27 09:26:51.426709-05 \N \N -250 45 2020-09-29 09:26:51-05 \N \N -251 45 2020-10-27 07:26:51-05 \N \N -252 45 2020-10-13 09:26:51.426709-05 \N \N -253 46 2020-10-27 09:26:51-05 \N \N -254 46 2020-10-27 09:26:51-05 \N \N -255 46 2020-10-27 09:26:51.426709-05 \N \N -256 46 2020-09-29 09:26:51-05 \N \N -257 46 2020-10-27 07:26:51-05 \N \N -258 46 2020-10-13 09:26:51.426709-05 \N \N -259 47 2020-10-27 09:26:51-05 \N \N -260 47 2020-10-27 09:26:51-05 \N \N -261 47 2020-10-27 09:26:51.426709-05 \N \N -262 47 2020-09-29 09:26:51-05 \N \N -263 47 2020-10-27 07:26:51-05 \N \N -264 47 2020-10-13 09:26:51.426709-05 \N \N -265 48 2020-10-27 09:26:51-05 \N \N -266 48 2020-10-27 09:26:51-05 \N \N -267 48 2020-10-27 09:26:51.426709-05 \N \N -268 48 2020-09-29 09:26:51-05 \N \N -269 48 2020-10-27 07:26:51-05 \N \N -270 48 2020-10-13 09:26:51.426709-05 \N \N -271 49 2020-10-27 09:26:51-05 \N \N -272 49 2020-10-27 09:26:51-05 \N \N -273 49 2020-10-27 09:26:51.426709-05 \N \N -274 49 2020-09-29 09:26:51-05 \N \N -275 49 2020-10-27 07:26:51-05 \N \N -276 49 2020-10-13 09:26:51.426709-05 \N \N -277 50 2020-10-27 09:26:51-05 \N \N -278 50 2020-10-27 09:26:51-05 \N \N -279 50 2020-10-27 09:26:51.426709-05 \N \N -280 50 2020-09-29 09:26:51-05 \N \N -281 50 2020-10-27 07:26:51-05 \N \N -282 50 2020-10-13 09:26:51.426709-05 \N \N -283 51 2020-10-27 09:26:51-05 \N \N -284 51 2020-10-27 09:26:51-05 \N \N -285 51 2020-10-27 09:26:51.426709-05 \N \N -286 51 2020-09-29 09:26:51-05 \N \N -287 51 2020-10-27 07:26:51-05 \N \N -288 51 2020-10-13 09:26:51.426709-05 \N \N -289 52 2020-10-27 09:26:51-05 \N \N -290 52 2020-10-27 09:26:51-05 \N \N -291 52 2020-10-27 09:26:51.426709-05 \N \N -292 52 2020-09-29 09:26:51-05 \N \N -293 52 2020-10-27 07:26:51-05 \N \N -294 52 2020-10-13 09:26:51.426709-05 \N \N -295 53 2020-10-27 09:26:51-05 \N \N -296 53 2020-10-27 09:26:51-05 \N \N -297 53 2020-10-27 09:26:51.426709-05 \N \N -298 53 2020-09-29 09:26:51-05 \N \N -299 53 2020-10-27 07:26:51-05 \N \N -300 53 2020-10-13 09:26:51.426709-05 \N \N -301 232 2020-10-27 09:26:51-05 \N \N -302 232 2020-10-27 09:26:51-05 \N \N -303 232 2020-10-27 09:26:51.426709-05 \N \N -304 232 2020-09-29 09:26:51-05 \N \N -305 232 2020-10-27 07:26:51-05 \N \N -306 232 2020-10-13 09:26:51.426709-05 \N \N -307 233 2020-10-27 09:26:51-05 \N \N -308 233 2020-10-27 09:26:51-05 \N \N -309 233 2020-10-27 09:26:51.426709-05 \N \N -310 233 2020-09-29 09:26:51-05 \N \N -311 233 2020-10-27 07:26:51-05 \N \N -312 233 2020-10-13 09:26:51.426709-05 \N \N -313 234 2020-10-27 09:26:51-05 \N \N -314 234 2020-10-27 09:26:51-05 \N \N -315 234 2020-10-27 09:26:51.426709-05 \N \N -316 234 2020-09-29 09:26:51-05 \N \N -317 234 2020-10-27 07:26:51-05 \N \N -318 234 2020-10-13 09:26:51.426709-05 \N \N -319 220 2020-10-27 09:26:51-05 \N \N -320 220 2020-10-27 09:26:51-05 \N \N -321 220 2020-10-27 09:26:51.426709-05 \N \N -322 220 2020-09-29 09:26:51-05 \N \N -323 220 2020-10-27 07:26:51-05 \N \N -324 220 2020-10-13 09:26:51.426709-05 \N \N -325 221 2020-10-27 09:26:51-05 \N \N -326 221 2020-10-27 09:26:51-05 \N \N -327 221 2020-10-27 09:26:51.426709-05 \N \N -328 221 2020-09-29 09:26:51-05 \N \N -329 221 2020-10-27 07:26:51-05 \N \N -330 221 2020-10-13 09:26:51.426709-05 \N \N -331 222 2020-10-27 09:26:51-05 \N \N -332 222 2020-10-27 09:26:51-05 \N \N -333 222 2020-10-27 09:26:51.426709-05 \N \N -334 222 2020-09-29 09:26:51-05 \N \N -335 222 2020-10-27 07:26:51-05 \N \N -336 222 2020-10-13 09:26:51.426709-05 \N \N -337 208 2020-10-27 09:26:51-05 \N \N -338 208 2020-10-27 09:26:51-05 \N \N -339 208 2020-10-27 09:26:51.426709-05 \N \N -340 208 2020-09-29 09:26:51-05 \N \N -341 208 2020-10-27 07:26:51-05 \N \N -342 208 2020-10-13 09:26:51.426709-05 \N \N -343 209 2020-10-27 09:26:51-05 \N \N -344 209 2020-10-27 09:26:51-05 \N \N -345 209 2020-10-27 09:26:51.426709-05 \N \N -346 209 2020-09-29 09:26:51-05 \N \N -347 209 2020-10-27 07:26:51-05 \N \N -348 209 2020-10-13 09:26:51.426709-05 \N \N -349 210 2020-10-27 09:26:51-05 \N \N -350 210 2020-10-27 09:26:51-05 \N \N -351 210 2020-10-27 09:26:51.426709-05 \N \N -352 210 2020-09-29 09:26:51-05 \N \N -353 210 2020-10-27 07:26:51-05 \N \N -354 210 2020-10-13 09:26:51.426709-05 \N \N -355 196 2020-10-27 09:26:51-05 \N \N -356 196 2020-10-27 09:26:51-05 \N \N -357 196 2020-10-27 09:26:51.426709-05 \N \N -358 196 2020-09-29 09:26:51-05 \N \N -359 196 2020-10-27 07:26:51-05 \N \N -360 196 2020-10-13 09:26:51.426709-05 \N \N -361 197 2020-10-27 09:26:51-05 \N \N -362 197 2020-10-27 09:26:51-05 \N \N -363 197 2020-10-27 09:26:51.426709-05 \N \N -364 197 2020-09-29 09:26:51-05 \N \N -365 197 2020-10-27 07:26:51-05 \N \N -366 197 2020-10-13 09:26:51.426709-05 \N \N -367 198 2020-10-27 09:26:51-05 \N \N -368 198 2020-10-27 09:26:51-05 \N \N -369 198 2020-10-27 09:26:51.426709-05 \N \N -370 198 2020-09-29 09:26:51-05 \N \N -371 198 2020-10-27 07:26:51-05 \N \N -372 198 2020-10-13 09:26:51.426709-05 \N \N -373 184 2020-10-27 09:26:51-05 \N \N -374 184 2020-10-27 09:26:51-05 \N \N -375 184 2020-10-27 09:26:51.426709-05 \N \N -376 184 2020-09-29 09:26:51-05 \N \N -377 184 2020-10-27 07:26:51-05 \N \N -378 184 2020-10-13 09:26:51.426709-05 \N \N -379 185 2020-10-27 09:26:51-05 \N \N -380 185 2020-10-27 09:26:51-05 \N \N -381 185 2020-10-27 09:26:51.426709-05 \N \N -382 185 2020-09-29 09:26:51-05 \N \N -383 185 2020-10-27 07:26:51-05 \N \N -384 185 2020-10-13 09:26:51.426709-05 \N \N -385 186 2020-10-27 09:26:51-05 \N \N -386 186 2020-10-27 09:26:51-05 \N \N -387 186 2020-10-27 09:26:51.426709-05 \N \N -388 186 2020-09-29 09:26:51-05 \N \N -389 186 2020-10-27 07:26:51-05 \N \N -390 186 2020-10-13 09:26:51.426709-05 \N \N -391 172 2020-10-27 09:26:51-05 \N \N -392 172 2020-10-27 09:26:51-05 \N \N -393 172 2020-10-27 09:26:51.426709-05 \N \N -394 172 2020-09-29 09:26:51-05 \N \N -395 172 2020-10-27 07:26:51-05 \N \N -396 172 2020-10-13 09:26:51.426709-05 \N \N -397 173 2020-10-27 09:26:51-05 \N \N -398 173 2020-10-27 09:26:51-05 \N \N -399 173 2020-10-27 09:26:51.426709-05 \N \N -400 173 2020-09-29 09:26:51-05 \N \N -401 173 2020-10-27 07:26:51-05 \N \N -402 173 2020-10-13 09:26:51.426709-05 \N \N -403 174 2020-10-27 09:26:51-05 \N \N -404 174 2020-10-27 09:26:51-05 \N \N -405 174 2020-10-27 09:26:51.426709-05 \N \N -406 174 2020-09-29 09:26:51-05 \N \N -407 174 2020-10-27 07:26:51-05 \N \N -408 174 2020-10-13 09:26:51.426709-05 \N \N -409 160 2020-10-27 09:26:51-05 \N \N -410 160 2020-10-27 09:26:51-05 \N \N -411 160 2020-10-27 09:26:51.426709-05 \N \N -412 160 2020-09-29 09:26:51-05 \N \N -413 160 2020-10-27 07:26:51-05 \N \N -414 160 2020-10-13 09:26:51.426709-05 \N \N -415 161 2020-10-27 09:26:51-05 \N \N -416 161 2020-10-27 09:26:51-05 \N \N -417 161 2020-10-27 09:26:51.426709-05 \N \N -418 161 2020-09-29 09:26:51-05 \N \N -419 161 2020-10-27 07:26:51-05 \N \N -420 161 2020-10-13 09:26:51.426709-05 \N \N -421 162 2020-10-27 09:26:51-05 \N \N -422 162 2020-10-27 09:26:51-05 \N \N -423 162 2020-10-27 09:26:51.426709-05 \N \N -424 162 2020-09-29 09:26:51-05 \N \N -425 162 2020-10-27 07:26:51-05 \N \N -426 162 2020-10-13 09:26:51.426709-05 \N \N -427 148 2020-10-27 09:26:51-05 \N \N -428 148 2020-10-27 09:26:51-05 \N \N -429 148 2020-10-27 09:26:51.426709-05 \N \N -430 148 2020-09-29 09:26:51-05 \N \N -431 148 2020-10-27 07:26:51-05 \N \N -432 148 2020-10-13 09:26:51.426709-05 \N \N -433 149 2020-10-27 09:26:51-05 \N \N -434 149 2020-10-27 09:26:51-05 \N \N -435 149 2020-10-27 09:26:51.426709-05 \N \N -436 149 2020-09-29 09:26:51-05 \N \N -437 149 2020-10-27 07:26:51-05 \N \N -438 149 2020-10-13 09:26:51.426709-05 \N \N -439 150 2020-10-27 09:26:51-05 \N \N -440 150 2020-10-27 09:26:51-05 \N \N -441 150 2020-10-27 09:26:51.426709-05 \N \N -442 150 2020-09-29 09:26:51-05 \N \N -443 150 2020-10-27 07:26:51-05 \N \N -444 150 2020-10-13 09:26:51.426709-05 \N \N -445 136 2020-10-27 09:26:51-05 \N \N -446 136 2020-10-27 09:26:51-05 \N \N -447 136 2020-10-27 09:26:51.426709-05 \N \N -448 136 2020-09-29 09:26:51-05 \N \N -449 136 2020-10-27 07:26:51-05 \N \N -450 136 2020-10-13 09:26:51.426709-05 \N \N -451 137 2020-10-27 09:26:51-05 \N \N -452 137 2020-10-27 09:26:51-05 \N \N -453 137 2020-10-27 09:26:51.426709-05 \N \N -454 137 2020-09-29 09:26:51-05 \N \N -455 137 2020-10-27 07:26:51-05 \N \N -456 137 2020-10-13 09:26:51.426709-05 \N \N -457 138 2020-10-27 09:26:51-05 \N \N -458 138 2020-10-27 09:26:51-05 \N \N -459 138 2020-10-27 09:26:51.426709-05 \N \N -460 138 2020-09-29 09:26:51-05 \N \N -461 138 2020-10-27 07:26:51-05 \N \N -462 138 2020-10-13 09:26:51.426709-05 \N \N -463 110 2020-10-27 09:26:51-05 \N \N -464 110 2020-10-27 09:26:51-05 \N \N -465 110 2020-10-27 09:26:51.426709-05 \N \N -466 110 2020-09-29 09:26:51-05 \N \N -467 110 2020-10-27 07:26:51-05 \N \N -468 110 2020-10-13 09:26:51.426709-05 \N \N -469 111 2020-10-27 09:26:51-05 \N \N -470 111 2020-10-27 09:26:51-05 \N \N -471 111 2020-10-27 09:26:51.426709-05 \N \N -472 111 2020-09-29 09:26:51-05 \N \N -473 111 2020-10-27 07:26:51-05 \N \N -474 111 2020-10-13 09:26:51.426709-05 \N \N -475 124 2020-10-27 09:26:51-05 \N \N -476 124 2020-10-27 09:26:51-05 \N \N -477 124 2020-10-27 09:26:51.426709-05 \N \N -478 124 2020-09-29 09:26:51-05 \N \N -479 124 2020-10-27 07:26:51-05 \N \N -480 124 2020-10-13 09:26:51.426709-05 \N \N -481 112 2020-10-27 09:26:51-05 \N \N -482 112 2020-10-27 09:26:51-05 \N \N -483 112 2020-10-27 09:26:51.426709-05 \N \N -484 112 2020-09-29 09:26:51-05 \N \N -485 112 2020-10-27 07:26:51-05 \N \N -486 112 2020-10-13 09:26:51.426709-05 \N \N -487 49 2022-06-17 13:25:39.84321-05 \N \N -488 49 2022-06-17 13:27:45.667363-05 \N \N -489 361 2022-06-17 13:28:53.586448-05 \N \N -490 361 2022-06-17 13:29:47.846098-05 \N \N -491 361 2022-06-17 13:30:03.265796-05 \N \N -492 361 2022-06-17 13:30:15.206301-05 \N \N -493 361 2022-06-17 13:30:28.757579-05 \N \N -494 361 2022-06-17 13:30:35.032352-05 \N \N -495 275 2022-06-17 13:31:54.642249-05 \N \N -496 275 2022-06-17 13:32:22-05 \N 0 -497 275 2022-06-17 13:33:50.715516-05 \N \N -498 303 2022-06-17 13:37:17.660937-05 \N \N -499 171 2022-06-17 13:42:52.754681-05 \N \N -500 87 2022-06-17 13:43:41.512649-05 \N \N -\. - -COPY money.billable_xact (id, usr, xact_start, xact_finish, unrecovered) FROM stdin; -501 87 2022-06-17 13:45:14.206514-05 \N \N -502 291 2022-06-17 15:22:30-05 \N \N -503 62 2022-06-17 15:32:18-05 \N \N -504 348 2022-06-17 15:32:48-05 \N \N -505 67 2022-06-17 15:34:12-05 \N \N -506 109 2022-06-17 15:34:43-05 \N \N -507 284 2022-06-17 15:35:29-05 2022-06-17 16:12:00.214237-05 \N -508 287 2022-06-17 15:36:42-05 \N \N -509 282 2022-06-17 15:37:03-05 \N \N -510 310 2022-06-17 15:37:30-05 2022-06-17 16:17:20.962308-05 \N -511 310 2022-06-17 15:37:44-05 \N \N -512 310 2022-06-17 15:37:51-05 \N \N -513 268 2022-06-17 15:39:47-05 2022-06-17 16:07:57.35497-05 \N -514 268 2022-06-17 15:40:44-05 \N \N -515 266 2022-06-17 15:40:56-05 \N \N -516 267 2022-06-17 15:50:29-05 \N \N -517 267 2022-06-17 15:50:37-05 \N \N -518 278 2022-06-17 15:50:57-05 \N \N -519 315 2022-06-17 15:51:55-05 \N \N -520 315 2022-06-17 15:52:05-05 \N \N -521 311 2022-06-17 15:52:19-05 \N \N -522 71 2022-06-17 15:52:49-05 \N \N -523 314 2022-06-17 15:53:11-05 \N \N -524 355 2022-06-17 15:53:24-05 \N \N -525 363 2022-06-17 15:53:41-05 \N \N -526 79 2022-06-17 15:54:04-05 \N \N -527 70 2022-06-17 15:56:09-05 \N \N -528 98 2022-06-17 15:56:48-05 \N \N -529 371 2022-06-17 15:57:15-05 2022-06-17 16:08:48.578977-05 \N -530 63 2022-06-17 15:58:14-05 2022-06-17 16:06:47.682295-05 \N -531 265 2022-06-17 15:58:25-05 \N \N -532 102 2022-06-17 15:58:38-05 \N \N -533 313 2022-06-17 15:58:57-05 \N \N -534 85 2022-06-17 15:59:13-05 \N \N -535 327 2022-06-17 15:59:28-05 2022-06-17 16:17:41.163084-05 \N -536 370 2022-06-17 15:59:54-05 \N \N -537 74 2022-06-17 16:00:15-05 \N \N -538 374 2022-06-17 16:00:38-05 2022-06-17 16:21:56.366007-05 \N -539 2 2022-06-17 16:01:03-05 2022-06-17 16:24:16.942742-05 \N -540 86 2022-06-17 16:01:22-05 2022-06-17 16:25:43.073981-05 \N -541 332 2022-06-17 16:01:37-05 \N \N -542 93 2022-06-17 16:02:00-05 \N \N -543 279 2022-06-17 16:02:48-05 \N \N -544 363 2022-06-17 16:04:29-05 2022-06-17 16:04:37.58257-05 \N -545 63 2022-06-17 16:06:30-05 \N \N -546 371 2022-06-17 16:08:55-05 \N \N -547 284 2022-06-17 16:12:07-05 2022-06-17 16:12:54.764607-05 \N -548 284 2022-06-17 16:13:58-05 \N \N -549 313 2022-06-17 16:15:29-05 2022-06-17 16:15:53.38899-05 \N -550 85 2022-06-17 16:16:51-05 \N \N -551 327 2022-06-17 16:18:53-05 \N \N -552 74 2022-06-17 16:19:55-05 \N \N -553 374 2022-06-17 16:22:17-05 \N \N -554 2 2022-06-17 16:24:36-05 \N \N -555 86 2022-06-17 16:26:16-05 \N \N -556 332 2022-06-17 16:27:31-05 \N \N -557 78 2022-06-17 16:29:04-05 \N \N -558 93 2022-06-17 16:29:46-05 \N \N -559 279 2022-06-17 16:30:49-05 \N \N -\. - -\echo sequence update column: id -SELECT SETVAL('money.billable_xact_id_seq', (SELECT MAX(id) FROM money.billable_xact)); diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_desk_payment.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_desk_payment.sql deleted file mode 100644 index 9fa10e38de..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_desk_payment.sql +++ /dev/null @@ -1,37 +0,0 @@ -COPY money.bnm_desk_payment (id, xact, payment_ts, voided, amount, note, amount_collected, accepting_usr, cash_drawer) FROM stdin; -15 8 2020-10-27 08:56:51.426709-05 0 50.00 LOST payment 50.00 1 51 -16 9 2020-10-27 07:26:51.426709-05 0 50.00 LOST payment 50.00 1 51 -17 10 2020-10-25 09:26:51.426709-05 0 10.00 Partial LOST payment 10.00 1 51 -18 544 2022-06-17 16:04:37.58257-05 0 19.95 19.95 1 24 -19 526 2022-06-17 16:04:52.330247-05 0 10.00 10.00 1 24 -20 526 2022-06-17 16:05:04.906701-05 0 5.95 5.95 1 24 -21 526 2022-06-17 16:05:24.354004-05 0 23.00 23.00 1 24 -23 530 2022-06-17 16:06:47.682295-05 0 1.00 partial payment 1.00 1 24 -24 545 2022-06-17 16:06:47.682295-05 0 13.00 partial payment 13.00 1 24 -25 531 2022-06-17 16:07:05.502186-05 0 0.50 0.50 1 24 -28 532 2022-06-17 16:08:32.482411-05 0 10.00 10.00 1 24 -29 529 2022-06-17 16:08:48.578977-05 0 1.00 1.00 1 24 -30 46 2022-06-17 16:09:31.170019-05 0 5.00 5.00 1 24 -31 44 2022-06-17 16:09:53.774713-05 0 5.00 5.00 1 24 -32 507 2022-06-17 16:12:00.214237-05 0 15.00 15.00 1 24 -34 549 2022-06-17 16:15:53.38899-05 0 200.00 200.00 1 24 -35 534 2022-06-17 16:16:57.490542-05 0 1.00 1.00 1 24 -36 511 2022-06-17 16:17:15.134538-05 0 1.00 1.00 1 24 -37 510 2022-06-17 16:17:20.962308-05 0 25.00 25.00 1 24 -38 535 2022-06-17 16:17:41.163084-05 0 1.00 1.00 1 24 -39 536 2022-06-17 16:19:18.414378-05 0 4.00 4.00 1 24 -40 538 2022-06-17 16:20:14.363345-05 0 10.00 10.00 1 24 -42 538 2022-06-17 16:21:56.366007-05 0 9.95 paid in quarters 9.95 1 24 -43 298 2022-06-17 16:22:55.954618-05 0 5.00 5.00 1 24 -44 300 2022-06-17 16:22:55.954618-05 0 22.95 22.95 1 24 -45 528 2022-06-17 16:23:48.034818-05 0 34.00 34.00 1 24 -46 539 2022-06-17 16:24:16.942742-05 0 6.00 6.00 1 24 -47 508 2022-06-17 16:25:20.170547-05 0 10.00 Room reservation fee - non-refundable 10.00 1 24 -48 540 2022-06-17 16:25:43.073981-05 0 1.00 1.00 1 24 -49 556 2022-06-17 16:27:36.742104-05 0 2.00 2.00 1 24 -50 557 2022-06-17 16:29:09.237816-05 0 2.00 2.00 1 24 -51 542 2022-06-17 16:29:53.070544-05 0 8.00 8.00 1 24 -52 542 2022-06-17 16:29:56.961877-05 0 1.00 1.00 1 24 -53 543 2022-06-17 16:30:17.145907-05 0 2.00 2.00 1 24 -\. - diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_payment.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_payment.sql deleted file mode 100644 index a15f0dac05..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.bnm_payment.sql +++ /dev/null @@ -1,61 +0,0 @@ -COPY money.bnm_payment (id, xact, payment_ts, voided, amount, note, amount_collected, accepting_usr) FROM stdin; -1 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -2 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -3 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -4 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -5 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -6 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -7 5 2014-05-28 07:39:13.070326-05 0 0.10 0.10 1 -8 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -9 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -10 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -11 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -12 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -13 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -14 10 2020-10-24 09:26:51.426709-05 0 0.10 0.10 1 -15 8 2020-10-27 08:56:51.426709-05 0 50.00 LOST payment 50.00 1 -16 9 2020-10-27 07:26:51.426709-05 0 50.00 LOST payment 50.00 1 -17 10 2020-10-25 09:26:51.426709-05 0 10.00 Partial LOST payment 10.00 1 -18 544 2022-06-17 16:04:37.58257-05 0 19.95 19.95 1 -19 526 2022-06-17 16:04:52.330247-05 0 10.00 10.00 1 -20 526 2022-06-17 16:05:04.906701-05 0 5.95 5.95 1 -21 526 2022-06-17 16:05:24.354004-05 0 23.00 23.00 1 -22 527 2022-06-17 16:06:14.811382-05 0 1.00 Volunteered to help pay off fines 1.00 1 -23 530 2022-06-17 16:06:47.682295-05 0 1.00 partial payment 1.00 1 -24 545 2022-06-17 16:06:47.682295-05 0 13.00 partial payment 13.00 1 -25 531 2022-06-17 16:07:05.502186-05 0 0.50 0.50 1 -26 513 2022-06-17 16:07:57.35497-05 0 1.00 Donated canned goods 1.00 1 -27 514 2022-06-17 16:08:10.858722-05 0 2.00 Donated canned goods 2.00 1 -28 532 2022-06-17 16:08:32.482411-05 0 10.00 10.00 1 -29 529 2022-06-17 16:08:48.578977-05 0 1.00 1.00 1 -30 46 2022-06-17 16:09:31.170019-05 0 5.00 5.00 1 -31 44 2022-06-17 16:09:53.774713-05 0 5.00 5.00 1 -32 507 2022-06-17 16:12:00.214237-05 0 15.00 15.00 1 -33 547 2022-06-17 16:12:54.764607-05 0 1.00 1.00 1 -34 549 2022-06-17 16:15:53.38899-05 0 200.00 200.00 1 -35 534 2022-06-17 16:16:57.490542-05 0 1.00 1.00 1 -36 511 2022-06-17 16:17:15.134538-05 0 1.00 1.00 1 -37 510 2022-06-17 16:17:20.962308-05 0 25.00 25.00 1 -38 535 2022-06-17 16:17:41.163084-05 0 1.00 1.00 1 -39 536 2022-06-17 16:19:18.414378-05 0 4.00 4.00 1 -40 538 2022-06-17 16:20:14.363345-05 0 10.00 10.00 1 -41 552 2022-06-17 16:21:05.138297-05 0 700.00 Court ordered community service 700.00 1 -42 538 2022-06-17 16:21:56.366007-05 0 9.95 paid in quarters 9.95 1 -43 298 2022-06-17 16:22:55.954618-05 0 5.00 5.00 1 -44 300 2022-06-17 16:22:55.954618-05 0 22.95 22.95 1 -45 528 2022-06-17 16:23:48.034818-05 0 34.00 34.00 1 -46 539 2022-06-17 16:24:16.942742-05 0 6.00 6.00 1 -47 508 2022-06-17 16:25:20.170547-05 0 10.00 Room reservation fee - non-refundable 10.00 1 -48 540 2022-06-17 16:25:43.073981-05 0 1.00 1.00 1 -49 556 2022-06-17 16:27:36.742104-05 0 2.00 2.00 1 -50 557 2022-06-17 16:29:09.237816-05 0 2.00 2.00 1 -51 542 2022-06-17 16:29:53.070544-05 0 8.00 8.00 1 -52 542 2022-06-17 16:29:56.961877-05 0 1.00 1.00 1 -53 543 2022-06-17 16:30:17.145907-05 0 2.00 2.00 1 -54 543 2022-06-17 16:31:10.36283-05 0 1.00 canned goods 1.00 1 -55 148 2022-06-17 16:32:25.341857-05 0 5.00 Dusted all of the bottom shelves as payment 5.00 1 -56 150 2022-06-17 16:32:25.341857-05 0 10.00 Dusted all of the bottom shelves as payment 10.00 1 -57 150 2022-06-17 16:32:40.050237-05 0 15.00 Mouse relocation 15.00 1 -58 150 2022-06-17 16:33:07.169799-05 0 15.00 Sanitized all of the board books 15.00 1 -\. - diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.payment.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/money.payment.sql deleted file mode 100644 index 9511f9cec2..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/money.payment.sql +++ /dev/null @@ -1,63 +0,0 @@ -COPY money.payment (id, xact, payment_ts, voided, amount, note) FROM stdin; -1 5 2014-05-28 07:39:13.070326-05 0 0.10 -2 5 2014-05-28 07:39:13.070326-05 0 0.10 -3 5 2014-05-28 07:39:13.070326-05 0 0.10 -4 5 2014-05-28 07:39:13.070326-05 0 0.10 -5 5 2014-05-28 07:39:13.070326-05 0 0.10 -6 5 2014-05-28 07:39:13.070326-05 0 0.10 -7 5 2014-05-28 07:39:13.070326-05 0 0.10 -8 10 2020-10-24 09:26:51.426709-05 0 0.10 -9 10 2020-10-24 09:26:51.426709-05 0 0.10 -10 10 2020-10-24 09:26:51.426709-05 0 0.10 -11 10 2020-10-24 09:26:51.426709-05 0 0.10 -12 10 2020-10-24 09:26:51.426709-05 0 0.10 -13 10 2020-10-24 09:26:51.426709-05 0 0.10 -14 10 2020-10-24 09:26:51.426709-05 0 0.10 -15 8 2020-10-27 08:56:51.426709-05 0 50.00 LOST payment -16 9 2020-10-27 07:26:51.426709-05 0 50.00 LOST payment -17 10 2020-10-25 09:26:51.426709-05 0 10.00 Partial LOST payment -18 544 2022-06-17 16:04:37.58257-05 0 19.95 -19 526 2022-06-17 16:04:52.330247-05 0 10.00 -20 526 2022-06-17 16:05:04.906701-05 0 5.95 -21 526 2022-06-17 16:05:24.354004-05 0 23.00 -22 527 2022-06-17 16:06:14.811382-05 0 1.00 Volunteered to help pay off fines -23 530 2022-06-17 16:06:47.682295-05 0 1.00 partial payment -24 545 2022-06-17 16:06:47.682295-05 0 13.00 partial payment -25 531 2022-06-17 16:07:05.502186-05 0 0.50 -26 513 2022-06-17 16:07:57.35497-05 0 1.00 Donated canned goods -27 514 2022-06-17 16:08:10.858722-05 0 2.00 Donated canned goods -28 532 2022-06-17 16:08:32.482411-05 0 10.00 -29 529 2022-06-17 16:08:48.578977-05 0 1.00 -30 46 2022-06-17 16:09:31.170019-05 0 5.00 -31 44 2022-06-17 16:09:53.774713-05 0 5.00 -32 507 2022-06-17 16:12:00.214237-05 0 15.00 -33 547 2022-06-17 16:12:54.764607-05 0 1.00 -34 549 2022-06-17 16:15:53.38899-05 0 200.00 -35 534 2022-06-17 16:16:57.490542-05 0 1.00 -36 511 2022-06-17 16:17:15.134538-05 0 1.00 -37 510 2022-06-17 16:17:20.962308-05 0 25.00 -38 535 2022-06-17 16:17:41.163084-05 0 1.00 -39 536 2022-06-17 16:19:18.414378-05 0 4.00 -40 538 2022-06-17 16:20:14.363345-05 0 10.00 -41 552 2022-06-17 16:21:05.138297-05 0 700.00 Court ordered community service -42 538 2022-06-17 16:21:56.366007-05 0 9.95 paid in quarters -43 298 2022-06-17 16:22:55.954618-05 0 5.00 -44 300 2022-06-17 16:22:55.954618-05 0 22.95 -45 528 2022-06-17 16:23:48.034818-05 0 34.00 -46 539 2022-06-17 16:24:16.942742-05 0 6.00 -47 508 2022-06-17 16:25:20.170547-05 0 10.00 Room reservation fee - non-refundable -48 540 2022-06-17 16:25:43.073981-05 0 1.00 -49 556 2022-06-17 16:27:36.742104-05 0 2.00 -50 557 2022-06-17 16:29:09.237816-05 0 2.00 -51 542 2022-06-17 16:29:53.070544-05 0 8.00 -52 542 2022-06-17 16:29:56.961877-05 0 1.00 -53 543 2022-06-17 16:30:17.145907-05 0 2.00 -54 543 2022-06-17 16:31:10.36283-05 0 1.00 canned goods -55 148 2022-06-17 16:32:25.341857-05 0 5.00 Dusted all of the bottom shelves as payment -56 150 2022-06-17 16:32:25.341857-05 0 10.00 Dusted all of the bottom shelves as payment -57 150 2022-06-17 16:32:40.050237-05 0 15.00 Mouse relocation -58 150 2022-06-17 16:33:07.169799-05 0 15.00 Sanitized all of the board books -\. - -\echo sequence update column: id -SELECT SETVAL('money.payment_id_seq', (SELECT MAX(id) FROM money.payment)); diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queue.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queue.sql deleted file mode 100644 index 673784540c..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queue.sql +++ /dev/null @@ -1,13 +0,0 @@ -COPY vandelay.queue (id, owner, name, complete, match_set) FROM stdin; -1 1 ready player two 1 \N -2 1 hobbit 1 \N -3 1 earwig 1 \N -4 1 city we became 1 \N -6 1 authoritiesfornewrecords 1 \N -8 1 Serials 0 \N -9 1 newqueue1 1 1 -10 1 uploadqueue2 1 1 -\. - -\echo sequence update column: id -SELECT SETVAL('vandelay.queue_id_seq', (SELECT MAX(id) FROM vandelay.queue)); diff --git a/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queued_record.sql b/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queued_record.sql deleted file mode 100644 index ef38498f6d..0000000000 --- a/Open-ILS/tests/datasets/sql/concerto_enhanced/vandelay.queued_record.sql +++ /dev/null @@ -1,249 +0,0 @@ -COPY vandelay.queued_record (id, create_time, import_time, purpose, marc, quality) FROM stdin; -1 2021-08-04 14:49:04-05 2021-08-04 14:49:06.634236-05 import 02831cim a22005054a 4500416911720210114200035.0sd fmngnnmmned200827t2020 nyunnn d f eng d9780593396957cd audio0593396952cd audio13480124PRHA 10859Random House Audio(SKY)sky301837284engrdaSKYRVCoBoFLCGD5GD5ACline, Ernest,author.Ready Player Two /Ernest Cline.Ready player 2.Unabridged.New York :Penguin Random House Audio,℗2020.11 audio discs (13 hours, 30 minutes) :digital ;4 3/4 inches.spoken wordspwrdacontentaudiosrdamediaaudio discsdrdacarrierReady Player Novels ;2.Compact discs.Read by Wil Wheaton.The highly anticipated sequel to the beloved worldwide best seller Ready Player One, the near-future adventure that inspired the blockbuster Steven Spielberg film. An unexpected quest. Two worlds at stake. Are you ready? Days after winning OASIS founder James Halliday's contest, Wade Watts makes a discovery that changes everything. Hidden within Halliday's vaults, waiting for his heir to find, lies a technological advancement that will once again change the world and make the OASIS 1,000 times more wondrous - and addictive - than even Wade dreamed possible. With it comes a new riddle, and a new quest - a last Easter egg from Halliday, hinting at a mysterious prize. And an unexpected, impossibly powerful, and dangerous new rival awaits, one who'll kill millions to get what he wants. Wade's life and the future of the OASIS are again at stake, but this time the fate of humanity also hangs in the balance. Lovingly nostalgic and wildly original as only Ernest Cline could conceive it, Ready Player Two takes us on another imaginative, fun, action-packed adventure through his beloved virtual universe, and jolts us thrillingly into the future once again.Shared virtual environmentsFiction.Regression (Civilization)Fiction.Virtual realityFiction.UtopiasFiction.PuzzlesFiction.Easter eggs (Computer programs)Fiction.Treasure trovesFiction.Audiobooks.lcgftScience fiction.lcgftYoung adult fiction.lcgftWheaton, Wil,narrator.Ready player novels ;2.admin 0 -2 2021-08-04 14:49:04-05 2021-08-04 14:49:07.748742-05 import 01607nam a22004335i 4500410212720210331132343.0201015s2020 nyu ed 000 1 eng d9780593400388(paperback : large print)0593400380(paperback : large print)(OCoLC)1206357405engrdaMZ7A813Cline, Ernest,author.Ready player two /Ernest Cline.First large print edition.New York :Random House Large Print,2020.594 pages (large print) ;24 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierlarge print.rda"A 1980s cultural assessment of the fantastical future of online behavior continues the story that began in the internationally best-selling futuristic novel, Ready Player One, that inspired a blockbuster Steven Spielberg film"--Provided by publisher.1010LLexileAccelerated Reader ARUG723510396.Regression (Civilization)Fiction.Virtual realityFiction.UtopiasFiction.PuzzlesFiction.Large type books.Fantasy fiction.lcgftNovels.lcgftadmin 0 -3 2021-08-04 14:49:04-05 2021-08-04 14:49:08.767729-05 import 02400cam a2200397Ii 4500400499120201201173017.0200704s2020 nyu e 000 1 eng d9781524761332(hardcover)1524761338(hardcover)(OCoLC)1162788009YDXengrdaYDXMUKMQOA813Cline, Ernest,author.Ready player two :a novel /Ernest Cline.First Edition.New York :Ballantine Books,[2020]370 pages ;25 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierSequel to: Ready player one.The highly anticipated sequel to the beloved worldwide bestseller Ready Player One, the near-future adventure that inspired the blockbuster Steven Spielberg film. AN UNEXPECTED QUEST. TWO WORLDS AT STAKE. ARE YOU READY? Days after winning OASIS founder James Halliday's contest, Wade Watts makes a discovery that changes everything. Hidden within Halliday's vaults, waiting for his heir to find, lies a technological advancement that will once again change the world and make the OASIS a thousand times more wondrous-and addictive-than even Wade dreamed possible. With it comes a new riddle, and a new quest-a last Easter egg from Halliday, hinting at a mysterious prize. And an unexpected, impossibly powerful, and dangerous new rival awaits, one who'll kill millions to get what he wants. Wade's life and the future of the OASIS are again at stake, but this time the fate of humanity also hangs in the balance. Lovingly nostalgic and wildly original as only Ernest Cline could conceive it, Ready Player Two takes us on another imaginative, fun, action-packed adventure through his beloved virtual universe, and jolts us thrillingly into the future once again.1010LLexileAccelerated Reader ARUG723510396.Regression (Civilization)Fiction.Virtual realityFiction.UtopiasFiction.PuzzlesFiction.Science fiction.lcgftCline, Ernest.Ready player one ;2.admin 0 -4 2021-08-04 14:49:39-05 2021-08-04 14:49:42.95948-05 import 02185cim a2200529Ma 4500353341420190717152849.0sd fungnnmmned150121r20091979mnunnnnj df n eng d97815988789811598878980DD13962Recorded Books(OCoLC)902013031RECBXengrdaRECBXOCLCOOCLCAOCLCFOCLOCLCAOCLOCLCOOCLOCLCQOCLCOOCLOCLCA791.44/7223The hobbit /J.R.R. Tolkien.Unabridged.[Minneapolis, Minn.] :HighBridge ;Prince Frederick, MD :[Distributed by] Recorded Books,[2009]4 audio discs (4 hr., 15 min.) :digital ;4 3/4 in.spoken wordspwrdacontentaudiosrdamediaaudio discsdrdacarrierTitle from container.Performed by a full cast.Prequel to rhe lord of the rings trilogy.Release date supplied by publisher.Previously released, p1979, and re-released in 1994.Compact disc.In container (17 cm.).Bilbo Baggins, a respectable, well-to-do hobbit, lives comfortably in his hobbit-hole until the day the wandering wizard Gandalf chooses him to take part in an adventure from which he may never return.Baggins, BilboJuvenile drama.Tolkien, J. R. R.(John Ronald Reuel),1892-1973Audio adaptations.Middle Earth (Imaginary place)Juvenile drama.FantasyJuvenile literature.Audiobooks.lcgftChildren's audiobooks.lcgftAudio adaptations.lcgftDrama.lcgftJuvenile works.lcgftRadio adaptations.lcgftTolkien, J. R. R.(John Ronald Reuel),1892-1973.Hobbit.HighBridge Audio (Firm)Recorded Books, LLC.admin 0 -5 2021-08-04 14:49:39-05 2021-08-04 14:49:43.543694-05 import 02841cam a2200589Ia 4500340172120200213213354.0000419s1997 mauab j 000 1 eng d 67029221 9780395071229hardcover0395282659paperback9780395282656paperback039507122403951771119780395177112(OCoLC)43887325 (OCoLC)43887325(OCoLC)51165808(OCoLC)227195122(OCoLC)987955037(OCoLC)999358798(OCoLC)1013753813(OCoLC)1015693547engrdaGC9A[Fic]21Tolkien, J. R. R.(John Ronald Reuel),1892-1973.HobbitThe hobbit /by J.R.R. Tolkien ; illustrated by the author.There and back againBoston :Houghton Mifflin Co.,[1997]©1997255 pages :illustrations, maps ;21 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierMaps on lining papers.Originally published in 1937 by George Allen & Unwin Ltd."The text of this edition of The Hobbit contains all revisions and corrections that have been made since the original publication and conforms in every respect to that of the British fourth edition published by George Allen & Unwin 1978."Bilbo Baggins, a respectable, well-to-do hobbit, lives comfortably in his hobbit-hole until the day the wandering wizard Gandalf chooses him to take part in an adventure from which he may never return.1000LLexileAccelerated ReaderUG6.616.0511.An Unexpected Party --Roast Mutton --A Short Rest --Over Hill and Under Hill --Riddles in the Dark --Out of the Frying-Pan into the Fire --Queer Lodgings --Flies and Spiders --Barrels Out of Bond --A Warm Welcome --On the Doorstep --Inside Information --Not at Home --Fire and Water --Gathering of the Clouds --A Thief in the Night --Clouds Burst --Return Journey --Last Stage.Accelerated Reader ARUG6.616511.Baggins, BilboFiction.Middle Earth (Imaginary place)Fiction.Hobbits (Fictitious characters)Fiction.WizardsFiction.FantasyJuvenile literature.Science fiction.lcgftFantasy fiction.lcgftAction and adventure fiction.lcgftadmin 0 -6 2021-08-04 14:49:39-05 2021-08-04 14:49:44.175518-05 import 01224nam a2200325Ii 450073170620020221101101.0010810t20012001mauab 000 1 eng d0618162216061815082X(4MO2)C5D3FDE0590D49C0909C3759690D3F1D(OCoLC)00139435PNXengrdaPNXMO2Tolkien, J. R. R.(John Ronald Reuel),1892-1973.The hobbit :or, There and back again /by J.R.R. Tolkien.Boston :Houghton Mifflin Co.,[2001]©2001330 pages :illustrations, map ;20 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierWith "corrections"--see Note on the text.Bilbo Baggins, a respectable, well-to-do hobbit, lives comfortably in his hobbit-hole until the day the wandering wizard Gandalf chooses him to take part in an adventure from which he may never return.1000LLexileAccelerated Reader ARUG6.616511.Fantasy fiction.lcgftadmin 0 -7 2021-08-04 14:49:39-05 2021-08-04 14:49:42.006884-05 import 00946nim a2200301Ii 4500226748020151210223139.0ss lunjlc---cu921015s1988 nyunnn d eng d0553471074BBC 002Bantam Audio(OCoLC)26789213OCPengrdaOCPUtOrBLWKilgarriff, Michael.BBC Radio presents The hobbit /J.R.R. Tolkien ; [adapted by Michael Kilgarriff].New York :Bantam Audio,[1988]4 audiocassettes (240 min.) :analog, Dolby processedspoken wordrdacontentaudiordamediaaudiocassetterdacarrierDramatization.Audiobooks.lcgftTolkien, J. R. R.(John Ronald Reuel),1892-1973.BBC Radio.Hobbit.admin 0 -8 2021-08-04 14:49:39-05 2021-08-04 14:49:42.455658-05 import 01989cim a2200529Mi 4500417129420210107162914.0m eq h sz zunznnnzneucs nza||||||||200924r20202020ohunnnneq f n eng d9781705009062170500906966926Findaway World(OCoLC)1197991297PLAYAengrdaPLAYAOCLCOTEFMTJUH823.91223Tolkien, J. R. R.(John Ronald Reuel),1892-1973,author.The Hobbit /J.R.R. Tolkien.Unabridged.Solon, Ohio :Findaway World, LLC,[2020]1 audio media player (10 hr., 15 min.) :digital, HD audio ;3 3/8 x 2 1/8 in.spoken wordspwrdacontentaudiosrdamediaunmediatednrdamediaotherszrdacarrierothernzrdacarrierdigitalnon-volatile flash memoryrdaaudio fileACELPrdaTitle from playaway labelRead by Andy Serkis.Originally release by ℗ 2020Release date supplied by publisher.Issued on Playaway, a dedicated audio media player.One set of earphones and one AAA battery required for listening.Bilbo Baggins, a respectable, well-to-do hobbit, lives comfortably in his hobbit-hole until the day the wandering wizard Gandalf chooses him to take part in an adventure from which he may never return.Middle Earth (Imaginary place)Fiction.Middle Earth (Imaginary place)Juvenile fiction.Audiobooks.lcgftFiction.lcgftSerkis, Andy,narrator.Playaway Digital Audio.Findaway World, LLC.admin 0 -9 2021-08-04 14:49:39-05 2021-08-04 14:49:44.571475-05 import 01069nim a2200361Ii 450059965720080811101137.0ss lunjlc----u080811t19911991mdunnn f eng d0788789562(OCoLC)48183731(Sirsi) i978078878956414790439ABJengrdaABJTolkien, J. R. R.(John Ronald Reuel),1892-1973.The hobbit /J.R.R. Tolkien.Unabridged.Prince Frederick, MD :Recorded Books,[1991]℗19917 audiocassettes (11 hrs.) :analogspoken wordspwrdacontentaudiosrdamediaaudiocassettessrdacarrierNarrated by Rob Inglis.4Middle Earth (Imaginary place)Fiction.Audiobooks.lcgftAudiocassettes.lcgftFantasy fiction.lcgftInglis, Rob.admin 0 -10 2021-08-04 14:49:39-05 2021-08-04 14:49:44.967392-05 import 01446nam a2200349 i 4500295087420151008154633.0040409r20031997mauab d 000 1 eng d068146576X258636TLCMUIengrdaMUI[Fic]19LP YTOLTolkien, J. R. R.(John Ronald Reuel),1892-1973.HobbitThe hobbit, or, There and back again /J.R.R. Tolkien ; illustrated by Michael Hague.There and back again.Waterville, Me. :Thorndike Press,2003.©1997483 pages (large print) :illustrations, maps ;26 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierPublished in 2003 by arragement with Houghton Mifflin Company.The text of this large print edition is unabridged. Other aspects of the book may vary from the original edition."Family edition"--P. [1] of cover.Bilbo Baggins, a respectable, well-to-do hobbit, lives comfortably in his hobbit-hole until the day the wandering wizard Gandalf chooses him to share in an adventure from which he may never return.Middle Earth (Imaginary place)Fiction.Fantasy.admin 0 -11 2021-08-04 14:49:39-05 2021-08-04 14:49:45.387638-05 import 07656cgm a2201153Ii 4500417224720210120170349.0vd cvaizq191030t2018 cau474 vleng 883929636259dvd3000078125Warner Bros. Entertainment(OCoLC)1125324680WISengrdaWISOCLCAOCLCFOCLCAengfrespaengengfrespaMP6The Hobbit :The Motion Picture Trilogy /New Line Cinema and Metro-Goldwyn-Mayer Pictures present a Wingnut Films production.Hobbit : an unexpected journeyHobbit: the desolation of SmaugHobbit: the battle of the five armiesUnexpected journeyDesolation of SmaugBattle of the five armiesBurbank, CA :Warner Bros. Entertainment,&#xfffd;2018.6 videodiscs (feature films approximately 474 min.) :sound, color ;4 3/4 in.two-dimensional moving imagetdirdacontentvideovrdamediavideodiscvdrdacarrierdigitalopticalsurround5.1 Dolby digitalrdavideo fileDVD videoregion 1rdaCollective title from container.Theatrical versions.Adapted from the novel by J.R.R. Tolkien.The hobbit: an unexpected journey originally released as a motion picture in &#xfffd;2012.The hobbit: the desolation of Smaug originally released as a motion picture in &#xfffd;2013.The hobbit : the battle of the five armies originally released as a motion picture in &#xfffd;2014.[Disc 1]. Hobbit: an unexpected journey -- [Disc 2]. Hobbit: an unexpected journey : special features -- [Disc 3]. Hobbit: the desolation of Smaug -- [Disc 4]. Hobbit: the desolation of Smaug: special features -- [Disc 5]. Hobbit: the battle of the five armies -- [Disc 6]. Hobbit : the battle of the five armies: special featuresThe hobbit: an unexpected journey: Director, Peter Jackson ; producers, Carolynne Cunningham, Zane Weiner, Fran Walsh, Peter Jackson ; screenwriters, Fran Walsh, Philippa Boyens, Peter Jackson, Guillermo Del Toro.The hobbit : the desolation of Smaug: Director, Peter Jackson ; producers, Carolynne Cunningham, Zane Weiner, Fran Walsh, Peter Jackson ; screenwriters, Fran Walsh, Philippa Boyens, Peter Jackson, Guillermo Del Toro.The hobbit : the battle of the five armies: Director, Peter Jackson ; producers, Carolynne Cunningham, Zane Weiner, Fran Walsh, Peter Jackson ; screenwriters, Fran Walsh, Philippa Boyens, Peter Jackson, Guillermo Del Toro.The hobbit: an unexpected journey: Martin Freeman, Ian McKellan, Ken Stott, Richard Armitage, Lee Pace, Ian Holm, Hugo Weaving, Cate Blanchett, Elijah Wood, Christopher Lee, Andy Serkis, Sylvester McCoy.The hobbit : the desolation of Smaug: Martin Freeman, Ian McKellan, Ken Stott, Richard Armitage, Lee Pace, Orlando Bloom, Evangeline Lilly, Cate Blanchett, Sylvester McCoy, Benedict Cumberbatch.The hobbit : the battle of the five armies: Martin Freeman, Ian McKellan, Ken Stott, Richard Armitage, Lee Pace, Orlando Bloom, Evangeline Lilly, Cate Blanchett, Hugo Weaving, Christopher Lee, Ian Holm, Benedict Cumberbatch, Sylvester McCoy.The hobbit: an unexpected journey: Follow Bilbo Baggins, who along with the Wizard Gandalf and 13 Dwarves, led by Thorin Oakenshield - is swept into an epic and treacherous quest to reclaim the lost Dwarf Kinfdom of Erebor. Runtime:2 hours, 49 minutes.The hobbit : the desolation of Smaug: Out heros escape the giant Spiders and Wood-elves of Mirkwood before encountering the mysterious Bard, who smuggles them into Lake-town. Finally, reaching the Lonely Mountain, they confront the Dragon Smaug. Runtime:3 hours, 6 minutes.The hobbit : the battle of the five armies: The Dwarves of Erebor have reclaimed their homeland, but face the consequences of unleashing Smaug. As five great armies go to war, Bilbo fights for his life, and the races of Dwarves, Elves, and Men must unite or be destroyed. Runtime:2 hours, 24 minutes.MPAA rating: PG-13; for extended sequences of intense fantasy action violence, and frightening images.DVD, Region 1, widescreen presentation; Dolby digital 5.1 surround.In English with optional dubbed French or Spanish dialogue and optional English, French or Spanish subtitles; closed-captioned in English for the hearing impaired.Baggins, BilboDrama.Middle Earth (Imaginary place)Drama.Hobbits (Fictitious characters)Drama.WizardsDrama.ElvesDrama.Dwarfs (Folklore)Drama.DragonsDrama.Imaginary wars and battlesDrama.Action and adventure films.lcgftDrama.lcgftFantasy films.lcgftFiction films.lcgftFilm adaptations.lcgftJackson, Peter,1961-film director,film producer,screenwriter.Walsh, Fran,1959-screenwriter,film producer.Weiner, Zane,film producer.Boyens, Philippa,screenwriter.Toro, Guillermo del,1964-screenwriter.Cunningham, Carolynne,film producer.McKellen, Ian,actor.Freeman, Martin,1971-actor.Armitage, Richard,1971-actor.Stott, Ken,1955-actor.Lilly, Evangeline,1979-actor.Pace, Lee,1979-actor.Serkis, Andy,actor.Cumberbatch, Benedict,1976-actor.Nesbitt, James,1965-actor.Blanchett, Cate,1969-actor.Holm, Ian,1931-2020,actor.Lee, Christopher,1922-2015,actor.Weaving, Hugo,1960-actor.Bloom, Orlando,1977-actor.McCoy, Sylvester,1943-actor.Motion picture adaptation of (work)Tolkien, J. R. R.(John Ronald Reuel),1892-1973.Hobbit.WingNut Films (Firm),production company.New Line Cinema Corporation,production company.Metro-Goldwyn-Mayer,production company.Warner Bros. Entertainment,film distributor.Container of (work) :Hobbit, an unexpected journey (Motion picture)Container of (work) :Hobbit, the desolation of Smaug (Motion picture)Container of (work) :Hobbit, the battle of the five armies (Motion picture)Container of (expression) :Hobbit, an unexpected journey (Motion picture).French.Container of (expression) :Hobbit, an unexpected journey (Motion picture).Spanish.Container of (expression) :Hobbit, the desolation of Smaug (Motion picture).French.Container of (expression) :Hobbit, the desolation of Smaug (Motion picture).Spanish.Container of (expression) :Hobbit, the battle of the five armies (Motion picture).French.Container of (expression) :Hobbit, the battle of the five armies (Motion picture).Spanish.admin 0 -12 2021-08-04 14:50:22-05 2021-08-04 14:50:24.573111-05 import 02234cim a2200553Ma 4500418765320210518132055.0m cq h cz nza||||||||sz zunznnnznzu120503r20122012ohunnnncq f n eng d97814640388531464038856521950Recorded Books(OCoLC)793165884RECBXengrdaRECBXOCLCQOCLCOOCLCAOCLCQOCLCOOCLCFPLSOCLCOOCLCQOCLCOOCLOCLCONTGOCLCAOCLCQOCLCO[Fic]22Jones, Diana Wynne.Earwig and the witch /Diana Wynne Jones.Unabridged.[Solon, Ohio] :Findaway World, LLC ;Prince Frederick, MD :[Distributed exclusively by] Recorded Books, LLC,[2012]℗20121 audio media player (1 hr.) :digital, HD audio ;3 3/8 x 2 1/8 in.spoken wordspwrdacontentcomputercrdamediaTitle from container."HDAUDIO."Narrated by Charlotte Parry.Release date supplied by publisher.Previously released by Recorded Books, LLC, p2012.Issued on Playaway, a dedicated media audio player.One set of earphones and one AAA battery required for playback.8 years and up.Although an orphan, Earwig has always enjoyed living at St. Morwald's, where she manages to make everyone do her bidding, but when she is taken in by a foster parents who are actually a witch and a demon, she has a hard time trying to turn the situation to her advantage.OrphansJuvenile fiction.WitchesJuvenile fiction.MagicJuvenile fiction.CatsJuvenile fiction.Children's audiobooks.lcgftAudiobooks.lcgftAudiobooks collection.lcgftParry, Charlotte,narrator.Recorded Books, LLC.Playaway Digital Audio.Findaway World, LLC.admin 0 -13 2021-08-04 14:50:22-05 2021-08-04 14:50:25.648472-05 import 02025pam a2200577 i 4500143722320120425115151.0110107t20122012nyua c 000 1 eng 20100489999780062075116trade006207511X(CPL)43997(IMchF)fol13550223DLCengrdaDLCICrlFlcacpcc[Fic]23Jones, Diana Wynne.Earwig and the witch /Diana Wynne Jones ; illustrated by Paul O. Zelinsky.Earwig & the witchNew York :Greenwillow Books,[2012]©2012115 pages :illustrations ;19 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierPublisher, publishing date and paging may vary.Pub Weekly, December 2011Kirkus Review, November 2011Earwig enjoys life at St. Morwald's, where she manages to make everyone do her bidding, until she is taken in by a foster parents--who are actually a witch and a demon--and struggles to turn the situation to her advantage.5.4Follett Library Resources3-6Follett Library Resources3-6Pub WeeklyKirkus Review760LLexileAccelerated Reader ARMG4.71149382.OrphansJuvenile fiction.WitchesJuvenile fiction.MagicJuvenile fiction.CatsJuvenile fiction.FantasyJuvenile literature.OrphansFiction.WitchesFiction.MagicFiction.CatsFiction.Fantasy fiction.lcgftZelinsky, Paul O.,illustrator.admin 0 -14 2021-08-04 14:50:22-05 2021-08-04 14:50:26.24809-05 import 03756ngm a22008654i 4500418272020210325132319.420210331075636.0vd cvaizq210324s2021 cau082 g vaeng dbe202100751400826663215618gtin-14826663215618SF 21561Shout! Factory(OCoLC)1236460445engrdaMUKengjpnengengjpn2020MZ7A791.45/72Âya to majo.JapaneseEarwig and the witch /a Studio Ghibli film ; director, Goro Miyazaki ; producer, Toshio Suzuki ; screenplay by Keiko Niwa and Emi Gunji.Los Angeles, CA :Shout! Factory,[2021]©20201 videodisc (82 min.) :sound, color ;4 3/4 in.two-dimensional moving imagerdacontentvideordamediavideodiscrdacarrierdigitalopticalsurroundrdaDolby digital 5.1videodiscNTSCrdavideo fileregion 1rdaDVD videoTelevision programBased on the novel by Diana Wynne Jones.Title from container.Dolby digital 5.1, anamorphic wide screen 1.85:1.Features: Creating Earwig and the witch, interviews with Japanese voice cast, trailers and teasers.Originally broadcast on television in 2020.English voices: Richard E. Grant, Kacey Musgraves, Dan Stevens.Japanese voices: Gaku Hamada, Kokoro Hirasawa, Shinobu Terajima.When an orphan is adopted and learns that her new mom is a witch, she sets out to learn her own magic and discovers her birth mother is also a witch.For private home use only.Rating: PG; for some scary images and rude material.English or Japanese dialogue; English subtitles for the deaf and hard of hearing (SDH); descriptive audio.WitchesDrama.OrphansDrama.MagicDrama.Fantasy television programs.lcgftAnimated television programs.lcgftTelevision adaptations.lcgftMade-for-TV movies.lcgftFiction television programs.lcgftFilm adaptations.lcgftVideo recordings for the hearing impaired.lcgftVideo recordings for people with visual disabilities.lcgftMiyazaki, Goro,1967-director.Suzuki, Toshio,1948 August 19-film producer.Niwa, Kieko,screenwriter.Gunji, Emi,screenwriter.Grant, Richard E.,1957-voice actor.Musgraves, Kacey,voice actor.Stevens, Dan,1982-voice actor.Hirasawa, Kokoro,voice actor,on-screen participant.Terajima, Shinobu,1972-voice actor,on-screen participant.Hamada, Gaku,1988-voice actor.Motion picture adaptation of (work) :Jones, Diana Wynne.Earwig and the witch.Sutajio Jiburi, Kabushiki Kaisha,production company.Shout! Factory (Firm),publisher.Container of (work): Âya to majo (Motion picture)Container of (expression): Âya to majo (Motion picture). English.admin 0 -15 2021-08-04 14:51:04-05 2021-08-04 14:51:07.411688-05 import 02295cam a22004458i 4500385053220210415152959.0190927s20202020nyuab e 000 1 eng 20190433829780316509848hardcover0316509841hardcover(OCoLC)1121441745DLCengrdaDLCUKMGBOCLCOOCLCFOI6RB0FM0OCLCOCHYSDGNZAUCMTFpccMTFA813.623Jemisin, N. K.,author.The City we became /N.K. Jemisin.First edition.New York, NY :Orbit,2020.©2020437 pages :illustration ;25 cm.texttxtrdacontentunmediatednrdamediavolumencrdacarrierThe great city trilogy ;1Series numeration from www.goodreads.com."The prologue was originally published in a slightly different version as 'The city born great' on Tor.com in 2016."--T.p. verso."Five New Yorkers must come together in order to save their city from destruction in the first book of a stunning new series by Hugo award-winning and NYT bestselling author N. K. Jemisin. Every great city has a soul. Some are ancient as myths, and others are as new and destructive as children. New York? She's got six. When a young man crosses the bridge into New York City, something changes. He doesn't remember who he is, where he's from, or even his own name. But he can feel the pulse of the city, can see its history, can access its magic. And he's not the only one. All across the boroughs, strange things are happening. Something is threatening to destroy the city and her six newborn avatars unless they can come together and stop it once and for all"--Provided by publisher.MythologyFiction.MagicFiction.New York (N.Y.)Fiction.Fantasy fiction.lcgftJemisin, N. K.Great cities trilogy ;1.admin 0 -16 2021-08-04 14:51:04-05 2021-08-04 14:51:08.012033-05 import 01622cim a2200469Ki 4500399337420200626171325.0sd fsngnnmmned200324s2020 nyunnnne f n eng d9781549157271(CMD)1549157272(CMD)(OCoLC)1145892479BLACPengrdaBLACPOCLCFMZ7A813/.623Jemisin, N. K.,author.The city we became /N. K. Jemisin.Unabridged.[New York] :Hachette Book Group,[2020]13 audio discs (16 hr.) :CD audio, digital ;4 3/4 in.spoken wordspwrdacontentaudiosrdamediaaudio discsdrdacarrierdigitalrdatropticalrdarmaudio filerdaftCD audioGreat cities trilogyCompact discs.Read by Robin Miles.Every great city has a soul. But every city also has a dark side. A roiling, ancient evil stirs in the halls of power, threatening to destroy New York and her six newborn avatars unless five residents can stop it for good.MythologyFiction.MagicFiction.New York (N.Y.)Fiction.Audiobooks.lcgftMagic realist fiction.lcgftFantasy fiction.lcgftMiles, Robin,narrator.Jemisin, N. K.Great cities trilogy.Spoken word.admin 0 -114 2021-08-05 10:05:30-05 2021-08-05 10:06:02.295757-05 import 02353cz a2200241n 450010220160412142123.2110509|| anznnbabn |a ana gf2011026653sh2007025308gf2014026600(DLC)gf2011026653DLCengDLClcgftDLCWaUTelevision adaptationsDramatisationsDramatizationsgAdaptationsgTelevision programsMoving image genre-form guide online, August 20, 2007:(Adaptation: fiction or nonfiction work taken from a work already existing in another medium, such as a book, short story, comic strip, radio program, or play)Yee, Martha M. Moving image materials : genre terms, 1988:p. 25 (Adaptations: use for a work which has been created by the modification of another work in order to transpose it from one medium to another)LCSH, Aug. 20, 2007:(hdg.: Television adaptations)Middlemarch : the magnificent BBC TV dramatisation of the epic story of love, politics and frustrated passion in 19th century England, 1994.Pride and prejudice : the stunning BBC TV dramatisation of a classic romance, 1997.OCLC, Jan. 19, 2016(notes: A BBC Television dramatization of Shakespeare's play entitled, Hamlet; Television dramatization of the Chinese classic Dream of the Red Chamber, which tells the saga of four wealthy families in the heyday of the Chʻing dynasty; A made-for-television dramatization of William Shakespeare's play about power, assassination and revenge; A television dramatization of the children's book Kaitangata twitch by Margaret Mahy; Television dramatization of William Shakespeare's play: Love's labour's lost; A made-for-television dramatization of F. Scott Fitzgerald's Tender is the night; Television dramatisation of the romance between Queen Victoria and her German-born consort Prince Albert, from 1837 to 1861; New TV dramatisation of the post-apocalyptic drama, based on the John Wyndham novel)Cuddon, J.A. A dictionary of literary terms and literary theory, 1998(dramatization: The act of making a play out of a story in another genre; from a chronicle, novel, short story and so forth; it is a practice by no means extinct, as television and recent theatrical history amply demonstrate)admin 0 -115 2021-08-05 10:05:30-05 2021-08-05 10:06:02.035349-05 import 00949cz a2200253n 450010391320180922073502.0090127n| azannaabn |a aaa cno2009011609(DLC)no2009011609(OCoLC)oca07996014NcUengrdaNcUICrlF1982-10-10edtfStevens, Dan,1982-Croydon (London, England)nafNarrator of audiobooksActorslcshMaleslcdgtengDaniel JonathanStevens, Daniel Jonathan,1982-Sense & sensibility, c2008:title frame (Dan Stevens)IMDb, January 27, 2009(Stevens, Dan; b. Oct. 10, 1982; Daniel Jonathan Stevens)Wikipedia, Sept. 21, 2018(Dan Stevens ; Daniel Jonathan Stevens (born 10 October 1982 in Croydon, London, England, UK) is an English actor ; film, TV, stage, radio dramas, audiobook narrator)admin 0 -116 2021-08-05 10:05:30-05 2021-08-05 10:06:01.796024-05 import 01507cz a2200169n 45001068120130529073759.0040426n| azannaabn |a ana n 2004008760(DLC)n 2004008760(OCoLC)oca06333494DLCengrdaDLCDLCCStWarner Bros. EntertainmentTime Warner, Inc.Warner Bros. EntertainmentVaz, M. The art of the Polar Express, 2004:Ecip verso t.p. (Warner Bros. Entertainment, Inc.)WWW2.warnerbros.com Apr. 26, 2004:(Warner Bros. Entertainment, Inc)Warner Bros. Online, Mar. 17, 2005:Company info. page (Warner Bros. Entertainment; a Time Warner co. creates and dist. films, TV programs, animation, video and DVD under the banners: Warner Bros. Pictures, Castle Rock, Warner Independent Pictures, Lorimar Pictures, RKO and classic MGM (pre-1986). Warner Bros Studios began when the brothers Warner incorporated in 1923 [and began producing films under the banner Warner Bros. Pictures]; in 1967 Warner Bros. Pictures was sold and renamed Warner Bros.-Seven Arts. In Nov. 1969 it became Warner Communications, Inc. [resumed use of name Warner Bros. and Warner Bros. Pictures for its film production]; in 1990 Warner Communications, Inc. merged with Time Inc. to form Time Warner Inc. Warner Bros. Studios is the name used for the 110-acre lot that serves as a production and post-production facility; Jan. 2001 Time Warner Inc., Warner Bros.' parent merged with merica Online)admin 0 -117 2021-08-05 10:05:30-05 2021-08-05 10:06:01.539372-05 import 01130cz a2200229n 4500114720170525073851.0800730n| azannaabn |n aaa n 50039700 (DLC)n 50039700 (OCoLC)oca00074913DLCengrdaDLCCStDLCInU1922-05-272015-06-07edtfLee, Christopher,1922-2015Belgravia (London, England)Kensington and Chelsea (London, England)nafDracula filmslcshMotion picture actors and actressesTelevision actors and actresseslcshmaleengChristopher Frank CarandiniHammer presents Dracula. [Phonodisc] 1974.Telegraph (online), viewed June 11, 2015(Sir Christopher Lee; Christopher Frank Carandini Lee; b. May 27, 1922, Belgravia, London; knighted in 2009; d. June 7, 2015, Chelsea and Westminster Hospital, Royal Borough of Kensington and Chelsea; actor of aristocratic bearing who was closely identified with the role of Dracula and played Saruman in The lord of the rings; also appeared on television)admin 0 -118 2021-08-05 10:05:30-05 2021-08-05 10:06:01.335757-05 import 00480cz a2200133n 450011920160104115820.6110509|| anznnbabn |a ana gf2011026724sh2007025380(DLC)gf2011026724DLCengDLClcgftDLCVideo recordings for people with visual disabilitiesgVideo recordingsLCSH, Aug. 13, 2007(hdg.: Films for people with visual disabilities; Video recordings for people with visual disabilities)admin 0 -119 2021-08-05 10:05:30-05 2021-08-05 10:06:01.080226-05 import 00882cz a2200193n 450012020190123111843.5110509|| anznnbabn |a ana gf2011026725sh2007025379(DLC)gf2011026725DLCengDLClcgftDLCVideo recordings for the hearing impairedCaptioned video recordingsClosed caption video recordingsDeaf, Video recordings for theVideo recordings for the deafgVideo recordingsFilms by genre, c1993(captioned film: a film with superimposed titles to help the hearing impaired persons to follow the dialogue and lyrics or for everyone to translate dialectical or foreign language films into the local language)LCSH, Aug. 13, 2007(hdgs: Films for the hearing impaired; Video recordings for the hearing impaired)admin 0 -120 2021-08-05 10:05:30-05 2021-08-05 10:06:00.879956-05 import 00537nz a2200145n 450012226920110311074606.0110310n| acannaabn |n aaa cno2011038748(DLC)no2011038748(OCoLC)oca08793513IENengIENMiyazaki, Goro,1967-Tales from Earthsea, 2011:end credits (Goro Miyazaki, screenplay writer and director)IMDb, Mar. 10, 2011(Goro Miyazaki, animation director and writer; son of filmmaker Hayao Miyazaki; b. Jan. 21, 1967 in Tokyo, Japan)admin 0 -121 2021-08-05 10:05:30-05 2021-08-05 10:06:00.628048-05 import 01181cz a2200193n 4500130320170323073938.0801013n| azannaabn |a ana n 50060472 (DLC)n 50060472 (OCoLC)oca00094956DLCengDLCDLCIAhCCSrda1967edtfNew Line Cinema CorporationUnited StatesnafrHierarchical superior:Warner Bros. EntertainmentStop in the marshland. [MP] 1973.Movie & TV News at IMDb, Mar. 3, 2008(New Line Cinema has reached the end of the line. Time Warner announced Thursday that it will merge the studio into Warner Bros.)Wikipedia, viewed Mar. 22, 2017(New Line Cinema is an American film studio that was founded in 1967 by Robert Shaye as a film distribution company, later becoming an independent film studio. It became a subsidiary of the Turner Broadcasting System in 1994 before Turner merged with Time Warner in 1996, and was later merged with its larger sister studio Warner Bros. Entertainment in 2008. Currently, its films are distributed by Warner Bros.)https://en.wikipedia.org/wiki/New_Line_Cinemaadmin 0 -122 2021-08-05 10:05:30-05 2021-08-05 10:06:00.383901-05 import 00762cz a2200193n 450013729020130227084722.0121101n| acannaabn |a ana cno2012142413n 2012073842(DLC)no2012142413(OCoLC)oca09337916IlMchBWIengIlMchBWIIAhCCS2012http://www.imdb.com/title/tt0903624/Hobbit, an unexpected journey (Motion picture)engUnexpected journey (Motion picture)Hobbit (Motion picture : 2012)Kempshall, Paddy. The hobbit, 2012 :colophon (a companion to the film The Hobbit: An Unexpected Journey)IMDb, Nov. 1, 2012(The Hobbit: An Unexpected Journey, released Dec. 14, 2012; directed by Peter Jackson)admin 0 -123 2021-08-05 10:05:30-05 2021-08-05 10:06:00.119537-05 import 01132cz a2200253n 450013966420140702163412.0130326n| azannaabn |n aaa cno2013033289(DLC)no2013033289(OCoLC)oca09436184IlMpPLengrdaIlMpPLIENPPi-MADLC19880821Musgraves, KaceyMineola (Tex.)United StatesNashville (Tenn.)nafGolden (Tex.)Country musicPopular musiclcshCountry musiciansComposersSingerslcshfemaleengHer Same trailer, different park, p2013:label (Kacey Musgraves)AllMusic WWW site, March 26, 2013biography page (Songwriter and country singer Kacey Musgraves was born in East Texas; genres: country, Pop/Rock)Wikipedia, March 20, 2014(Kacey Musgraves; born August 21, 1988, Mineola, Tex.; origin: Golden, Tex.; American country musician, singer-songwriter)Kacey Musgraves WWW site, March 20, 2014(Kacey Musgraves; Nashville-based singer-songwriter; grew up in Golden, Tex.)admin 0 -124 2021-08-05 10:05:30-05 2021-08-05 10:05:59.895695-05 import 00494cz a2200169n 45001420151223161226.6110505|| anznnbabn |a ana gf2011026122sh2010025009(DLC)gf2011026122DLCengDLClcgftDLCChildren's audiobooksAudiobooks for childrenJuvenile audiobooksgAudiobooksgChildren's sound recordingsWork cat.: Gipson, F. Old yeller [SR], p1997, c1956.admin 0 -125 2021-08-05 10:05:30-05 2021-08-05 10:05:59.647543-05 import 00923cz a2200229n 45001403020150528073755.0961106n| azannaabn |n aaa cno 96058070 (DLC)no 96058070 (OCoLC)oca04201117ViBlbVengrdaViBlbVScU19570505Grant, Richard E.,1957-Mbabane (Swaziland)nafActingMotion pictures--Production and directionlcshActorsMotion picture producers and directorslcshmaleengWith nails, 1996:t.p. (Richard E. Grant) jacket (born in Mbabane, Swaziland; came to London in 1982)Film encyclopedia, c1994:p. 548 (Grant, Richard E.; actor, b. 5/5/57)Internet Movie Database WWW site, May 26, 2015:(Richard E. Grant, actor, director ; b. Richard Grant Esterhuysen, May 5, 1957 in Mbabane, Swaziland)admin 0 -126 2021-08-05 10:05:30-05 2021-08-05 10:05:59.415417-05 import 00688nz a2200181n 450014486520140103073521.0140102n| azannaabn |a ana cno2014000094(DLC)no2014000094(OCoLC)oca09647749UPBengrdaUPBHobbit, the desolation of Smaug (Motion picture)engDesolation of Smaug (Motion picture)Hobbit (Motion picture : 2013)Sibley, Brian. The Hobbit, the desolation of Smaug, 2013:title page (Hobbit, the desolation of Smaug)IMDb, via WWW, Dec. 30, 2013(The Hobbit: the desolation of Smaug, adventure/fantasy film released December 13, 2013)admin 0 -127 2021-08-05 10:05:30-05 2021-08-05 10:05:59.175189-05 import 00826cz a2200217n 45001453420130109121522.0990301n| azannaabn |a ana cno 99014412 (DLC)no 99014412 (OCoLC)oca04931700OClengrdaOClIlMchBWIUPBDLCHighBridge Audio (Firm)FirmU.S.Minneapolis, Minn.201 6th St. SE, Ste 220MinneapolisMinnesota55414High Bridge Audio (Firm)HighBridge CompanyWalking to classics. Intermediate, c1998:label (HighBridge Audio; St. Paul, Minn.)Keillor, G. Lake Wobegon summer 1956 [SR] p2001:container (HighBridge Company)HighBridge, via WWW, 8 June 2011(contact us: 201 6th St. SE, Ste 220, Minneapolis, MN 55414)admin 0 -128 2021-08-05 10:05:30-05 2021-08-05 10:05:58.979607-05 import 00432cz a2200145n 45001510320160922075446.0030331n| azannaabn |n aaa cno2003031623(DLC)no2003031623(OCoLC)oca06013080ViVbengrdaViVbIlMpPLMiles, RobinNarrator of audiobooksThe twins and the Bird of Darkness, p2003, c2002:cassette label (Robin Miles, narrator)admin 0 -129 2021-08-05 10:05:30-05 2021-08-05 10:05:58.739921-05 import 00843cz a2200229n 45001518820150718073854.0030617n| azannaabn |n aaa cno2003059611(DLC)no2003059611(OCoLC)oca06077397FMUengrdaFMUDLCScU19770113Bloom, Orlando,1977-Canterbury (England)nafActinglcshActorslcshmaleengThe Lord of the Rings, 2001:title frame (Orlando Bloom as the Elf Legolas Greenleaf)IMDb, June 17, 2003(b. 13 January 1977 in Canterbury, Kent, England, UK; actor)Internet Movie Database WWW site, July 17, 2015:(Orlando Bloom, actor ; b. Orlando Jonathan Blanchard Bloom, January 13, 1977 in Canterbury, Kent, England, UK )admin 0 -130 2021-08-05 10:05:30-05 2021-08-05 10:05:58.539714-05 import 00546cz a2200145n 45001538320130606073859.0040407n| azannaabn |n ana cno2004033496(DLC)no2004033496(OCoLC)oca06317550PStengrdaPStCStShout! Factory (Firm)Blues story [VR] c2003:container (Shout! Factory)Shout! Factory WWW home site, Mar. 25, 2004:pressroom release Feb. 1, 2003 (Shout! Factory, retro pop culture entertainment company focused on audio and video products)admin 0 -131 2021-08-05 10:05:30-05 2021-08-05 10:05:58.275478-05 import 01082cz a2200253n 45001539220190322073135.0040422n| azannaabn |n aaa cno2004038611(DLC)no2004038611(OCoLC)oca06329542IAhCCSengrdaIAhCCSCStScU1971-09-08edtfFreeman, Martin,1971-Aldershot (England)nafActingMotion pictures--Production and directionSinginglcshActorsMotion picture producers and directorsSingerslcshMaleslcdgtengMartin John ChristopherThe office. The complete second series, 2004:credits (Martin Freeman; cast)Internet movie database, Apr. 22, 2004(Martin Freeman, b. Sept. 8, 1971)Internet Movie Database WWW site, July 17, 2015:(Martin Freeman, actor ; b. Martin John Christopher Freeman, September 8, 1971 in Aldershot, Hampshire, England, UK)IMDb, February 18, 2019:(Martin Freeman; actor, producer, soundtrack)admin 0 -132 2021-08-05 10:05:30-05 2021-08-05 10:05:58.047739-05 import 00825cz a2200181n 45001585820130110154014.0061004n| azannaabn |n ana cno2006106285(DLC)no2006106285(OCoLC)oca07072314IAhCCSengrdaIAhCCSUPBDLCUPBDLC2004Findaway World, LLCU.S.Solon, Ohio31999 Aurora RoadSolonOhio44319The lion, the witch and the wardrobe, c2006:container (Findaway World, LLC)Playaway, via WWW, 7 December 2010(Findaway World is the maker of Playaway, a preloaded digital audiobook. Headquarters: Cleveland/Akron, Ohio Area; industry: consumer electronics; type: privately held; founded 2004. Headquarters address: 31999 Aurora Road, Solon, Ohio 44319, United States)admin 0 -133 2021-08-05 10:05:30-05 2021-08-05 10:05:57.804659-05 import 00945cz a2200229n 45001631920141118125958.0080630n| azannaabn |n aaa cno2008096009no2011140692(DLC)no2008096009(OCoLC)oca07808835TxSmSANBengrdaTxSmSANBIlMchBWIOCoLCCStOCoLCDLC19760719Cumberbatch, Benedict,1976-London (England)nafActorslcshmaleBenedict Timothy CarltonAtonement (Motion picture : 2007), c2008:credits (Benedict Cumberbatch)Internet movie database, June 30, 2008(Benedict Cumberbatch; b. 1977, London; actor)Small island [VR], 2010:container (Benedict Cumberbatch, cast)Internet movie database, May 28, 2010(Benedict Cumberbatch; born July 19, 1976, London, England; birth name, Benedict Timothy Carlton Cumberbatch)admin 0 -134 2021-08-05 10:05:30-05 2021-08-05 10:05:57.571857-05 import 00710cz a2200193n 45001662720121209122615.0090617n| azannaabn a ana cno2009093208(DLC)no2009093208(OCoLC)oca08144971CtWfDGIengrdaCtWfDGIUPB1979Recorded Books, LLCRecording firmengaRecorded Books, Inc.50 success classics, p2009:container (Recorded Books, LLC)Recorded Books WWW site, June 17, 2009:About RB page (Recorded Books, Recorded Books, LLC; founded in 1979 as Recorded Books, then as Recorded Books, LLC, became a division of Haights Cross Communications)admin 0 -135 2021-08-05 10:05:30-05 2021-08-05 10:05:57.3717-05 import 00543cz a2200145n 45001692220130111073928.0100227n| azannaabn |n ana cno2010033968(DLC)no2010033968(OCoLC)oca08408451UPBengrdaUPBUPBDLCPlayaway Digital AudioThe crucible, released 2008, c2007:container (Playaway Digital)WorldCat Identities, via WWW, 26 Jan. 2010(Playaway Digital Audio, 6,220 works in 6,629 publications in 17 languages and 86,093 library holdings)admin 0 -136 2021-08-05 10:05:30-05 2021-08-05 10:05:57.10773-05 import 01184nz a2200193n 450017220150513181120.1141201|| anznnbabn |a ana cgf2014026217(DLC)gf2014026217IlChALCSengDLClcgftAction and adventure fictionAction fictionAdventure fictionSwashbuckler fictionSwashbucklers (Fiction)gFictionSaricks, J. Readers' advisory guide to genre fiction, 2009:p. 17 (novels in the Adventure genre are action-packed, feature a hero on a mission, and are often set in exotic locales during times of war and peace; characteristics of adventure: pacing is generally brisk, as the hero escapes from one dangerous episode to the next; the story line focuses on action, usually a mission; there is always an identifiable hero; detailed settings are important, generally 'elsewhere', i.e. foreign)GSAFD, 2000(Adventure fiction. UFs: Adventure stories, Swashbucklers; use for works characterized by an emphasis on physical and often violent action, exotic locales, and dangers, generally with little character development)admin 0 -137 2021-08-05 10:05:30-05 2021-08-05 10:05:56.5996-05 import 03600cz a2200433n 4500172420180929073719.0790123n| azannaabn |b aaa n 79005673 sh 88006725 no 98046177 0000000121441970isni(DLC)n 79005673 (OCoLC)oca00239830DLCengrdaDLCDLCOClWUDLCOCoLCUPB-MuDLCUPBWUUkDLCCU-HEDLCCLU1892-01-031973-09-02edtfPR6039.O32Tolkien, J. R. R.(John Ronald Reuel),1892-1973Bloemfontein (South Africa)Bournemouth (England)University of LeedsnafUniversity of OxfordnafmaleengJohn Ronald ReuelnnaTolkien, John Ronald Reuel,1892-1973Tolkin, Dzh. R. R.(Dzhon Ronalʹd Ruėl),1892-1973Толкин, Дж. Р. Р.(Джон Рональд Руэл),1892-1973Tolkin, Dzhon Ronalʹd Ruėl,1892-1973Ṭolḳin, Dzshey. R. R.,1892-1973טולקין, ג׳.ר.רטאלקין, דשיי. ר. ר.,1892-1973瀬田貞二,1892-1973톨킨, J. R. R,1892-1973Tʻolkʻin, Jon Ṛonald Ṛuel,1892-1973Machine-derived non-Latin script reference project.Non-Latin script references not evaluated.Prikli͡ucheni͡a Toma Bombadila i drugie istorii, 1994:t.p. (Dzhon Ronalʹd Ruėl Tolkin)Vlastelin kolet͡s, 1992:t.p. (Dzhon Ronalʹd Ruėl Tolkin) cover (Dzh.R.R. Tolkin)Contemporary authors online, 8 March 2013(J. R. R. Tolkien; Tolkien, John Ronald Reuel; born January 3, 1892, in Bloemfontein, South Africa; died of complications resulting from a bleeding gastric ulcer and a chest infection, September 2, 1973, in Bournemouth, England; Education: Exeter College, Oxford, B.A., 1915, M.A., 1919; author and scholar; professor at University of Leeds, Oxford University)Di ḥavrus̀e fun dem fingerl, c2014:t.p. (דזשיי. ר. ר. טאלקין = Dzshey. R. R. Ṭolḳin)English Wikipedia website, viewed July 29, 2016:(John Ronald Reuel Tolkien CBE, FRSL (3 January 1892-2 September 1973), known by his pen name J. R. R. Tolkien, was an English writer, poet, philologist, and university professor who is best known as the author of the classic high-fantasy works The Hobbit, The Lord of the Rings, and The Silmarillion. He served as the Rawlinson and Bosworth Professor of Anglo-Saxon and Fellow of Pembroke College, Oxford, from 1925 to 1945 and Merton Professor of English Language and Literature and Fellow of Merton College, Oxford from 1945 to 1959. He was at one time a close friend of C. S. Lewis-they were both members of the informal literary discussion group known as the Inklings. Tolkien was appointed a Commander of the Order of the British Empire by Queen Elizabeth II on 28 March 1972. After Tolkien's death, his son Christopher published a series of works based on his father's extensive notes and unpublished manuscripts, including The Silmarillion. These, together with The Hobbit and The Lord of the Rings form a connected body of tales, poems, fictional histories, invented languages, and literary essays about a fantasy world called Arda, and Middle-earth within it. Between 1951 and 1955, Tolkien applied the term legendarium to the larger part of these writings)admin 0 -138 2021-08-05 10:05:30-05 2021-08-05 10:05:56.347768-05 import 00870cz a2200217n 45001912020140916081556.0931103n| azannaabn |a aaa cnr 93045476 (DLC)nr 93045476 NNCengrdaNNCDLC19641009PS3620.O5875Toro, Guillermo del,1964-Guadalajara (Mexico)Los Angeles (Calif.)malespaengDel Toro, Guillermo,1964-La invención de Cronos, 1992:t.p. (Guillermo del Toro) flap of front cover (b. 1964 in Guadalajara, Jalisco; screenwriter and film director; specialist in special effects; writer)Wikipedia, Oct. 22, 2008(currently lives in Los Angeles)IMDb, Oct. 29, 2010(Guillermo del Toro; b. Oct. 9, 1964, Guadalajara, Mexico; producer, writer, director, actor)admin 0 -139 2021-08-05 10:05:30-05 2021-08-05 10:05:55.971664-05 import 02565cz a2200349n 450019220190124101116.4141201|| anznnbabn |a ana cgf2014026297gf2011026277gf2011026647(DLC)gf2014026297IlChALCSengDLClcgftDLCDramaDramasnneFilmed playsPlaysPlayscriptsScripts, StageStage playsStage scriptsnneTelevised playsTheatrical worksgLiteratureLCSH, Oct. 22, 2014(Drama. UF Plays. BT Literature)Abrams, M. A glossary of literary terms, c1999(Drama. The form of composition designed for performance in the theater, in which actors take the roles of the characters, perform the indicated action, and utter the written dialogue. (The common alternative name for a dramatic composition is a play.))Quinn, E. A dictionary of literary and thematic terms, c1999(drama: In its broadest sense, any work in which actors assume roles before an audience, either in a theater or on radio or television. Drama is a major literary genre, frequently subdivided into the categories of tragedy, comedy, and tragicomedy; play: A composition written to be performed)The American heritage dictionary of the English language, ©2000, updated 2009, via WWW, Mar. 11, 2014(theatrical, noun 1. Stage performances or a stage performance, especially by amateurs. Often used in the plural.)Oxford dictionaries website, July 11, 2014(play, noun 3. A dramatic work for the stage or to be broadcast. Synonyms: drama, theatrical work; screenplay, comedy, tragedy; production, performance, show, sketch)Merriam-Webster online, July 11, 2014(play noun 2. a written work in which the story is told through speech and action that is intended to be acted out on stage. Synonyms: drama, dramatization. Related Words: interlude, playlet; comedy, comedy drama, docudrama, dramedy, melodrama, monodrama, musical, musical comedy, psychodrama, tragedy, tragicomedy; magnum opus, opus, work; adaptation)Wynston, G.P. Adapting stage drama for radio : techniques of preparing stage scripts for Canadian Broadcasting Corporation radio production, 1976.Vickers, S. Drama scripts for people with special needs, 2005.Hirsch, M.E. Chinese shadow theater playscripts, 1998.Chayefsky, P. The stage plays, 1995.admin 0 -140 2021-08-05 10:05:30-05 2021-08-05 10:05:55.615308-05 import 03231nz a2200253n 4500220110517113815.0110502 | anznnbabn |a ana gf2011026005sh2007004004(DLC)gf2011026005DLCengDLClcgftAction and adventure filmsAction-adventure filmsAction filmsAction moviesAdventure and action filmsAdventure filmsAdventure moviesgMotion picturesSwashbuckler filmsFilmsite WWW site, May 21, 2008(Action films have tremendous impact, continuous high energy, lots of physical stunts and activity, possibly extended chase scenes, races, rescues, battles, martial arts, mountains and mountaineering, destructive disasters (floods, explosions, natural disasters, fires, etc.), fights, escapes, non-stop motion, spectacular rhythm and pacing, and adventurous heroes - all designed for pure audience escapism with the action sequences at the core of the film; The main action centers around a male action hero or protagonist; Adventure films are exciting stories, with new experiences or exotic locales. Adventure films are very similar to the action film genre, in that they are designed to provide an action-filled, energetic experience for the film viewer. Rather than the predominant emphasis on violence and fighting that is found in action films, however, the viewer of adventure films can live vicariously through the travels, conquests, explorations, creation of empires, struggles and situations that confront the main characters, actual historical figures or protagonists)GSAFD, 2000(Adventure films. UF Swashbucklers, Thrillers)Yee, M.M. Moving image materials, 1988(Swashbucklers. Use for fictional genre films in which the protagonist, in period costume, fights, usually with his sword, for a noble cause. RT Epics; Thrillers: USE Crime drama, Disaster drama, Horror drama, Spy drama)The moving image genre-form guide, via WWW, Mar. 6, 2001(Adventure. Fictional work set in a historical period, from the Middle Ages through the 19th century, typically dramatizing the exploits of actual historical figures or incidents, including kings and battles, rebellion, piracy and the Spanish Main, travel, exploration, and the creation of empires. Larger ideological issues are mythicized and conflicts personalized over historical accuracy. Adventure usually involves a courageous, altruistic and patriotic hero willing to fight for his beliefs, who becomes involved in a struggle for freedom by overcoming oppression and helping to create a more just society. Used for Swashbuckler. Other genres often confused with Adventure include Ancient world, Animal, Aviation, Crime, Thriller, Science fiction, Survival, and War; for a comprehensive list, examine the see references under Action-adventure; Action-adventure see such genres as Adventure, Ancient world, Animal, Aviation, Caper, Crime, Disaster, Espionage, Fantasy, Gangster, Jungle, Martial arts, Mystery, Police, Prehistoric, Prison, Science fiction, Singing cowboy, Sports, Survival, Thriller, War, Western, Yukon)admin 0 -141 2021-08-05 10:05:30-05 2021-08-05 10:05:55.275344-05 import 03994cz a2200229n 450020120151214151902.2141201|| anznnbabn |a ana cgf2014026333(DLC)gf2014026333IlChALCSengDLClcgftDLCFantasy fictionFantastic fictionHeroic fantasy fictiongFictionSaricks, J. Readers' advisory guide to genre fiction, 2009:pp. 265-267 (Fantasy: Fantasy exists in a world that most people believe never could be, while Science Fiction worlds are those we accept as possible, even if improbable. Science Fiction generally offers something radically new and different, but Fantasy frequently takes a familiar story, legend, or myth and adds a twist, a new way of looking at things that brings it to life again. The key to Fantasy, however, is the presence of magic. If there is no magic, the story may fit in the Horror, Science Fiction, Romance, Historical Fiction, or Adventure genres. When magic is integral to the story, it must be Fantasy. The presence of magic or enchantment is the element that most clearly distinguishes Fantasy from other genres. Magic may manifest itself in the existence of a magical sword or magical powers; there may be creatures that readers know can exist in none but a magical world; or there may be a feeling of otherness, a sense of enchantment that grows throughout the story)Wheeler, K. Literary terms and definitions, via WWW, Jan. 3, 2013(fantasy novel: Any novel that is removed from reality--especially those novels set in nonexistent worlds, such as an elvish kingdom, on the moon, in Pellucidar (the hollow center of the earth), or in alternative versions of the historical world--such as a version of London where vampires or sorcerers have seized control of parliament. The characters are often something other than humans, or human characters may interact with nonhuman characters such as trolls, dragons, munchkins, kelpies, etc. Examples include J. R. R. Tolkien's The Hobbit, Ursula LeGuin's A Wizard of Earthsea, Michael Moorcock's The Dreaming City, or T. H. White's The Once and Future King)Manlove, C. Modern fantasy, 1975:p. 1 (a fantasy is: a fiction evoking wonder and containing a substantial and irreducible element of the supernatural with which the mortal characters in the story or the readers become on at least partly familiar terms) p. 7 (wonder is of course generated by fantasy purely from the presence of the supernatural or impossible, and from the element of mystery and lack of explanation that goes with it. The science fiction writer throws a rope of the conceivable (how remotely so does not matter) from our world to his: the fantasy writer does not) p. 8 (Fantasy often draws spiritual nourishment from the past, particularly from a medieval and/or Christian world order; whereas science fiction is usually concerned with the future and the way we may develop) p. 9 (the supernatural or impossible in fantasy is not simply strange and wonderful; the reader becomes partially familiar with or at home in the marvellous worlds presented, and the mortal characters establish relationships with beings or objects from the 'beyond'; it is this, more than anything else, that distinguishes fantasy from the ghost and horror story. In the latter the supernatural is left entirely alien, for the point is the shock)Ruse, C. The Cassell dict. of lit. and lang., 1992(Fantasy: any piece of writing that extends the imagination beyond what seems possible; often inventing imaginary worlds set in the past and future)GSAFD, 2000(Fantasy fiction. Use for works that feature imaginary worlds, extraordinary creatures, sorcerers, epic quests or magic)LCSH, Oct. 22, 2014(Fantasy fiction. UF Fantastic fiction; Heroic fantasy (Fiction))Fiction in which magic and extraordinary characters are integral to the story.admin 0 -142 2021-08-05 10:05:30-05 2021-08-05 10:05:55.048021-05 import 00783cz a2200205n 450020100320150718073912.0080506n| azannaabn |n aaa n 2008033437(DLC)n 2008033437(OCoLC)oca07763452DLCengrdaDLCScUCunningham, CarolynneMotion pictures--Production and directionlcshMotion picture producers and directorslcshfemaleengKing Kong (Motion picture : 2005). King Kong, 2005(Carolynne Cunningham, producer; film not viewed)Internet movie database, May 6, 2008(Carolynne Cunningham, producer)Internet Movie Database WWW site, July 17, 2015:(Carolynne Cunningham, assistant director, producer)admin 0 -143 2021-08-05 10:05:30-05 2021-08-05 10:05:54.804077-05 import 00960nz a2200169n 450020220150513181123.9141201|| anznnbabn |a ana cgf2014026339(DLC)gf2014026339IlChALCSengDLClcgftFictionStoriesTalesgLiteratureBaldick, C. Oxford dictionary of literary terms, c2008(Fiction: the general term for invented stories, now usually applied to novels, short stories, novellas, romances, fables and other narrative works in prose, even though most plays and narrative poems are also fictional.)Britannica online, April 12, 2012(Fiction: literature created from the imagination, not presented as fact, though it may be based on a true story or situation. Types of literature in the fiction genre include the novel, short story, and novella. The word is from the Latin fictiō, "the act of making, fashioning, or molding.")admin 0 -144 2021-08-05 10:05:30-05 2021-08-05 10:05:54.528008-05 import 01093cz a2200277n 450020433120151016073911.0090123n| azannaabn |a aaa n 2009004580(DLC)n 2009004580(OCoLC)oca07994925DLCengrdaDLCDLCUPBNNPS3610.E46Jemisin, N. K.Iowa City, IowaBrooklyn, New York, N.Y.Speculative fictionlcshTulane Universitynaf19901994University of Maryland, College ParknafWomen authors, BlacklcshfemaleengNora K.Jemisin, Nora K.Jemisin, N. K. The hundred thousand kingdoms, 2010:E-Cip t.p. (N.K. Jemisin)N. K. Jemisin, via WWW, Aug. 21, 2012(Nora K. Jemisin; African American author of speculative fiction; lives in Brooklyn, NY; also a career counselor)Wikipedia, via WWW, Aug. 21, 2012(b. in Iowa City, Iowa; B.S., Psychology, Tulane, 1990-1994; M.Ed., University of Maryland, College Park)admin 0 -145 2021-08-05 10:05:30-05 2021-08-05 10:05:54.299765-05 import 00738cz a2200205n 450020579420150718073914.0090519n| azannaabn |n aaa n 2009030955(DLC)n 2009030955(OCoLC)oca08114692DLCengrdaDLCScUWeiner, ZaneProduction managementMotion pictures--Production and directionlcshMotion picture producers and directorslcshmaleengShine a light, 2008(Zane Weiner, producer; film not viewed)Internet movie database, May 19, 2009(Zane Weiner, producer)Internet Movie Database WWW site, July 17, 2015:(Zane Weiner, production manager, producer)admin 0 -146 2021-08-05 10:05:30-05 2021-08-05 10:05:54.071576-05 import 00680cz a2200193n 450020670020150716073900.0090804n| azannaabn |n aaa n 2009048751(DLC)n 2009048751(OCoLC)oca08194212DLCengrdaDLCDLCIlMpPL1972PS3603.L548Cline, ErnestScreenwritersNovelistslcshFanboys, 2009(Ernest Cline, screenplay writer; film not viewed)Internet movie database, Aug. 4, 2009(Ernest Cline, screenplay writer)wikipedia, Apr. 22, 2011(Ernest Cline; b. 1972; American novelist, spoken word artist and screenwriter)admin 0 -147 2021-08-05 10:05:30-05 2021-08-05 10:05:53.843679-05 import 00571nz a2200169n 45002231120011115154849.0020401i| anannbabn |a ana ||| sh 85074712 (DLC)sh 85074712 DLCDLCDLCLarge type booksLarge print booksnneSight-saving booksgBooksgPeople with visual disabilitiesBooks and readingHere are entered books set in a type size larger than normal for the benefit of persons with impaired vision, as well as works about such books.admin 0 -148 2021-08-05 10:05:30-05 2021-08-05 10:05:53.57138-05 import 02039cz a2200181n 450024220190123111909.4141201|| anznnbabn |a ana cgf2014026529(DLC)gf2014026529IlChALCSengDLClcgftDLCScience fictionSci-figFictionBritannica online academic edition, Nov. 5, 2012(science fiction: abbreviation SF or sci-fi, a form of fiction that deals principally with the impact of actual or imagined science upon society or individuals; the attempt at scientific and technological plausibility is the feature that distinguishes science fiction from earlier speculative writings and other contemporary speculative genres such as fantasy and horror; themes include space travel, robots, alien beings, time travel, alternative societies, alternate histories and parallel universes)Wheeler, K. Literary terms and definitions, via WWW, Jan. 3, 2013(science fiction: Literature in which speculative technology, time travel, alien races, intelligent robots, gene-engineering, space travel, experimental medicine, psionic abilities, dimensional portals, or altered scientific principles contribute to the plot or background. Many purists make a distinction between "hard" science fiction (in which the story attempts to follow accepted scientific realism and extrapolates the outcomes or consequences of scientific discovery in a hard-headed manner) and "soft" science fiction (which often involves looser adherence to scientific knowledge and more fantasy-elements))GSAFD, 2000(science fiction: used for works of fantasy that deal with possible though not necessarily probable events and are based approximately on scientific principles, e.g. space travel, time travel, etc. Used also for works in which mankind confronts alien cultures or environments)Fiction that depicts imagined scientific or technological advances (e.g., time travel, artificial intelligence) and their impact on society.admin 0 -149 2021-08-05 10:05:30-05 2021-08-05 10:05:53.327515-05 import 00886cz a2200253n 450024938820150718073847.0001206n| azannaabn |n aaa cno 00098811 (DLC)no 00098811 (OCoLC)oca05370046ABAU-MHSengrdaABAU-MHSScU19600404Weaving, Hugo,1960-Ibadan (Nigeria)nafActinglcshActorslcshmaleengHugo WallaceThe matrix, c1999:credit frame (cast, Hugo Weaving)Internet movie database, Nov. 20, 2000:(Hugo Weaving; actor, notable TV appearances; b. 1960 in Nigeria)Katz, E. The film encyclopedia, 1998Internet Movie Database WWW site, July 17, 2015:(Hugo Weaving, actor ; b. Hugo Wallace Weaving, April 4, 1960 in Ibadan, Nigeria)admin 0 -150 2021-08-05 10:05:30-05 2021-08-05 10:05:53.059382-05 import 01127cz a2200241n 450024946020171219073357.0001218n| azannaabn |a aaa cno 00102089 (DLC)no 00102089 (OCoLC)oca05379504TxLT-AVengrdaTxLT-AVScUMeLB1964-04-20edtfSerkis, AndyRuislip (London, England)nafActingMotion pictures--Production and directionlcshActorsMotion picture producers and directorslcshMaleslcdgtengrFounded corporate body of person:Imaginarium (Firm)Career girls [VR] 1997:credits (Andy Serkis)Internet Movie Database WWW site, August 4, 2016:(Andy Serkis, actor, producer ; b. April 20, 1964 in Ruislip, London, England, UK)Wikipedia, December 18, 2017(The Imaginarium; also known as Imaginarium Productions; a production company linked to a performance capture studio; founded by actor-director Andy Serkis and film producer Jonathan Cavendish in 2011; located in Ealing, London)admin 0 -151 2021-08-05 10:05:30-05 2021-08-05 10:05:52.851514-05 import 00449nz a2200157n 450025714319960330052716.6020401n| acannaab| |a ana ||| cno 96016410 (DLC)no 96016410 (OCoLC)oca04045950OClOClBBC RadioBritish Broadcasting Corporation.RadioBritish Broadcasting Corporation.BBC RadioThe wind in the willows, p1994:label (BBC Radio)admin 0 -152 2021-08-05 10:05:30-05 2021-08-05 10:05:52.227676-05 import 03991cz a2200805n 450025718920170913073857.0960403n| azannaabn |b aaa cno 96017219 nm0001392imdb10176moviemetr1845177discogs12243allocinep95689allmovie37061moma15812porthu110714svfilm103364dkfilm9021scope32383kinopo848/000025773nndb00000023972munzing372428fasthttp://id.worldcat.org/fast/372428urihttp://dbpedia.org/resource/Peter_JacksonuriQ4465wikidatahttp://www.wikidata.org/entity/Q4465uri1192bf91-25e1-40cb-b823-d4f6c451d262musicbhttps://musicbrainz.org/artist/1192bf91-25e1-40cb-b823-d4f6c451d262uri30fc1e3063a5418c98de38d2ae9a203dfilmporthttp://www.filmportal.de/film/30fc1e3063a5418c98de38d2ae9a203duri84213729viafhttp://viaf.org/viaf/84213729uriXX1177304datoseshttp://datos.bne.es/resource/XX1177304uri035340061idrefhttps://www.idref.fr/035340061uria11134689cantichttp://cantic.bnc.cat/registres/CUCId/a11134689uriFRBNF13182829bnfcghttp://catalogue.bnf.fr/ark:/12148/cb13182829turi01026213wndlahttps://id.ndl.go.jp/auth/ndlna/01026213uri12345395Xgndhttp://d-nb.info/gnd/12345395Xuri(DLC)no 96017219 (OCoLC)oca04049053IWhNengrdaIWhNWaU1961-10-31edtfJackson, Peter,1961-New ZealanderslcdgtWellington (N.Z.)New ZealandnafMotion pictures--Production and directionMotion picture authorshipMotion picture playslcshScreenplayslcgftWingNut Films (Firm)nafMotion picture producers and directorsScreenwriterslcshMotion picture directorsMotion picture producerslcdgtMaleslcdgtengPeter RobertДжексон, Питер,1961-Dzhekson, Piter,1961-ジャクソン, ピーター,1961-Jakuson, Pītā,1961-Non-Latin script references not evaluated.Heavenly creatures, c1994:container (Peter Jackson)Halliwell's filmgoer's & video viewer's companion, 11th ed.(Jackson, Peter, 1961- ; New Zealand director, screenwriter and producer)Wikipedia, March 24, 2014(Peter Jackson; Sir Peter Robert Jackson ONZ KNZM (born 31 October 1961) is a New Zealand film director, producer and screenwriter; best known as the director and producer of The Lord of the Rings trilogy (2001-2003) and its prequel The Hobbit trilogy (2012-2014); other notable films include Heavenly Creatures (1994), Forgotten Silver (1995), The Frighteners (1996), King Kong (2005) and The Lovely Bones (2009). He also produced District 9 (2009), The Adventures of Tintin (2011) and the documentary West of Memphis (2012); born Wellington, New Zealand; his production company is Wingnut Films, and his most regular collaborators are co-writers and producers Fran Walsh and Philippa Boyens)KinoPoisk website, September 12, 2017(Питер Джексон = Piter Dzhekson; Peter Jackson [in roman])https://www.kinopoisk.ru/name/32383/Web NDL authorities, September 12, 2017(Jackson, Peter; variant: ジャクソン, ピーター = Jakuson, Pītā)https://id.ndl.go.jp/auth/ndlna/01026213admin 0 -153 2021-08-05 10:05:30-05 2021-08-05 10:05:51.987374-05 import 00758cz a2200217n 450026226620170619175716.0971212n| azannaabn |a aaa cno 97071804 (DLC)no 97071804 (OCoLC)oca04552535MdUengrdaMdUIlMpPLDLC1972-07-29edtfWheaton, WilBurbank (Calif.)nafActorWheaton, Richard WilliamWar of the worlds, p1994:container (Wil Wheaton)Internet movie database, Dec. 11, 1997(Wil Wheaton; real name Richard William Wheaton III; b. July 29, 1972, Burbank, Calif.; [actor])OCLC, Dec. 11, 1997(hdg.: Wheaton, Wil)Halliwell's filmgoer's companion, 1988.admin 0 -154 2021-08-05 10:05:30-05 2021-08-05 10:05:51.75607-05 import 00871cz a2200217n 450026670220170719073837.0981221n| azannaabn |n aaa cno 98132286 (DLC)no 98132286 (OCoLC)oca04885831TxDaengrdaTxDaScU1943-08-20edtfMcCoy, Sylvester,1943-Dunoon (Scotland)nafActingMotion pictures--Production and directionlcshActorsMotion picture producers and directorslcshMaleslcdgtengDoctor Who the handbook, 1998:p. 3, etc. (Sylvester McCoy; b. Aug. 20, 1943 in Dunoon, Argyll, Scotland)Internet Movie Database WWW site, May 19, 2015:(Sylvester McCoy, actor, director ; b. Percy James Patrick Kent-Smith, August 20, 1943 in Dunoon, Strathclyde, Scotland, UK)admin 0 -155 2021-08-05 10:05:30-05 2021-08-05 10:05:51.559758-05 import 00360cz a2200133n 45002704120080219080556.0080206|| anannbabn |n ana (DLC)sh2008100164DLCengDLCsh2008100164CatsFictionRecord generated for validation purposes.Work cat.: The cat who went up the creek, c2002admin 0 -156 2021-08-05 10:05:30-05 2021-08-05 10:05:51.271476-05 import 01337cz a2200289n 450027537820141031073858.0020910n| azannaabn |a aaa no2002083161(DLC)no2002083161(OCoLC)oca05859679NzengrdaNzDLCWaUNz19590110Walsh, Fran,1959-Wellington (N.Z.)New ZealandnafMotion picture authorshipMotion pictures--Production and directionPopular music--Writing and publishinglcshScreenwritersMotion picture producers and directorsLyricistslcshfemaleengFrances RosemaryWalsh, Frances,1959-Walsh, Frances Rosemary,1959-Not the same as: Walsh, Frances (Frances Maria Dominic) (no2011059538)Lord of the rings, the fellowship of the ring, c2001(Fran Walsh)Reframing women, 2000p. 272 (Frances Walsh, scriptwriter b. 1959, Wellington)In dreams, 2001:cover (Fran Walsh [lyricist])Wikipedia, March 24, 2014(Fran Walsh; Frances Rosemary "Fran" Walsh, Lady Jackson MNZM (born 10 January 1959); screenwriter, film producer and lyricist; she is the life-partner of filmmaker Peter Jackson; born Wellington, New Zealand)admin 0 -157 2021-08-05 10:05:30-05 2021-08-05 10:05:51.03599-05 import 00718cz a2200229n 450027577720150718073853.0021030n| azannaabn |n aaa cno2002099364(DLC)no2002099364(OCoLC)oca05900351IAhCCSengrdaIAhCCSScU1955Stott, Ken,1955-Edinburgh (Scotland)nafActinglcshActorslcshmaleengFever pitch, c2000:credits (Ken Stott; cast)Internet movie database, Oct. 30, 2002(Ken Stott, b. 1955)Internet Movie Database WWW site, July 17, 2015:(Ken Stott, actor ; b. 1955 in Edinburgh, Scotland, UK)admin 0 -158 2021-08-05 10:05:30-05 2021-08-05 10:05:50.799375-05 import 00958cz a2200205n 450027643120140326073712.0030120n| azannaabn |n aaa cno2003005693(DLC)no2003005693(OCoLC)oca05954417OCoLCengrdaOCoLCWaUBoyens, PhilippaNew ZealandnafMotion pictures--Production and directionMotion picture authorshiplcshMotion picture producers and directorsScreenwriterslcshfemaleengOCLC 49896065: Lord of the rings, the fellowship of the ring, 2002(hdg.: Boyens, Philippa; usage: Philippa Boyens)Wikipedia, March 24, 2014(Philippa Boyens, MNZM, is a New Zealand screenwriter and producer who co-wrote the screenplay for Peter Jackson's films The Lord of the Rings series, King Kong, The Lovely Bones, and the three-part film The Hobbit, all with Jackson and Fran Walsh.admin 0 -159 2021-08-05 10:05:30-05 2021-08-05 10:05:50.603481-05 import 00347nz a2200133n 45002779120080304084148.0080304|| anannbabn |n ana sh2008107174(DLC)sh2008107174DLCengDLCMagicFictionRecord generated for validation purposes.Work cat.: The wizards' den, 2001admin 0 -160 2021-08-05 10:05:30-05 2021-08-05 10:05:50.411031-05 import 00379nz a2200133n 45002789820080304084828.0080304|| anannbabn |n ana sh2008107769(DLC)sh2008107769DLCengDLCMiddle Earth (Imaginary place)FictionRecord generated for validation purposes.Work cat.: The return of the king, p1990admin 0 -161 2021-08-05 10:05:30-05 2021-08-05 10:05:50.21629-05 import 00359nz a2200133n 45002797020080305075420.0080305|| anannbabn |n ana sh2008108377(DLC)sh2008108377DLCengDLCNew York (N.Y.)FictionRecord generated for validation purposes.Work cat.: The boy next door, c2002admin 0 -162 2021-08-05 10:05:30-05 2021-08-05 10:05:50.023861-05 import 00344nz a2200133n 45002800120080305075756.0080305|| anannbabn |n ana sh2008108587(DLC)sh2008108587DLCengDLCOrphansFictionRecord generated for validation purposes.Work cat.: Life of Pi, c2001admin 0 -163 2021-08-05 10:05:30-05 2021-08-05 10:05:49.827869-05 import 00375nz a2200133n 45002827520080306141523.0080306|| anannbabn |n ana sh2008110652(DLC)sh2008110652DLCengDLCRegression (Civilization)FictionRecord generated for validation purposes.Work cat.: A long walk to Wimbledon, 2002admin 0 -164 2021-08-05 10:05:30-05 2021-08-05 10:05:49.631821-05 import 00347nz a2200133n 45002854920080311085150.0080311|| anannbabn |n ana sh2008112903(DLC)sh2008112903DLCengDLCTreasure trovesFictionRecord generated for validation purposes.Work cat.: Legend, 2007admin 0 -165 2021-08-05 10:05:30-05 2021-08-05 10:05:49.435006-05 import 00358nz a2200133n 45002857520080311091031.0080311|| anannbabn |n ana sh2008113158(DLC)sh2008113158DLCengDLCUtopiasFictionRecord generated for validation purposes.Work cat.: In the days of the comet, c2001admin 0 -166 2021-08-05 10:05:30-05 2021-08-05 10:05:49.239544-05 import 00357nz a2200133n 45002859720080311091232.0080311|| anannbabn |n ana sh2008113277(DLC)sh2008113277DLCengDLCVirtual realityFictionRecord generated for validation purposes.Work cat.: Synners, [2001], c1991admin 0 -167 2021-08-05 10:05:30-05 2021-08-05 10:05:49.043751-05 import 00351nz a2200133n 45002867920080311101907.0080311|| anannbabn |n ana sh2008113548(DLC)sh2008113548DLCengDLCWitchesFictionRecord generated for validation purposes.Work cat.: Witch moon rising, c2001admin 0 -168 2021-08-05 10:05:30-05 2021-08-05 10:05:48.849095-05 import 00349nz a2200133n 45002868120080311101908.0080311|| anannbabn |n ana sh2008113550(DLC)sh2008113550DLCengDLCWizardsFictionRecord generated for validation purposes.Work cat.: Morrigan's cross, 2006admin 0 -169 2021-08-05 10:05:30-05 2021-08-05 10:05:48.639094-05 import 00354cz a2200133n 450029433320080219080701.0080206|| anannbabn |n ana (DLC)sh2008100224DLCengDLCsh2008100224CatsJuvenile fictionRecord generated for validation purposes.Work cat.: Hondo & Fabian, c2002admin 0 -170 2021-08-05 10:05:30-05 2021-08-05 10:05:48.441491-05 import 00347nz a2200133n 450029759820080304084148.0080304|| anannbabn |n ana sh2008107174(DLC)sh2008107174DLCengDLCMagicFictionRecord generated for validation purposes.Work cat.: The wizards' den, 2001admin 0 -171 2021-08-05 10:05:30-05 2021-08-05 10:05:48.23541-05 import 00372nz a2200133n 450029760520080304084152.0080304|| anannbabn |n ana sh2008107181(DLC)sh2008107181DLCengDLCMagicJuvenile fictionRecord generated for validation purposes.Work cat.: Hari Poṭer ṿa-ḥadar ha-sodot, c2001admin 0 -172 2021-08-05 10:05:30-05 2021-08-05 10:05:48.035662-05 import 00379nz a2200133n 450029794420080304084828.0080304|| anannbabn |n ana sh2008107769(DLC)sh2008107769DLCengDLCMiddle Earth (Imaginary place)FictionRecord generated for validation purposes.Work cat.: The return of the king, p1990admin 0 -173 2021-08-05 10:05:30-05 2021-08-05 10:05:47.843132-05 import 00361nz a2200133n 450029846520080305075917.0080305|| anannbabn |n ana sh2008108726(DLC)sh2008108726DLCengDLCOrphansJuvenile fictionRecord generated for validation purposes.Work cat.: The miserable mill, p2003admin 0 -174 2021-08-05 10:05:30-05 2021-08-05 10:05:47.651141-05 import 00361nz a2200133n 450030092720080311101909.0080311|| anannbabn |n ana sh2008113551(DLC)sh2008113551DLCengDLCWitchesJuvenile fictionRecord generated for validation purposes.Work cat.: Hansel and Gretel =, 2005admin 0 -175 2021-08-05 10:05:30-05 2021-08-05 10:05:47.454737-05 import 00347nz a2200133n 45003013020100324070912.0100324|| anannbabn |n ana sh2010104603(DLC)sh2010104603DLCengDLCOrphansDramaRecord generated for validation purposes.Work cat.: Les misérables, p1995admin 0 -176 2021-08-05 10:05:30-05 2021-08-05 10:05:47.251406-05 import 00612nz a2200133n 450031120150513181123.9150413|| anznnbabn |a ana gf2015026020(DLC)gf2015026020DLCengDLClcgftNovelsgFictionMerriam-Webster online, April 15, 2015:(novel: def. 2b: an invented prose narrative of considerable length and a certain complexity that deals imaginatively with human experience through a connected sequence of events involving a group of persons in a specific setting; def. 2c: the literary type constituted by such narratives)admin 0 -177 2021-08-05 10:05:30-05 2021-08-05 10:05:46.827799-05 import 02768cz a2200421n 4500311320170524073924.0800326n| azannaabn |a ana n 80015727 (DLC)n 80015727 (OCoLC)oca00398176DLCengrdaDLCDLCOCoLCUPBCStUPBDLCMH19241980Metro-Goldwyn-MayerUnited Statesnaf10250 Constellation BoulevardLos AngelesCalif.90067Motion picture productionMotion picture distributionMGMM-G-MnnaaMetro-Goldwyn-Mayer, inc.Metro-Goldwyn-Mayer Distributing CorporationMetro-Goldwyn-Mayer CorporationMetro-Goldwyn-Mayer Pictures CorporationLoew's Incorporated.Metro-Goldwyn-MayerMetro-Goldwyn-Mayer PicturesrProduct of a split:Metro-Goldwyn-Mayer Film Co.rMergee:Metro Pictures CorporationrMergee:Goldwyn Pictures CorporationrMergee:Louis B. Mayer PicturesIts Annual statement, 1931-Hallelujah [MP] 1929:credits (Metro-Goldwyn-Mayer presents; copyrighted by Metro-Goldwyn-Mayer)Copyright cat. mot. pic. 1912-1939, 1951(Metro-Goldwyn-Mayer Distributing Corporation; Metro-Goldwyn-Mayer Corporation; Metro-Goldwyn-Mayer Pictures Corporation; MGM; All of the listed organizational names were interchangeably used as variant forms from 1924-1960 to identify production and/or distribution functions of the Metro-Goldwyn-Mayer organization, a subsidiary of Loew's Incorporated which existed from 1919-1960)Int. mot. pic. alm., 1982(Metro-Goldwyn-Mayer, Inc. changed its name to Metro-Goldwyn-Mayer Film Company, January 31, 1980)Slide, A. The American film industry, 1986(Metro-Goldwyn-Mayer; in 1924, Goldwyn Pictures Corporation, Metro Pictures Corporation and independent producer Louis B. Mayer joined to form Metro-Goldwyn-Mayer)Katz, E. The film encyc., 1979(Metro-Goldwyn-Mayer (MGM); est. 1924 as an amalgamation of Metro Pictures Corporation (formed 1915), Goldwyn Pictures Corporation (formed 1917), and Louis B. Mayer Pictures (formed 1918) under the corporate control of Loew's, Inc.)Fade out, 1990:p. 175 (MGM Film Corporation; est. in split of MGM, hotel holdings formed MGM Grand Hotels, Inc.)Metro-Goldwyn-Mayer is a motion picture, television, home video, and theatrical production and distribution company. Established in 1924, the company was split in 1980 to form the Metro-Goldwyn-Mayer Film Company and MGM Grand Hotels, Inc.admin 0 -178 2021-08-05 10:05:30-05 2021-08-05 10:05:46.635577-05 import 00353nz a2200133n 450031264620100223130409.0100223|| anannbabn |n ana sh2010103040(DLC)sh2010103040DLCengDLCMythologyFictionRecord generated for validation purposes.Work cat.: The face of Apollo, 1998admin 0 -179 2021-08-05 10:05:30-05 2021-08-05 10:05:46.35105-05 import 01030cz a2200193n 45003420151202135706.9110505|| anznnbabn |a ana gf2011026242sh2007025232gf2011026306gf2011026375gf2011026574gf2011026741(DLC)gf2011026242DLCengDLClcgftDLCFantasy filmsnneHarry Potter filmsnneLord of the Rings filmsnneShrek filmsnneWizard of Oz filmsgFiction filmsMoving image genre-form guide online, June 21, 2007:(Fantasy: fictional work set in a netherworld where events trespass physical laws and the bounds of human possibility, mixing the otherwise separate worlds of the natural and the supernatural. The hero often undergoes mystical experiences, and must call on powerful, extra-human forces outside themselves to prevail)Films that feature elements of the fantastic, often including magic, supernatural forces, or exotic fantasy worlds.admin 0 -180 2021-08-05 10:05:30-05 2021-08-05 10:05:46.095427-05 import 01428cz a2200181n 45003520151202134811.5110505|| anznnbabn |a ana gf2011026244sh2007025233(DLC)gf2011026244DLCengDLClcgftDLCFantasy television programsFantastic television programsTelefantasygFiction television programsMoving image genre-form guide online, June 21, 2007:(Fantasy: fictional work set in a netherworld where events trespass physical laws and the bounds of human possibility, mixing the otherwise separate worlds of the natural and the supernatural. The hero often undergoes mystical experiences, and must call on powerful, extra-human forces outside themselves to prevail)Wikipedia website, June 21, 2007:(Fantasy television: a genre of television featuring elements of the fantastic, often including magic, supernatural forces, or exotic fantasy worlds. Fantasy television programs are often based on tales from mythology and folklore, or are adapted from fantasy stories in other media. In the United Kingdom, the term "telefantasy" is used as an umbrella term to collectively describe all types of programs that feature elements of the fantastic)Television programs that feature elements of the fantastic, often including magic, supernatural forces, or exotic fantasy worlds.admin 0 -181 2021-08-05 10:05:30-05 2021-08-05 10:05:45.912211-05 import 00332nz a2200121n 450035353519921019110552.3020401n| acannaab| |n aaa ||| n 92102883 (DLC)n 92102883 DLCDLCInglis, RobTolkien, J. Annals of the kings and rulers [SR] p1990:label (Rob Inglis, narrator)admin 0 -182 2021-08-05 10:05:30-05 2021-08-05 10:05:45.580063-05 import 01415cz a2200301n 450036859420151202110539.6110504|| anznnbabn |a ana gf2011026063sh2008025552(DLC)gf2011026063DLCengDLClcgftDLCAudiobooksAudio booksBooks, AudioBooks, CassetteBooks, RecordedBooks on tapeCassette booksRecorded booksgSound recordingsDictionary.com, Mar. 10, 2008(audio book; also audiobook; a recording of an oral reading of a book, often in abridged form)Wikipedia, Mar. 10, 2008(audiobook; a recording that is primarily of the spoken word as opposed to music; not intended to be descriptive of the word "book" but rather a recorded spoken program in its own right and not always an audio version of a book)Montana State Library website, Mar. 10, 2008:Montana Talking Book Library (cassette books; recorded books)NetLibrary web site, Mar. 10, 2008(books on tape)LCSH, Mar. 10, 2008(hdg: Audiobooks)OED online, April 27, 2010:audiobook (an audio recording of a reading of a book (typically a novel), produced commercially)Recordings of oral readings of books.Example underSound recordingsadmin 0 -183 2021-08-05 10:05:30-05 2021-08-05 10:05:45.243692-05 import 03994cz a2200229n 450036912620151214151902.2141201|| anznnbabn |a ana cgf2014026333(DLC)gf2014026333IlChALCSengDLClcgftDLCFantasy fictionFantastic fictionHeroic fantasy fictiongFictionSaricks, J. Readers' advisory guide to genre fiction, 2009:pp. 265-267 (Fantasy: Fantasy exists in a world that most people believe never could be, while Science Fiction worlds are those we accept as possible, even if improbable. Science Fiction generally offers something radically new and different, but Fantasy frequently takes a familiar story, legend, or myth and adds a twist, a new way of looking at things that brings it to life again. The key to Fantasy, however, is the presence of magic. If there is no magic, the story may fit in the Horror, Science Fiction, Romance, Historical Fiction, or Adventure genres. When magic is integral to the story, it must be Fantasy. The presence of magic or enchantment is the element that most clearly distinguishes Fantasy from other genres. Magic may manifest itself in the existence of a magical sword or magical powers; there may be creatures that readers know can exist in none but a magical world; or there may be a feeling of otherness, a sense of enchantment that grows throughout the story)Wheeler, K. Literary terms and definitions, via WWW, Jan. 3, 2013(fantasy novel: Any novel that is removed from reality--especially those novels set in nonexistent worlds, such as an elvish kingdom, on the moon, in Pellucidar (the hollow center of the earth), or in alternative versions of the historical world--such as a version of London where vampires or sorcerers have seized control of parliament. The characters are often something other than humans, or human characters may interact with nonhuman characters such as trolls, dragons, munchkins, kelpies, etc. Examples include J. R. R. Tolkien's The Hobbit, Ursula LeGuin's A Wizard of Earthsea, Michael Moorcock's The Dreaming City, or T. H. White's The Once and Future King)Manlove, C. Modern fantasy, 1975:p. 1 (a fantasy is: a fiction evoking wonder and containing a substantial and irreducible element of the supernatural with which the mortal characters in the story or the readers become on at least partly familiar terms) p. 7 (wonder is of course generated by fantasy purely from the presence of the supernatural or impossible, and from the element of mystery and lack of explanation that goes with it. The science fiction writer throws a rope of the conceivable (how remotely so does not matter) from our world to his: the fantasy writer does not) p. 8 (Fantasy often draws spiritual nourishment from the past, particularly from a medieval and/or Christian world order; whereas science fiction is usually concerned with the future and the way we may develop) p. 9 (the supernatural or impossible in fantasy is not simply strange and wonderful; the reader becomes partially familiar with or at home in the marvellous worlds presented, and the mortal characters establish relationships with beings or objects from the 'beyond'; it is this, more than anything else, that distinguishes fantasy from the ghost and horror story. In the latter the supernatural is left entirely alien, for the point is the shock)Ruse, C. The Cassell dict. of lit. and lang., 1992(Fantasy: any piece of writing that extends the imagination beyond what seems possible; often inventing imaginary worlds set in the past and future)GSAFD, 2000(Fantasy fiction. Use for works that feature imaginary worlds, extraordinary creatures, sorcerers, epic quests or magic)LCSH, Oct. 22, 2014(Fantasy fiction. UF Fantastic fiction; Heroic fantasy (Fiction))Fiction in which magic and extraordinary characters are integral to the story.admin 0 -184 2021-08-05 10:05:30-05 2021-08-05 10:05:45.003412-05 import 01348cz a2200169n 450036916520160205154811.9141201|| anznnbabn |a ana cgf2014026424(DLC)gf2014026424IlChALCSengDLClcgftDLCMagic realist fictionMagical realist fictiongFictionOxford dictionary of literary terms, via Oxford reference online, Nov. 5, 2012(magic realism: also magical realism; kind of modern fiction in which fabulous and fantastical events are included in a narrative that otherwise maintains the 'reliable' tone of objective realistic report; associated chiefly with certain leading novelists of Central and South America; term has also been extended to works from very different cultures, designating a tendency of the modern novel to reach beyond the confines of realism and draw upon the energies of fable, folktale and myth while retaining a strong contemporary social relevance)Britannica online academic edition, Nov. 15, 2012(magic realism: chiefly Latin-American narrative strategy that is characterized by the matter-of-fact inclusion of fantastic or mythical elements into seemingly realistic fiction)Modern fiction in which fantastic or mythical elements are included in a narrative that is otherwise realistic.admin 0 -185 2021-08-05 10:05:30-05 2021-08-05 10:05:44.679694-05 import 01694cz a2200241n 45003720160909085249.6110505|| anznnbabn |a ana gf2011026250sh2007025004(DLC)gf2011026250DLCengDLClcgftDLCWaUFiction filmsDramatic filmsDramatic-narrative filmsEntertainment filmsFictional filmsFictive filmsFilm dramasNarrative filmsgMotion picturesYee, M. Moving image materials, 1988(Fiction: use for films and programs portraying imaginary characters and events)Films by genre, c1993(fictional film; UF dramatic-narrative film, fiction film, fictive film; the fictional film -- film drama, film play, screen drama, screenplay, or story film as it has sometimes been called -- is a film in which actors perform in front of a camera to create fictitious situations or tell an invented story with the purpose of showing it to an audience; hence the terms entertainment film, theatrical film, and feature film have also been used with analogous meaning; fictional film or fiction film stands in opposition to factual or documentary film)Konigsberg, I. The complete film dictionary, 1997(narrative film. Any film that tells a story; also called a fiction film, a dramatic film, a theatrical film, and a feature film. Though a number of documentaries have a simple narrative line embedded within them and some seem to tell stories, the term "narrative film" applies to those works that emphasize the story line, are dramatic in nature, and are fictional.)admin 0 -186 2021-08-05 10:05:30-05 2021-08-05 10:05:44.445326-05 import 00863cz a2200169n 45003820151202135210.7110506|| anznnbabn |a ana gf2011026252sh2007025005(DLC)gf2011026252DLCengDLClcgftDLCFiction television programsFictional television programsgTelevision programsYee, M.M. Moving image materials, 1988(Fiction; use for films and programs portraying imaginary characters and events)Lopez, D. Films by genre, 1993:p. 111 (Fictional film; Dramatic-Narrative film; Fiction film; Fictive film: a film in which actors perform in front of a camera to create fictitious situations or tell an invented story with the purpose of showing it to an audience)Television programs portraying imaginary characters and events.admin 0 -187 2021-08-05 10:05:30-05 2021-08-05 10:05:44.251384-05 import 00302cz a2200121n 450038593820020830033205.0801003n| acannaab |n aaa n 50046146 (DLC)n 50046146 DLCengDLCUkKilgarriff, MichaelHis It gives me great pleasure, 1972.admin 0 -188 2021-08-05 10:05:30-05 2021-08-05 10:05:43.888142-05 import 03144cz a2200253n 45003920160412142123.1110506|| anznnbabn |a ana gf2011026254sh2007025327gf2014026598(DLC)gf2011026254DLCengDLClcgftDLCWaUFilm adaptationsBooks, FilmedDramatisationsDramatizationsFilmed booksFilms from booksMotion picture adaptationsgAdaptationsgMotion picturesMoving image genre-form guide, via WWW, July 18, 2007:(adaptation: Fiction or nonfiction work taken from a work already existing in another medium, such as a book, short story, comic strip, radio program, or play)Oxford dictionaries online, Jan. 9, 2016(dramatization 1. A play or movie adapted from a novel or depicting a particular incident. 1.1. The process of adapting a novel or presenting a particular incident in a play or movie)Baldick, C. The Oxford dictionary of literary terms, 2008(dramatization: The process of adaptation whereby a stage play or film drama is created from major elements (plot, characters, settings) derived from a non-dramatic literary or historical work, usually a novel, romance, short story, or biography; or the new dramatic work thereby created.)OCLC, Jan. 19, 2016(notes: Film dramatization of Shakespeare's story of the love affair between Mark Antony and Cleopatra, and its destructive consequences; Film dramatisation of Hugo's novel; A film dramatization of Shakespeare's play about two sets of lovers who sort out their problems with fairy help in the midnight woods of Athens; A film dramatization of the life of poet and novelist, Reinaldo Arenas, based on the memoir Before night falls; Film dramatization of the political struggle between Danton and Robespierre during 1794 in Paris which culminated in the execution of Danton; Set in Vienna, 1885, this film dramatization follows the struggles of Sigmund Freud as a young doctor facing the ridicule of his peers as he attempts to disprove standing medical theories relating to the dark recesses of the mind; A film dramatization of the life of Napoleon Velasco, a public school teacher who becomes a policeman; A film dramatization of the world of the Ugandan dictator Idi Amin Dada, who, in abusing his power, ravaged a half-million lives; A film dramatization of Oscar Wilde's unsuccessful libel suit against the Marquis of Queensberry after he accused Wilde of seducing his son, and Wilde's subsequent trial for sodomy, resulting in Wilde's imprisonment. Based on the book The trials of Oscar Wilde by Montgomery Hyde, and the play The stringed lute by John Furnell; A vivid, compelling film dramatization of Hugo's great novel, which provides students with an excellent historical and social portrait of France-and particularly Paris-at mid-19th century; A film dramatisation of how the events of 11 September 2001 change the lives of three very different families, in Berlin; Film dramatisation of Oscar Wilde's life)admin 0 -189 2021-08-05 10:05:30-05 2021-08-05 10:05:43.678677-05 import 00562cz a2200157n 450039109320160416075427.0780629n| azannaabn n aaa n 78039346 (DLC)n 78039346 (OCoLC)oca00175316DLCengrdaDLCMnMNDLCFUPS3576.E4448Zelinsky, Paul O.Avi. Emily Upham's revenge ... c1978 (a.e.)t.p. (Paul O. Zelinsky)Llanas, Sheila Griffin. Paul O. Zelinsky, 2010:CIP t.p. (Paul O. Zelinsky) galley (born in Evanston, Illinois, on February 14, 1953)admin 0 -190 2021-08-05 10:05:30-05 2021-08-05 10:05:43.239978-05 import 02173cz a2200421n 450040303520161027075335.0790910n| azannaabn |a aaa n 79102640 n 87841451 http://worldcat.org/entity/work/id/449428urihttp://id.worldcat.org/fast/1359082uri1359082fasthttp://dbpedia.org/resource/The_Hobbiturihttp://www.wikidata.org/entity/Q74287uriQ74287urihttp://viaf.org/viaf/309569545uri309569545viafhttp://catalogue.bnf.fr/ark:/12148/cb12545196guriFRBNF12545196bnfcghttp://d-nb.info/gnd/4425920-7uri948737964gnd(DLC)n 79102640 (OCoLC)oca00334715DLCengrdaDLCDLCInUWaU1937edtfTolkien, J. R. R.(John Ronald Reuel),1892-1973.HobbitGreat BritainnafNovelsFantasy fictionlcgftChildren's storieslcshChildrenlcdgtTolkien, J. R. R.(John Ronald Reuel),1892-1973.Annotated HobbitTolkien, J. R. R.(John Ronald Reuel),1892-1973.Hobbit, or, There and back againrAuthor:Tolkien, J. R. R.(John Ronald Reuel),1892-1973rSequel:Tolkien, J. R. R.(John Ronald Reuel),1892-1973.Lord of the ringsBuchholz, S. The Middle-earth quiz book, 1979 (subj.)The hobbit, or, There and back again, 1984.The hobbit, or, There and back again, c1997.Wikipedia, October 26, 2016:The Hobbit (The Hobbit, or There and Back Again is a children's fantasy novel by English author J. R. R. Tolkien. It was published on 21 September 1937; The publisher was encouraged by the book's critical and financial success and, therefore, requested a sequel. As Tolkien's work progressed on the successor The Lord of the Rings, he made retrospective accommodations for it in The Hobbit. These few but significant changes were integrated into the second edition)admin 0 -191 2021-08-05 10:05:30-05 2021-08-05 10:05:42.948182-05 import 01126cz a2200289n 450043829520130722073627.0830705n| azannaabn |b aaa n 83160096 (DLC)n 83160096 (OCoLC)oca00984407DLCengrdaDLCDLCOCoLCUkOCoLCDLCUPBIEN1934081620110326PR6060.O497Jones, Diana WynneLondon, EnglandfemaleengWynne, Diana,1934-2011ג׳ונס, דיאנה וויןMachine-derived non-Latin script reference project.Non-Latin script reference not evaluated.Not same as: Wynne, Diana Jones, 1942-Her Archer's goon, c1984:CIP t.p. (Diana Wynne Jones)LC data base, 6-27-83(hdg.: Wynne, Diana)Her Black Maria, 1991:t.p. (Diana Wynne Jones) Brit CIP (Jones, Diana Wynn, 1934- )Guardian WWW site, Mar. 28, 2011(Diana Wynne Jones; b. 16 Aug. 1934, London; d. 26 Mar. 2011; children's fantasy and science-fiction author)admin 0 -192 2021-08-05 10:05:30-05 2021-08-05 10:05:42.699045-05 import 00463nz a2200193n 450048519619880502072441.7020401|| anannbab| |b ana ||| sh 85047157 (DLC)sh 85047157 DLCDLCDLCBF175.5.F36PsychoanalysisFantasyDay dreamsPhantasygDefense mechanisms (Psychology)gDreamsgImaginationgVisionsadmin 0 -193 2021-08-05 10:05:30-05 2021-08-05 10:05:42.427219-05 import 01030cz a2200265n 4500492320160510075305.0840827n| azannaabn |a aaa n 84033818 (DLC)n 84033818 (OCoLC)oca01204315DLCengrdaDLCNjPCStScU1939-05-25edtfMcKellen, IanBurnley (England)nafActingMotion picture authorshipTelevision authorshiplcshActorsScreenwriterslcshmaleengIan MurrayMcKellan, IanShakespeare, W. A midsummer night's dream [SR] c1983:container (Ian McKellen)Stonewall 25, c1994:container (Sir Ian McKellan)WW, 1999(McKellen, Sir Ian (Murray), Kt 1991; actor and director since 1961; b. May 25, 1939)Internet Movie Database WWW site, May 9, 2016:(Ian McKellen, actor, writer ; b. Ian Murray McKellen, May 25, 1939 in Burnley, Lancashire, England, UK)admin 0 -194 2021-08-05 10:05:30-05 2021-08-05 10:05:42.179743-05 import 00871cz a2200193n 450057065720160518075241.0141220n| azannaabn |a ana cno2014168126(DLC)no2014168126(OCoLC)oca10046895ICrlFengrdaICrlFWaU2014edtfHobbit, the battle of the five armies (Motion picture)Motion picturesFantasy filmsFiction filmsFilm adaptationsFeature filmslcgftBattle of the five armies (Motion picture)Hobbit (Motion picture : 2014)Falconer, Daniel. The hobbit, the battle of the five armies, 2014 :page facing title page (a companion to the film The Hobbit: The Battle of the Five Armies)IMDb, Dec. 8, 2014(The Hobbit: The Battle of the Five Armies, released Dec. 17, 2014 ; directed by Peter Jackson)admin 0 -195 2021-08-05 10:05:30-05 2021-08-05 10:05:41.639546-05 import 03940cz a2200409n 45005820151228093142.0110507|| anznnbabn |a ana gf2011026381sh2007025512(DLC)gf2011026381DLCengDLClcgftDLCMade-for-TV moviesFeature films, Made-for-TVFeatures, TelevisionMade-for-television filmsMade-for-television motion picturesMade-for-television moviesMade-for-TV feature filmsMade-for-TV filmsMade-for-TV motion picturesTele-featuresTelefeaturesTelefilmsTelemoviesTelepicsTelevision featuresTelevision filmsTelevision moviesVidpicsgTelevision programsLopez, D. Films by genre, c1993(Television Movie (Made-for-TV Movie, Movie-for-TV, Movie Made-for-Television, Telefeature, Telefilm, TV Movie, TVM, Vidpic). Formerly, the designation television film used to mean a film of any length (including information and entertainment films) made for the purpose of being shown on television; in recent times, the term telefilm or TV film is generally used to mean a feature-length narrative film made exclusively for television, although some are released theatrically or made available on video-cassette. Made-for-television films are not a recent innovation ... only since 1972 that telefeatures telecast on American networks outnumbered theatrical films shown on TV ... Miniseries, novels for television and some docudramas are forms which differ from TV movies only by their greater length.)TV genres, 1985:pp. 151-152 (chapter title: The American made-for-TV movie; TV movies; telefeature; telefilms; vidpics; movies made-for-television; the made-for-TV movie is a rich and varied genre, encompassing its own unique formal, stylistic, and topical strategies on which the process of definition and evaluation can continue to develop; can be divided into three categories/subgenres: the telefeature, the docudrama, and the mini-series; telefeature refers to a fictional narrative produced for TV that is a discrete entity occupying at least 90 "commercial" minutes but not exceeding one evening of programming; docudrama is a story film designed to recreate actual persons, places, and events; mini-series is an extended telefeature or docudrama that is broadcast in multiple segments over two or more nights) pp. 175-180 (videography includes: Brian's Song; The Night Stalker; That Certain Summer; Rich Man, Poor Man; Sybil; Roots; Holocaust; Shogun; The Day After)The television genre book, 2001:p. 13 (made-for-TV movie)Singleton, R.S. Filmmaker's dict., c2000(made-for-TV movie: Film produced for airing on television. Later, it may have a domestic video or foreign theatrical release. Also called a movie for television, TV movie, telefilm or telepic)Yee, M.M. Moving image materials, 1988(Made for TV movies. Use for a feature-length fictional fictional film made for television broadcast rather than for theatrical release. UF Films on television, Movies on television, TV movies, Telefeatures, Television broadcasting of films (LCSH), Television films, Television movies)The moving image genre-form guide, via WWW, Mar. 29, 2002(Television feature. Individual fictional work (often called "Made for TV movie") presented on television, usually running from 90 minutes to three hours in length (which may include commercials), and is not part of a regular series or mini-series. Used for Made for TV movie; Television movie)Google search, Mar. 1, 2009(television feature films; made-for-television feature films; made-for-TV feature films; TV films)admin 0 -196 2021-08-05 10:05:30-05 2021-08-05 10:05:41.351754-05 import 01372cz a2200265n 450059435520171005073855.0960514n| azannaabn |b ana nr 96018294 no 00005941 (DLC)nr 96018294 (OCoLC)oca04078895DLC-RengrdaDLC-RNjPOCoLCUPBIAhCCS1985-06-15edtfSutajio Jiburi, Kabushiki KaishaJapannafjpnStudio Ghibliスタジオジブリスタジオジブリ株式会社スタジオジブリ株式會社Machine-derived non-Latin script reference project.Non-Latin script references not evaluated.Edo Tōkyō Tatemonoen monogatari, 1995:colophon (Kabushiki Kaisha Sutajio Jiburi)Mononoke hime, 1998:case (Sutajio Jiburi; Studio Ghibli [in rom.])Wikipedia, viewed Oct. 4, 2017(Studio Ghibli, Inc. (Japanese: 株式会社スタジオジブリ Hepburn: Kabushiki-gaisha Sutajio Jiburi) is a Japanese animation film studio based in Koganei, Tokyo, Japan. The studio is best known for its anime feature films, and has also produced several short films, television commercials, and one television film. It was founded on 15 June 1985)https://en.wikipedia.org/wiki/Studio_Ghibliadmin 0 -197 2021-08-05 10:05:30-05 2021-08-05 10:05:41.110089-05 import 00874cz a2200241n 450059631920181221073651.0990618n| azannaabn |n aaa cnr 99019510 (DLC)nr 99019510 (OCoLC)oca05010725CStengrdaCStScUInU1969-05-14edtfBlanchett, Cate,1969-Melbourne (Vic.)nafActinglcshActresseslcshFemaleslcdgtengCatherine EliseElizabeth, 1999:credits (Cate Blanchett)Internet movie database, June 18, 1999(Cate Blanchett, actress, producer, b. May 14, 1969, Melbourne, Australia)Internet Movie Database WWW site, July 17, 2015:(Cate Blanchett, actress ; b. Catherine Elise Blanchett, May 14, 1969 in Melbourne, Victoria, Australia)admin 0 -198 2021-08-05 10:05:30-05 2021-08-05 10:05:40.847446-05 import 01105cz a2200229n 450059809520130319131253.0020731n| azannaabn |b aaa cnr2002028264(DLC)nr2002028264(OCoLC)oca05828683PUengrdaPUOCoLCDLC19480819Suzuki, Toshio,1948 August 19-nneaSuzuki, Toshio,1948 Aug. 19-nneSuzuki, Toshio,1950-鈴木敏夫,1948 August 19-Machine-derived non-Latin script reference project.Non-Latin script reference not evaluated.Princess Mononoke [VR], 2000:credits (Toshio Suzuki)Internet movie database, July 31, 2002(Toshio Suzuki; b. March 31, 1950, Aichi, Japan; producer, writer)IMDb, Aug. 26, 2008:Toshio Suzuki (I) p. (d.o.b 19 Aug. 1948, Nagoya, Japan; producer, actor, writer, etc.; filmography includes: Mononoke-hime aka Princess Mononoke (1997); Sen to Chihiro no kamikakushi aka Spirited Away (2001); Hauru no ugoku shiro aka Howl's Moving Castle (20004)admin 0 -199 2021-08-05 10:05:30-05 2021-08-05 10:05:40.619379-05 import 00617cz a2200205n 450059830120140326073712.0021009n| azannaabn |n ana cnr2002037524(DLC)nr2002037524(OCoLC)oca05892653CStengrdaCStWaUWingNut Films (Firm)Motion picture studioslcshFirmNew ZealandnafMotion pictures--Production and directionlcshengMeet the Feebles, 1989:credits (WingNut Films)IMDb, March 24, 2014(WingNut Films [nz]; production company)admin 0 -200 2021-08-05 10:05:30-05 2021-08-05 10:05:40.359866-05 import 00974cz a2200193n 4500620151202110544.8110504|| anznnbabn |a ana gf2011026050sh2007025314gf2011026443gf2011026563(DLC)gf2011026050DLCengDLClcgftDLCAnimated television programsCartoons (Television programs)nnePink Panther television programsnneScooby-Doo television programsTelevision cartoon showsgTelevision programsMoving image genre-form guide online, June 18, 2007(Animation: work created by recording a series of still images, such as drawings, objects, or posed people; when played back, the static images combine to simulate motion, creating the impression of movement)Television programs that create the illusion of movement in drawings, clay, inanimate objects, or the like, through an animation technique.admin 0 -201 2021-08-05 10:05:30-05 2021-08-05 10:05:40.119479-05 import 00805cz a2200241n 450061736320150718073911.0071207n| azannaabn |n aaa n 2007087151(DLC)n 2007087151(OCoLC)oca07602740DLCengrdaDLCScU19790325Pace, Lee,1979-Chickasha (Okla.)nafActinglcshActorslcshmaleengLee GrinnerInfamous, 2006(Lee Pace, cast; film not viewed)Internet movie database, Dec. 7, 2007(Lee Pace; b. Mar. 25, 1979 in Chickasha, Okla.; actor)Internet Movie Database WWW site, July 17, 2015:(Lee Pace, actor ; b. Lee Grinner Pace, March 25, 1979 in Chickasha, Oklahoma, USA)admin 0 -202 2021-08-05 10:05:30-05 2021-08-05 10:05:39.79116-05 import 01367cz a2200289n 4500720190123111801.5110504|| anznnbabn |a ana gf2011026063sh2008025552(DLC)gf2011026063DLCengDLClcgftDLCAudiobooksAudio booksBooks, AudioBooks, CassetteBooks, RecordedBooks on tapeCassette booksRecorded booksgSound recordingsDictionary.com, Mar. 10, 2008(audio book; also audiobook; a recording of an oral reading of a book, often in abridged form)Wikipedia, Mar. 10, 2008(audiobook; a recording that is primarily of the spoken word as opposed to music; not intended to be descriptive of the word "book" but rather a recorded spoken program in its own right and not always an audio version of a book)Montana State Library website, Mar. 10, 2008:Montana Talking Book Library (cassette books; recorded books)NetLibrary web site, Mar. 10, 2008(books on tape)LCSH, Mar. 10, 2008(hdg: Audiobooks)OED online, April 27, 2010:audiobook (an audio recording of a reading of a book (typically a novel), produced commercially)Recordings of oral readings of books.admin 0 -203 2021-08-05 10:05:30-05 2021-08-05 10:05:39.54792-05 import 00680nz a2200229n 450070777420200318073115.0200317n| azabbaaan |a aaa cno2020040792(DLC)no2020040792(OCoLC)oca12835593ICrlFengrdaICrlFJemisin, N. K.Great cities trilogyNew York (N.Y.)nafOrbit US (Firm)nafSeries (Publications)lcshGreat cities trilogyNew York, NYOrbitfICrlFtDPCCICrlFsICrlFJemisin, N. K. The city we became, 2020:series title page (The great cities trilogy)admin 0 -204 2021-08-05 10:05:30-05 2021-08-05 10:05:39.247489-05 import 01641cz a2200301n 450072341020200620070245.0870312n| azannaabn |a aaa cn 86138505 (DLC)n 86138505 (OCoLC)oca01807359IENengrdaDLCDLCOClWScUMdChhSMR1931-09-122020-06-19edtfHolm, Ian,1931-2020Essex (England)London (England)nafActinglcshActorslcshMaleslcdgtengCuthbert, Ian Holm,1931-2020Greystoke [VR] 1984:credits (Ian Holm)Halliwell's filmgoer's companion, 1984:p. 522 (b. 1932; British stage and film actor)Halliwell's who's who in the movies, c2001(Holm, Sir Ian (1931- ) (Ian Holm Cuthbert); b. in Ilford, Essex)Internet movie database, July 18, 2003(Ian Holm; actor; b. Sept. 12, 1931, Goodmayes, England; birth name, Ian Holm Cuthbert)International motion picture almanac, 2003:p. 214 (Holm, Ian; C.B.E., actor; real name Ian Holm Cuthbert; b. Ilford, Essex, England, Sept. 12, 1931)Contemporary theatre, film, & television, v. 30, c2000(Holm, Ian; b. Ian Holm Cuthbert, Sept. 12, 1931, Goodmayes, Ilford, Essex, England)Internet Movie Database WWW site, July 17, 2015:(Ian Holm, actor ; b. Ian Holm Cuthbert, September 12, 1931 in Goodmayes, Essex, England, UK)IMDb, viwed June 19, 2020(Ian Holm ; Died: June 19, 2020 (age 88) in London, England)https://www.imdb.com/name/nm0000453/?ref_=nv_sr_srsg_0admin 0 -205 2021-08-05 10:05:30-05 2021-08-05 10:05:38.971671-05 import 01043cz a2200217n 45007420160412142123.2110507|| anznnbabn |a ana gf2011026484sh2007025531gf2014026599(DLC)gf2011026484DLCengDLClcgftDLCWaURadio adaptationsDramatisationsDramatizationsgAdaptationsgRadio programsRadio form/genre terms guide, via WWW, Oct. 24, 2007(Adaptations: Works created by the modification of other works. Examples: World's greatest novels, NBC University theater, Screen director's playhouse)LCSH, Oct. 24, 2007(hdg: Radio adaptations)Elliott, M.J. H.G. Wells' The war of the worlds : a radio dramatization, 2014:container (dramatized by M.J. Elliott from the novel by H.G. Wells)Robbins, J. L. Frank Baum's Ozma of Oz : a radio dramatization, [2011], p2000.Pratchett, T. Good omens : a full-cast BBC Radio dramatisation, 2015.admin 0 -206 2021-08-05 10:05:30-05 2021-08-05 10:05:38.743479-05 import 00608nz a2200193n 450075826320171014073035.0171013n| azannaabn |b aaa cno2017133702(DLC)no2017133702(OCoLC)oca11018903InUengInUrda1988-06-28Hamada, Gaku,1988-Actorslcsh濱田岳,1988-Non-Latin script reference not evaluated.Sarusuberi, 2017:credits (Hamada Gaku)Wikipedia (Japan), October 11, 2017Hamada Gaku article (Hamada Gaku; actor; b. June 28, 1988)admin 0 -207 2021-08-05 10:05:30-05 2021-08-05 10:05:38.503914-05 import 00605cz a2200181n 45008234420150724073858.0040706n| azannaabn |n aaa cno2004063873(DLC)no2004063873(OCoLC)oca06386398IAhCCSengrdaIAhCCSIlMpPL19650115Nesbitt, James,1965-Coleraine (Northern Ireland)nafActorslcshWaking Ned Devine, c1998, 1999:credits (James Nesbitt)Internet movie database, July 2, 2004(James Nesbitt, actor; b. Jan. 15, 1965 in Coleraine, Northern Ireland)admin 0 -208 2021-08-05 10:05:30-05 2021-08-05 10:05:38.247714-05 import 01010cz a2200253n 45008766020150718073902.0051117n| azannaabn |a aaa cno2005108774(DLC)no2005108774(OCoLC)oca06783864NhD-MCengrdaNhD-MCScU19790803Lilly, Evangeline,1979-Fort Saskatchewan (Alta.)nafActinglcshActresseslcshfemaleengNicole EvangelineLilly, Nicole Evangeline,1979-Lost. The complete first season [VR] 2005:title frame (Evangeline Lilly, cast)Internet movie database, Nov. 17, 2005(Evangeline Lilly; birth name, Nicole Evangeline Lilly, b. Aug. 3, 1979 in Fort Saskatchewan, Alberta, Canada; actress)Internet Movie Database WWW site, July 17, 2015:(Evangeline Lilly, actress ; b. Nicole Evangeline Lilly, August 3, 1979 in Fort Saskatchewan, Alberta, Canada)admin 0 -209 2021-08-05 10:05:30-05 2021-08-05 10:05:37.995485-05 import 00772cz a2200217n 45008883920130410073825.0060307n| azannaabn |n aaa cno2006023537(DLC)no2006023537(OCoLC)oca06873714IENengrdaIENPPi-MA19710822Armitage, Richard,1971-Leicester, EnglandEnglandActorslcshmaleRichard CrispinNorth & South, 2005:title frames (Richard Armitage, cast member)IMDb, Feb. 27, 2006(Richard Armitage, b. Aug. 22, 1971 in Leicester, England)Wikipedia, April 9, 2013(Richard Armitage; born Richard Crispin Armitage, August 22, 1971, Leicester, England; English actor)admin 0 -210 2021-08-05 10:05:30-05 2021-08-05 10:05:37.462611-05 import 01510cz a2200289n 45009501120120824074749.0070808n| acannaabn |b aaa cno2007091687(DLC)no2007091687(OCoLC)oca07490259IAhCCSengIAhCCSOCoLCOrPlMLATerajima, Shinobu,1972-寺島しのぶ,1972-てらじましのぶ,1972-寺島グナシア忍,1972-Terajima, Gunashia Shinobu,1972-寺島忍,1972-Terashima, Shinobu,1972-テラジマシノブ,1972-Machine-derived non-Latin script reference project.Non-Latin script references not evaluated.Vaiburēta = Vibrator, 2007:credits (Shinobu Terajima [in rom.]) container (Shinobu Terashima; cast)IMDb, Aug. 8, 2007(Shinobu Terajima, b. Dec. 28, 1972)Kuīru, 2012:credits (寺島しのぶ = Terajima Shinobu; cast)Wikipedia WWW home page, Aug. 23, 2012(てらじま しのぶ = Terajima Shinobu; b. 28 Dec. 1972 in Kyōto-shi; female; orig. name: 寺島グナシア忍 = Terajima Gunashia Shinobu; alter. name: 寺島忍 = Terashima Shinobu; grad. Aoyama Gakuin Daigaku; actress)NDL, Aug. 23, 2012(hdg.: 寺島, しのぶ, 1972- = テラジマ, シノブ, 1972- = Terajima Shinobu, 1972-)admin 0 -235 2022-01-31 11:45:19.92627-06 \N import 04983cas a2200961 a 4500ocm01645522 OCoLC20220131124448.0750921c18579999nyudr ne 0 a0eng csn 78004456 MULengMULNSDIULDLCSERAIPSERAIPNPIIULAIPNPINPXNPADLCAIPUNPOCLDLCNSDDLCNSDAGLNSDAGLMGNNYSNYGMXCOCLHULCUSNYGDLCOCLDLCNYSNVFNLMOCLCQNVFNYSNVFDLCNYSNSDZYUOCLCQDLCMBBDLCOCLCQKRTASOCLCQDLCOCLCQQT4HF7OCLCOOCLCQP4IOCLCOOCLCFOCLCOOVYOCLCOOCLCAOCLCQOCLCODOSOCLCOOCLOCLCOGZMDLCINUDLCAQMYVOUCWNLCOCLCQUKMGBDLCSXQOCLCOCPOOCLCOIUL9877126DNLMN16200000DNLM(AMICUS)000000690283013914274Uk1159723511630839213478785289500397557807843731477246993898526103313647712257637000362-43310362-43311NYTIAO383520USPS(OCoLC)1645522(OCoLC)11597235(OCoLC)11630839(OCoLC)213478785(OCoLC)289500397(OCoLC)557807843(OCoLC)731477246(OCoLC)993898526(OCoLC)1033136477(OCoLC)1225763700nsdppccn-us-nyNewspaperPN4899.N45N48286.8N488X000071.471KCEAN.Y. timesThe New York timesThe New York times.Published jointly with other newspapers on Sept. 19-26, 1923 as:Combined New York morning newspapersPublished jointly with other newspapers on Sept. 23, 1923 as:Combined New York Sunday newspapersPopularly known as:NYTNew-York [N.Y.] :[H.J. Raymond & Co.],1857-volumes :illustrations ;56 cmDaily,Apr. 21, 1861-Daily (except Sunday),1857-Apr. 20, 1861texttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 6, no. 1868 (Sept. 14, 1857)-Suspended Dec. 12-28, 1958; Dec. 20, 1962-Mar. 1963; Sept. 17-Oct. 10, 1965; and Aug. 10-Nov. 5, 1978.Also issued in a continuously updated online version with title: New York times on the web.Also issued on CD-ROM, and microfilm from UMI.Also available in digital format on the Library of Congress website.Large type ed.: New York times large type weekly, 1967-Sunday issue also includes issues of: The New York times book review.Semiweekly eds.: Semi-weekly times (New York, N.Y.), 1857-1867, and: New-York semi-weekly times, 1867-<1880>Weekly ed.: New-York weekly times, 1857-<1896>.Issued monthly in a reduced size publication titled: Little times, <1924-1928>.Vol. 171, no. 59,301 (Jan. 12, 2022).New York (N.Y.)Newspapers.New York County (N.Y.)Newspapers.Newspapers.information sources.New York (N.Y.)Newspapers.New York (State)New York.fast(OCoLC)fst01204333New York (State)New York County.fast(OCoLC)fst01234953Periodicals.PeriodicalsDatabases.Newspapers.fast(OCoLC)fst01423814Periodicals.fast(OCoLC)fst01411641Newspapers.lcgftPeriodicals.lcgftNewspapers.rbgenrNew York times on the web.United StatesNew YorkNew YorkNew York.New York times magazine0028-7822(DLC)sn 78005343(OCoLC)1760221New York times large type weekly0028-7814(DLC)sn 78001349(OCoLC)1776110Semi-weekly times (New York, N.Y.)(DLC)sn 83045440(OCoLC)9475039New-York semi-weekly times(DLC)sn 93059314(OCoLC)28275321New-York weekly times(DLC)sn 83045332(OCoLC)9447647International New York timesOct. 15, 2013-Oct. 11, 20162269-9740(DLC) 2013254386(OCoLC)861810083New York times (International edition : 2016)Oct. 12, 2016-2474-7149(DLC) 2016202622(OCoLC)960428092New York times (CD-ROM)1542-667X(DLC)sn 93031859(OCoLC)27999397New York times on the Web1553-8095(DLC)sn 00061556(OCoLC)34107580Little times(DLC)sn 92061532(OCoLC)1756036New-York daily times2574-531X(DLC)sn 83030746(OCoLC)7919228New York times book review0028-7806(DLC)sn 82008126(OCoLC)6441787http://www.nytimes.com/https://hdl.loc.gov/loc.sgp/roto.sn78004456C0KCE 0 -236 2022-01-31 11:45:19.92627-06 \N import 03042cas a2200649 a 4500ocm36098632 OCoLC20220131124448.0961217c19979999nyudn ne 0 a0eng csn 96002949 NSDengNSDIULNSDNVFIULDLCNVFNLMOCLCQDLCOCLCFP4IOCLCOOCLOCLCOINUOCLCQI8MOCLCQHCOOCLOCLCOAFSAM100929191DNLM7280616421013375052116168082711889768591092-09351092-09351664880USPS(OCoLC)36098632(OCoLC)728061642(OCoLC)1013375052(OCoLC)1161680827(OCoLC)1188976859nsdppccn-us-nyNewspaperJOUR33213KCEAWall Street journal (Central ed.)Wall Street j.(Cent. ed.)Wall Street journal(Central ed.)The Wall Street journal.Popularly known as:WSJCentral ed.New York, N.Y. :Dow Jones & Co.,1997-volumesDaily (except Saturdays, Sundays and general legal holidays)texttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 99, no. 1 (Jan. 2, 1997)-Initials following CE/ indicate printing plant.Also issued via the Internet (subscription fee required).Merger of: Wall Street journal (Midwest ed.), and: Wall Street journal (Southwest ed.); continues numbering of the latter.Articles selectively issued in CD-ROM version: Wall Street journal ondisc.Latest issue consulted: Vol. 279, no. 9 (Jan. 12, 2022).New York (N.Y.)Newspapers.Noticias-Estados Unidos.New York (State)New York.fast(OCoLC)fst01204333Newspapers.fast(OCoLC)fst01423814Newspapers.lcgftUnited StatesNew YorkNew YorkNew York.Wall Street journal (Eastern ed.)0099-9660(DLC)sn 79004569(OCoLC)4299067Wall Street journal (Western ed.)0193-2241(DLC)sn 79004006(OCoLC)3787143Wall Street journal (Europe)0921-9986(DLC)sc 83002468(OCoLC)9524653Asian Wall Street journal1997-Oct. 14/16, 20050377-9920(DLC)sn 78006295(OCoLC)2841673Wall Street journal AsiaOct. 17, 2005-(DLC) 2005261162(OCoLC)62107492Asian Wall Street journal. Weekly1997-July 1/7, 20020191-0132(DLC)sc 79005497(OCoLC)4771470Wall Street journal (Midwest ed.)0163-089X(DLC)sn 79004570(OCoLC)4299121Wall Street journal (Southwest ed.)0193-225X(DLC)sn 79007360(OCoLC)5166090Wall Street journal ondisc(DLC)sn 92022996(OCoLC)25809149http://online.wsj.com/home.htmlsubscription fee required.C0KCE 0 -237 2022-01-31 11:45:19.92627-06 \N import 02806cas a2200589 a 4500ocm01792449 OCoLC20220131124448.0740625c19749999nyuwn p 0 a0eng 74642084 2002252723DLCengDLCOCLNSDOCLNSTDLCNSTAIPNSDAIPNSTAIPNSTDLCNSTOCLNSDNSTHULWAUUMCNLMNSDOCLCQCUSKYBOCLCQDLCOCLCFOVYGILDSOCLCQOCLCOCNONLCCUSOCLCQOCLCODLCIOTHULAU@UKMGBTOFCD5(AMICUS)000000101676100972494DNLM007191871Uk1605403127706155026519357411451574115072237682987314904549662454789739018641031307347103285005310353059171078551741117927396412321103330093-76730093-767310093-7673061150USPS(OCoLC)1792449(OCoLC)1605403(OCoLC)12770615(OCoLC)50265193(OCoLC)57411451(OCoLC)57411507(OCoLC)223768298(OCoLC)731490454(OCoLC)966245478(OCoLC)973901864(OCoLC)1031307347(OCoLC)1032850053(OCoLC)1035305917(OCoLC)1078551741(OCoLC)1179273964(OCoLC)1232110333pccnsdpAP2.P417051KCEAPeople (Chicago, Ill.)People(Chicago, 1974)People(Chicago. 1974)People.Popularly known as:People magazinePeople weekly1974-20021974- :Chicago :Time,©1974-2002- :New York :Timevolumes :illustrations (some color), portraits ;28 cmWeekly (two issues combined at year end),<1984->Weekly,1974-texttxtrdacontentunmediatednrdamediavolumencrdacarrier[Vol. 1, no. 1] (Mar. 4, 1974)-Imprint varies.Title from masthead.Latest issue consulted: Vol. 97, no. 3 (Jan. 17, 2022).EntertainersPeriodicals.CelebritiesPeriodicals.Celebrities.fast(OCoLC)fst00850072Entertainers.fast(OCoLC)fst00912655Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftSupplement (work):People (Chicago, Ill.). Awards season special<February 2018->(DLC) 2019234654(OCoLC)1085365902Online version:People2169-2157(DLC) 2012203392(OCoLC)137342448AAPCCLSUCStCU-ICU-SCaOONLCoUDLCDeUIaASInUKPTMdUMiDWMoUMsUNBuCNHUNcRSOrUPTUTxLTTxUULAUPBViBlbVViUhttp://www.people.com/people/archive/issues/C0KCE 0 -238 2022-01-31 11:45:19.92627-06 \N import 01551cas a2200457 i 4500ocn875657104OCoLC20220131124448.0140404c200u9999njuwr p | a0eng 2014201700DLCengrdaDLCDLCCNCAROCLCFOCLCOZQPOCLCO90949266410414344542371-9710111924USPS(OCoLC)875657104(OCoLC)909492664(OCoLC)1041434454pccnsdpISSN RECORD05023KCEACloser (Englewood Cliffs, N.J.)Closer(Englewood Cliffs)Closer.Closer weeklyEnglewood Cliffs, NJ :Bauer Magazine L.P.52 issues per yeartexttxtrdacontentunmediatednrdamediavolumencrdacarrierClose to the stars you love.Description based on: Vol. 2, issue 1 (January 6, 2014); title from cover (surrogate).Latest issue consulted: Vol. 10, issue 3 (January 24, 2022) (surrogate).CelebritiesPeriodicals.LifestylesPeriodicals.FashionPeriodicals.Celebrities.fast(OCoLC)fst00850072Fashion.fast(OCoLC)fst00921600Lifestyles.fast(OCoLC)fst00998417Periodicals.fast(OCoLC)fst01411641Periodicals.lcgfthttp://www.closerweekly.comC0KCE 0 -239 2022-01-31 11:45:19.92627-06 \N import 06226cas a2200973 i 4500ocm01767509 OCoLC20220131124448.0751101c19239999nyuer p 0 a0eng 25011669 DLCengrdaMULCOOFULNSDDLCNSDNSTDLCNSTOCLRCSAIPOCLAIPDLCAIPNSDAIPHULNSDNSTNSDNSTCASNSTDLCHULNSTDLCOCLIULNSDNLMOCLCQCDSIULDLCTXANYDWHIULKNVUBFOCLCQUKMGBOCLCQQAQULAMLJLJQEJ9UAU@OCLCQDLCCODUPMJRNOCLCQSTLNYGOVYOCLCFGUADOSOCLCOT3HOCLCOZCUCODHQDBEDGEWBTOCLCQOCLCOOCLCQNLCAVAOCLCANJROCLCQTFWOCLCQSISMUOCLCQOCLCOCRLOCLCQOCLCOOCLCAX#4NDDIULMIRIL4J6OCLCOOCLOCLCOIULOCLCACUSOCLCO(AMICUS)0000001808669877130DNLMT10620000DNLM000271424IsJJNL011137166Uk457877524148851527128062536741337553178067560591591266308292466308532667127293969677245771972369571973116373127614373149065375445554675770626385157199097391128997790836710090268011030427245103296668710526949281063365238108106570911020119101114407540112622098111291483421130903889113448000611386077431142682964114473445411545582911157915047116247951911763242271200986610120102191412016391141201871566120198899412020194331242827021124296189812465300890040-781X0040-781X1TYMEA9865800USPS(OCoLC)1767509(OCoLC)4578775(OCoLC)241488515(OCoLC)271280625(OCoLC)367413375(OCoLC)531780675(OCoLC)605915912(OCoLC)663082924(OCoLC)663085326(OCoLC)671272939(OCoLC)696772457(OCoLC)719723695(OCoLC)719731163(OCoLC)731276143(OCoLC)731490653(OCoLC)754455546(OCoLC)757706263(OCoLC)851571990(OCoLC)973911289(OCoLC)977908367(OCoLC)1009026801(OCoLC)1030427245(OCoLC)1032966687(OCoLC)1052694928(OCoLC)1063365238(OCoLC)1081065709(OCoLC)1102011910(OCoLC)1114407540(OCoLC)1126220981(OCoLC)1129148342(OCoLC)1130903889(OCoLC)1134480006(OCoLC)1138607743(OCoLC)1142682964(OCoLC)1144734454(OCoLC)1154558291(OCoLC)1157915047(OCoLC)1162479519(OCoLC)1176324227(OCoLC)1200986610(OCoLC)1201021914(OCoLC)1201639114(OCoLC)1201871566(OCoLC)1201988994(OCoLC)1202019433(OCoLC)1242827021(OCoLC)1242961898(OCoLC)1246530089nsdppccAP2.T37W1TI796G05119KCEATime(Chic. Ill.)Time(Chicago, Ill.)Time.Popularly known as:Time magazine[Chicago, Ill.] :[Time Inc.],[1923]-<1990-2014> :[New York] :[Time Warner]<2014-2018> :[New York] :[Time Inc.]<2018- May 2019> :[New York] :[Meredith Corporation]<May 2019-> :[New York] :[Time USA LLC]volumes :illustrations (including portraits) ;28 cmBiweekly (except for the last week of December),2021-Frequency varies,1923-June 2016Weekly (except for two combined issues in Jan., and one combined issue in Feb., Apr., July, Aug., Sept. and Nov.),July 2016-December 2020texttxtrdacontentunmediatednrdamediavolumencrdacarrierVolume 1- March 3, 1923-Editors: 1923-<1924> B. Hadden, H.R. Luce.Preceded by a specimen issue dated December 30, 1922.Issue for December 16, 1996 called volume 149, number 1 but constitutes volume 148, number 27; double issue for December 30, 1996/January 6, 1997 called volume 148, number 29; issue for January 13, 1997 called volume 149, number 2.Issue for December 26, 2016/January 2, 2017 called volume 188, number 27/28; no issue published for January 9, 2017.Issues for January 16, 2017 and January 30, 2017 both called volume 189, number 3.Issues for January 23, 2017 and February 6, 2017 both called volume 189, number 4.Individual indexes cumulated in one volume, volume 35-44.Volumes 45 (1945)-60 (1952). 1 volume.Volumes for 1989- also issued on CD-ROM with titles: Time magazine compact almanac; Time almanac (Multimedia ed.); and: Time magazine compact almanac (Multimedia ed. for Macintosh).Also issued in a large-print ed.Vol. 199, nos. 1/2 (January 17-24, 2022).World politics20th centuryPeriodicals.World politics21st centuryPeriodicals.Hebdomadaires.eclasEtats-Unis d'Amérique.eclasWorld politics.fast(OCoLC)fst01181381Current events.fast(OCoLC)fst00885350Periodicals.fast(OCoLC)fst01058072American newspapers.nliAmerican periodicals.nliMAGAZINE.searsCURRENT EVENTS.unbistGovernment(DNLM)D006076Internationality(DNLM)D038622Politics(DNLM)D011057Social Environment(DNLM)D0129311900-2099fastPoliticsElectronic journals.Current magazines.periodicals.aat(CStmoGRI)aatgf300026657Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftPeriodical(DNLM)D020492Hadden, Briton,1898-1929,editor.Luce, Henry R.,1898-1967,editor.Time (Large ed.)1528-2546(DLC) 00211481(OCoLC)43313134Time (Online)2169-1665(DLC) 2006263449(OCoLC)61523343Literary digest (New York, N.Y. : 1937)19382643-9492(DLC)sn 93030209(OCoLC)5746952CoUDLCIaASMH-PAMH-SIMnSUNcRSNhUOUTxArUTxUViBlbVViUC0KCE 0 -240 2022-01-31 11:45:19.92627-06 \N import 02730cas a2200637 a 4500ocm01585969 OCoLC20220131124448.0750901c19539999pauex p 0 a0eng csn 78000841 MULengMULCOONSDDLCNSDAIPNSDAIPNSDDLCNSTNSDNSTOCLCLUOCLCQEBZHLSOCLCQJEDGK8HEBISCGUGK8OCLCQOCLCFOCLCODLCIULDLCHCOOCLCOOCLCQIULOCLCQ882214-1DE-6002967485218740902323236386053178067710526780010039-85430039-85431644600USPS(OCoLC)1585969(OCoLC)29674852(OCoLC)187409023(OCoLC)232363860(OCoLC)531780677(OCoLC)1052678001nsdppccPN1992 .T17T8KCEATV guideTV guideTV guide.Television guide[Radnor, Pa.] :[Triangle Publications]<2018-> :Newtown Square, PA :TV Guide Magazine, LLCvolumes :illustrations ;19-27 cmTwenty-six times per year,<Dec. 10/23, 2018->Weekly (except for one week in Jan., two weeks in July, and one week in Nov.),<2007>-2017Twenty-seven times per year,2018-texttxtrdacontentunmediatednrdamediavolumencrdacarrierBegan with: Vol. 1, no. 1 (Apr. 3-9, 1953).Issued in numerous regional editions.Published: TV Guide Magazine Group, <Dec. 25, 2006/Jan. 7, 2007->Some issues combined.Daily articles and updates also available online.1953-1977. 1 v.; 1978-1982. 1 v.Description based on: Vol. 6, no. 44 (Nov. 1-7, 1958); title from cover.Latest issue consulted: Volume 69, number 28 (Jul. 5-18, 2021) = issue #3599/3600.Television programsPeriodicals.Television programsReviewsPeriodicals.Television programs.fast(OCoLC)fst01147026Periodicals.fast(OCoLC)fst01411641Reviews.fast(OCoLC)fst01423760Periodicals.lcgftReviews.lcgftOnline version:TV guide(OCoLC)609818037TV guide ... index(DLC) 87656546(OCoLC)6897995DLChttp://bibpurl.oclc.org/web/1849http://www.tvguide.com/08531v.(year)(month)(day)wpsa8631.11195304038532(year)(month)(day)wpsu8632.120040403C0KCE 0 -241 2022-01-31 11:45:19.92627-06 \N import 03313cas a2200697 a 4500ocm21114137 OCoLC20220131124448.0900223c19909999nyumn p 0 a0eng c 90650035 sn 90000042 NSDengNSDHULDLCNSTDLCNSDNSTIULWAUDLCOCLCQDLCCITOCLCQCUSOCLCQDLCOCLCQOCLCFXZ9OCLCOOCLOVYOCLCOOCLI8MGRROCLCOOCLCQP@NOCLCOOCLCQOCLCOOCLCQFVITQ7ZQPOCLCOUPMHULTXAOCLCO539240062209171006718538927314898359662492051000900198102053149510527056441049-04341049-04341005149USPS(OCoLC)21114137(OCoLC)53924006(OCoLC)220917100(OCoLC)671853892(OCoLC)731489835(OCoLC)966249205(OCoLC)1000900198(OCoLC)1020531495(OCoLC)1052705644nsdppccn-us---PN1993.E59791.4/0520KCEAEntertain. wkly.Entertainment weeklyEntertainment weekly.EntertainmentNew York, NY :Entertainment Weekly, Inc.,[1990]-volumes :illustrations (chiefly color) ;28 cm12 times a year (with 10 double issues and singles in April, July, and August),<Jan. 2022->Frequency varies,1990-July 201912 times a year (with 10 double issues and singles in April and July),Aug. 2019-<2021>texttxtrdacontentunmediatednrdamediavolumencrdacarrier#1 (from Fri., 2/16/90)-Title from cover.Some issues combined.Complemented by: Entertainment weekly ... yearbook.Latest issue consulted: No. 1623/1624 (Jan. 2022).Motion picturesPeriodicals.Television programsUnited StatesPeriodicals.Sound recordingsPeriodicals.Video recordingsPeriodicals.Literature, Modern20th centuryHistory and criticismPeriodicals.Popular cultureUnited StatesPeriodicals.Culture in motion picturesPeriodicals.Culture in motion pictures.fast(OCoLC)fst01902963Literature, Modern.fast(OCoLC)fst01000172Motion pictures.fast(OCoLC)fst01027285Popular culture.fast(OCoLC)fst01071344Sound recordings.fast(OCoLC)fst01127034Television programs.fast(OCoLC)fst01147026Video recordings.fast(OCoLC)fst01166472United States.fast(OCoLC)fst012041551900-1999fastCriticism, interpretation, etc.fast(OCoLC)fst01411635Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftOnline version:Entertainment weekly (Online)2169-3188(DLC) 2012203395(OCoLC)37584795Entertainment weekly ... yearbook1097-5705(DLC) 98660046(OCoLC)35007488CoFSDLCInUMHNNNcUNcWsWViWWMWaUhttp://search.ebscohost.com/direct.asp?db=a9h&jid=ENW&scope=siteC0KCE 0 -242 2022-01-31 11:45:19.92627-06 \N import 03321cas a2200637 a 4500ocm05902855 OCoLC20220131124448.0800122c19249999iaumr p 0 a0eng c 27006944 sc 80000977 NYGengNYGDLCNSDDLCAIPDLCAIPNSDAIPNSDNSTIULNSTNSDNSTCRLGUANLMOCLCQOCLCFOCLCOAUKALOVYOCLCOTPAOCLCOPHUSTOCLCQOCLCONFROCLCQAGLEYMFUGGRACOIULUKMGB101084269DNLM002830934Uk23186400985310495586013643897390267299128072499189996610233716331035083521103824730110439019081049072771104910343210491099891049128311107900172110805986151082879745112146181011369620431196057604120099223412009934441201004794120100491312020107221202019379124274824512427778251272884010127678923712892681870006-01510006-01511481930USPS(OCoLC)5902855(OCoLC)231864009(OCoLC)853104955(OCoLC)860136438(OCoLC)973902672(OCoLC)991280724(OCoLC)991899966(OCoLC)1023371633(OCoLC)1035083521(OCoLC)1038247301(OCoLC)1043901908(OCoLC)1049072771(OCoLC)1049103432(OCoLC)1049109989(OCoLC)1049128311(OCoLC)1079001721(OCoLC)1080598615(OCoLC)1082879745(OCoLC)1121461810(OCoLC)1136962043(OCoLC)1196057604(OCoLC)1200992234(OCoLC)1200993444(OCoLC)1201004794(OCoLC)1201004913(OCoLC)1202010722(OCoLC)1202019379(OCoLC)1242748245(OCoLC)1242777825(OCoLC)1272884010(OCoLC)1276789237(OCoLC)1289268187pccnsdpNA7100.B4580F9424747/.0519KCEABetter homes gard.Better homes and gardensBetter homes and gardens.[Des Moines] :[Meredith],[1924]-volumes :illustrations ;32 cmMonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrier[Vol. 2, no. 12] (Aug. 1924)-Title from cover.Latest issue consulted: v.99, no.12 (Dec. 2021).GardeningPeriodicals.Fruit-culturePeriodicals.Architecture, DomesticPeriodicals.Interior decorationPeriodicals.Landscape gardeningPeriodicals.Architecture, Domestic.fast(OCoLC)fst00813666Fruit-culture.fast(OCoLC)fst00935739Gardening.fast(OCoLC)fst00937852Interior decoration.fast(OCoLC)fst00976327Landscape gardening.fast(OCoLC)fst00991916Periodicals.Periodicals.Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftPeriodicals.rbgenrBetter homes and gardens (Online)(DLC) 27006944(OCoLC)38540542Fruit, garden and home0271-650X(DLC)sf 83006923(OCoLC)5950576AzTeSCLSUDLCDNALICRLMnSUMnUOUViBlbVViW8531v.no.12r(year)(month)m018631.1<79><7><2001><07>Aug. 1986C0KCE 0 -243 2022-01-31 11:45:19.92627-06 \N import 07490cas a2200817 a 4500ocm06451257 OCoLC20220131124448.0800623c19599999dcumr p 0 a0eng c 87657516 sn 86013771 PITengPITCLUIULAIPNSDAIPOCLAIPNSDNSTOCLAIPDLCHULNSTDLCNSTNSDNLCWAUHULNSTHULNSTMXCIULHULHLSGUAWAUOCLCQDLCNLGGCNSDDSTZCUNSDDLCZP2WAUOCLCQMOFUKMGBDLCOCLCQOCLCOOCLCFOCLCOAGLOCLCQOCLCODOSOCLCOFC@CLARTOCLCOJCWZASJOWJSUJVXPX0JSYJOZJOVVPIOCLCOZYUOCLCOOCLOCLCOOCLCACOFOCLCOTPAOCLCOMTBOCLCQNZAWMCNACAOCLCOPAUOCLCQOCLCOKAAUAHLOMTGYVOUZ0TAJP@NCVMYXVNZDUHXFHOCLCOCSAOCLCQILMSAVMWBCSJTFWAVAZS6OCLCOZEMMTCOKSBUFZAPWEHOCLCQOCLCOOCLCQGILDSOCLCOOCLCQC5UJZ3CNOXOJCCHRCCDDOOCLCOOPTOCLCOFSPXOTOCLCOWRMNJBXOHACOOCLCOWORZCVWLUKG7XOSXOUCSONZHWPKFHCPOCRUCPSOCLCQVANPZWMAFCIOT4JJGHTMMTUDCHUACUIVT2TYCOY2CBALE7OCLCOSISMUJX9YUSOCLCOY64OCLCOOCLCQOCLCOAUNTLLGGOCLCQOCLCAGRACOOCLCOVVBZQC(AMICUS)000007153860AA00317159JP-ToKJK012416401Uk445131092200539692307034134408425896103978236644179976811518037314903867502724517773167178161336398616424168655107378660873958780887379106039109306087579365402719485821199623632649661862759679847649690090659815488599820692069930614891009017533101176458810127238521032878422103726905610434762301043495888104906175810490960151049138201104914478710491472601052662430105423532010549845021055690224105737180510594781841064514952106515013810785759001079938777108100002710810500201089918364110849954911144016061131920800113290649811348763311136959279114474866111452162931153184504115457314811567269951166473779116678811712009855741200995555120100174612010044361201010182120101558912015704901201618938120163664212016371931201837454120188685912019019751201909482120200318212020035961202012400120202255212028382601203025536122487599812307964681230949251123146618312427917831246306865124652531812900263070027-93580027-93581536-65961NGGMAF373140USPS(OCoLC)6451257(OCoLC)44513109(OCoLC)220053969(OCoLC)230703413(OCoLC)440842589(OCoLC)610397823(OCoLC)664417997(OCoLC)681151803(OCoLC)731490386(OCoLC)750272451(OCoLC)777316717(OCoLC)816133639(OCoLC)861642416(OCoLC)865510737(OCoLC)866087395(OCoLC)878088737(OCoLC)910603910(OCoLC)930608757(OCoLC)936540271(OCoLC)948582119(OCoLC)962363264(OCoLC)966186275(OCoLC)967984764(OCoLC)969009065(OCoLC)981548859(OCoLC)982069206(OCoLC)993061489(OCoLC)1009017533(OCoLC)1011764588(OCoLC)1012723852(OCoLC)1032878422(OCoLC)1037269056(OCoLC)1043476230(OCoLC)1043495888(OCoLC)1049061758(OCoLC)1049096015(OCoLC)1049138201(OCoLC)1049144787(OCoLC)1049147260(OCoLC)1052662430(OCoLC)1054235320(OCoLC)1054984502(OCoLC)1055690224(OCoLC)1057371805(OCoLC)1059478184(OCoLC)1064514952(OCoLC)1065150138(OCoLC)1078575900(OCoLC)1079938777(OCoLC)1081000027(OCoLC)1081050020(OCoLC)1089918364(OCoLC)1108499549(OCoLC)1114401606(OCoLC)1131920800(OCoLC)1132906498(OCoLC)1134876331(OCoLC)1136959279(OCoLC)1144748661(OCoLC)1145216293(OCoLC)1153184504(OCoLC)1154573148(OCoLC)1156726995(OCoLC)1166473779(OCoLC)1166788117(OCoLC)1200985574(OCoLC)1200995555(OCoLC)1201001746(OCoLC)1201004436(OCoLC)1201010182(OCoLC)1201015589(OCoLC)1201570490(OCoLC)1201618938(OCoLC)1201636642(OCoLC)1201637193(OCoLC)1201837454(OCoLC)1201886859(OCoLC)1201901975(OCoLC)1201909482(OCoLC)1202003182(OCoLC)1202003596(OCoLC)1202012400(OCoLC)1202022552(OCoLC)1202838260(OCoLC)1203025536(OCoLC)1224875998(OCoLC)1230796468(OCoLC)1230949251(OCoLC)1231466183(OCoLC)1242791783(OCoLC)1246306865(OCoLC)1246525318(OCoLC)1290026307nsdppccG1.N27470N21391011KCEANatl. geogr.(Print)National geographic(Print)National geographic.National geographic magazine[Washington, D.C.] :National Geographic Society,©1959-volumes :illustrations (some color), portraits, maps (some folded, some color) ;26 cmMonthlytexttxtrdacontentstill imagestirdacontentunmediatednrdamediavolumencrdacarrierVol. 116, no. 6 (Dec. 1959)-Title from cover.Issued in two yearly vols. of 6 issues each.Some issues called "Special report," "Special edition" or "Special issue."Some issues accompanied by supplements.Also issued on microfilm and microfiche by University Microfilms, and online.Official journal of: National Geographic Society.Vols. 91 (1947)-161 (1983). 1 v. (Includes index to the journal under its earlier title); v. 1 (1888)-174 (1988). 1 v. (Includes index to the journal under its earlier title).Indexes kept up-to-date with supplements.Vol. 241, no. 1 (Jan. 2022) (surrogate).GeographyPeriodicals.PhotojournalismPeriodicals.Geography.(DNLM)D005843World.Geography.[periodicals]1959-.blmlshPhotojournalism.fast(OCoLC)fst01062022Geography.fast(OCoLC)fst00940469Sociale geografie.gttGeography - PeriodicalsPeriodicals.Periodical.(DNLM)D020492Periodicals.aatHolograms.aatPeriodicals.fast(OCoLC)fst01411641Periodicals.lcgftNational Geographic Society (U.S.),issuing body.Also issued annually in a CD-ROM version (includes issues of the journal under its earlier title) with title:Complete National geographic1939-9235(DLC) 2002252154(OCoLC)48770184Online version:National geographic (Online)1931-1524(DLC) 2006212228(OCoLC)60637636Microfilm version:National geographic0027-9358(DLC)sn 97034065(OCoLC)36369531Microfiche version:National geographic0027-9358(DLC) 87657516(OCoLC)15508786National geographic magazine1044-6613(DLC) 14007038(OCoLC)1643684National geographic (Collector's ed.)1536-6596(DLC) 2001215511(OCoLC)47778532ArUCStCU-SCaNSCSCaOOEDCCaOONLCaOTDTCoUDLCDeUICLICarbSIaASInUMHMH-BAMH-CSMH-HiMH-LmMH-SDMiDWMiEMNcDNcRSNjROCUTUViUWaUhttp://magma.nationalgeographic.com/ngm/data/html/home_refresh.html8531v.no.6r(year)(month)m01,078631.1<199><6><2001>06C0KCE 0 -244 2022-01-31 11:45:19.92627-06 \N import 04011cas a2200613 a 4500ocm02497043 OCoLC20220131124448.0761012c19169999nyumx p 0 a0eng c 82640544 NSDengNSDPITNSDPITDLCNSDDLCAIPNSDAIPMULNSDAIPNSDNSTOCLNSDNSTNSDOCLSYSNLMOCLCQMUQOCLCQOCLCFOCLCOOVYOCLCOT3HOCLCOI8MTPAOCLCOLIPOCLCQOCLCONLCOCLCQOCLCOX#4IUL(AMICUS)000002976238100972144DNLM926195184966151584968078150969053799973916697981555355990382156990759425995188289100101510310126989651019802912103283738710442001741049103390104912563510491463271049147841105766520310595378951060958000108059840110809902651089184946108987717110913014561145846391115890156511637744271175618902118195507911923139791196166325119999427412009866141201005903120184294312209549481224901485122882194712357837411240177550124443520912495651731262577243126257759212663110911274166358128170918712911314690017-209X0017-209X1530270USPS(OCoLC)2497043(OCoLC)926195184(OCoLC)966151584(OCoLC)968078150(OCoLC)969053799(OCoLC)973916697(OCoLC)981555355(OCoLC)990382156(OCoLC)990759425(OCoLC)995188289(OCoLC)1001015103(OCoLC)1012698965(OCoLC)1019802912(OCoLC)1032837387(OCoLC)1044200174(OCoLC)1049103390(OCoLC)1049125635(OCoLC)1049146327(OCoLC)1049147841(OCoLC)1057665203(OCoLC)1059537895(OCoLC)1060958000(OCoLC)1080598401(OCoLC)1080990265(OCoLC)1089184946(OCoLC)1089877171(OCoLC)1091301456(OCoLC)1145846391(OCoLC)1158901565(OCoLC)1163774427(OCoLC)1175618902(OCoLC)1181955079(OCoLC)1192313979(OCoLC)1196166325(OCoLC)1199994274(OCoLC)1200986614(OCoLC)1201005903(OCoLC)1201842943(OCoLC)1220954948(OCoLC)1224901485(OCoLC)1228821947(OCoLC)1235783741(OCoLC)1240177550(OCoLC)1244435209(OCoLC)1249565173(OCoLC)1262577243(OCoLC)1262577592(OCoLC)1266311091(OCoLC)1274166358(OCoLC)1281709187(OCoLC)1291131469nsdppccTX1.G7640/.5KCEAGood housekeeping (New York, N.Y.)Good housekeep.(U.S. ed.)Good housekeeping(U.S. ed.)Good housekeeping.[New York] :[International Magazine Co.],[1916]-<Aug. 1985-> :New York :Hearst Corp.volumes :illustrations ;25-31 cmTen no. a year (Jan./Feb. and July/Aug. combined,2020-Monthly,1916-2019.texttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 62, no. 5 (May 1916)-Some issues combined.Also issued in microform.Also issued in language and regional editions.Vol. 62, no. 5 (May 1916); title from cover.Vol. 273, no. 1 (Jan./Feb. 2022) (surrogate).Home economicsPeriodicals.Économie domestiquePériodiques.Home economics.fast(OCoLC)fst00959173Current magazines.Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftSpanish language edition:Buenhogar1087-1993(DLC)sn 96000101(OCoLC)34222005British edition:Good housekeeping0017-2081(DLC)sn 86001831(OCoLC)6396418Online version:Good housekeeping (New York, N.Y.)(OCoLC)952001387Good housekeeping magazine0731-1893(DLC) 82640543(OCoLC)6975211AUDLCInLPNcRSNdUPPiD8531v..no.(year)(month)8631<31><6><1900><Dec.>provisionalUnknownAug. 1985C0KCE 0 -245 2022-01-31 11:45:19.92627-06 \N import 03908cas a2200769 4500ocm01763471 OCoLC20220131124448.0751101c19229999nyumn p 0 a0eng c 36036138 MULengMULCOOYUSDLCNSDDLCRCSAIPNSDAIPNSDAIPNSTNSDNSTDLCOCLNSTDLCNSTDLCSYSNLMOCLCQOCLKNVIULOCLCQAUMOCLCFOCLCOOVYOCLDLCOCLCODLCI8MGRROCLCOOCLCQCSJAVAOCLCOOCLCQNLCCPOOCLCQOCLCOJX9OCLCOCODUKMGBOCLCQOCLCOBUFOCLCOLBQOCLCOUBYOCLCOSPWOCLCOIULOCLCOCJL(AMICUS)0000007831569877792DNLMR05060000DNLM008555977Uk460821938731490509973902217100901051610328513531041608357104898049210491447851052685103111445586111448169540034-03750034-03751865820USPS(OCoLC)1763471(OCoLC)460821938(OCoLC)731490509(OCoLC)973902217(OCoLC)1009010516(OCoLC)1032851353(OCoLC)1041608357(OCoLC)1048980492(OCoLC)1049144785(OCoLC)1052685103(OCoLC)1114455861(OCoLC)1144816954pccnsdpAP2.R255051KCEARead. dig.(U.S. ed.)Reader's digest(U.S. edition)The Reader's digest.Reader's digest serviceSept. 1923-Apr. 1925[Pleasantville, N.Y., etc.][The Reader's Digest Association]volumesillustrations20 cmMonthly with combined Mar./Apr., Jul./Aug. and Dec./Jan. issues,Dec. 2021/Jan. 2022-Frequency varies,1922-<2014>Monthly with combined Jul./Aug. and Dec./Jan. issues,Dec./Jan. 2014-<Nov. 2021>.texttxtrdacontentunmediatednrdamediavolumencrdacarrierv. 1- (no. 1- ); Feb. 1922-Title varies slightly.Rouben Mamoulian Collection: Vol. 87, no. 519 (July 1965).DLCEditors: Feb. 1922-73 D. Wallace, L.B. Acheson, and others.Issues have also whole numbers.Volume numbers irregular: v. 9-16 ommitted.Also issued online.Beginning with 1940, indexes cumulative from 1935 are issued annually.Topical index: Vols. 26-41, 1935-42. 1 v.; Subject index: Vols. 58-73, 1951-58. 1 v.; Vols. 66-93, 1955-68. 1 v.; Vols. 66-85, 1955-64. 1 v.Also available in Chinese translation: Tu che wen chai.Latest issue consulted: v.198, no.1176 (Dec. 2021/Jan. 2022) (surrogate).Periodicals.Periodicals.fast(OCoLC)fst01058072Periodicals.periodicals.aat(CStmoGRI)aatgf300026657Periodicalsfast(OCoLC)fst01411641Periodicals.lcgftWallace, DeWitt,1889-1981,editor.Wallace, Lila Acheson,1887-1984,editor.Rouben Mamoulian Collection (Library of Congress)DLCReader's digest. Chinese0041-3836(DLC) 90645848(OCoLC)4258507Microfiche version:Reader's digest0034-0375(DLC)sf 92091102(OCoLC)9652855Online version:Reader's digest(OCoLC)655315086Microfilm version:Reader's digest0034-0375(DLC)sf 84019036(OCoLC)3633298Reader's digest money newsletter0730-2428(DLC)sn 81002614(OCoLC)7979836DLCInMMeTMoSUNjRP8531v.no.(year)(month)8631<5><58><1927><Feb.>provisional8532(year)(month)8632<2000><Aug.>-provisionalUnknownApril 1978C0KCE 0 -246 2022-01-31 11:45:19.92627-06 \N import 02389cas a2200553 a 4500ocm10858788 OCoLC20220131124448.0840619c19839999nyumn p 0 a0eng 84644964 DLCengDLCNSDDLCNSTIULNSTHULNSTDLCNSDOCLCQCODOCLCOOCLCFOCLCOSBVCAOCLCQHCOOCLCOCPOOCLCQU3GAU@OCLCOZQPOCLCOX#4731477414853105100868359166926196816990723934102049658510211425421021234058105268718912009925430016-69790016-69791489350USPS(OCoLC)10858788(OCoLC)731477414(OCoLC)853105100(OCoLC)868359166(OCoLC)926196816(OCoLC)990723934(OCoLC)1020496585(OCoLC)1021142542(OCoLC)1021234058(OCoLC)1052687189(OCoLC)1200992543pccnsdpTT570.A6646/.32/0519KCEAGQGQGQ.G.Q.Gentlemen's quarterlyGQ magazine[New York, N.Y.] :[Condé Nast Publications],[1983]-volumes :illustrations ;28 cmMonthly except for a combined Dec./Jan. and Jun./Jul. issue,Jun./Jul. 2019-Monthly,<1983>-Nov. 2017.Monthly except for a combined Dec./Jan. issue,Dec./Jan. 2017/18-May 2019.texttxtrdacontentunmediatednrdamediavolumencrdacarrier[Vol. 53, no. 6 (June 1983)-Title from cover.Some issues combined.Latest issue consulted: Vol. 91, no. 10 (Dec. 2021/Jan. 2022) (surrogate).Men's clothingPeriodicals.Grooming for menPeriodicals.Grooming for men.fast(OCoLC)fst00948086Men's clothing.fast(OCoLC)fst01016068Electronic journals.Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftGQ (U.K. ed.)0954-8750(DLC) 94649607(OCoLC)29591690GQ (German ed.)1434-5560Gentlemen's quarterly0016-6979(DLC) 36015785(OCoLC)2447160AAPAUCLSUCtYDLCDeUInLPInUKMKMH-BAMiDWNcRSNjRNvUOCUPPiPPiCPUTxUWaUC0KCE 0 -247 2022-01-31 11:45:19.92627-06 \N import 06152cas a2200877 i 4500ocm01564931 OCoLC20220131124448.0750824c19429999nyumn p 0 a0eng c 43033888 sn 80003141 MULengrdaMULOCLYUSCOOUCUNSDUCUIULHULIULDLCNSDDLCNSDDLCRCSAIPNSDAIPNSTNSDNLCNSTNYGHULNSTAGLNSTOCLNSTOCLEYMDLCOCLAGLOCLGUAHULDLCWAUIULOCLCQNLMDLCOCLCQDLCOCLCQCDSNSDDLCOCLCQIULLVBOCLCQHEBISDEBBGGBVCPUKMGBOCLCQOCLCFBEDGEOCLCQLWUOCLCQOCLCOOVYOCLCOOCLCQOCLCOOCLCQOCLCOCODDLCPAUOCLCOOCLCQMNSP@NOCLCQCNOHBSOCLCQMAFCIOCLCQOCLCOOCLCAHTMWJTCGUOCLCQNDDOCLCO010556796DE-10183015-XDE-6000215776DNLMC46220000DNLMAA00124712JP-ToKJK012406826Uk2196408423848478256704532800535131782869331812615544084159861039394865899448167011130069565696473142248773142554073277663877265257977509380281573673182971724885846149986164928692618785196819222598157739798514024710003236381000804461100487512610117440291011982232101273700010491102751049136272104914370210491481391052630622105497526010572036551064520965106473342810785698211081067376108986649211144035811129992203113541159511447426401166418720116643517111664934971166506050122437491712255586311242825391124653463712923677720010-71740010-71741738670USPS(OCoLC)1564931(OCoLC)21964084(OCoLC)23848478(OCoLC)25670453(OCoLC)28005351(OCoLC)317828693(OCoLC)318126155(OCoLC)440841598(OCoLC)610393948(OCoLC)658994481(OCoLC)670111300(OCoLC)695656964(OCoLC)731422487(OCoLC)731425540(OCoLC)732776638(OCoLC)772652579(OCoLC)775093802(OCoLC)815736731(OCoLC)829717248(OCoLC)858461499(OCoLC)861649286(OCoLC)926187851(OCoLC)968192225(OCoLC)981577397(OCoLC)985140247(OCoLC)1000323638(OCoLC)1000804461(OCoLC)1004875126(OCoLC)1011744029(OCoLC)1011982232(OCoLC)1012737000(OCoLC)1049110275(OCoLC)1049136272(OCoLC)1049143702(OCoLC)1049148139(OCoLC)1052630622(OCoLC)1054975260(OCoLC)1057203655(OCoLC)1064520965(OCoLC)1064733428(OCoLC)1078569821(OCoLC)1081067376(OCoLC)1089866492(OCoLC)1114403581(OCoLC)1129992203(OCoLC)1135411595(OCoLC)1144742640(OCoLC)1166418720(OCoLC)1166435171(OCoLC)1166493497(OCoLC)1166506050(OCoLC)1224374917(OCoLC)1225558631(OCoLC)1242825391(OCoLC)1246534637(OCoLC)1292367772nsdppccn-us---TX335.A1C6W1CO755K321.8C762E720640.73/097319KCEAConsum. rep.Consumer reportsConsumer reports.At head of title:CUMay 1947-Oct. 1948At head of title:CRNov. 2016-1942- <2016>Albany, N.Y. :Consumers Union of United States<2017>-Yonkers, NY :Consumer Reports, Inc.volumes :illustrations ;18-28 cmMonthly (except 2 issues in Dec.),1992-Monthly,June 1942-1991texttxtrdacontentunmediatednrdamediavolumencrdacarrierBegan with: Vol. 7, no. 6 (June 1942)-The Dec. issue is the annual Buying guide issue for the following year, <1944>-92; this issue is one of two published in Dec. and designated no. 13 within each vol., 1993-97 and 2013- Buying guide for 1998-<2012> continues to come with subscription to Consumer reports, but no longer bears its volume and issue numbers.Auto reports published in each monthly issue are also published separately in an annual publication called: New car yearbook.Latest issue consulted: Vol. 87, no. 2 (Feb. 2022) (surrogate).Consumer educationPeriodicals.Commercial productsUnited StatesPeriodicals.Consommateurs(CaQQLa)201-0006664Périodiques.(CaQQLa)201-0378307Education du consommateur.eclasMensuels.eclasProduits.eclasProtection du consommateur.eclasEtats-Unis d'Amérique.eclasCommercial products.fast(OCoLC)fst00869578Consumer education.fast(OCoLC)fst00876300United States.fast(OCoLC)fst01204155Economics.(DNLM)D004467Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftPeriodical.(DNLM)D020492Consumers Union of United States,publisher.Consumer reports. Buying guide issue.Online version:Consumer reports(DLC) 99103081(OCoLC)42078998Consumers Union of United States.Consumers Union reports(DLC)sf 82006638(OCoLC)1781685Bread & butterApr. 1947(DLC)sn 93023380(OCoLC)1537038Consumer reports. Buying guide1993-1555-2357(DLC) 2001252505(OCoLC)34085858Consumer reports. Buying guide issue<1954>-1991(DLC)sn 90023143(OCoLC)1564932New car yearbook (Yonkers, N.Y.)(DLC) 94642313(OCoLC)30629172Consumer reports ... sport utility special1530-3853(DLC) 00215283(OCoLC)41568554Consumer reports SUVs, wagons, minivans, trucks1555-7464(DLC) 2005202393(OCoLC)54981693Your new home (Yonkers, NY)2330-3018(DLC) 2013203125(OCoLC)854988560AzTeSCU-SCtY-MDLCDNALGUICMChBMHMsSUMnUNNICNcRSNjROrUPU-WTU-MViUViW8531v.no.12r(year)(month)m018631.1<68 ><7 ><2003><07 >C0KCE 0 -248 2022-01-31 11:45:19.92627-06 \N import 03063cas a2200613 a 4500ocm30148811 OCoLC20220131124448.0940414c19949999vaubr p 0 a0eng c 94644504 sn 94039023 GZGengGZGPVUUIUNYGWAUNSDDLCSYSGUAMUQOCLCQCUVDLCXY4DLCOCLCQCUSOCLCQOCLCFPOAGRROCLCOFHLFUGLWAHLSCNOCSAKFHZASOCLCOCUIOCLCOCSGOCLCOBUFOCLCOOCLCA22172530196861859397190558497391087698016230499460331110008077131011802949103160838710316083881054319151107855460010810691051127463514112922346711356437781165386059120099886212015804411076-88661076-88660002-87701527210USPS(OCoLC)30148811(OCoLC)221725301(OCoLC)968618593(OCoLC)971905584(OCoLC)973910876(OCoLC)980162304(OCoLC)994603311(OCoLC)1000807713(OCoLC)1011802949(OCoLC)1031608387(OCoLC)1031608388(OCoLC)1054319151(OCoLC)1078554600(OCoLC)1081069105(OCoLC)1127463514(OCoLC)1129223467(OCoLC)1135643778(OCoLC)1165386059(OCoLC)1200998862(OCoLC)1201580441pccnsdpn-us---E171.A574973.05KCEAAmerican history (Harrisburg, Pa.)Am. hist.(Harrisbg. Pa.)American history(Harrisburg, Pa.)American history.Harrisburg, PA :Cowles History Group, a division of Cowles Magazines,c1994-2006-:Leesburg, Va. :Weider History Groupv. :ill. ;28 cm.BimonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 29, no. 2 (June 1994)-Title from cover.Latest issue consulted: Vol. 56, no. 6 (Feb. 2022) (surrogate).United StatesHistoryPeriodicals.United States.(DNLM)D014481History.(DNLM)D006664États-UnisHistoirePériodiques.United States.fast(OCoLC)fst01204155United StatesHistoryPeriodicals.fsshPeriodicals.Periodical.(DNLM)D020492History.fast(OCoLC)fst01411628Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftPeriodicals.lcshOnline version:American history (Harrisburg, Pa. : Online)(DLC) 94644504(OCoLC)137342706American history illustrated0002-8770(DLC) 66009868(OCoLC)1479976DLCNNjPWaUhttp://infotrac.galegroup.com/itw/infomark/0/1/1/purl=rc18%5FGRGM%5F0%5F%5Fjn+"American+History"?sw%5Faep=lom%5Foakhs.comhttp://www.thehistorynet.com/ah8531v.no.6r(year)(month)b04pm02,04,06,08,10,128631.1<29><2><1994>C0KCE 0 -249 2022-01-31 11:45:19.92627-06 \N import 02558cas a2200589 4500ocm01393566 OCoLC20220131124448.0750616c19739999coubr p 0 a0eng c 77640820 NSDengNSDOCLDLCNSDMNMOCLDLCOCLNSTNSDNSTAIPNSDAIPOCLNSTOCLNSDNSTMYGNSDDLCNSDHULDLCOCLSYSOCLCQHDMOCLCQZCUOCLCFZCUGRROCLCOZQPOCLCOUPM64575227288037781858877902171310526781040094-01780094-01781001078USPS(OCoLC)1393566(OCoLC)6457522(OCoLC)7288037(OCoLC)7818588(OCoLC)779021713(OCoLC)1052678104nsdppccTH3401.O43643/.7/05KCEAOld-house j.Old-house journalThe Old-house journal.Old-house interiors[Brooklyn]Old-House Journal Corp.<Apr. 2014->:Boulder, CO :Home Group, Active Interest Mediavolumesillustrations28 cmSix issues a year,2021-Monthly,Oct. 1973-Bimonthly,<Mar./Apr. 1987->Seven issues a year,<Vol. 22, no. 3 1994->Six issues a year,-Apr. 2014Eight issues a year,May 2014-2020texttxtrdacontentunmediatednrdamediavolumencrdacarrierv. 1- Oct. 1973-"Renovation and maintenance ideas for the antique house."Editorial and advertising material are cumulated in other publications issued by editors of Old-house journal.Also issued online.Vol. 22, no. 3 has title Old-house interiors and is the first issue of the new title.Latest issue consulted: v.19, no.1 (Feb. 2022) (surrogate).BuildingsRepair and reconstructionPeriodicals.BuildingsRepair and reconstruction.fast(OCoLC)fst00841136Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftOnline version:Old-house journal(OCoLC)561917351Old-house interiors1079-3941Aug./Sept. 2013(DLC)sf 95094290(OCoLC)31284903Old-house interiors1079-3941(DLC)sn 94005951(OCoLC)31284903MH-SD8531v.no.(year)(month)8631<1>-<1973>-provisionalC0KCE 0 -250 2022-01-31 11:45:19-06 2022-01-31 11:45:53.378647-06 import 06769cas a2201069 a 4500ocm02489456 OCoLC20220131124448.0761008c18739999njuwn p 0 a0eng c 01015589 sc 78002079 sn 78004299 UDIengUDINSDDLCNSDDLCNSDDLCNSDRCSNSDOCLAIPOCLHULDLCAIPIULAIPNSDNSTDLCMXCWAUDLCCRLIULOCLCQNLMDLCWAUOCLCQOCLLVBNLGGCSERSODLCOCLCQKRTASAMAZNOCLCQDLCUKMGBOCLCQDLCUPMOCLCFOCLCQOCLCOUMCOCLCODOSOCLCOOCLOCLCOPAUOCLCOOCLCQCSJOCLCAOCLCQCCHOCLCQOCLCOOCLCACUSL2UOCLCDSIULNLCLUNP4APHUSTNLECOD9875777DNLMP60540000DNLM008549589Uk(AMICUS)00000078562829714905092629615196897601297370456998214445510014749621003848708100479770010050079301010915305101203995810142570351033195135104340581410526796351064497582108104539910832286891085203386109975961211022817211161220823118129341811923182321196960217119777188711984345631200989724120099011712020149791202015893120201688712026718371202986198123161992412428132191242980764124649871912596895361260311764126492819212728930891276796985127679901212892676320000-00190000-00191763080USPS(OCoLC)2489456(OCoLC)297149050(OCoLC)926296151(OCoLC)968976012(OCoLC)973704569(OCoLC)982144455(OCoLC)1001474962(OCoLC)1003848708(OCoLC)1004797700(OCoLC)1005007930(OCoLC)1010915305(OCoLC)1012039958(OCoLC)1014257035(OCoLC)1033195135(OCoLC)1043405814(OCoLC)1052679635(OCoLC)1064497582(OCoLC)1081045399(OCoLC)1083228689(OCoLC)1085203386(OCoLC)1099759612(OCoLC)1102281721(OCoLC)1161220823(OCoLC)1181293418(OCoLC)1192318232(OCoLC)1196960217(OCoLC)1197771887(OCoLC)1198434563(OCoLC)1200989724(OCoLC)1200990117(OCoLC)1202014979(OCoLC)1202015893(OCoLC)1202016887(OCoLC)1202671837(OCoLC)1202986198(OCoLC)1231619924(OCoLC)1242813219(OCoLC)1242980764(OCoLC)1246498719(OCoLC)1259689536(OCoLC)1260311764(OCoLC)1264928192(OCoLC)1272893089(OCoLC)1276796985(OCoLC)1276799012(OCoLC)1289267632nsdppccn-us---Z1219.P9807011KCEAPubl. wkly.Publishers weeklyThe publishers weekly.PW<2005->PW publishers weeklyNew York :F. Leypoldt,1873-Jan. 4, 1879-June 9, 1906:New York :Publishers WeeklyJune 16, 1906- :New York :R.R. Bowker<Jan. 5, 2004-> :New York :Reed Business Information<Jan. 3, 2011-> :New York :PWxyz, LLCvolumes :illustrations ;25-29 cmWeekly (except the last week in Dec.),<Sept. 15, 2003->Weekly (except 2 issues in Dec.),<Dec. 17, 1982->Weekly,Jan 2, 1873-1962Weekly (except 3 issues in Dec.),1963-<Mar. 8, 1971>Weekly (except Dec.),<Oct. 25, 1976->texttxtrdacontentunmediatednrdamediavolumencrdacarrierIssues for Jan. 2, 1873-Dec. 28, 1918 also called: whole no. 51-2447.Vol. 228, no. 1 never published.Vol. 268, no. 42 (Oct. 18, 2021) misnumbered as v. 268, no. 43.Some issues accompanied by unnumbered special supplements.The Christmas number, issued Nov. 1888- and separately paged, has title: The Christmas bookshelf.Accompanied by: Publishers weekly international edition, issued as pt. 2 of a number of Publishers weekly, 1970-1973.Beginning in 2013, includes an annual, unnumbered issue with title: Children's starred reviews annual.Official organ of: Publishers' Board of Trade, 1873-1876; Book Trade Association of Philadelphia, 1873-1874; American Book Trade Union, -Aug. 1, 1874; American Book Trade Association, Aug. 8, 1874-1876.Weekly record section became a separate publication on Sept. 2, 1974 with title: Weekly record.Vol. 269, no. 4 (Jan. 24, 2022).American literatureBibliographyPeriodicals.Publishers and publishingUnited StatesPeriodicals.United StatesImprintsPeriodicals.Littérature américaineBibliographiePériodiques.06.23 publishing, publishers.(NL-LeOCL)077593014bclAmerican literature.fast(OCoLC)fst00807113Publishers and publishing.fast(OCoLC)fst01083463United States.fast(OCoLC)fst01204155Boekwezen.gttVerenigde Staten.gttBook Industry.(DNLM)D001870Books.(DNLM)D001877Periodical publications.- New York.Bibliographiesfast(OCoLC)fst01919895Periodicals.fast(OCoLC)fst01411641Bibliographies.lcgftPeriodicals.lcgftPeriodical.(DNLM)D020492R.R. Bowker Company,issuing body.Publishers' Board of Trade (U.S.),issuing body.Book Trade Association of Philadelphia,issuing body.Am. Book Trade Association,issuing body.American Book Trade Union,issuing body.Christmas bookshelf.Children's starred reviews annual.Microfilm version:Publishers weekly0000-0019(DLC)sn 83004087(OCoLC)5995063Online version:Publishers weekly2150-4008(DLC) 2009200293(OCoLC)37309426Publishers weekly international edition1970-1973(OCoLC)10765013Publishers' and stationers' weekly trade circular(OCoLC)4255211Weekly recordSept. 2, 1974-0094-257X(DLC) 75641742(OCoLC)1798972Companion publication:Publishers weekly yearbook19830000-0469(DLC) 83647876(OCoLC)9604938Companion publication:Publishers' world1965-19700555-6384(DLC) 65022431(OCoLC)988619DLCICRLhttp://pubweekly.napubcoonline.com/http://www.publishersweekly.com/8531v.no.51r(year)(month)(day)w0101pw00moow1299mo8631.1<264 ><1><2017><01><02>AACR2=ICRLC0KCEadmin 0 -251 2022-01-31 11:45:19.92627-06 \N import 01502cas a2200421 i 4500ocn899064951OCoLC20220131124448.0141231c20159999caubr p 0 a0eng 2014201998DLCengrdaDLCDLCOCLCQOCLCFGUADLCGRROCLCOM4LOCLCQKE7ZQPOCLCORZCOCLCODLC9049661399058297832376-82581(OCoLC)899064951(OCoLC)904966139(OCoLC)905829783pccnsdpSF441.I57636.823KCEACatster magazineCatster magazine.CatsterIrvine, CA :I-5 Publishing,[2015-]BimonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrierBegan with Volume 1, number 1 (May/June 2015).May/June 2015 issue also called: Premier issue.2019 has a special issue called "Kittens!"Description based on: Volume 1, number 1 (May/June 2015); title from cover.Latest issue consulted: Volume 7, number 5 (Sep./Oct. 2021).CatsPeriodicals.Cats.fast(OCoLC)fst00849374Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftCat fancy (San Juan Capistrano, Calif.)0892-6514(DLC) 86642548(OCoLC)14249006DLCC0KCE 0 -252 2022-01-31 11:45:19.92627-06 \N import 02491cas a2200589 a 4500ocm43588199 OCoLC20220131124448.0000308c20009999ohubr p 0 a0eng c 00214321 NSDengNSDDLCOCLCQOCLCFOCLCOGRROCLCOJCFLKCTP7ZQPOCLCOX#4104166757310526640711529-02981529-02981(OCoLC)43588199(OCoLC)1041667573(OCoLC)1052664071nsdppccn-us---CS42.F35592913KCEAFamily tree magazine (Cincinnati, Ohio)Fam. tree mag.(Cincinnati Ohio)Family tree magazine(Cincinnati, Ohio)Family tree magazine.Cincinnati, OH :F & W Publications,c1999-2020- :Blue Ash, OH :Yankee Publishing Inc.volumes :illustrations ;28 cmBimonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 1, issue 1 (Jan. 2000)-Title from cover.First issue also called "Premier issue."Has numerous special issues with alternating titles: Preserving your memories; Trace your family history; and, Preserve your family history.Some special issues separately cataloged: Family tree magazine's guide to heritage travel; and, Family tree magazine. Yearbook, and :genealogy guidebook.Latest issue consulted: Volume 23, no. 1 (January/February 2022) (surrogate).United StatesGenealogyPeriodicals.GenealogyPeriodicals.Genealogy.fast(OCoLC)fst00939652United States.fast(OCoLC)fst01204155Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftFamily tree magazine's guide to heritage travel.Family tree magazine.Yearbook.Preserving your memories.Trace your family history.Preserve your family history.Family tree magazine. Yearbook1556-8024(DLC) 2004206638(OCoLC)60247540Family tree magazine's guide to heritage travel1554-6527(DLC) 2005211414(OCoLC)57545703Genealogy guidebook(DLC) 2006204227(OCoLC)63201645DLCC0KCE 0 -253 2022-01-31 11:45:19.92627-06 \N import 03627cas a2200709 4500ocm01568247 OCoLC20220131124448.0750824c19709999nyubr p 0 a0eng c 71024303 MULengMULYUSNSDDLCNSDOCLNSTAIPNSDAIPNSTNSDNSTMXCOCLSYSCUSDLCNLMOCLCQCDSLVBCUSOCLCQOCLCFOCLCQFEMOCLCOGRROCLCOOCLCQCSJOCLCAIULOCLCQKG7OCLCQMAFCIOCLCQOCLCOOCLCAJX9OCLCOCPOOCLCOX#4IULDLCX#4FUGGUA101083517DNLM226082881573678296897740097431542710012211291020521534104914245310810688271114414170114482651911567752901201003374120188157512047144320014-08800014-08801505650USPS(OCoLC)1568247(OCoLC)2260828(OCoLC)815736782(OCoLC)968977400(OCoLC)974315427(OCoLC)1001221129(OCoLC)1020521534(OCoLC)1049142453(OCoLC)1081068827(OCoLC)1114414170(OCoLC)1144826519(OCoLC)1156775290(OCoLC)1201003374(OCoLC)1201881575(OCoLC)1204714432nsdppccn-us---E185.86.E7051KCEAEssenceEssenceEssence.[New York],[Essence Communications, etc.]volumesillustrations (some color), portraits29 cmSix times per year,March/April 2020-Monthly,1970-Monthly (except January and August),<2018>-Sept. 2018Ten times per year,Oct. 2018-Jan./Feb. 2020texttxtrdacontentunmediatednrdamediavolumencrdacarrierv. 1- May 1970-"The black woman's journey"--Cover, May/June 2020 issue.May/June 2020 issue also called 50th anniversary issue.Supplements accompany some issues.Latest issue consulted: Vol. 52, no. 6 (Nov./Dec. 2021) (surrogate).African American womenPeriodicals.Noires américainesPériodiques.African American women.fast(OCoLC)fst00799438African Americans.(DNLM)D001741Women.(DNLM)D014930Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftPeriodicals.Periodical.(DNLM)D020492Microfiche version:Essence (Microfiche, UMI)(OCoLC)5862139Microfilm version:Essence (Microfilm, UMI)(DLC)sf 86090610(OCoLC)5146827Online version:Essence (Online)2691-5499(DLC) 2019234261(OCoLC)60630521AAPDLCMH-BAMMeTMnUMoSUMoSWNCHNcWsWNvUPPPDTxHRWvUhttp://iibp.chadwyck.com/toc/Essence/issues.htmhttp://www.lexisnexis.com/us/lnacademic/api/version1/sf?shr=t&sfi=AC00NBGenSrch&csi=11941Full text available: 2014 to present.Available in Flipster.http://search.ebscohost.com/login.aspx?direct=true&db=eon&bquery=HJ%20B3JY&type=0&site=eon-liveHathiTrust Digital Libraryhttp://catalog.hathitrust.org/api/volumes/oclc/1568247.htmlGooglehttp://books.google.com/books?id=xWsdAQAAMAAJhttp://www.essence.com/8532v.no.12r(year)(month)m058632.1<34><4 ><2003><08>8531v.no.(year/year)(month)8631<1>-<1970/1971>-provisionalC0KCE 0 -254 2022-01-31 11:45:19.92627-06 \N import 01474cas a2200433 i 4500ocn899067422OCoLC20220131124448.0141231c20159999caubr p 0 a0eng 2014201999DLCengrdaDLCOCPOCLCOOCLCFOCLCQNYPDLCHRFOCLCONFRLKCOCLCOJX5ZQP9035766052376-82661(OCoLC)899067422(OCoLC)903576605pccnsdpSF421.D62563615KCEADogster magazineDogster magazine.DogsterIrvine, CA :I-5 Publishing LLC,2015-BimonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrierBegan with Volume 1, number 1 (April/May 2015).Apr./May 2015 issue also called: Premier issue.Description based on: Volume 1, number 1 (April/May 2015); title from cover.Latest issue consulted: Volume 8, number 1 (Feb./Mar. 2022).DogsPeriodicals.Dogs.fast(OCoLC)fst00896265Periodicals.Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftDog fancy (San Juan Capistrano, Calif.)0892-6522(DLC) 88655018(OCoLC)13617547DLChttp://www.dogster.com/C0KCE 0 -255 2022-01-31 11:45:19.92627-06 \N import 01905cas a2200505 a 4500ocm32523783 OCoLC20220131124448.0950523c19959999wiubr p 0 a0eng c 95641037 sn 95005401 SLCengSLCNSDDLCOCLCQOCLOCLCQTXBXLOCLCOOCLCQOCLCFOVYOCLCOGRROCLCOOCLCQOCLCOOR6OCLCOJX9OCLCOZQPOCLCO46082274273280230777902168197441991010526959331084-53051084-53051(OCoLC)32523783(OCoLC)460822742(OCoLC)732802307(OCoLC)779021681(OCoLC)974419910(OCoLC)1052695933nsdppccQL676.5.B485639.9/7820KCEABirds bloomsBirds & bloomsBirds & blooms.Birds and bloomsGreendale, WI :Reiman Publications,©1995-volumes :illustrations (some color) ;28 cmBimonthlytexttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 1, no. 1 (Feb./Mar. 1995)-Title from cover.Latest issue consulted: Vol. 28, no. 1 (Feb./Mar. 2022) (surrogate).Bird attractingPeriodicals.Gardening to attract birdsPeriodicals.BirdsPeriodicals.Flower gardeningPeriodicals.GardensPeriodicals.Bird attracting.fast(OCoLC)fst00832906Birds.fast(OCoLC)fst00832970Flower gardening.fast(OCoLC)fst00927841Gardening to attract birds.fast(OCoLC)fst00937893Gardens.fast(OCoLC)fst00937895Periodicals.lcgftPeriodicals.fast(OCoLC)fst01411641DLCC0KCE 0 -256 2022-01-31 11:45:19.92627-06 \N import 04821cas a2200829 a 4500ocm06465733 OCoLC20220131124448.0800627c19189999njubx p 0 a0eng c 86642890 sc 84002003 ca 19000172 PITengPITNYGPITIULSERRCSIXAAIPHULDLCNSTAIPHULNSDNSTDLCNSTDLCNSTNSDAGLNSDNSTAGLNSTNSDDLCNSDIULWAUDLCNSDIULDLCSYSHNKOCLCQDLCOCLCQDLCTJCDLCOCLCGOCLCQUMCUKMGBBUFCNKEYBLBSFTLSWAUOCLCFOVYCUSTPAOCLCOCD6CODOCLCQCSJOCLCONLCCUVOCLCQOCLCOCSAOCLCQTYCOCLCQCNODLCOCLCQCUYKFHDLCDXUOCLCOCPSOCLCOHTMOCLCOCPOZASCSOOCLCOTFWOCLCODLCOCLCONM7OCLCOCBAOCLCOYUSOCLCOCDSOCLCOZQPOCLCOGBDOCLCOOCLCQOCLCOOCLCAX#4DLCUPMOCLCO(AMICUS)000004734491F10300000DNLM008205476Uk013933699Uk222907154658877172670089250731489852780319961968195819973913801981629736101268611110134101201033194549104156408110549703741055628637105668682510573712641064830023106483889110799384381081061673108214225210898819711114409071112159862811447642691202842877124278342212465346210015-69140015-69141FORBA5204260USPS(OCoLC)6465733(OCoLC)222907154(OCoLC)658877172(OCoLC)670089250(OCoLC)731489852(OCoLC)780319961(OCoLC)968195819(OCoLC)973913801(OCoLC)981629736(OCoLC)1012686111(OCoLC)1013410120(OCoLC)1033194549(OCoLC)1041564081(OCoLC)1054970374(OCoLC)1055628637(OCoLC)1056686825(OCoLC)1057371264(OCoLC)1064830023(OCoLC)1064838891(OCoLC)1079938438(OCoLC)1081061673(OCoLC)1082142252(OCoLC)1089881971(OCoLC)1114409071(OCoLC)1121598628(OCoLC)1144764269(OCoLC)1202842877(OCoLC)1242783422(OCoLC)1246534621pccnsdpHF5001.F6280.8F74X700650/.0519KCEAForbesForbesForbes.Forbes magazineApr. 20, 1918-Oct. 4, 1919[New York, N.Y.] :[Forbes Inc.],[1918]-<July 27, 2017-> :Jersey City, NJ :Forbes Media LLCvolumes :illustrations ;27-35 cmSix times a year,2021-Frequency varies,1918-2020texttxtrdacontentunmediatednrdamediavolumencrdacarrier[Vol. 2, no. 1] (Apr. 20. 1918)-Title from cover.Also issued on microfilm and microfiche by University Microfilms, Inc.Selected articles available online.Latest issue consulted: Volume 204, Number 6 (Dec. 2021/Jan. 2022).BusinessPeriodicals.Commerce(DNLM)D003132Business.fast(OCoLC)fst00842262BusinessPeriodiclas.searsFinancePeriodicals.searsInvestingPeriodicals.searsPeriodicals.lcgftPeriodical(DNLM)D020492Periodicals.fast(OCoLC)fst01411641Forbes, B. C.(Bertie Charles),1880-1954.Forbes ASAP1078-9901(DLC) 94648579(OCoLC)27369692Future of IT1098-1497(DLC) 98652807(OCoLC)38199540Forbes FYI1066-9205(DLC) 94648577(OCoLC)23526598ForbesLife2641-1822(DLC) 2006204399(OCoLC)66144838ForbesBooks review(OCoLC)1054358200Microfiche0015-6914(DLC) 2002261068(OCoLC)11879739Microfilm0015-6914(DLC)sf 86091533(OCoLC)7426409Online version:Forbes magazine(DLC) 2011250965(OCoLC)60652680Forbes magazine(DLC)ca 19000172(OCoLC)2261192Special issues published under title:Best of the web(DLC) 2003204735(OCoLC)44076488Forbes.Paris : Société 360 Business Media, [2010?]-2609-1445(OCoLC)1041441405AzTeSCPTCU-ICaMWUCCaNBSUCaOSLCCaOSuLDLCDNALIaASInUMBMUMH-HiMH-KGMH-LmMMeTMoSUNSyUNcRSNdUTxUhttp://www.forbes.com/forbesSelected articles available athttp://search.ebscohost.com/direct.asp?db=bth&jid=%22FRB%22&scope=site8531v.no.varr(year)(date)e01,078631<123>-<1979>-provisional8532v.no.10r(year)(month)m02om01,078632.12011201802C0KCE 0 -257 2022-01-31 11:45:19.92627-06 \N import 01987cas a2200517 a 4500ocn262878639OCoLC20220131124448.0070824c20089999oncmx p 0 a0eng 2014204400cn2008301479NLCengNLCOCLCQCNEDMDLCVP@OCLCQOCLCFDLCOCLCODLCGRROCLCOOCLCQWYZNLCOCLCQOF9S4SOCLCQLKCTL4OCLCOAZZPTLMJJX5OCLCOCNKEYZQPOCLCONTG20083014799can(AMICUS)00003356530720083014799244786362105271197611010574821913-75321913-75323610USPS(OCoLC)262878639(OCoLC)244786362(OCoLC)1052711976(OCoLC)1101057482nlcisds/cpccWMLC 2013/0027661314KCEAClean eatingClean eating.[Mississauga, Ont.] :Canusa ProductsNine times per year,<Jan./Feb. 2015->Eight issues a year,<Jan./Feb. 2014>Quarterly,winter 2008-texttxtrdacontentunmediatednrdamediaBegan with v. 1, issue 1 (winter 2008)."Lifestyle nutrition for energy, fat loss and well-being."Issue for winter 2008 also called Premiere issue.Issue for <Jan./Feb. 2015-> lacks volume numbering.Description based on first issue; title from cover.Latest issue consulted: Issue 100 (Winter 2021/22).NutritionPeriodicals.Reducing dietsRecipesPeriodicals.Nutrition.fast(OCoLC)fst01042187Reducing diets.fast(OCoLC)fst01092289Periodicals.fast(OCoLC)fst01411641Recipes.fast(OCoLC)fst01424190Periodicals.lcgftDLChttp://www.cleaneating.comC0KCE 0 -258 2022-01-31 11:45:19.92627-06 \N import 01754cas a2200493 a 4500ocm42897303 OCoLC20220131124448.0991129c20009999vaubr p 0 a0eng csn 99009946 NSDengNSDNYPDLCGK8VP@OCLCQOCLCFM@SOCLCOZQPOCLCOOCLCQ1527-57791527-57791075-88601014835USPS(OCoLC)42897303nsdppccPN1995.9.S26S265791.43/615/0520KCEASci-Fi (Reston, Va.)Sci Fi(Reston Va.)Sci-Fi(Reston, Va.)Sci-Fi.Reston, VA :Sovereign Media Co.,©2000-volumes :illustrations (some color) ;28 cmBimonthly,<Feb. 2001->Eight times a year,Jan. 2000-texttxtrdacontentunmediatednrdamediavolumencrdacarrierVol. 6, no. 6 (Jan. 2000)-Title from cover.Vol. 6, no. 6 repeated in numbering.Latest issue consulted: Vol. 26, no. 4 (Winter 2021)Science fiction filmsPeriodicals.Science fiction television programsPeriodicals.Science fiction films.fast(OCoLC)fst01108616Science fiction television programs.fast(OCoLC)fst01108632Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftSci-fi entertainment1075-8860(DLC) 94640878(OCoLC)30600354DLC8532v.no.6r(year)(month)b8632.1<7><4><2001><02>C0KCE 0 -259 2022-01-31 11:45:19.92627-06 \N import 01998cas a2200505 a 4500ocm14903301 OCoLC20220131124448.0861129c198u9999iauqr 0 a0eng c 86657594 GZFengGZFDLCNSDOCLCQLCSDLCOCLCQOCLCFOCLCOGRROCLCOOCLCQZQPOCLCO10491317671049147432105027157110573555531075-10331075-10331011792USPS(OCoLC)14903301(OCoLC)1049131767(OCoLC)1049147432(OCoLC)1050271571(OCoLC)1057355553pccnsdpTH4817.D6643/.719KCEADo it yourself (Des Moines, Iowa)Do it yourself(Des Moines Iowa)Do it yourself(Des Moines, Iowa)Do it yourself.Do it yourself ideas for your home & garden[Des Moines, Iowa] :[Special Interest Publications]<2011-> :Des Moines, Iowa :Meredith Corp.volumes :illustrations ;28 cm.Quarterly,<1993/94-Annual,<1986/87->texttxtrdacontentunmediatednrdamediavolumencrdacarrierBetter homes and gardens remodeling ideasAt head of title: Better homes and gardens.Description based on: 1986/87; title from cover.Latest issue consulted: v.29, Iss. 1 (Winter 2022) (surrogate).DwellingsMaintenance and repairPeriodicals.DwellingsRemodelingPeriodicals.DwellingsMaintenance and repair.fast(OCoLC)fst00900125DwellingsRemodeling.fast(OCoLC)fst00900158Periodicals.fast(OCoLC)fst01411641Periodicals.lcgftDo it yourself home improvement and repair(DLC) 86648513(OCoLC)10873698DLCC0KCE 0 -260 2022-06-17 10:28:21-05 2022-06-17 10:28:30.090358-05 import 01524ngm a22004572a 4500MWT14593351MWT20220207080232.1vd cvaizs220207s2021 xxu153 e vleng dMidwest$29.9978693688104214593351The Last Duel[videorecording].Widescreen ed.[United States] :Disney,2021.1 videodisc (ca. 153 min.) :sd., col. ;4 3/4 in.12/14/2021Jodie Comer, Ben Affleck, Matt Damon, Clare Dunne, Adam Driver, Marton Csokas, Harriet Walter, Zeljko Ivanek, Alex Lawther, Clive Russell.Director, Ridley Scott.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.King Charles VI declares that knight Jean de Carrouges must settle his dispute with his squire by challenging him to a duel.Drama.Drama.Comer, JodieAffleck, BenDamon, MattDunne, ClareDriver, AdamCsokas, MartonWalter, HarrietIvanek, ZeljkoLawther, AlexRussell, CliveJager, EricView cover arthttps://thumbnail.midwesttape.com/14593351_180.jpghttpsBR120.991admin 0 -261 2022-06-17 10:28:21-05 2022-06-17 10:28:31.810685-05 import 02083ngm a22004812a 4500MWT14696637MWT20220207080232.1vd cvaizs220207s2021 xxu112 e vleng dMidwest$29.9903139833208414696637American Underdog[videorecording].Widescreen ed.[United States] :Lionsgate,2022.1 videodisc (ca. 112 min.) :sd., col. ;4 3/4 in.02/22/2022Zachary Levi, Anna Paquin, Dennis Quaid, Adam Baldwin, Bruce Mcgill, Ser'Darius Blain, Chance Kelly, Wayne Garner, Brett Varvel, Kevin Downes, Morgana Shaw.Director, Andrew Erwin, Jon Erwin.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.Tells the inspirational true story of Kurt Warner, who went from a stockboy at a grocery store to a two-time NFL MVP, Super Bowl champion, and Hall of Fame quarterback. The film centers on Warner's unique story and years of challenges and setbacks that could have derailed his aspirations to become an NFL player, but just when his dreams seemed all but out of reach, it is only with the support of his wife, Brenda and the encouragement of his family, coaches, and teammates that Warner perseveres and finds the strength to show the world the champion that he already is.Drama.Biographical.Levi, ZacharyPaquin, AnnaQuaid, DennisBaldwin, AdamMcgill, BruceBlain, Ser'DariusKelly, ChanceGarner, WayneVarvel, BrettDownes, KevinShaw, MorganaWarner, KurtSilver, MichaelView cover arthttps://thumbnail.midwesttape.com/14696637_180.jpghttpsBR120.991admin 0 -262 2022-06-17 10:28:21-05 2022-06-17 10:28:33.458277-05 import 01398nim a22003132a 4500MWT14384897MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094044255 :$32.99978109404425514384897Ali, Rahsaanauthor.Backstabbers[sound recording] /Rahsaan Ali.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (425 min.) :digital ;4 3/4 in. Compact disc.06/29/2021Read by Tony Isabella.Tracy Kane is the top male model for a hip-hop clothing line by designer Christian Elijah. When Tracy punches an African bootlegger in the face for pirating the clothing line he models, he&#x2019;s arrested and his life takes a turn for the worse. For while Christian, who bails him out of jail, claims to have Tracy&#x2019;s best interests at heart, all he&#x2019;s really interested in is making more money. Soon, the designer is playing a dangerous game that could leave both of their lives at risk.Urban.Audiobooks.Fiction.Isabella, TonyView cover arthttps://thumbnail.midwesttape.com/14384897_180.jpghttpsBR132.991admin 0 -263 2022-06-17 10:28:21-05 2022-06-17 10:28:34.625959-05 import 01856ngm a22004572a 4500MWT13577096MWT20220207080232.1vd cvaizs220207s2021 xxu112 e vleng dMidwest$19.9988392970787413577096Conjuring 3, The: The Devil Made Me Do It[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 112 min.) :sd., col. ;4 3/4 in.08/24/2021Vera Farmiga, Patrick Wilson, Ruairi O'Connor, Charlene Amoia, Sterling Jerins, Shannon Kook, Ronnie Gene Blevins, Mitchell Hoog, Julian Hilliard.Director, Michael Chaves.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.A chilling story of terror, murder, and unknown evil that shocked even experienced, real-life paranormal investigators. One of the most sensational cases from their files, it starts with a fight for the soul of a young boy, then takes them beyond anything they'd ever seen before, to mark the first time in US history that a murder suspect would claim demonic possession as a defense.Mystery.Suspense / Thriller.Horror.Horror.Farmiga, VeraWilson, PatrickO'Connor, RuairiAmoia, CharleneJerins, SterlingKook, ShannonBlevins, Ronnie GeneHoog, MitchellHilliard, JulianView cover arthttps://thumbnail.midwesttape.com/13577096_180.jpghttpsBR113.991admin 0 -264 2022-06-17 10:28:21-05 2022-06-17 10:28:36.093474-05 import 01116nim a22003132a 4500MWT14384907MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094044453 :$32.99978109404445314384907Hampton, Brendaauthor.Don't Even Go There[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (413 min.) :digital ;4 3/4 in. Compact disc.06/29/2021Read by Tania Romulus.Essence bestselling author Brenda Hampton presents, the story of Chase Jenkins, a troublemaking, backstabbing diva, who will stop at nothing to get what she wants, even going after her boss&#x2019;s husband.Urban.Audiobooks.Fiction.Romulus, TaniaView cover arthttps://thumbnail.midwesttape.com/14384907_180.jpghttpsBR132.991admin 0 -265 2022-06-17 10:28:21-05 2022-06-17 10:28:37.038302-05 import 01936ngm a22004812a 4500MWT14510163MWT20220207080232.1vd cvaizs220207s2021 xxu108 e vleng dMidwest$29.9919132921180914510163Copshop[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 108 min.) :sd., col. ;4 3/4 in.12/07/2021Frank Grillo, Gerard Butler, Toby Huss, Ryan O'Nan, Keith Jardine, Kaiwi Lyman, Robert Walker Branchaud, Marshall Cook, Christopher Michael Holley, Chris Kleckner, Alexis Louder.Director, Joe Carnahan.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Screaming through the Nevada desert in a bullet-ridden car, wily con artist Teddy Murretto hatches a plan to hide out from lethal assassin Bob Viddick. He punches rookie officer Valerie Young to get himself arrested and locked up in a small-town police station. However, jail can't protect Murretto for long as Viddick schemes his own way into detention, biding his time in a nearby cell until he can complete his mission.Crime.Action / Adventure.Suspense / Thriller.Action.Grillo, FrankButler, GerardHuss, TobyO'Nan, RyanJardine, KeithLyman, KaiwiBranchaud, Robert WalkerCook, MarshallHolley, Christopher MichaelKleckner, ChrisLouder, AlexisView cover arthttps://thumbnail.midwesttape.com/14510163_180.jpghttpsBR120.991admin 0 -266 2022-06-17 10:28:21-05 2022-06-17 10:28:38.633964-05 import 01960ngm a22004812a 4500MWT14510174MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$29.9988392977429614510174Cry Macho[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.12/07/2021Clint Eastwood, Dwight Yoakam, Fernanda Urrejola, Brytnee Ratledge, Eduardo Minett, Natalia Traven, Horacio Garcia Rojas, Amber Lynn Ashley, Paul Lincoln Alayo, Alexandra Ruddy, Ivan Hernandez.Director, Clint Eastwood.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.In 1978, a one-time rodeo star and washed-up horse breeder takes a job from an ex-boss to bring the man's young son home and away from his alcoholic mom. Crossing rural Mexico on their way back to Texas, the unlikely pair faces an unexpectedly challenging journey, during which the world-weary horseman may find his own sense of redemption through teaching the boy what it means to be a good man.Western.Drama.Drama.Eastwood, ClintYoakam, DwightUrrejola, FernandaRatledge, BrytneeMinett, EduardoTraven, NataliaRojas, Horacio GarciaAshley, Amber LynnAlayo, Paul LincolnRuddy, AlexandraHernandez, IvanNash, N. RichardView cover arthttps://thumbnail.midwesttape.com/14510174_180.jpghttpsBR120.991admin 0 -267 2022-06-17 10:28:21-05 2022-06-17 10:28:40.109857-05 import 01086nim a22003132a 4500MWT14601729MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781666533569 :$59.99978166653356914601729Vanliere, Donnaauthor.Daniel's Final Week[sound recording] /Donna Vanliere.Unabridged.[United States] :Dreamscape Media, Llc,2022.7 sound discs (519 min.) :digital ;4 3/4 in. Compact disc.02/08/2022Read by Donna Vanliere.In the spellbinding conclusion to this trilogy, you'll discover what God's Word says about the future and see that things aren't spiraling downward but are looking up!Suspense / Thriller.Christian.Audiobooks.Fiction.View cover arthttps://thumbnail.midwesttape.com/14601729_180.jpghttpsBR147.991admin 0 -268 2022-06-17 10:28:21-05 2022-06-17 10:28:41.054308-05 import 01480nim a22003132a 4500MWT14185052MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781549116117 :$34.99978154911611714185052Beaton, M. C.author.Death of a Green-Eyed Monster[sound recording] /M. C. Beaton.Unabridged.[United States] :Hachette Audio,2022.5 sound discs (360 min.) :digital ;4 3/4 in. Compact disc.02/22/2022Read by Graeme Malcolm.Hamish's new constable, Dorothy McIver, may be the most beautiful woman he's ever seen. Completely bewitched by her sparkling blue eyes, Hamish spends the summer traveling with her up and down Sutherland until finally, he can take it no longer. He gets down on one knee beside the Land Rover and begs her to marry him, and to his amazement and delight, she says yes. But just as the town of Lochdubh gets ready to celebrate, Hamish finds himself with a new murder on his hands.&#x00A0;If he doesn't find the killer fast, Hamish's dream wedding could become a nightmare.Mystery.Audiobooks.Fiction.Malcolm, GraemeView cover arthttps://thumbnail.midwesttape.com/14185052_180.jpghttpsBR134.991admin 0 -269 2022-06-17 10:28:21-05 2022-06-17 10:28:42.254038-05 import 01381ngm a22003012a 4500MWT14797744MWT20220207080232.1vd cvaizs220207s2021 xxu088 e vleng dMidwest$32.9981007254634014797744Detainee 001[videorecording].Widescreen ed.[United States] :Showtime Networks Inc.,2022.1 videodisc (ca. 88 min.) :sd., col. ;4 3/4 in.02/01/2022Director, Greg Barker.DVD.English audio.TV rating: TV-MA.In the aftermath of the 9/11 attacks, the US and its allies invaded Afghanistan with the mission of identifying, infiltrating, and eliminating terrorist networks. Public attention was riveted on the capture of John Walker Lindh, a radical mujahideen fighter who became known as 'the American Taliban.' Through never-before-seen footage of his capture and interrogations, Emmy-winning director Greg Barker harrowingly explores how America grapples with justice in the fog of war and how narratives are built and destroyed in the aftermath of battle.Documentary.Documentary.View cover arthttps://thumbnail.midwesttape.com/14797744_180.jpghttpsBR123.091admin 0 -270 2022-06-17 10:28:21-05 2022-06-17 10:28:43.362653-05 import 01431ngm a22004332a 4500MWT14570830MWT20220207080232.1vd cvaizs220207s2021 xxu186 e vleng dMidwest$26.9904339657687214570830Don't Breathe/Don't Breathe 2[videorecording].Widescreen ed.[United States] :Columbia (Usa),2021.2 videodiscs (ca. 186 min.) :sd., col. ;4 3/4 in.10/26/2021Stephen Lang, Brendan Sexton Iii, Madelyn Grace, Rocci Williams, Stephanie Arcila, Jane Levy, Dylan Minnette, Daniel Zovatto.Director, Rodo Sayagues.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Includes Don't Breathe and Don't Breathe 2.Suspense / Thriller.Horror.Horror.Lang, StephenSexton Iii, BrendanGrace, MadelynWilliams, RocciArcila, StephanieLevy, JaneMinnette, DylanZovatto, DanielView cover arthttps://thumbnail.midwesttape.com/14570830_180.jpghttpsBR118.891admin 0 -271 2022-06-17 10:28:21-05 2022-06-17 10:28:44.417726-05 import 02133ngm a22005052a 4500MWT14269518MWT20220207080232.1vd cvaizs220207s2021 xxu149 e vleng dMidwest$19.9919132913573014269518F9: The Fast Saga[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 149 min.) :sd., col. ;4 3/4 in.09/21/2021Vin Diesel, Michelle Rodriguez, Jordana Brewster, Tyrese Gibson, Ludacris, Nathalie Emmanuel, Charlize Theron, John Cena, Finn Cole, Sung Kang, Helen Mirren, Kurt Russell, Lucas Black.Director, Justin Lin.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Dom Toretto is leading a quiet life off the grid with Letty and his son, little Brian, but they know that danger always lurks just over their peaceful horizon. This time, that threat will force Dom to confront the sins of his past if he's going to save those he loves most. His crew joins together to stop a world-shattering plot led by the most skilled assassin and high-performance driver they've ever encountered: a man who also happens to be Dom's forsaken brother, Jakob. Includes both the theatrical and director's cut of the film.Crime.Action / Adventure.Suspense / Thriller.Action.Diesel, VinRodriguez, MichelleBrewster, JordanaGibson, TyreseLudacris, Emmanuel, NathalieTheron, CharlizeCena, JohnCole, FinnKang, SungMirren, HelenRussell, KurtBlack, LucasView cover arthttps://thumbnail.midwesttape.com/14269518_180.jpghttpsBR113.991admin 0 -272 2022-06-17 10:28:21-05 2022-06-17 10:28:46.010717-05 import 01822ngm a22005172a 4500MWT14312898MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$19.9919132913506814312898The Forever Purge[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.09/28/2021Ana De La Reguera, Tenoch Huerta, Josh Lucas, Veronica Falcon, Leven Rambin, Alejandro Edda, Sammi Rotibi, Ana González, Cassidy Freeman, Will Patton, Susie Abromeit, Anthony Molinari, Edward Gelhaus, Gary Nohealii.Director, Everardo Valerio Gout.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.On the run from a drug cartel, a Mexican couple battles vicious thugs who plan to continue the violent tradition of the now-outlawed Purge.Action / Adventure.Suspense / Thriller.Horror.Action.De La Reguera, AnaHuerta, TenochLucas, JoshFalcon, VeronicaRambin, LevenEdda, AlejandroRotibi, SammiGonzález, AnaFreeman, CassidyPatton, WillAbromeit, SusieMolinari, AnthonyGelhaus, EdwardNohealii, GaryView cover arthttps://thumbnail.midwesttape.com/14312898_180.jpghttpsBR113.991admin 0 -273 2022-06-17 10:28:21-05 2022-06-17 10:28:47.41436-05 import 01552ngm a22004212a 4500MWT14409627MWT20220207080232.1vd cvaizs220207s2021 xxu115 e vleng dMidwest$29.9978693687182114409627Free Guy[videorecording].Widescreen ed.[United States] :Disney,2021.1 videodisc (ca. 115 min.) :sd., col. ;4 3/4 in.10/12/2021Ryan Reynolds, Jodie Comer, Taika Waititi, Utkarsh Ambudkar, Lil Rel Howery, Joe Keery.Director, Shawn Levy.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.A bank teller, who discovers he is actually a background player in an open-world video game, decides to become the hero of his own story, one he rewrites himself. Now in a world where there are no limits, he is determined to be the guy who saves his world his way, before it is too late.Action / Adventure.Comedy.Sci-Fi.Comedy.Reynolds, RyanComer, JodieWaititi, TaikaAmbudkar, UtkarshHowery, Lil RelKeery, JoeView cover arthttps://thumbnail.midwesttape.com/14409627_180.jpghttpsBR120.991admin 0 -274 2022-06-17 10:28:21-05 2022-06-17 10:28:48.529085-05 import 01750ngm a22004932a 4500MWT14623689MWT20220207080232.1vd cvaizs220207s2021 xxu124 e vleng dMidwest$30.9904339656634714623689Ghostbusters: Afterlife[videorecording].Widescreen ed.[United States] :Sony,2022.1 videodisc (ca. 124 min.) :sd., col. ;4 3/4 in.02/01/2022Finn Wolfhard, Mckenna Grace, Carrie Coon, Sigourney Weaver, Bill Murray, Dan Aykroyd, Ernie Hudson, Logan Kim, Celeste O'Connor, Annie Potts, Paul Rudd.Director, Jason Reitman.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind. Includes French audio descriptive track.Canadian.Action / Adventure.Fantasy.Comedy.Comedy.Wolfhard, FinnGrace, MckennaCoon, CarrieWeaver, SigourneyMurray, BillAykroyd, DanHudson, ErnieKim, LoganO'Connor, CelestePotts, AnnieRudd, PaulView cover arthttps://thumbnail.midwesttape.com/14623689_180.jpghttpsBR121.691admin 0 -275 2022-06-17 10:28:21-05 2022-06-17 10:28:49.81433-05 import 01213ngm a22003852a 4500MWT14623709MWT20220207080232.1vd cvaizs220207s2021 xxu100 e vleng dMidwest$39.9914623709Licorice Pizza[videorecording].Widescreen ed.[United States] :Warner Bros.,2022.1 videodisc (ca. 100 min.) :sd., col. ;4 3/4 in.03/29/2022Alana Haim, Cooper Hoffman, Sean Penn, Tom Waits, Bradley Cooper, Benny Safdie.Director, Paul Thomas Anderson.DVD.English audio.MPAA rating: R.The story of Alana Kane and Gary Valentine growing up, running around, and falling in love in the San Fernando Valley, 1973.Comedy.Drama.Comedy.Haim, AlanaHoffman, CooperPenn, SeanWaits, TomCooper, BradleySafdie, BennyView cover arthttps://thumbnail.midwesttape.com/14623709_180.jpghttpsBR127.991admin 0 -276 2022-06-17 10:28:21-05 2022-06-17 10:28:50.733832-05 import 01654ngm a22003972a 4500MWT14642320MWT20220207080232.1vd cvaizs220207s2021 xxu090 e vleng dMidwest9781954458819 :$19.9909516389246314642320The Girl Who Believes in Miracles[videorecording].Widescreen ed.[United States] :Bridgestone Multimedia Group,2021.1 videodisc (ca. 90 min.) :sd., col. ;4 3/4 in.12/07/2021Mira Sorvino, Austyn Johnson, Kevin Sorbo, Peter Coyote, Burgess Jenkins, Tommi Rose.Director, Richard Correll.DVD.English audio.English subtitles for the deaf and hard of hearing.MWT rating: NR.Unlike most people, young Sara Hopkins is willing to take God at His word. So, when she hears a preacher say faith can move mountains, she starts praying. What begins with a mysteriously healed bird leads to people suddenly cured of their misery and misfortune all over town. But the overwhelming crush of notoriety and press attention soon takes its toll on Sara. Will her family be able to save their miracle girl before it's too late?Drama.Drama.Sorvino, MiraJohnson, AustynSorbo, KevinCoyote, PeterJenkins, BurgessRose, TommiView cover arthttps://thumbnail.midwesttape.com/14642320_180.jpghttpsBR113.991admin 0 -277 2022-06-17 10:28:21-05 2022-06-17 10:28:52.009784-05 import 01711ngm a22004932a 4500MWT14263249MWT20220207080232.1vd cvaizs220207s2021 xxu099 e vleng dMidwest$19.9903139832883414263249The Hitman's Wife's Bodyguard[videorecording].Widescreen ed.[United States] :Lionsgate,2021.1 videodisc (ca. 99 min.) :sd., col. ;4 3/4 in.08/17/2021Ryan Reynolds, Samuel L. Jackson, Salma Hayek, Morgan Freeman, Antonio Banderas, Frank Grillo, Tom Hopper, Richard E. Grant, Caroline Goodall, Gabriella Wright, Giulio Berruti, Blake Ritson.Director, Patrick Hughes.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.The bodyguard Michael Bryce continues his friendship with assassin Darius Kincaid as they try to save Darius's wife Sonia.Crime.Action / Adventure.Comedy.Action.Reynolds, RyanJackson, Samuel L.Hayek, SalmaFreeman, MorganBanderas, AntonioGrillo, FrankHopper, TomGrant, Richard E.Goodall, CarolineWright, GabriellaBerruti, GiulioRitson, BlakeView cover arthttps://thumbnail.midwesttape.com/14263249_180.jpghttpsBR113.991admin 0 -278 2022-06-17 10:28:21-05 2022-06-17 10:28:53.402379-05 import 01766ngm a22004812a 4500MWT14700536MWT20220207080232.1vd cvaizs220207s2021 xxu158 e vleng dMidwest$29.9919132921184714700536House of Gucci[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 158 min.) :sd., col. ;4 3/4 in.02/22/2022Lady Gaga, Adam Driver, Al Pacino, Jeremy Irons, Salma Hayek, Jared Leto, Jack Huston, Madalina Ghenea, Camille Cottin, Reeve Carney.Director, Ridley Scott.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Inspired by the shocking true story of the family behind the Italian fashion empire. When Patrizia Reggiani, an outsider from humble beginnings, marries into the Gucci family, her unbridled ambition begins to unravel the family legacy and triggers a reckless spiral of betrayal, decadence, revenge, and ultimately, murder.Crime.Canadian.Drama.Drama.Forden, GayLady Gaga, Driver, AdamPacino, AlIrons, JeremyHayek, SalmaLeto, JaredHuston, JackGhenea, MadalinaCottin, CamilleCarney, ReeveView cover arthttps://thumbnail.midwesttape.com/14700536_180.jpghttpsBR120.991admin 0 -279 2022-06-17 10:28:21-05 2022-06-17 10:28:54.794426-05 import 01475ngm a22004092a 4500MWT14696635MWT20220207080232.1vd cvaizs220207s2021 xxu131 e vleng dMidwest$30.9904339657939214696635A Journal for Jordan[videorecording].Widescreen ed.[United States] :Sony Pictures Home Entertainment,2022.1 videodisc (ca. 131 min.) :sd., col. ;4 3/4 in.03/08/2022Michael B. Jordan, Chante Adams, Robert Wisdom, Tamara Tunie, Vanessa Aspillaga, Susan Pourfar, Johnny M. Wu.Director, Denzel Washington.DVD.English, French, Portuguese, Spanish audio; English, French, Korean, Mandarin, Portuguese, Spanish, Thai subtitles.Closed-captioned; English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.First Sgt. Charles Monroe King keeps a journal for his newborn son while stationed overseas.Drama.Drama.Jordan, Michael B.Adams, ChanteWisdom, RobertTunie, TamaraAspillaga, VanessaPourfar, SusanWu, Johnny M.View cover arthttps://thumbnail.midwesttape.com/14696635_180.jpghttpsBR121.691admin 0 -280 2022-06-17 10:28:21-05 2022-06-17 10:28:55.90985-05 import 02194ngm a22003492a 4500MWT14111704MWT20220207080232.1vd cvaizs220207s2021 xxu450 e vleng dMidwest9781531713959 :$69.9984188704570414111704Ken Burns: Muhammad Ali[videorecording].Widescreen ed.[United States] :Pbs,2021.4 videodiscs (ca. 450 min.) :sd., col. ;4 3/4 in.11/09/2021Muhammad Ali, Keith David.Director, Ken Burns, Sarah Burns, David Mcmahon.DVD.English, Spanish audio.English subtitles for the deaf and hard of hearing.He was one of the best-known men of the 20th century, a three-time heavyweight boxing champion who captivated millions of fans throughout the world with his mesmerizing combination of speed, grace, and power in the ring, and charm and playful boasting outside of it. At the height of his fame, he took American life, the racial prejudices, the religious biases, the role of celebrities, the role of sports in society, and refashioned it in his image. His brazen outspokenness and unsurpassed boxing skills made him a heroic symbol of black masculinity to African Americans across the country, yet at times he seemed to take pride in humiliating his black opponents. In an age of sit-ins and freedom rides aimed at ending segregation, his deep ties to the Nation of Islam, a black nationalist organization that preached separation, made him, for a time, among the most feared and reviled men in the country. At the peak of his ability, he bravely sacrificed his career by refusing to go to war in Vietnam, and though he was condemned for it, Muhammad Ali would later be celebrated as a principled pacifist. Includes Spanish SDH subtitles.African-American Heritage.Documentary.Documentary.Ali, MuhammadDavid, KeithView cover arthttps://thumbnail.midwesttape.com/14111704_180.jpghttpsBR148.991admin 0 -281 2022-06-17 10:28:21-05 2022-06-17 10:28:57.482096-05 import 01533ngm a22004332a 4500MWT13575596MWT20220207080232.1vd cvaizs220207s2020 xxu131 e vleng dMidwest$29.9978693687042813575596The King's Man[videorecording].Widescreen ed.[United States] :20th Century Studios,2022.1 videodisc (ca. 131 min.) :sd., col. ;4 3/4 in.02/22/2022Ralph Fiennes, Gemma Arterton, Matthew Goode, Stanley Tucci, Tom Hollander, Daniel Brühl, Charles Dance, Rhys Ifans.Director, Matthew Vaughn.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.One man must race against time to stop history's worst tyrants and criminal masterminds as they get together to plot a war that could wipe out millions of people and destroy humanity.Action / Adventure.War.Action.Fiennes, RalphArterton, GemmaGoode, MatthewTucci, StanleyHollander, TomBrühl, DanielDance, CharlesIfans, RhysView cover arthttps://thumbnail.midwesttape.com/13575596_180.jpghttpsBR120.991admin 0 -282 2022-06-17 10:28:21-05 2022-06-17 10:28:58.602129-05 import 01426nim a22003372a 4500MWT14105402MWT20220207080232.1sd fmngnnmmned220207s2018 xxu e eng dMidwest9798200651337 :$44.99979820065133714105402Murray, Victoria Christopherauthor.Lust[sound recording] /Victoria Christopher Murray.Unabridged.[United States] :Blackstone Audio, Inc.,2021.9 sound discs (630 min.) :digital ;4 3/4 in. Compact disc.03/01/2021Read by Mirron Willis, Adenrele Ojo.Tiffanie has lived a sheltered life in a very strict household with her pastor grandfather and her grandmother in Washington, D.C. But when she meets Damon, she falls for the successful entertainment businessman despite his history as a drug dealer. Everyone sees a bright future for the couple, yet when Tiffanie meets Trey, her lustful feelings leave her confused just days before her wedding.African-American Interest.Religious/Faith-Based Fiction.Audiobooks.Fiction.Willis, MirronOjo, AdenreleView cover arthttps://thumbnail.midwesttape.com/14105402_180.jpghttpsBR144.991admin 0 -283 2022-06-17 10:28:21-05 2022-06-17 10:28:59.766315-05 import 01277nim a22003132a 4500MWT13385587MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9780062971500 :$29.99978006297150013385587Wright, Richardauthor.The Man Who Lived Underground[sound recording] /Richard Wright.Unabridged.[United States] :Harper Collins Publishers,2021.6 sound discs (405 min.) :digital ;4 3/4 in. Compact disc.04/20/2021Read by Ethan Herisse.Fred Daniels, a black man, is picked up randomly by the police after a brutal murder in a Chicago neighborhood and taken to the local precinct where he is tortured until he confesses to a crime he didn't commit. After signing a confession, he escapes from the precinct and takes up residence in the sewers below the streets of Chicago.African-American Interest.Audiobooks.Fiction.Herisse, EthanView cover arthttps://thumbnail.midwesttape.com/13385587_180.jpghttpsBR129.991admin 0 -284 2022-06-17 10:28:21-05 2022-06-17 10:29:00.81445-05 import 01905ngm a22004332a 4500MWT14589622MWT20220207080232.1vd cvaizs220207s2021 xxu120 e vleng dMidwest$29.9988392970803114589622The Many Saints of Newark[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 120 min.) :sd., col. ;4 3/4 in.12/21/2021Michael Gandolfini, Jon Bernthal, Vera Farmiga, Billy Magnussen, Corey Stoll, Alessandro Nivola, Ray Liotta, John Magaro, Leslie Odom Jr..Director, Alan Taylor.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Young Anthony Soprano is growing up in one of the most tumultuous eras in Newark's history, becoming a man just as rival gangsters begin to rise and challenge the all-powerful DiMeo crime family's hold over the increasingly race-torn city. Caught up in the changing times is the uncle he idolizes, Dickie Moltisanti, who struggles to manage both his professional and personal responsibilities, and whose influence over his nephew will help make the impressionable teenager into the all-powerful mob boss later known as Tony Soprano.Crime.Drama.Gandolfini, MichaelBernthal, JonFarmiga, VeraMagnussen, BillyStoll, CoreyNivola, AlessandroLiotta, RayMagaro, JohnOdom Jr., LeslieView cover arthttps://thumbnail.midwesttape.com/14589622_180.jpghttpsBR120.991admin 0 -285 2022-06-17 10:28:21-05 2022-06-17 10:29:02.237437-05 import 01711ngm a22004692a 4500MWT14623730MWT20220207080232.1vd cvaizs220207s2021 xxu157 e vleng dMidwest$29.9978693688141714623730Marvel's Eternals[videorecording].Widescreen ed.[United States] :Marvel Entertainment,2022.1 videodisc (ca. 157 min.) :sd., col. ;4 3/4 in.02/15/2022Angelina Jolie, Gemma Chan, Richard Madden, Kumail Nanjiani, Lauren Ridloff, Brian Tyree Henry, Salma Hayek, Lia Mchugh, Don Lee, Kit Harrington.Director, Chloe Zhao.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Following the events of Avengers: Endgame, an unexpected tragedy forces a group of ancient aliens who have been living on Earth in secret for thousands of years out of the shadows to reunite against mankind's most ancient enemy, the Deviants.Action / Adventure.Fantasy.Sci-Fi.Action.Jolie, AngelinaChan, GemmaMadden, RichardNanjiani, KumailRidloff, LaurenHenry, Brian TyreeHayek, SalmaMchugh, LiaLee, DonHarrington, KitView cover arthttps://thumbnail.midwesttape.com/14623730_180.jpghttpsBR120.991admin 0 -286 2022-06-17 10:28:21-05 2022-06-17 10:29:03.521792-05 import 01388ngm a22003132a 4500MWT14774891MWT20220207080232.1vd cvaizs220207s2022 xxu060 e vleng dMidwest$18.9981007254835114774891The Marvelous Mrs Shenkman[videorecording].Widescreen ed.[United States] :Leomark Studios,2022.1 videodisc (ca. 60 min.) :sd., col. ;4 3/4 in.02/01/2022April Hava Shenkman.Director, April Hava Shenkman, Jared Whitham.DVD.English audio.April Hava Shenkman is flocked out of her mind, pregnant and turning 40 what's she going to do? Throw herself a baby shower with puppets! This quirky comedy special is a heart to heart intimate glimpse into the psyche of an absurdist Comedienne answering the "last call" to become a Mommy. Exploring the identity crisis of an Artist turing into a Mother, and what it's like having a baby at 40. A celebration of life and art in a rare collaboration with the world famous Bob Baker Marionettes.Comedy.Comedy.Shenkman, April HavaView cover arthttps://thumbnail.midwesttape.com/14774891_180.jpghttpsBR113.291admin 0 -287 2022-06-17 10:28:21-05 2022-06-17 10:29:04.638068-05 import 01432ngm a22003852a 4500MWT14589628MWT20220207080232.1vd cvaizs220207s2021 xxu111 e vleng dMidwest$23.9984350103719514589628Mass[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 111 min.) :sd., col. ;4 3/4 in.01/11/2022Breeda Wool, Martha Plimpton, Jason Isaacs, Reed Birney, Ann Dowd.Director, Fran Kranz.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Years after an unspeakable tragedy tore their lives apart, two sets of parents agree to talk privately in an attempt to move forward. In Fran Kranz's writing and directing debut, he thoughtfully examines their journey of grief, anger, and acceptance by coming face-to-face with the ones who have been left behind.Drama.Drama.Wool, BreedaPlimpton, MarthaIsaacs, JasonBirney, ReedDowd, AnnView cover arthttps://thumbnail.midwesttape.com/14589628_180.jpghttpsBR116.791admin 0 -288 2022-06-17 10:28:21-05 2022-06-17 10:29:05.701725-05 import 01647ngm a22004332a 4500MWT14700538MWT20220207080232.1vd cvaizs220207s2021 xxu148 e vleng dMidwest$34.9988392974113714700538The Matrix Resurrections[videorecording].Widescreen ed.[United States] :Warner Bros.,2022.1 videodisc (ca. 148 min.) :sd., col. ;4 3/4 in.03/08/2022Keanu Reeves, Christina Ricci, Carrie-Anne Moss, Jonathan Groff, Priyanka Chopra Jonas, Neil Patrick Harris, Jada Pinkett Smith, Yahya Abdul-Mateen Ii.Director, Lana Wachowski.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Return to a world of two realities: one, everyday life; the other, what lies behind it. To find out if his reality is a construct, to truly know himself, Mr. Anderson will have to choose to follow the white rabbit once more.Action / Adventure.Sci-Fi.Sci-Fi.Reeves, KeanuRicci, ChristinaMoss, Carrie-AnneGroff, JonathanJonas, Priyanka ChopraHarris, Neil PatrickPinkett Smith, JadaAbdul-Mateen Ii, YahyaView cover arthttps://thumbnail.midwesttape.com/14700538_180.jpghttpsBR124.491admin 0 -289 2022-06-17 10:28:21-05 2022-06-17 10:29:06.914206-05 import 01227ngm a22003732a 4500MWT13900922MWT20220207080232.1vd cvaizs220207s2021 xxu106 e vleng dMidwest$27.9901438114260013900922Mlk/Fbi[videorecording].Widescreen ed.[United States] :Ifc Films,2022.1 videodisc (ca. 106 min.) :sd., col. ;4 3/4 in.01/11/2022James Comey, Beverly Gage, Martin Luther King Jr..Director, Sam Pollard.DVD.English audio.English subtitles for the deaf and hard of hearing.MWT rating: NR.Based on newly declassified files, Sam Pollard's resonant film explores the US government's surveillance and harassment of Martin Luther King, Jr.Documentary.Documentary.Comey, JamesGage, BeverlyKing Jr., Martin LutherGarrow, David J.View cover arthttps://thumbnail.midwesttape.com/13900922_180.jpghttpsBR119.591admin 0 -290 2022-06-17 10:28:21-05 2022-06-17 10:29:07.826124-05 import 01341nim a22003252a 4500MWT14307028MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094041759 :$34.99978109404175914307028Dejonauthor.My Skin is My Sin[sound recording] /Dejon.Unabridged.[United States] :Blackstone Audio, Inc.,2021.7 sound discs (526 min.) :digital ;4 3/4 in. Compact disc.05/25/2021Read by D. S. Vanniel.After being sexually assaulted by her aunt&#x2019;s bi-sexual girlfriend, Pumpkin, a pretty and naïve teenage girl fresh out of high school gets hooked up with the stunning, beautiful, and very manipulative stripper “Goldmine.” Goldmine wastes no time introducing Pumpkin into Atlanta&#x2019;s cold, seedy underworld of quick money, tarnished dreams, and exotic dancing where nothing is off limits and anything goes.Urban.Audiobooks.Fiction.Dejon, Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14307028_180.jpghttpsBR134.991admin 0 -291 2022-06-17 10:28:21-05 2022-06-17 10:29:08.914649-05 import 01194ngm a22003612a 4500MWT14137866MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$14.9984350103558014137866The Nest[videorecording].Widescreen ed.[United States] :Distribution Solutions,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.07/20/2021Dee Wallace, Sarah Navratil, Maple Suttles.Director, James Suttles.DVD.English audio.MWT rating: NR.A mother's reality wears down around her as she struggles to understand the intertwined web of her daughter's separation anxiety brought on by parasitic creatures within a stuffed bear.Suspense / Thriller.Horror.Horror.Wallace, DeeNavratil, SarahSuttles, MapleView cover arthttps://thumbnail.midwesttape.com/14137866_180.jpghttpsBR110.491admin 0 -292 2022-06-17 10:28:21-05 2022-06-17 10:29:09.844546-05 import 01827ngm a22004332a 4500MWT13900924MWT20220207080232.1vd cvaizs220207s2021 xxu115 e vleng dMidwest$19.9982666321845913900924No Man's Land[videorecording].Widescreen ed.[United States] :Shout! Factory,2021.1 videodisc (ca. 115 min.) :sd., col. ;4 3/4 in.07/13/2021Jake Allyn, Frank Grillo, Jorge A. Jimenez, Andie Macdowell, George Lopez, Alex Macnicoll, Esmeralda Pimentel.Director, Conor Allyn.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.A modern Western-inspired by the real-life 'no man's land' areas along the Texas-Mexico border. While out on a father-son border patrol, Jackson accidentally kills a Mexican immigrant boy. When Jackson's father tries taking the blame, Jackson flees south on horseback, becoming a gringo 'illegal alien' in Mexico. Chased by Texas Rangers and Mexican Federales, Jackson journeys across Mexico to seek forgiveness from the dead boy's father only to fall in love with the land he was taught to hate.Action / Adventure.Western.Suspense / Thriller.Western.Allyn, JakeGrillo, FrankJimenez, Jorge A.Macdowell, AndieLopez, GeorgeMacnicoll, AlexPimentel, EsmeraldaView cover arthttps://thumbnail.midwesttape.com/13900924_180.jpghttpsBR113.991admin 0 -293 2022-06-17 10:28:21-05 2022-06-17 10:29:11.15655-05 import 02059nim a22003852a 4500MWT14807874MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9780063260788 :$39.99978006326078814807874Foley, Lucyauthor.The Paris Apartment[sound recording] /Lucy Foley.Unabridged.[United States] :Harper Collins Publishers,2022.10 sound discs (750 min.) :digital ;4 3/4 in. Compact disc.02/22/2022Read by Clare Corbett, Daphne Kouma, Julia Winwood, Sope Dirisu, Sofia Zervudachi, Charlie Anson.Jess needs a fresh start. She's broke and alone, and she's just left her job under less than ideal circumstances. Her half-brother Ben didn't sound thrilled when she asked if she could crash with him for a bit, but he didn't say no, and surely everything will look better from Paris. Only when she shows up, to find a very nice apartment, (could Ben really have afforded this?) he's not there. The longer Ben stays missing, the more Jess starts to dig into her brother's situation, and the more questions she has. Ben's neighbors are an eclectic bunch, and not particularly friendly. Jess may have come to Paris to escape her past, but it's starting to look like it's Ben's future that's in question. The socialite. The nice guy. The alcoholic. The girl on the verge. The concierge. Everyone's a neighbor. Everyone's a suspect. And everyone knows something they're not telling.Women'S Fiction.Suspense / Thriller.Audiobooks.Fiction.Corbett, ClareKouma, DaphneWinwood, JuliaDirisu, SopeZervudachi, SofiaAnson, CharlieView cover arthttps://thumbnail.midwesttape.com/14807874_180.jpghttpsBR139.991admin 0 -294 2022-06-17 10:28:21-05 2022-06-17 10:29:12.648309-05 import 01371nim a22003132a 4500MWT14384953MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094043258 :$39.99978109404325814384953Hampton, Brendaauthor.A Plus Size Diva[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.8 sound discs (833 min.) :digital ;4 3/4 in. Compact disc.02/23/2021Read by D. S. Vanniel.At the age of forty, Desa Rae Jenkins may be classified as over the hill, but with voluptuous curves in all the right places, she attracts Roc Dawson, one of the sexiest men alive, who happens to be almost half her age. He excites her like no other man has, but from Roc&#x2019;s playa-hating uncle Ronnie to the baby-mama drama that comes to her doorstep, Desa Rae is forced to make a decision that could set her free from the man she&#x2019;s fallen in love with.Urban.Audiobooks.Fiction.Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14384953_180.jpghttpsBR139.991admin 0 -295 2022-06-17 10:28:21-05 2022-06-17 10:29:13.694328-05 import 01336ngm a22004092a 4500MWT14132425MWT20220207080232.1vd cvaizs220207s2021 xxu106 e vleng dMidwest$22.9919132920125114132425Profile[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 106 min.) :sd., col. ;4 3/4 in.08/10/2021Valene Kane, Shazad Latif, Christine Adams, Amir Rahimzadeh, Morgan Watkins, Emma Cater.Director, Timur Bekmambetov.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.An undercover British journalist risks her life by infiltrating militant extremist groups online.Suspense / Thriller.Suspense.Kane, ValeneLatif, ShazadAdams, ChristineRahimzadeh, AmirWatkins, MorganCater, EmmaErelle, AnnaView cover arthttps://thumbnail.midwesttape.com/14132425_180.jpghttpsBR116.091admin 0 -296 2022-06-17 10:28:21-05 2022-06-17 10:29:14.705795-05 import 01810ngm a22004812a 4500MWT14003550MWT20220207080232.1vd cvaizs220207s2021 xxu099 e vleng dMidwest$19.9982666321987614003550Six Minutes to Midnight[videorecording].Widescreen ed.[United States] :Shout! Factory,2021.1 videodisc (ca. 99 min.) :sd., col. ;4 3/4 in.10/05/2021Judi Dench, James D'Arcy, Jim Broadbent, Eddie Izzard, Kevin Eldon, David Schofield, Carla Juri, Nigel Lindsay, Maria Dragus, Joe Bone, Celyn Jones, Rupert Holliday-Evans.Director, Andy Goddard.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Summer 1939. Influential families in Nazi Germany have sent their daughters to a finishing school in an English seaside town to learn the language and be ambassadors for a future looking National Socialist. A teacher there sees what is coming and is trying to raise the alarm. But the authorities believe he is the problem.War.Drama.Drama.Dench, JudiD'Arcy, JamesBroadbent, JimIzzard, EddieEldon, KevinSchofield, DavidJuri, CarlaLindsay, NigelDragus, MariaBone, JoeJones, CelynHolliday-Evans, RupertView cover arthttps://thumbnail.midwesttape.com/14003550_180.jpghttpsBR113.991admin 0 -297 2022-06-17 10:28:21-05 2022-06-17 10:29:16.066294-05 import 02107ngm a22004932a 4500MWT14623697MWT20220207080232.1vd cvaizs220207s2021 xxu102 j vleng dMidwest$29.9978693689385414623697Encanto[videorecording].Widescreen ed.[United States] :Disney,2022.1 videodisc (ca. 102 min.) :sd., col. ;4 3/4 in.02/08/2022Stephanie Beatriz, María Cecilia Botero, Wilmer Valderrama, John Leguizamo, Adassa, Diane Guerrero, Mauro Castillo, Angie Cepeda, Jessica Darrow, Rhenzy Feliz, Carolina Gaitán, Ravi Cabot-Conyers.Director, Byron Howard, Jared Bush, Charise Castro Smith.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.The Madrigals live hidden in the mountains of Colombia, in a magical house, in a vibrant town, in a wondrous, charmed place called an Encanto. The magic of the Encanto has blessed every child in the family with a unique gift, from super strength to the power to heal - every child except one, Mirabel. But when she discovers that the magic surrounding the Encanto is in danger, Mirabel decides that she, the only ordinary Madrigal, might just be her exceptional family's last hope.Children's films.Family Films.Animated.Children's.Beatriz, StephanieBotero, María CeciliaValderrama, WilmerLeguizamo, JohnAdassa, Guerrero, DianeCastillo, MauroCepeda, AngieDarrow, JessicaFeliz, RhenzyGaitán, CarolinaCabot-Conyers, RaviView cover arthttps://thumbnail.midwesttape.com/14623697_180.jpghttpsBR120.991admin 0 -298 2022-06-17 10:28:21-05 2022-06-17 10:29:17.590205-05 import 01410ngm a22004332a 4500MWT14768176MWT20220207080232.1vd cvaizs220207s2022 xxu095 e vleng dMidwest$29.9919132921748114768176Redeeming Love[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 95 min.) :sd., col. ;4 3/4 in.03/08/2022Abigail Cowen, Tom Lewis, Famke Janssen, Logan Marshall-Green, Nina Dobrev, Livi Birch, Eric Dane, Brandon Auret.Director, D.J. Caruso.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Sold into prostitution as a child, Angel knows nothing but betrayal. Can her heart ever be mended?Drama.Drama.Rivers, FrancineCowen, AbigailLewis, TomJanssen, FamkeMarshall-Green, LoganDobrev, NinaBirch, LiviDane, EricAuret, BrandonView cover arthttps://thumbnail.midwesttape.com/14768176_180.jpghttpsBR120.991admin 0 -299 2022-06-17 10:28:21-05 2022-06-17 10:29:18.626039-05 import 01550ngm a22004572a 4500MWT14623694MWT20220207080232.1vd cvaizs220207s2021 xxu107 e vleng dMidwest$30.9904339657503514623694Resident Evil: Welcome to Raccoon City[videorecording].Widescreen ed.[United States] :Columbia (Usa),2022.1 videodisc (ca. 107 min.) :sd., col. ;4 3/4 in.02/08/2022Kaya Scodelario, Robbie Amell, Hannah John-Kamen, Neal Mcdonough, Tom Hopper, Donal Logue, Avan Jogia, Marina Mazepa.Director, Johannes Roberts.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Set in 1998, this origin story explores the secrets of the mysterious Spencer Mansion and the ill-fated Raccoon City.Canadian.Action / Adventure.Mystery.Horror.Horror.Scodelario, KayaAmell, RobbieJohn-Kamen, HannahMcdonough, NealHopper, TomLogue, DonalJogia, AvanMazepa, MarinaView cover arthttps://thumbnail.midwesttape.com/14623694_180.jpghttpsBR121.691admin 0 -300 2022-06-17 10:28:21-05 2022-06-17 10:29:19.76147-05 import 01468ngm a22004452a 4500MWT14409619MWT20220207080232.1vd cvaizs220207s2021 xxu145 e vleng dMidwest$29.9919132912759914409619Respect[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 145 min.) :sd., col. ;4 3/4 in.11/09/2021Jennifer Hudson, Forest Whitaker, Audra Mcdonald, Saycon Sengbloh, Hailey Kilgore, Brenda Nicole Moorer, Marlon Wayans, Marc Maron, Tituss Burgess, Kimberly Scott.Director, Liesl Tommy.DVD.English, French audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.The life story of legendary R&B singer Aretha Franklin.Drama.Drama.Hudson, JenniferWhitaker, ForestMcdonald, AudraSengbloh, SayconKilgore, HaileyMoorer, Brenda NicoleWayans, MarlonMaron, MarcBurgess, TitussScott, KimberlyView cover arthttps://thumbnail.midwesttape.com/14409619_180.jpghttpsBR120.991admin 0 -301 2022-06-17 10:28:21-05 2022-06-17 10:29:20.925386-05 import 01906ngm a22005292a 4500MWT14700534MWT20220207080232.1vd cvaizs220207s2021 xxu110 j vleng dMidwest$34.9919132915281214700534Sing 2[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 110 min.) :sd., col. ;4 3/4 in.03/29/2022Matthew Mcconaughey, Taron Egerton, Tori Kelly, Reese Witherspoon, Nick Kroll, Scarlett Johansson, Bobby Cannavale, Halsey, Bono, Eric Andre, Pharrell Williams, Letitia Wright, Chelsea Peretti, Jennifer Saunders, Peter Serafinowicz.Director, Garth Jennings.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.The ever-optimistic koala Buster Moon and his all-star cast of performers prepare to launch their most dazzling stage extravaganza yet, all in the glittering entertainment capital of the world.Children's films.Family Films.Animated.Children's.Mcconaughey, MatthewEgerton, TaronKelly, ToriWitherspoon, ReeseKroll, NickJohansson, ScarlettCannavale, BobbyHalsey, Bono, Andre, EricWilliams, PharrellWright, LetitiaPeretti, ChelseaSaunders, JenniferSerafinowicz, PeterView cover arthttps://thumbnail.midwesttape.com/14700534_180.jpghttpsBR124.491admin 0 -302 2022-06-17 10:28:21-05 2022-06-17 10:29:22.305381-05 import 01409nim a22003252a 4500MWT14232663MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094039350 :$34.99978109403935014232663Hampton, Brendaauthor.Slick[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.8 sound discs (472 min.) :digital ;4 3/4 in. Compact disc.04/20/2021Read by D. S. Vanniel.Lifelong friends Dana and Sylvia share their dirty secrets, but Sylvia is tired of covering up Dana&#x2019;s ongoing affair with Lewis. Sylvia hates the man her friend is cheating with. In addition to sexing Dana, Lewis believes that he can have any woman he wants, including Sylvia. After several sexual advances from Lewis, she lets him know that the man she truly wants is her handsome boss, Jonathan Taylor. But Jonathan is clueless about what is happening behind closed doors.Women'S Fiction.Urban.Audiobooks.Fiction.Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14232663_180.jpghttpsBR134.991admin 0 -303 2022-06-17 10:28:21-05 2022-06-17 10:29:23.390102-05 import 01529ngm a22003852a 4500MWT14623752MWT20220207080232.1vd cvaizs220207s2021 xxu117 e vleng dMidwest$22.9984350103693814623752Spencer[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 117 min.) :sd., col. ;4 3/4 in.01/11/2022Kristen Stewart, Jack Farthing, Sally Hawkins, Timothy Spall, Sean Harris.Director, Pablo Larrain.DVD.English audio.English subtitles for the deaf and hard of hearing.MPAA rating: R.The marriage of Princess Diana and Prince Charles has long since grown cold. Though rumors of affairs and a divorce abound, peace is ordained for the Christmas festivities at the Queen's Sandringham Estate. There's eating and drinking, shooting and hunting. Diana knows the game. But this year, things will be profoundly different. This is an imagining of what might have happened during those few fateful days.Drama.Drama.Stewart, KristenFarthing, JackHawkins, SallySpall, TimothyHarris, SeanView cover arthttps://thumbnail.midwesttape.com/14623752_180.jpghttpsBR116.091admin 0 -304 2022-06-17 10:28:21-05 2022-06-17 10:29:24.581882-05 import 02071ngm a22005052a 4500MWT14700527MWT20220207080232.1vd cvaizs220207s2021 xxu000 e vleng dMidwest$29.9914700527Spider-Man: No Way Home[videorecording].Widescreen ed.[United States] :Disney,2022.1 videodisc :sd., col. ;4 3/4 in.04/26/2022Tom Holland, Marisa Tomei, Zendaya, Benedict Cumberbatch, Jon Favreau, Willem Dafoe, Angourie Rice, J.K. Simmons, Benedict Wong, Paula Newsome, Alfred Molina, Jamie Foxx, Jacob Batalon, Martin Starr.Director, Jon Watts.DVD.English audio.MPAA rating: PG-13.For the first time in the cinematic history of Spider-Man, our friendly neighborhood hero's identity is revealed, bringing his Super Hero responsibilities into conflict with his normal life and putting those he cares about most at risk. When he enlists Doctor Strange's help to restore his secret, the spell tears a hole in their world, releasing the most powerful villains who have ever fought a Spider-Man in any universe. Now, Peter will have to overcome his greatest challenge yet, which will not only forever alter his own future but the future of the Multiverse.Action / Adventure.Fantasy.Sci-Fi.Action.Holland, TomLee, StanTomei, MarisaZendaya, Cumberbatch, BenedictFavreau, JonDafoe, WillemRice, AngourieSimmons, J.K.Wong, BenedictNewsome, PaulaMolina, AlfredFoxx, JamieBatalon, JacobStarr, MartinView cover arthttps://thumbnail.midwesttape.com/14700527_180.jpghttpsBR120.991admin 0 -305 2022-06-17 10:28:21-05 2022-06-17 10:29:26.098371-05 import 01953nim a22003252a 4500MWT14185365MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781549129018 :$39.99978154912901814185365Patterson, Jamesauthor.Steal[sound recording] /James Patterson.Unabridged.[United States] :Hachette Audio,2022.7 sound discs (495 min.) :digital ;4 3/4 in. Compact disc.04/05/2022Read by Jay Ben Markson.Imagine everyone's surprise when Carter von Oehson, a sophomore in Dr. Dylan Reinhart's Abnormal Psychology class, posts on Instagram that he plans to kill himself. 24 hours later and still no one has seen him. Release the hounds.&#x00A0;A massive search ensues. But when Carter's sailboat rolls in with the tide without him or anyone else on it, the worst seems to be confirmed. He really did it. Or did he?&#x00A0;The one person convinced he's still alive is his father, Mathias von Oehson, founder and CEO of the world's largest hedge fund. But what Mathias knows and how he knows it would ultimately reveal a secret so damaging that it would be as if he were committing suicide himself. There's no way he can go to the police. But there's still someone he can turn to. Dylan now finds himself wrapped up in multi-million-dollar secrets and danger and it's going to take every bit of his wit, and the brilliant and headstrong NYPD Detective, Elizabeth Needham, to stay ahead of both his enemy, and his employer.Suspense / Thriller.Audiobooks.Fiction.Roughan, HowardMarkson, Jay BenView cover arthttps://thumbnail.midwesttape.com/14185365_180.jpghttpsBR139.991admin 0 -306 2022-06-17 10:28:21-05 2022-06-17 10:29:27.573764-05 import 01376ngm a22004092a 4500MWT14327178MWT20220207080232.1vd cvaizs220207s2021 xxu139 e vleng dMidwest$19.9919132920790114327178Stillwater[videorecording].Widescreen ed.[United States] :Focus Features,2021.1 videodisc (ca. 139 min.) :sd., col. ;4 3/4 in.10/26/2021Matt Damon, Abigail Breslin, Camille Cottin, Deanna Dunagan, Ginifer Ree, Lisandro Boccacci.Director, Tom Mccarthy.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.A father travels from Oklahoma to France to help his estranged daughter, who is in prison for a murder she claims she didn't commit.Crime.Drama.Drama.Damon, MattBreslin, AbigailCottin, CamilleDunagan, DeannaRee, GiniferBoccacci, LisandroView cover arthttps://thumbnail.midwesttape.com/14327178_180.jpghttpsBR113.991admin 0 -307 2022-06-17 10:28:21-05 2022-06-17 10:29:28.569699-05 import 02190ngm a22004212a 4500MWT14774850MWT20220207080232.1vd cvaizs220207s2021 xxu118 e vleng dMidwest$20.9978693689416514774850Summer of Soul[videorecording].Widescreen ed.[United States] :Searchlight Pictures,2022.1 videodisc (ca. 118 min.) :sd., col. ;4 3/4 in.02/08/2022Stevie Wonder, Nina Simone, Sly & The Family Stone, Gladys Knight & The Pips, Mahalia Jackson, B.B. King, The 5th Dimension.Director, Ahmir 'Questlove' Thompson.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.In his acclaimed debut as a filmmaker, Ahmir 'Questlove' Thompson presents a powerful and transporting documentary, part music film, part historical record, created around an epic event that celebrated Black history, culture, and fashion. Over the course of six weeks in the summer of 1969, just one hundred miles south of Woodstock, The Harlem Cultural Festival was filmed in Mount Morris Park (now Marcus Garvey Park). The footage was largely forgotten, until now. This documentary shines a light on the importance of history to our spiritual well-being and stands as a testament to the healing power of music during times of unrest, both past, and present. The feature includes concert performances by Stevie Wonder, Nina Simone, Sly & the Family Stone, Gladys Knight and the Pips, Mahalia Jackson, B.B. King, The 5th Dimension, and more.Music.Documentary.Documentary.Wonder, StevieSimone, NinaSly & The Family Stone, Gladys Knight & The Pips, Jackson, MahaliaKing, B.B.5th Dimension, TheView cover arthttps://thumbnail.midwesttape.com/14774850_180.jpghttpsBR114.691admin 0 -308 2022-06-17 10:28:21-05 2022-06-17 10:29:30.085678-05 import 01159nim a22003132a 4500MWT14307016MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094041254 :$32.99978109404125414307016Parks, Electa Romeauthor.True Confessions[sound recording] /Electa Rome Parks.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (438 min.) :digital ;4 3/4 in. Compact disc.05/25/2021Read by Samantha Moon.Twenty-eight year old Kennedy Logan is gorgeous, educated, talented, and in love. Unfortunately, Drake Collins has other ideas about the true state of their relationship. Kennedy hopes to turn him around; Drake just wants to turn her out sexually.Urban.Audiobooks.Fiction.Moon, SamanthaView cover arthttps://thumbnail.midwesttape.com/14307016_180.jpghttpsBR132.991admin 0 -309 2022-06-17 10:28:21-05 2022-06-17 10:29:31.039514-05 import 01724ngm a22004092a 4500MWT14303521MWT20220207080232.1vd cvaizs220207s2021 xxu109 e vleng dMidwest$12.9903242935340514303521Under the Stadium Lights[videorecording].Widescreen ed.[United States] :Paramount,2021.1 videodisc (ca. 109 min.) :sd., col. ;4 3/4 in.08/03/2021Milo Gibson, Laurence Fishburne, Abigail Hawk, Acoryé White, Noel Gugliemi, Carter Redwood, Glenn Morshower.Director, Todd Randall.DVD.English audio; English, French, Spanish subtitles.Closed-captioned.MPAA rating: PG-13.After a crushing defeat ended their prior season, everyone counted the Abilene Eagles out of title contention. Facing doubts and personal challenges both on and off the field, it will take the guidance of their team chaplain and a surrogate father figure for them to realize what they can achieve when they stand united as a team. In this uplifting underdog story, the Abilene Eagles will once again soar in an incredible comeback that will be forever remembered in sports history.Drama.Sports.Gibson, MiloFishburne, LaurenceHawk, AbigailWhite, AcoryéGugliemi, NoelRedwood, CarterMorshower, GlennView cover arthttps://thumbnail.midwesttape.com/14303521_180.jpghttpsBR19.091admin 0 -310 2022-06-17 10:28:21-05 2022-06-17 10:29:32.385487-05 import 01296nim a22003132a 4500MWT14570514MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9780063209824 :$44.99978006320982414570514Raskin, Jamieauthor.Unthinkable[sound recording] /Jamie Raskin.Unabridged.[United States] :Harper Collins Publishers,2022.12 sound discs (915 min.) :digital ;4 3/4 in. Compact disc.01/04/2022Read by Jamie Raskin.In this searing memoir, Congressman Jamie Raskin tells the story of the forty-five days at the start of 2021 that permanently changed his life, and his family's, as he confronted the painful loss of his son to suicide, lived through the violent insurrection in our nation's Capitol, and led the impeachment effort to hold President Trump accountable for inciting the political violence.Political Science.Biography.Audiobooks.Biography.View cover arthttps://thumbnail.midwesttape.com/14570514_180.jpghttpsBR144.991admin 0 -311 2022-06-17 10:28:21-05 2022-06-17 10:29:33.4383-05 import 01542ngm a22004212a 4500MWT14588497MWT20220207080232.1vd cvaizs220207s2021 xxu097 e vleng dMidwest$30.9904339657059714588497Venom: Let There be Carnage[videorecording].Widescreen ed.[United States] :Sony Pictures Home Entertainment,2021.1 videodisc (ca. 97 min.) :sd., col. ;4 3/4 in.12/14/2021Tom Hardy, Michelle Williams, Naomie Harris, Reid Scott, Stephen Graham, Woody Harrelson.Director, Andy Serkis.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Eddie Brock attempts to reignite his career by interviewing serial killer Cletus Kasady, who becomes the host of the symbiote Carnage and escapes prison after a failed execution. Includes French audio description track.Action / Adventure.Horror.Sci-Fi.Action.Hardy, TomWilliams, MichelleHarris, NaomieScott, ReidGraham, StephenHarrelson, WoodyView cover arthttps://thumbnail.midwesttape.com/14588497_180.jpghttpsBR121.691admin 0 -312 2022-06-17 10:28:21-05 2022-06-17 10:29:34.58204-05 import 01592ngm a22004452a 4500MWT14700524MWT20220207080232.1vd cvaizs220207s2021 xxu156 e vleng dMidwest$29.9978693688121914700524West Side Story[videorecording].Widescreen ed.[United States] :20th Century Fox,2022.1 videodisc (ca. 156 min.) :sd., col. ;4 3/4 in.03/15/2022Ansel Elgort, Ariana Debose, Rachel Zegler, David Alvarez, Rita Moreno, Brian D'Arcy James, Corey Stoll, Mike Faist.Director, Steven Spielberg.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Directed by Academy Award winner Steven Spielberg, from a screenplay by Pulitzer Prize and Tony Award winner Tony Kushner, this musical tells the classic tale of fierce rivalries and young love in 1957 New York City.Musical.Drama.Musical.Laurents, ArthurElgort, AnselDebose, ArianaZegler, RachelAlvarez, DavidMoreno, RitaJames, Brian D'ArcyStoll, CoreyFaist, MikeView cover arthttps://thumbnail.midwesttape.com/14700524_180.jpghttpsBR120.991admin 0 -313 2022-06-17 10:33:24-05 2022-06-17 10:33:33.927873-05 import 02083ngm a22004812a 4500MWT14696637MWT20220207080232.1vd cvaizs220207s2021 xxu112 e vleng dMidwest$29.9903139833208414696637American Underdog[videorecording].Widescreen ed.[United States] :Lionsgate,2022.1 videodisc (ca. 112 min.) :sd., col. ;4 3/4 in.02/22/2022Zachary Levi, Anna Paquin, Dennis Quaid, Adam Baldwin, Bruce Mcgill, Ser'Darius Blain, Chance Kelly, Wayne Garner, Brett Varvel, Kevin Downes, Morgana Shaw.Director, Andrew Erwin, Jon Erwin.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.Tells the inspirational true story of Kurt Warner, who went from a stockboy at a grocery store to a two-time NFL MVP, Super Bowl champion, and Hall of Fame quarterback. The film centers on Warner's unique story and years of challenges and setbacks that could have derailed his aspirations to become an NFL player, but just when his dreams seemed all but out of reach, it is only with the support of his wife, Brenda and the encouragement of his family, coaches, and teammates that Warner perseveres and finds the strength to show the world the champion that he already is.Drama.Biographical.Levi, ZacharyPaquin, AnnaQuaid, DennisBaldwin, AdamMcgill, BruceBlain, Ser'DariusKelly, ChanceGarner, WayneVarvel, BrettDownes, KevinShaw, MorganaWarner, KurtSilver, MichaelView cover arthttps://thumbnail.midwesttape.com/14696637_180.jpghttpsBR120.991admin 0 -314 2022-06-17 10:33:24-05 2022-06-17 10:33:34.417646-05 import 01398nim a22003132a 4500MWT14384897MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094044255 :$32.99978109404425514384897Ali, Rahsaanauthor.Backstabbers[sound recording] /Rahsaan Ali.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (425 min.) :digital ;4 3/4 in. Compact disc.06/29/2021Read by Tony Isabella.Tracy Kane is the top male model for a hip-hop clothing line by designer Christian Elijah. When Tracy punches an African bootlegger in the face for pirating the clothing line he models, he&#x2019;s arrested and his life takes a turn for the worse. For while Christian, who bails him out of jail, claims to have Tracy&#x2019;s best interests at heart, all he&#x2019;s really interested in is making more money. Soon, the designer is playing a dangerous game that could leave both of their lives at risk.Urban.Audiobooks.Fiction.Isabella, TonyView cover arthttps://thumbnail.midwesttape.com/14384897_180.jpghttpsBR132.991admin 0 -315 2022-06-17 10:33:24-05 2022-06-17 10:33:34.778336-05 import 01856ngm a22004572a 4500MWT13577096MWT20220207080232.1vd cvaizs220207s2021 xxu112 e vleng dMidwest$19.9988392970787413577096Conjuring 3, The: The Devil Made Me Do It[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 112 min.) :sd., col. ;4 3/4 in.08/24/2021Vera Farmiga, Patrick Wilson, Ruairi O'Connor, Charlene Amoia, Sterling Jerins, Shannon Kook, Ronnie Gene Blevins, Mitchell Hoog, Julian Hilliard.Director, Michael Chaves.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.A chilling story of terror, murder, and unknown evil that shocked even experienced, real-life paranormal investigators. One of the most sensational cases from their files, it starts with a fight for the soul of a young boy, then takes them beyond anything they'd ever seen before, to mark the first time in US history that a murder suspect would claim demonic possession as a defense.Mystery.Suspense / Thriller.Horror.Horror.Farmiga, VeraWilson, PatrickO'Connor, RuairiAmoia, CharleneJerins, SterlingKook, ShannonBlevins, Ronnie GeneHoog, MitchellHilliard, JulianView cover arthttps://thumbnail.midwesttape.com/13577096_180.jpghttpsBR113.991admin 0 -316 2022-06-17 10:33:24-05 2022-06-17 10:33:35.173908-05 import 01116nim a22003132a 4500MWT14384907MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094044453 :$32.99978109404445314384907Hampton, Brendaauthor.Don't Even Go There[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (413 min.) :digital ;4 3/4 in. Compact disc.06/29/2021Read by Tania Romulus.Essence bestselling author Brenda Hampton presents, the story of Chase Jenkins, a troublemaking, backstabbing diva, who will stop at nothing to get what she wants, even going after her boss&#x2019;s husband.Urban.Audiobooks.Fiction.Romulus, TaniaView cover arthttps://thumbnail.midwesttape.com/14384907_180.jpghttpsBR132.991admin 0 -317 2022-06-17 10:33:24-05 2022-06-17 10:33:35.522219-05 import 01936ngm a22004812a 4500MWT14510163MWT20220207080232.1vd cvaizs220207s2021 xxu108 e vleng dMidwest$29.9919132921180914510163Copshop[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 108 min.) :sd., col. ;4 3/4 in.12/07/2021Frank Grillo, Gerard Butler, Toby Huss, Ryan O'Nan, Keith Jardine, Kaiwi Lyman, Robert Walker Branchaud, Marshall Cook, Christopher Michael Holley, Chris Kleckner, Alexis Louder.Director, Joe Carnahan.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Screaming through the Nevada desert in a bullet-ridden car, wily con artist Teddy Murretto hatches a plan to hide out from lethal assassin Bob Viddick. He punches rookie officer Valerie Young to get himself arrested and locked up in a small-town police station. However, jail can't protect Murretto for long as Viddick schemes his own way into detention, biding his time in a nearby cell until he can complete his mission.Crime.Action / Adventure.Suspense / Thriller.Action.Grillo, FrankButler, GerardHuss, TobyO'Nan, RyanJardine, KeithLyman, KaiwiBranchaud, Robert WalkerCook, MarshallHolley, Christopher MichaelKleckner, ChrisLouder, AlexisView cover arthttps://thumbnail.midwesttape.com/14510163_180.jpghttpsBR120.991admin 0 -318 2022-06-17 10:33:24-05 2022-06-17 10:33:35.929939-05 import 01960ngm a22004812a 4500MWT14510174MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$29.9988392977429614510174Cry Macho[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.12/07/2021Clint Eastwood, Dwight Yoakam, Fernanda Urrejola, Brytnee Ratledge, Eduardo Minett, Natalia Traven, Horacio Garcia Rojas, Amber Lynn Ashley, Paul Lincoln Alayo, Alexandra Ruddy, Ivan Hernandez.Director, Clint Eastwood.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.In 1978, a one-time rodeo star and washed-up horse breeder takes a job from an ex-boss to bring the man's young son home and away from his alcoholic mom. Crossing rural Mexico on their way back to Texas, the unlikely pair faces an unexpectedly challenging journey, during which the world-weary horseman may find his own sense of redemption through teaching the boy what it means to be a good man.Western.Drama.Drama.Eastwood, ClintYoakam, DwightUrrejola, FernandaRatledge, BrytneeMinett, EduardoTraven, NataliaRojas, Horacio GarciaAshley, Amber LynnAlayo, Paul LincolnRuddy, AlexandraHernandez, IvanNash, N. RichardView cover arthttps://thumbnail.midwesttape.com/14510174_180.jpghttpsBR120.991admin 0 -319 2022-06-17 10:33:24-05 2022-06-17 10:33:36.334301-05 import 01086nim a22003132a 4500MWT14601729MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781666533569 :$59.99978166653356914601729Vanliere, Donnaauthor.Daniel's Final Week[sound recording] /Donna Vanliere.Unabridged.[United States] :Dreamscape Media, Llc,2022.7 sound discs (519 min.) :digital ;4 3/4 in. Compact disc.02/08/2022Read by Donna Vanliere.In the spellbinding conclusion to this trilogy, you'll discover what God's Word says about the future and see that things aren't spiraling downward but are looking up!Suspense / Thriller.Christian.Audiobooks.Fiction.View cover arthttps://thumbnail.midwesttape.com/14601729_180.jpghttpsBR147.991admin 0 -320 2022-06-17 10:33:24-05 2022-06-17 10:33:36.674571-05 import 01480nim a22003132a 4500MWT14185052MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781549116117 :$34.99978154911611714185052Beaton, M. C.author.Death of a Green-Eyed Monster[sound recording] /M. C. Beaton.Unabridged.[United States] :Hachette Audio,2022.5 sound discs (360 min.) :digital ;4 3/4 in. Compact disc.02/22/2022Read by Graeme Malcolm.Hamish's new constable, Dorothy McIver, may be the most beautiful woman he's ever seen. Completely bewitched by her sparkling blue eyes, Hamish spends the summer traveling with her up and down Sutherland until finally, he can take it no longer. He gets down on one knee beside the Land Rover and begs her to marry him, and to his amazement and delight, she says yes. But just as the town of Lochdubh gets ready to celebrate, Hamish finds himself with a new murder on his hands.&#x00A0;If he doesn't find the killer fast, Hamish's dream wedding could become a nightmare.Mystery.Audiobooks.Fiction.Malcolm, GraemeView cover arthttps://thumbnail.midwesttape.com/14185052_180.jpghttpsBR134.991admin 0 -321 2022-06-17 10:33:24-05 2022-06-17 10:33:37.021643-05 import 01381ngm a22003012a 4500MWT14797744MWT20220207080232.1vd cvaizs220207s2021 xxu088 e vleng dMidwest$32.9981007254634014797744Detainee 001[videorecording].Widescreen ed.[United States] :Showtime Networks Inc.,2022.1 videodisc (ca. 88 min.) :sd., col. ;4 3/4 in.02/01/2022Director, Greg Barker.DVD.English audio.TV rating: TV-MA.In the aftermath of the 9/11 attacks, the US and its allies invaded Afghanistan with the mission of identifying, infiltrating, and eliminating terrorist networks. Public attention was riveted on the capture of John Walker Lindh, a radical mujahideen fighter who became known as 'the American Taliban.' Through never-before-seen footage of his capture and interrogations, Emmy-winning director Greg Barker harrowingly explores how America grapples with justice in the fog of war and how narratives are built and destroyed in the aftermath of battle.Documentary.Documentary.View cover arthttps://thumbnail.midwesttape.com/14797744_180.jpghttpsBR123.091admin 0 -322 2022-06-17 10:33:24-05 2022-06-17 10:33:37.378741-05 import 01431ngm a22004332a 4500MWT14570830MWT20220207080232.1vd cvaizs220207s2021 xxu186 e vleng dMidwest$26.9904339657687214570830Don't Breathe/Don't Breathe 2[videorecording].Widescreen ed.[United States] :Columbia (Usa),2021.2 videodiscs (ca. 186 min.) :sd., col. ;4 3/4 in.10/26/2021Stephen Lang, Brendan Sexton Iii, Madelyn Grace, Rocci Williams, Stephanie Arcila, Jane Levy, Dylan Minnette, Daniel Zovatto.Director, Rodo Sayagues.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Includes Don't Breathe and Don't Breathe 2.Suspense / Thriller.Horror.Horror.Lang, StephenSexton Iii, BrendanGrace, MadelynWilliams, RocciArcila, StephanieLevy, JaneMinnette, DylanZovatto, DanielView cover arthttps://thumbnail.midwesttape.com/14570830_180.jpghttpsBR118.891admin 0 -323 2022-06-17 10:33:24-05 2022-06-17 10:33:37.75845-05 import 02133ngm a22005052a 4500MWT14269518MWT20220207080232.1vd cvaizs220207s2021 xxu149 e vleng dMidwest$19.9919132913573014269518F9: The Fast Saga[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 149 min.) :sd., col. ;4 3/4 in.09/21/2021Vin Diesel, Michelle Rodriguez, Jordana Brewster, Tyrese Gibson, Ludacris, Nathalie Emmanuel, Charlize Theron, John Cena, Finn Cole, Sung Kang, Helen Mirren, Kurt Russell, Lucas Black.Director, Justin Lin.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Dom Toretto is leading a quiet life off the grid with Letty and his son, little Brian, but they know that danger always lurks just over their peaceful horizon. This time, that threat will force Dom to confront the sins of his past if he's going to save those he loves most. His crew joins together to stop a world-shattering plot led by the most skilled assassin and high-performance driver they've ever encountered: a man who also happens to be Dom's forsaken brother, Jakob. Includes both the theatrical and director's cut of the film.Crime.Action / Adventure.Suspense / Thriller.Action.Diesel, VinRodriguez, MichelleBrewster, JordanaGibson, TyreseLudacris, Emmanuel, NathalieTheron, CharlizeCena, JohnCole, FinnKang, SungMirren, HelenRussell, KurtBlack, LucasView cover arthttps://thumbnail.midwesttape.com/14269518_180.jpghttpsBR113.991admin 0 -324 2022-06-17 10:33:24-05 2022-06-17 10:33:38.166479-05 import 01822ngm a22005172a 4500MWT14312898MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$19.9919132913506814312898The Forever Purge[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.09/28/2021Ana De La Reguera, Tenoch Huerta, Josh Lucas, Veronica Falcon, Leven Rambin, Alejandro Edda, Sammi Rotibi, Ana González, Cassidy Freeman, Will Patton, Susie Abromeit, Anthony Molinari, Edward Gelhaus, Gary Nohealii.Director, Everardo Valerio Gout.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.On the run from a drug cartel, a Mexican couple battles vicious thugs who plan to continue the violent tradition of the now-outlawed Purge.Action / Adventure.Suspense / Thriller.Horror.Action.De La Reguera, AnaHuerta, TenochLucas, JoshFalcon, VeronicaRambin, LevenEdda, AlejandroRotibi, SammiGonzález, AnaFreeman, CassidyPatton, WillAbromeit, SusieMolinari, AnthonyGelhaus, EdwardNohealii, GaryView cover arthttps://thumbnail.midwesttape.com/14312898_180.jpghttpsBR113.991admin 0 -325 2022-06-17 10:33:24-05 2022-06-17 10:33:38.566359-05 import 01552ngm a22004212a 4500MWT14409627MWT20220207080232.1vd cvaizs220207s2021 xxu115 e vleng dMidwest$29.9978693687182114409627Free Guy[videorecording].Widescreen ed.[United States] :Disney,2021.1 videodisc (ca. 115 min.) :sd., col. ;4 3/4 in.10/12/2021Ryan Reynolds, Jodie Comer, Taika Waititi, Utkarsh Ambudkar, Lil Rel Howery, Joe Keery.Director, Shawn Levy.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.A bank teller, who discovers he is actually a background player in an open-world video game, decides to become the hero of his own story, one he rewrites himself. Now in a world where there are no limits, he is determined to be the guy who saves his world his way, before it is too late.Action / Adventure.Comedy.Sci-Fi.Comedy.Reynolds, RyanComer, JodieWaititi, TaikaAmbudkar, UtkarshHowery, Lil RelKeery, JoeView cover arthttps://thumbnail.midwesttape.com/14409627_180.jpghttpsBR120.991admin 0 -326 2022-06-17 10:33:24-05 2022-06-17 10:33:38.950686-05 import 01750ngm a22004932a 4500MWT14623689MWT20220207080232.1vd cvaizs220207s2021 xxu124 e vleng dMidwest$30.9904339656634714623689Ghostbusters: Afterlife[videorecording].Widescreen ed.[United States] :Sony,2022.1 videodisc (ca. 124 min.) :sd., col. ;4 3/4 in.02/01/2022Finn Wolfhard, Mckenna Grace, Carrie Coon, Sigourney Weaver, Bill Murray, Dan Aykroyd, Ernie Hudson, Logan Kim, Celeste O'Connor, Annie Potts, Paul Rudd.Director, Jason Reitman.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind. Includes French audio descriptive track.Canadian.Action / Adventure.Fantasy.Comedy.Comedy.Wolfhard, FinnGrace, MckennaCoon, CarrieWeaver, SigourneyMurray, BillAykroyd, DanHudson, ErnieKim, LoganO'Connor, CelestePotts, AnnieRudd, PaulView cover arthttps://thumbnail.midwesttape.com/14623689_180.jpghttpsBR121.691admin 0 -327 2022-06-17 10:33:24-05 2022-06-17 10:33:39.366383-05 import 01654ngm a22003972a 4500MWT14642320MWT20220207080232.1vd cvaizs220207s2021 xxu090 e vleng dMidwest9781954458819 :$19.9909516389246314642320The Girl Who Believes in Miracles[videorecording].Widescreen ed.[United States] :Bridgestone Multimedia Group,2021.1 videodisc (ca. 90 min.) :sd., col. ;4 3/4 in.12/07/2021Mira Sorvino, Austyn Johnson, Kevin Sorbo, Peter Coyote, Burgess Jenkins, Tommi Rose.Director, Richard Correll.DVD.English audio.English subtitles for the deaf and hard of hearing.MWT rating: NR.Unlike most people, young Sara Hopkins is willing to take God at His word. So, when she hears a preacher say faith can move mountains, she starts praying. What begins with a mysteriously healed bird leads to people suddenly cured of their misery and misfortune all over town. But the overwhelming crush of notoriety and press attention soon takes its toll on Sara. Will her family be able to save their miracle girl before it's too late?Drama.Drama.Sorvino, MiraJohnson, AustynSorbo, KevinCoyote, PeterJenkins, BurgessRose, TommiView cover arthttps://thumbnail.midwesttape.com/14642320_180.jpghttpsBR113.991admin 0 -328 2022-06-17 10:33:24-05 2022-06-17 10:33:39.75766-05 import 01711ngm a22004932a 4500MWT14263249MWT20220207080232.1vd cvaizs220207s2021 xxu099 e vleng dMidwest$19.9903139832883414263249The Hitman's Wife's Bodyguard[videorecording].Widescreen ed.[United States] :Lionsgate,2021.1 videodisc (ca. 99 min.) :sd., col. ;4 3/4 in.08/17/2021Ryan Reynolds, Samuel L. Jackson, Salma Hayek, Morgan Freeman, Antonio Banderas, Frank Grillo, Tom Hopper, Richard E. Grant, Caroline Goodall, Gabriella Wright, Giulio Berruti, Blake Ritson.Director, Patrick Hughes.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.The bodyguard Michael Bryce continues his friendship with assassin Darius Kincaid as they try to save Darius's wife Sonia.Crime.Action / Adventure.Comedy.Action.Reynolds, RyanJackson, Samuel L.Hayek, SalmaFreeman, MorganBanderas, AntonioGrillo, FrankHopper, TomGrant, Richard E.Goodall, CarolineWright, GabriellaBerruti, GiulioRitson, BlakeView cover arthttps://thumbnail.midwesttape.com/14263249_180.jpghttpsBR113.991admin 0 -329 2022-06-17 10:33:24-05 2022-06-17 10:33:40.166372-05 import 01766ngm a22004812a 4500MWT14700536MWT20220207080232.1vd cvaizs220207s2021 xxu158 e vleng dMidwest$29.9919132921184714700536House of Gucci[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 158 min.) :sd., col. ;4 3/4 in.02/22/2022Lady Gaga, Adam Driver, Al Pacino, Jeremy Irons, Salma Hayek, Jared Leto, Jack Huston, Madalina Ghenea, Camille Cottin, Reeve Carney.Director, Ridley Scott.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Inspired by the shocking true story of the family behind the Italian fashion empire. When Patrizia Reggiani, an outsider from humble beginnings, marries into the Gucci family, her unbridled ambition begins to unravel the family legacy and triggers a reckless spiral of betrayal, decadence, revenge, and ultimately, murder.Crime.Canadian.Drama.Drama.Forden, GayLady Gaga, Driver, AdamPacino, AlIrons, JeremyHayek, SalmaLeto, JaredHuston, JackGhenea, MadalinaCottin, CamilleCarney, ReeveView cover arthttps://thumbnail.midwesttape.com/14700536_180.jpghttpsBR120.991admin 0 -330 2022-06-17 10:33:24-05 2022-06-17 10:33:40.561966-05 import 01475ngm a22004092a 4500MWT14696635MWT20220207080232.1vd cvaizs220207s2021 xxu131 e vleng dMidwest$30.9904339657939214696635A Journal for Jordan[videorecording].Widescreen ed.[United States] :Sony Pictures Home Entertainment,2022.1 videodisc (ca. 131 min.) :sd., col. ;4 3/4 in.03/08/2022Michael B. Jordan, Chante Adams, Robert Wisdom, Tamara Tunie, Vanessa Aspillaga, Susan Pourfar, Johnny M. Wu.Director, Denzel Washington.DVD.English, French, Portuguese, Spanish audio; English, French, Korean, Mandarin, Portuguese, Spanish, Thai subtitles.Closed-captioned; English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.First Sgt. Charles Monroe King keeps a journal for his newborn son while stationed overseas.Drama.Drama.Jordan, Michael B.Adams, ChanteWisdom, RobertTunie, TamaraAspillaga, VanessaPourfar, SusanWu, Johnny M.View cover arthttps://thumbnail.midwesttape.com/14696635_180.jpghttpsBR121.691admin 0 -331 2022-06-17 10:33:24-05 2022-06-17 10:33:40.937794-05 import 02194ngm a22003492a 4500MWT14111704MWT20220207080232.1vd cvaizs220207s2021 xxu450 e vleng dMidwest9781531713959 :$69.9984188704570414111704Ken Burns: Muhammad Ali[videorecording].Widescreen ed.[United States] :Pbs,2021.4 videodiscs (ca. 450 min.) :sd., col. ;4 3/4 in.11/09/2021Muhammad Ali, Keith David.Director, Ken Burns, Sarah Burns, David Mcmahon.DVD.English, Spanish audio.English subtitles for the deaf and hard of hearing.He was one of the best-known men of the 20th century, a three-time heavyweight boxing champion who captivated millions of fans throughout the world with his mesmerizing combination of speed, grace, and power in the ring, and charm and playful boasting outside of it. At the height of his fame, he took American life, the racial prejudices, the religious biases, the role of celebrities, the role of sports in society, and refashioned it in his image. His brazen outspokenness and unsurpassed boxing skills made him a heroic symbol of black masculinity to African Americans across the country, yet at times he seemed to take pride in humiliating his black opponents. In an age of sit-ins and freedom rides aimed at ending segregation, his deep ties to the Nation of Islam, a black nationalist organization that preached separation, made him, for a time, among the most feared and reviled men in the country. At the peak of his ability, he bravely sacrificed his career by refusing to go to war in Vietnam, and though he was condemned for it, Muhammad Ali would later be celebrated as a principled pacifist. Includes Spanish SDH subtitles.African-American Heritage.Documentary.Documentary.Ali, MuhammadDavid, KeithView cover arthttps://thumbnail.midwesttape.com/14111704_180.jpghttpsBR148.991admin 0 -332 2022-06-17 10:33:24-05 2022-06-17 10:33:41.321944-05 import 01533ngm a22004332a 4500MWT13575596MWT20220207080232.1vd cvaizs220207s2020 xxu131 e vleng dMidwest$29.9978693687042813575596The King's Man[videorecording].Widescreen ed.[United States] :20th Century Studios,2022.1 videodisc (ca. 131 min.) :sd., col. ;4 3/4 in.02/22/2022Ralph Fiennes, Gemma Arterton, Matthew Goode, Stanley Tucci, Tom Hollander, Daniel Brühl, Charles Dance, Rhys Ifans.Director, Matthew Vaughn.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.One man must race against time to stop history's worst tyrants and criminal masterminds as they get together to plot a war that could wipe out millions of people and destroy humanity.Action / Adventure.War.Action.Fiennes, RalphArterton, GemmaGoode, MatthewTucci, StanleyHollander, TomBrühl, DanielDance, CharlesIfans, RhysView cover arthttps://thumbnail.midwesttape.com/13575596_180.jpghttpsBR120.991admin 0 -333 2022-06-17 10:33:24-05 2022-06-17 10:33:41.701725-05 import 01524ngm a22004572a 4500MWT14593351MWT20220207080232.1vd cvaizs220207s2021 xxu153 e vleng dMidwest$29.9978693688104214593351The Last Duel[videorecording].Widescreen ed.[United States] :Disney,2021.1 videodisc (ca. 153 min.) :sd., col. ;4 3/4 in.12/14/2021Jodie Comer, Ben Affleck, Matt Damon, Clare Dunne, Adam Driver, Marton Csokas, Harriet Walter, Zeljko Ivanek, Alex Lawther, Clive Russell.Director, Ridley Scott.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.King Charles VI declares that knight Jean de Carrouges must settle his dispute with his squire by challenging him to a duel.Drama.Drama.Comer, JodieAffleck, BenDamon, MattDunne, ClareDriver, AdamCsokas, MartonWalter, HarrietIvanek, ZeljkoLawther, AlexRussell, CliveJager, EricView cover arthttps://thumbnail.midwesttape.com/14593351_180.jpghttpsBR120.991admin 0 -334 2022-06-17 10:33:24-05 2022-06-17 10:33:42.078217-05 import 01213ngm a22003852a 4500MWT14623709MWT20220207080232.1vd cvaizs220207s2021 xxu100 e vleng dMidwest$39.9914623709Licorice Pizza[videorecording].Widescreen ed.[United States] :Warner Bros.,2022.1 videodisc (ca. 100 min.) :sd., col. ;4 3/4 in.03/29/2022Alana Haim, Cooper Hoffman, Sean Penn, Tom Waits, Bradley Cooper, Benny Safdie.Director, Paul Thomas Anderson.DVD.English audio.MPAA rating: R.The story of Alana Kane and Gary Valentine growing up, running around, and falling in love in the San Fernando Valley, 1973.Comedy.Drama.Comedy.Haim, AlanaHoffman, CooperPenn, SeanWaits, TomCooper, BradleySafdie, BennyView cover arthttps://thumbnail.midwesttape.com/14623709_180.jpghttpsBR127.991admin 0 -335 2022-06-17 10:33:24-05 2022-06-17 10:33:42.425811-05 import 01426nim a22003372a 4500MWT14105402MWT20220207080232.1sd fmngnnmmned220207s2018 xxu e eng dMidwest9798200651337 :$44.99979820065133714105402Murray, Victoria Christopherauthor.Lust[sound recording] /Victoria Christopher Murray.Unabridged.[United States] :Blackstone Audio, Inc.,2021.9 sound discs (630 min.) :digital ;4 3/4 in. Compact disc.03/01/2021Read by Mirron Willis, Adenrele Ojo.Tiffanie has lived a sheltered life in a very strict household with her pastor grandfather and her grandmother in Washington, D.C. But when she meets Damon, she falls for the successful entertainment businessman despite his history as a drug dealer. Everyone sees a bright future for the couple, yet when Tiffanie meets Trey, her lustful feelings leave her confused just days before her wedding.African-American Interest.Religious/Faith-Based Fiction.Audiobooks.Fiction.Willis, MirronOjo, AdenreleView cover arthttps://thumbnail.midwesttape.com/14105402_180.jpghttpsBR144.991admin 0 -336 2022-06-17 10:33:24-05 2022-06-17 10:33:42.78183-05 import 01277nim a22003132a 4500MWT13385587MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9780062971500 :$29.99978006297150013385587Wright, Richardauthor.The Man Who Lived Underground[sound recording] /Richard Wright.Unabridged.[United States] :Harper Collins Publishers,2021.6 sound discs (405 min.) :digital ;4 3/4 in. Compact disc.04/20/2021Read by Ethan Herisse.Fred Daniels, a black man, is picked up randomly by the police after a brutal murder in a Chicago neighborhood and taken to the local precinct where he is tortured until he confesses to a crime he didn't commit. After signing a confession, he escapes from the precinct and takes up residence in the sewers below the streets of Chicago.African-American Interest.Audiobooks.Fiction.Herisse, EthanView cover arthttps://thumbnail.midwesttape.com/13385587_180.jpghttpsBR129.991admin 0 -337 2022-06-17 10:33:24-05 2022-06-17 10:33:43.12964-05 import 01905ngm a22004332a 4500MWT14589622MWT20220207080232.1vd cvaizs220207s2021 xxu120 e vleng dMidwest$29.9988392970803114589622The Many Saints of Newark[videorecording].Widescreen ed.[United States] :Warner Bros.,2021.1 videodisc (ca. 120 min.) :sd., col. ;4 3/4 in.12/21/2021Michael Gandolfini, Jon Bernthal, Vera Farmiga, Billy Magnussen, Corey Stoll, Alessandro Nivola, Ray Liotta, John Magaro, Leslie Odom Jr..Director, Alan Taylor.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Young Anthony Soprano is growing up in one of the most tumultuous eras in Newark's history, becoming a man just as rival gangsters begin to rise and challenge the all-powerful DiMeo crime family's hold over the increasingly race-torn city. Caught up in the changing times is the uncle he idolizes, Dickie Moltisanti, who struggles to manage both his professional and personal responsibilities, and whose influence over his nephew will help make the impressionable teenager into the all-powerful mob boss later known as Tony Soprano.Crime.Drama.Gandolfini, MichaelBernthal, JonFarmiga, VeraMagnussen, BillyStoll, CoreyNivola, AlessandroLiotta, RayMagaro, JohnOdom Jr., LeslieView cover arthttps://thumbnail.midwesttape.com/14589622_180.jpghttpsBR120.991admin 0 -338 2022-06-17 10:33:24-05 2022-06-17 10:33:43.513113-05 import 01711ngm a22004692a 4500MWT14623730MWT20220207080232.1vd cvaizs220207s2021 xxu157 e vleng dMidwest$29.9978693688141714623730Marvel's Eternals[videorecording].Widescreen ed.[United States] :Marvel Entertainment,2022.1 videodisc (ca. 157 min.) :sd., col. ;4 3/4 in.02/15/2022Angelina Jolie, Gemma Chan, Richard Madden, Kumail Nanjiani, Lauren Ridloff, Brian Tyree Henry, Salma Hayek, Lia Mchugh, Don Lee, Kit Harrington.Director, Chloe Zhao.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Following the events of Avengers: Endgame, an unexpected tragedy forces a group of ancient aliens who have been living on Earth in secret for thousands of years out of the shadows to reunite against mankind's most ancient enemy, the Deviants.Action / Adventure.Fantasy.Sci-Fi.Action.Jolie, AngelinaChan, GemmaMadden, RichardNanjiani, KumailRidloff, LaurenHenry, Brian TyreeHayek, SalmaMchugh, LiaLee, DonHarrington, KitView cover arthttps://thumbnail.midwesttape.com/14623730_180.jpghttpsBR120.991admin 0 -339 2022-06-17 10:33:24-05 2022-06-17 10:33:43.922167-05 import 01388ngm a22003132a 4500MWT14774891MWT20220207080232.1vd cvaizs220207s2022 xxu060 e vleng dMidwest$18.9981007254835114774891The Marvelous Mrs Shenkman[videorecording].Widescreen ed.[United States] :Leomark Studios,2022.1 videodisc (ca. 60 min.) :sd., col. ;4 3/4 in.02/01/2022April Hava Shenkman.Director, April Hava Shenkman, Jared Whitham.DVD.English audio.April Hava Shenkman is flocked out of her mind, pregnant and turning 40 what's she going to do? Throw herself a baby shower with puppets! This quirky comedy special is a heart to heart intimate glimpse into the psyche of an absurdist Comedienne answering the "last call" to become a Mommy. Exploring the identity crisis of an Artist turing into a Mother, and what it's like having a baby at 40. A celebration of life and art in a rare collaboration with the world famous Bob Baker Marionettes.Comedy.Comedy.Shenkman, April HavaView cover arthttps://thumbnail.midwesttape.com/14774891_180.jpghttpsBR113.291admin 0 -340 2022-06-17 10:33:24-05 2022-06-17 10:33:44.266251-05 import 01432ngm a22003852a 4500MWT14589628MWT20220207080232.1vd cvaizs220207s2021 xxu111 e vleng dMidwest$23.9984350103719514589628Mass[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 111 min.) :sd., col. ;4 3/4 in.01/11/2022Breeda Wool, Martha Plimpton, Jason Isaacs, Reed Birney, Ann Dowd.Director, Fran Kranz.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Years after an unspeakable tragedy tore their lives apart, two sets of parents agree to talk privately in an attempt to move forward. In Fran Kranz's writing and directing debut, he thoughtfully examines their journey of grief, anger, and acceptance by coming face-to-face with the ones who have been left behind.Drama.Drama.Wool, BreedaPlimpton, MarthaIsaacs, JasonBirney, ReedDowd, AnnView cover arthttps://thumbnail.midwesttape.com/14589628_180.jpghttpsBR116.791admin 0 -341 2022-06-17 10:33:24-05 2022-06-17 10:33:44.622045-05 import 01647ngm a22004332a 4500MWT14700538MWT20220207080232.1vd cvaizs220207s2021 xxu148 e vleng dMidwest$34.9988392974113714700538The Matrix Resurrections[videorecording].Widescreen ed.[United States] :Warner Bros.,2022.1 videodisc (ca. 148 min.) :sd., col. ;4 3/4 in.03/08/2022Keanu Reeves, Christina Ricci, Carrie-Anne Moss, Jonathan Groff, Priyanka Chopra Jonas, Neil Patrick Harris, Jada Pinkett Smith, Yahya Abdul-Mateen Ii.Director, Lana Wachowski.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Return to a world of two realities: one, everyday life; the other, what lies behind it. To find out if his reality is a construct, to truly know himself, Mr. Anderson will have to choose to follow the white rabbit once more.Action / Adventure.Sci-Fi.Sci-Fi.Reeves, KeanuRicci, ChristinaMoss, Carrie-AnneGroff, JonathanJonas, Priyanka ChopraHarris, Neil PatrickPinkett Smith, JadaAbdul-Mateen Ii, YahyaView cover arthttps://thumbnail.midwesttape.com/14700538_180.jpghttpsBR124.491admin 0 -342 2022-06-17 10:33:24-05 2022-06-17 10:33:45.001493-05 import 01227ngm a22003732a 4500MWT13900922MWT20220207080232.1vd cvaizs220207s2021 xxu106 e vleng dMidwest$27.9901438114260013900922Mlk/Fbi[videorecording].Widescreen ed.[United States] :Ifc Films,2022.1 videodisc (ca. 106 min.) :sd., col. ;4 3/4 in.01/11/2022James Comey, Beverly Gage, Martin Luther King Jr..Director, Sam Pollard.DVD.English audio.English subtitles for the deaf and hard of hearing.MWT rating: NR.Based on newly declassified files, Sam Pollard's resonant film explores the US government's surveillance and harassment of Martin Luther King, Jr.Documentary.Documentary.Comey, JamesGage, BeverlyKing Jr., Martin LutherGarrow, David J.View cover arthttps://thumbnail.midwesttape.com/13900922_180.jpghttpsBR119.591admin 0 -343 2022-06-17 10:33:24-05 2022-06-17 10:33:45.341838-05 import 01341nim a22003252a 4500MWT14307028MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094041759 :$34.99978109404175914307028Dejonauthor.My Skin is My Sin[sound recording] /Dejon.Unabridged.[United States] :Blackstone Audio, Inc.,2021.7 sound discs (526 min.) :digital ;4 3/4 in. Compact disc.05/25/2021Read by D. S. Vanniel.After being sexually assaulted by her aunt&#x2019;s bi-sexual girlfriend, Pumpkin, a pretty and naïve teenage girl fresh out of high school gets hooked up with the stunning, beautiful, and very manipulative stripper “Goldmine.” Goldmine wastes no time introducing Pumpkin into Atlanta&#x2019;s cold, seedy underworld of quick money, tarnished dreams, and exotic dancing where nothing is off limits and anything goes.Urban.Audiobooks.Fiction.Dejon, Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14307028_180.jpghttpsBR134.991admin 0 -344 2022-06-17 10:33:24-05 2022-06-17 10:33:45.686165-05 import 01194ngm a22003612a 4500MWT14137866MWT20220207080232.1vd cvaizs220207s2021 xxu104 e vleng dMidwest$14.9984350103558014137866The Nest[videorecording].Widescreen ed.[United States] :Distribution Solutions,2021.1 videodisc (ca. 104 min.) :sd., col. ;4 3/4 in.07/20/2021Dee Wallace, Sarah Navratil, Maple Suttles.Director, James Suttles.DVD.English audio.MWT rating: NR.A mother's reality wears down around her as she struggles to understand the intertwined web of her daughter's separation anxiety brought on by parasitic creatures within a stuffed bear.Suspense / Thriller.Horror.Horror.Wallace, DeeNavratil, SarahSuttles, MapleView cover arthttps://thumbnail.midwesttape.com/14137866_180.jpghttpsBR110.491admin 0 -345 2022-06-17 10:33:24-05 2022-06-17 10:33:46.038813-05 import 01827ngm a22004332a 4500MWT13900924MWT20220207080232.1vd cvaizs220207s2021 xxu115 e vleng dMidwest$19.9982666321845913900924No Man's Land[videorecording].Widescreen ed.[United States] :Shout! Factory,2021.1 videodisc (ca. 115 min.) :sd., col. ;4 3/4 in.07/13/2021Jake Allyn, Frank Grillo, Jorge A. Jimenez, Andie Macdowell, George Lopez, Alex Macnicoll, Esmeralda Pimentel.Director, Conor Allyn.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.A modern Western-inspired by the real-life 'no man's land' areas along the Texas-Mexico border. While out on a father-son border patrol, Jackson accidentally kills a Mexican immigrant boy. When Jackson's father tries taking the blame, Jackson flees south on horseback, becoming a gringo 'illegal alien' in Mexico. Chased by Texas Rangers and Mexican Federales, Jackson journeys across Mexico to seek forgiveness from the dead boy's father only to fall in love with the land he was taught to hate.Action / Adventure.Western.Suspense / Thriller.Western.Allyn, JakeGrillo, FrankJimenez, Jorge A.Macdowell, AndieLopez, GeorgeMacnicoll, AlexPimentel, EsmeraldaView cover arthttps://thumbnail.midwesttape.com/13900924_180.jpghttpsBR113.991admin 0 -346 2022-06-17 10:33:24-05 2022-06-17 10:33:46.426175-05 import 02059nim a22003852a 4500MWT14807874MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9780063260788 :$39.99978006326078814807874Foley, Lucyauthor.The Paris Apartment[sound recording] /Lucy Foley.Unabridged.[United States] :Harper Collins Publishers,2022.10 sound discs (750 min.) :digital ;4 3/4 in. Compact disc.02/22/2022Read by Clare Corbett, Daphne Kouma, Julia Winwood, Sope Dirisu, Sofia Zervudachi, Charlie Anson.Jess needs a fresh start. She's broke and alone, and she's just left her job under less than ideal circumstances. Her half-brother Ben didn't sound thrilled when she asked if she could crash with him for a bit, but he didn't say no, and surely everything will look better from Paris. Only when she shows up, to find a very nice apartment, (could Ben really have afforded this?) he's not there. The longer Ben stays missing, the more Jess starts to dig into her brother's situation, and the more questions she has. Ben's neighbors are an eclectic bunch, and not particularly friendly. Jess may have come to Paris to escape her past, but it's starting to look like it's Ben's future that's in question. The socialite. The nice guy. The alcoholic. The girl on the verge. The concierge. Everyone's a neighbor. Everyone's a suspect. And everyone knows something they're not telling.Women'S Fiction.Suspense / Thriller.Audiobooks.Fiction.Corbett, ClareKouma, DaphneWinwood, JuliaDirisu, SopeZervudachi, SofiaAnson, CharlieView cover arthttps://thumbnail.midwesttape.com/14807874_180.jpghttpsBR139.991admin 0 -347 2022-06-17 10:33:24-05 2022-06-17 10:33:46.81006-05 import 01371nim a22003132a 4500MWT14384953MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094043258 :$39.99978109404325814384953Hampton, Brendaauthor.A Plus Size Diva[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.8 sound discs (833 min.) :digital ;4 3/4 in. Compact disc.02/23/2021Read by D. S. Vanniel.At the age of forty, Desa Rae Jenkins may be classified as over the hill, but with voluptuous curves in all the right places, she attracts Roc Dawson, one of the sexiest men alive, who happens to be almost half her age. He excites her like no other man has, but from Roc&#x2019;s playa-hating uncle Ronnie to the baby-mama drama that comes to her doorstep, Desa Rae is forced to make a decision that could set her free from the man she&#x2019;s fallen in love with.Urban.Audiobooks.Fiction.Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14384953_180.jpghttpsBR139.991admin 0 -348 2022-06-17 10:33:24-05 2022-06-17 10:33:47.157948-05 import 01336ngm a22004092a 4500MWT14132425MWT20220207080232.1vd cvaizs220207s2021 xxu106 e vleng dMidwest$22.9919132920125114132425Profile[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 106 min.) :sd., col. ;4 3/4 in.08/10/2021Valene Kane, Shazad Latif, Christine Adams, Amir Rahimzadeh, Morgan Watkins, Emma Cater.Director, Timur Bekmambetov.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.An undercover British journalist risks her life by infiltrating militant extremist groups online.Suspense / Thriller.Suspense.Kane, ValeneLatif, ShazadAdams, ChristineRahimzadeh, AmirWatkins, MorganCater, EmmaErelle, AnnaView cover arthttps://thumbnail.midwesttape.com/14132425_180.jpghttpsBR116.091admin 0 -349 2022-06-17 10:33:24-05 2022-06-17 10:33:47.510109-05 import 02107ngm a22004932a 4500MWT14623697MWT20220207080232.1vd cvaizs220207s2021 xxu102 j vleng dMidwest$29.9978693689385414623697Encanto[videorecording].Widescreen ed.[United States] :Disney,2022.1 videodisc (ca. 102 min.) :sd., col. ;4 3/4 in.02/08/2022Stephanie Beatriz, María Cecilia Botero, Wilmer Valderrama, John Leguizamo, Adassa, Diane Guerrero, Mauro Castillo, Angie Cepeda, Jessica Darrow, Rhenzy Feliz, Carolina Gaitán, Ravi Cabot-Conyers.Director, Byron Howard, Jared Bush, Charise Castro Smith.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.The Madrigals live hidden in the mountains of Colombia, in a magical house, in a vibrant town, in a wondrous, charmed place called an Encanto. The magic of the Encanto has blessed every child in the family with a unique gift, from super strength to the power to heal - every child except one, Mirabel. But when she discovers that the magic surrounding the Encanto is in danger, Mirabel decides that she, the only ordinary Madrigal, might just be her exceptional family's last hope.Children's films.Family Films.Animated.Children's.Beatriz, StephanieBotero, María CeciliaValderrama, WilmerLeguizamo, JohnAdassa, Guerrero, DianeCastillo, MauroCepeda, AngieDarrow, JessicaFeliz, RhenzyGaitán, CarolinaCabot-Conyers, RaviView cover arthttps://thumbnail.midwesttape.com/14623697_180.jpghttpsBR120.991admin 0 -350 2022-06-17 10:33:24-05 2022-06-17 10:33:47.917633-05 import 01410ngm a22004332a 4500MWT14768176MWT20220207080232.1vd cvaizs220207s2022 xxu095 e vleng dMidwest$29.9919132921748114768176Redeeming Love[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 95 min.) :sd., col. ;4 3/4 in.03/08/2022Abigail Cowen, Tom Lewis, Famke Janssen, Logan Marshall-Green, Nina Dobrev, Livi Birch, Eric Dane, Brandon Auret.Director, D.J. Caruso.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Sold into prostitution as a child, Angel knows nothing but betrayal. Can her heart ever be mended?Drama.Drama.Rivers, FrancineCowen, AbigailLewis, TomJanssen, FamkeMarshall-Green, LoganDobrev, NinaBirch, LiviDane, EricAuret, BrandonView cover arthttps://thumbnail.midwesttape.com/14768176_180.jpghttpsBR120.991admin 0 -351 2022-06-17 10:33:24-05 2022-06-17 10:33:48.309587-05 import 01550ngm a22004572a 4500MWT14623694MWT20220207080232.1vd cvaizs220207s2021 xxu107 e vleng dMidwest$30.9904339657503514623694Resident Evil: Welcome to Raccoon City[videorecording].Widescreen ed.[United States] :Columbia (Usa),2022.1 videodisc (ca. 107 min.) :sd., col. ;4 3/4 in.02/08/2022Kaya Scodelario, Robbie Amell, Hannah John-Kamen, Neal Mcdonough, Tom Hopper, Donal Logue, Avan Jogia, Marina Mazepa.Director, Johannes Roberts.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.Set in 1998, this origin story explores the secrets of the mysterious Spencer Mansion and the ill-fated Raccoon City.Canadian.Action / Adventure.Mystery.Horror.Horror.Scodelario, KayaAmell, RobbieJohn-Kamen, HannahMcdonough, NealHopper, TomLogue, DonalJogia, AvanMazepa, MarinaView cover arthttps://thumbnail.midwesttape.com/14623694_180.jpghttpsBR121.691admin 0 -352 2022-06-17 10:33:24-05 2022-06-17 10:33:48.69808-05 import 01468ngm a22004452a 4500MWT14409619MWT20220207080232.1vd cvaizs220207s2021 xxu145 e vleng dMidwest$29.9919132912759914409619Respect[videorecording].Widescreen ed.[United States] :Universal,2021.1 videodisc (ca. 145 min.) :sd., col. ;4 3/4 in.11/09/2021Jennifer Hudson, Forest Whitaker, Audra Mcdonald, Saycon Sengbloh, Hailey Kilgore, Brenda Nicole Moorer, Marlon Wayans, Marc Maron, Tituss Burgess, Kimberly Scott.Director, Liesl Tommy.DVD.English, French audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.The life story of legendary R&B singer Aretha Franklin.Drama.Drama.Hudson, JenniferWhitaker, ForestMcdonald, AudraSengbloh, SayconKilgore, HaileyMoorer, Brenda NicoleWayans, MarlonMaron, MarcBurgess, TitussScott, KimberlyView cover arthttps://thumbnail.midwesttape.com/14409619_180.jpghttpsBR120.991admin 0 -353 2022-06-17 10:33:24-05 2022-06-17 10:33:49.090099-05 import 01906ngm a22005292a 4500MWT14700534MWT20220207080232.1vd cvaizs220207s2021 xxu110 j vleng dMidwest$34.9919132915281214700534Sing 2[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 110 min.) :sd., col. ;4 3/4 in.03/29/2022Matthew Mcconaughey, Taron Egerton, Tori Kelly, Reese Witherspoon, Nick Kroll, Scarlett Johansson, Bobby Cannavale, Halsey, Bono, Eric Andre, Pharrell Williams, Letitia Wright, Chelsea Peretti, Jennifer Saunders, Peter Serafinowicz.Director, Garth Jennings.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG.The ever-optimistic koala Buster Moon and his all-star cast of performers prepare to launch their most dazzling stage extravaganza yet, all in the glittering entertainment capital of the world.Children's films.Family Films.Animated.Children's.Mcconaughey, MatthewEgerton, TaronKelly, ToriWitherspoon, ReeseKroll, NickJohansson, ScarlettCannavale, BobbyHalsey, Bono, Andre, EricWilliams, PharrellWright, LetitiaPeretti, ChelseaSaunders, JenniferSerafinowicz, PeterView cover arthttps://thumbnail.midwesttape.com/14700534_180.jpghttpsBR124.491admin 0 -354 2022-06-17 10:33:24-05 2022-06-17 10:33:49.501687-05 import 01810ngm a22004812a 4500MWT14003550MWT20220207080232.1vd cvaizs220207s2021 xxu099 e vleng dMidwest$19.9982666321987614003550Six Minutes to Midnight[videorecording].Widescreen ed.[United States] :Shout! Factory,2021.1 videodisc (ca. 99 min.) :sd., col. ;4 3/4 in.10/05/2021Judi Dench, James D'Arcy, Jim Broadbent, Eddie Izzard, Kevin Eldon, David Schofield, Carla Juri, Nigel Lindsay, Maria Dragus, Joe Bone, Celyn Jones, Rupert Holliday-Evans.Director, Andy Goddard.DVD.English audio; Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Summer 1939. Influential families in Nazi Germany have sent their daughters to a finishing school in an English seaside town to learn the language and be ambassadors for a future looking National Socialist. A teacher there sees what is coming and is trying to raise the alarm. But the authorities believe he is the problem.War.Drama.Drama.Dench, JudiD'Arcy, JamesBroadbent, JimIzzard, EddieEldon, KevinSchofield, DavidJuri, CarlaLindsay, NigelDragus, MariaBone, JoeJones, CelynHolliday-Evans, RupertView cover arthttps://thumbnail.midwesttape.com/14003550_180.jpghttpsBR113.991admin 0 -355 2022-06-17 10:33:24-05 2022-06-17 10:33:49.898164-05 import 01409nim a22003252a 4500MWT14232663MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094039350 :$34.99978109403935014232663Hampton, Brendaauthor.Slick[sound recording] /Brenda Hampton.Unabridged.[United States] :Blackstone Audio, Inc.,2021.8 sound discs (472 min.) :digital ;4 3/4 in. Compact disc.04/20/2021Read by D. S. Vanniel.Lifelong friends Dana and Sylvia share their dirty secrets, but Sylvia is tired of covering up Dana&#x2019;s ongoing affair with Lewis. Sylvia hates the man her friend is cheating with. In addition to sexing Dana, Lewis believes that he can have any woman he wants, including Sylvia. After several sexual advances from Lewis, she lets him know that the man she truly wants is her handsome boss, Jonathan Taylor. But Jonathan is clueless about what is happening behind closed doors.Women'S Fiction.Urban.Audiobooks.Fiction.Vanniel, D. S.View cover arthttps://thumbnail.midwesttape.com/14232663_180.jpghttpsBR134.991admin 0 -356 2022-06-17 10:33:24-05 2022-06-17 10:33:50.250148-05 import 01529ngm a22003852a 4500MWT14623752MWT20220207080232.1vd cvaizs220207s2021 xxu117 e vleng dMidwest$22.9984350103693814623752Spencer[videorecording].Widescreen ed.[United States] :Universal,2022.1 videodisc (ca. 117 min.) :sd., col. ;4 3/4 in.01/11/2022Kristen Stewart, Jack Farthing, Sally Hawkins, Timothy Spall, Sean Harris.Director, Pablo Larrain.DVD.English audio.English subtitles for the deaf and hard of hearing.MPAA rating: R.The marriage of Princess Diana and Prince Charles has long since grown cold. Though rumors of affairs and a divorce abound, peace is ordained for the Christmas festivities at the Queen's Sandringham Estate. There's eating and drinking, shooting and hunting. Diana knows the game. But this year, things will be profoundly different. This is an imagining of what might have happened during those few fateful days.Drama.Drama.Stewart, KristenFarthing, JackHawkins, SallySpall, TimothyHarris, SeanView cover arthttps://thumbnail.midwesttape.com/14623752_180.jpghttpsBR116.091admin 0 -357 2022-06-17 10:33:24-05 2022-06-17 10:33:50.610075-05 import 02071ngm a22005052a 4500MWT14700527MWT20220207080232.1vd cvaizs220207s2021 xxu000 e vleng dMidwest$29.9914700527Spider-Man: No Way Home[videorecording].Widescreen ed.[United States] :Disney,2022.1 videodisc :sd., col. ;4 3/4 in.04/26/2022Tom Holland, Marisa Tomei, Zendaya, Benedict Cumberbatch, Jon Favreau, Willem Dafoe, Angourie Rice, J.K. Simmons, Benedict Wong, Paula Newsome, Alfred Molina, Jamie Foxx, Jacob Batalon, Martin Starr.Director, Jon Watts.DVD.English audio.MPAA rating: PG-13.For the first time in the cinematic history of Spider-Man, our friendly neighborhood hero's identity is revealed, bringing his Super Hero responsibilities into conflict with his normal life and putting those he cares about most at risk. When he enlists Doctor Strange's help to restore his secret, the spell tears a hole in their world, releasing the most powerful villains who have ever fought a Spider-Man in any universe. Now, Peter will have to overcome his greatest challenge yet, which will not only forever alter his own future but the future of the Multiverse.Action / Adventure.Fantasy.Sci-Fi.Action.Holland, TomLee, StanTomei, MarisaZendaya, Cumberbatch, BenedictFavreau, JonDafoe, WillemRice, AngourieSimmons, J.K.Wong, BenedictNewsome, PaulaMolina, AlfredFoxx, JamieBatalon, JacobStarr, MartinView cover arthttps://thumbnail.midwesttape.com/14700527_180.jpghttpsBR120.991admin 0 -358 2022-06-17 10:33:24-05 2022-06-17 10:33:51.00996-05 import 01953nim a22003252a 4500MWT14185365MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9781549129018 :$39.99978154912901814185365Patterson, Jamesauthor.Steal[sound recording] /James Patterson.Unabridged.[United States] :Hachette Audio,2022.7 sound discs (495 min.) :digital ;4 3/4 in. Compact disc.04/05/2022Read by Jay Ben Markson.Imagine everyone's surprise when Carter von Oehson, a sophomore in Dr. Dylan Reinhart's Abnormal Psychology class, posts on Instagram that he plans to kill himself. 24 hours later and still no one has seen him. Release the hounds.&#x00A0;A massive search ensues. But when Carter's sailboat rolls in with the tide without him or anyone else on it, the worst seems to be confirmed. He really did it. Or did he?&#x00A0;The one person convinced he's still alive is his father, Mathias von Oehson, founder and CEO of the world's largest hedge fund. But what Mathias knows and how he knows it would ultimately reveal a secret so damaging that it would be as if he were committing suicide himself. There's no way he can go to the police. But there's still someone he can turn to. Dylan now finds himself wrapped up in multi-million-dollar secrets and danger and it's going to take every bit of his wit, and the brilliant and headstrong NYPD Detective, Elizabeth Needham, to stay ahead of both his enemy, and his employer.Suspense / Thriller.Audiobooks.Fiction.Roughan, HowardMarkson, Jay BenView cover arthttps://thumbnail.midwesttape.com/14185365_180.jpghttpsBR139.991admin 0 -359 2022-06-17 10:33:24-05 2022-06-17 10:33:51.370053-05 import 01376ngm a22004092a 4500MWT14327178MWT20220207080232.1vd cvaizs220207s2021 xxu139 e vleng dMidwest$19.9919132920790114327178Stillwater[videorecording].Widescreen ed.[United States] :Focus Features,2021.1 videodisc (ca. 139 min.) :sd., col. ;4 3/4 in.10/26/2021Matt Damon, Abigail Breslin, Camille Cottin, Deanna Dunagan, Ginifer Ree, Lisandro Boccacci.Director, Tom Mccarthy.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: R.A father travels from Oklahoma to France to help his estranged daughter, who is in prison for a murder she claims she didn't commit.Crime.Drama.Drama.Damon, MattBreslin, AbigailCottin, CamilleDunagan, DeannaRee, GiniferBoccacci, LisandroView cover arthttps://thumbnail.midwesttape.com/14327178_180.jpghttpsBR113.991admin 0 -360 2022-06-17 10:33:24-05 2022-06-17 10:33:51.721913-05 import 02190ngm a22004212a 4500MWT14774850MWT20220207080232.1vd cvaizs220207s2021 xxu118 e vleng dMidwest$20.9978693689416514774850Summer of Soul[videorecording].Widescreen ed.[United States] :Searchlight Pictures,2022.1 videodisc (ca. 118 min.) :sd., col. ;4 3/4 in.02/08/2022Stevie Wonder, Nina Simone, Sly & The Family Stone, Gladys Knight & The Pips, Mahalia Jackson, B.B. King, The 5th Dimension.Director, Ahmir 'Questlove' Thompson.DVD.English audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.In his acclaimed debut as a filmmaker, Ahmir 'Questlove' Thompson presents a powerful and transporting documentary, part music film, part historical record, created around an epic event that celebrated Black history, culture, and fashion. Over the course of six weeks in the summer of 1969, just one hundred miles south of Woodstock, The Harlem Cultural Festival was filmed in Mount Morris Park (now Marcus Garvey Park). The footage was largely forgotten, until now. This documentary shines a light on the importance of history to our spiritual well-being and stands as a testament to the healing power of music during times of unrest, both past, and present. The feature includes concert performances by Stevie Wonder, Nina Simone, Sly & the Family Stone, Gladys Knight and the Pips, Mahalia Jackson, B.B. King, The 5th Dimension, and more.Music.Documentary.Documentary.Wonder, StevieSimone, NinaSly & The Family Stone, Gladys Knight & The Pips, Jackson, MahaliaKing, B.B.5th Dimension, TheView cover arthttps://thumbnail.midwesttape.com/14774850_180.jpghttpsBR114.691admin 0 -361 2022-06-17 10:33:24-05 2022-06-17 10:33:52.114324-05 import 01159nim a22003132a 4500MWT14307016MWT20220207080232.1sd fmngnnmmned220207s2021 xxu e eng dMidwest9781094041254 :$32.99978109404125414307016Parks, Electa Romeauthor.True Confessions[sound recording] /Electa Rome Parks.Unabridged.[United States] :Blackstone Audio, Inc.,2021.6 sound discs (438 min.) :digital ;4 3/4 in. Compact disc.05/25/2021Read by Samantha Moon.Twenty-eight year old Kennedy Logan is gorgeous, educated, talented, and in love. Unfortunately, Drake Collins has other ideas about the true state of their relationship. Kennedy hopes to turn him around; Drake just wants to turn her out sexually.Urban.Audiobooks.Fiction.Moon, SamanthaView cover arthttps://thumbnail.midwesttape.com/14307016_180.jpghttpsBR132.991admin 0 -362 2022-06-17 10:33:24-05 2022-06-17 10:33:52.457896-05 import 01724ngm a22004092a 4500MWT14303521MWT20220207080232.1vd cvaizs220207s2021 xxu109 e vleng dMidwest$12.9903242935340514303521Under the Stadium Lights[videorecording].Widescreen ed.[United States] :Paramount,2021.1 videodisc (ca. 109 min.) :sd., col. ;4 3/4 in.08/03/2021Milo Gibson, Laurence Fishburne, Abigail Hawk, Acoryé White, Noel Gugliemi, Carter Redwood, Glenn Morshower.Director, Todd Randall.DVD.English audio; English, French, Spanish subtitles.Closed-captioned.MPAA rating: PG-13.After a crushing defeat ended their prior season, everyone counted the Abilene Eagles out of title contention. Facing doubts and personal challenges both on and off the field, it will take the guidance of their team chaplain and a surrogate father figure for them to realize what they can achieve when they stand united as a team. In this uplifting underdog story, the Abilene Eagles will once again soar in an incredible comeback that will be forever remembered in sports history.Drama.Sports.Gibson, MiloFishburne, LaurenceHawk, AbigailWhite, AcoryéGugliemi, NoelRedwood, CarterMorshower, GlennView cover arthttps://thumbnail.midwesttape.com/14303521_180.jpghttpsBR19.091admin 0 -363 2022-06-17 10:33:24-05 2022-06-17 10:33:52.83807-05 import 01296nim a22003132a 4500MWT14570514MWT20220207080232.1sd fmngnnmmned220207s2022 xxu e eng dMidwest9780063209824 :$44.99978006320982414570514Raskin, Jamieauthor.Unthinkable[sound recording] /Jamie Raskin.Unabridged.[United States] :Harper Collins Publishers,2022.12 sound discs (915 min.) :digital ;4 3/4 in. Compact disc.01/04/2022Read by Jamie Raskin.In this searing memoir, Congressman Jamie Raskin tells the story of the forty-five days at the start of 2021 that permanently changed his life, and his family's, as he confronted the painful loss of his son to suicide, lived through the violent insurrection in our nation's Capitol, and led the impeachment effort to hold President Trump accountable for inciting the political violence.Political Science.Biography.Audiobooks.Biography.View cover arthttps://thumbnail.midwesttape.com/14570514_180.jpghttpsBR144.991admin 0 -364 2022-06-17 10:33:24-05 2022-06-17 10:33:53.186164-05 import 01542ngm a22004212a 4500MWT14588497MWT20220207080232.1vd cvaizs220207s2021 xxu097 e vleng dMidwest$30.9904339657059714588497Venom: Let There be Carnage[videorecording].Widescreen ed.[United States] :Sony Pictures Home Entertainment,2021.1 videodisc (ca. 97 min.) :sd., col. ;4 3/4 in.12/14/2021Tom Hardy, Michelle Williams, Naomie Harris, Reid Scott, Stephen Graham, Woody Harrelson.Director, Andy Serkis.DVD.English, French, Spanish audio; English, French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Eddie Brock attempts to reignite his career by interviewing serial killer Cletus Kasady, who becomes the host of the symbiote Carnage and escapes prison after a failed execution. Includes French audio description track.Action / Adventure.Horror.Sci-Fi.Action.Hardy, TomWilliams, MichelleHarris, NaomieScott, ReidGraham, StephenHarrelson, WoodyView cover arthttps://thumbnail.midwesttape.com/14588497_180.jpghttpsBR121.691admin 0 -365 2022-06-17 10:33:24-05 2022-06-17 10:33:53.553705-05 import 01592ngm a22004452a 4500MWT14700524MWT20220207080232.1vd cvaizs220207s2021 xxu156 e vleng dMidwest$29.9978693688121914700524West Side Story[videorecording].Widescreen ed.[United States] :20th Century Fox,2022.1 videodisc (ca. 156 min.) :sd., col. ;4 3/4 in.03/15/2022Ansel Elgort, Ariana Debose, Rachel Zegler, David Alvarez, Rita Moreno, Brian D'Arcy James, Corey Stoll, Mike Faist.Director, Steven Spielberg.DVD.English, French, Spanish audio; French, Spanish subtitles.English subtitles for the deaf and hard of hearing.MPAA rating: PG-13.Directed by Academy Award winner Steven Spielberg, from a screenplay by Pulitzer Prize and Tony Award winner Tony Kushner, this musical tells the classic tale of fierce rivalries and young love in 1957 New York City.Musical.Drama.Musical.Laurents, ArthurElgort, AnselDebose, ArianaZegler, RachelAlvarez, DavidMoreno, RitaJames, Brian D'ArcyStoll, CoreyFaist, MikeView cover arthttps://thumbnail.midwesttape.com/14700524_180.jpghttpsBR120.991admin 0 -\. - -\echo sequence update column: id -SELECT SETVAL('vandelay.queued_record_id_seq', (SELECT MAX(id) FROM vandelay.queued_record)); diff --git a/build/tools/make_release b/build/tools/make_release index 15402386d8..9d1ae88b41 100755 --- a/build/tools/make_release +++ b/build/tools/make_release @@ -19,12 +19,16 @@ UPGRADE_PREVIEW=NO # -r SKIP_I18N=NO # -i BUILD_BROWSER_CLIENT=NO # -c SKIP_XUL=NO # -x +PG_HOST=NONE # -H +PG_USER=NONE # -U +PG_PASS=NONE # -P +PG_PORT=NONE # -O # path to OpenSRF libraries [ "$(which osrf_config)" ] && OSRF_JS_PATH="$(osrf_config --libdir)/javascript"; -while getopts ":hv:f:F:nptbrij:cx" opt; do +while getopts ":hv:f:F:nptbrij:cxH:D:U:P:O:" opt; do case $opt in v) VERSION=$OPTARG @@ -63,6 +67,18 @@ while getopts ":hv:f:F:nptbrij:cx" opt; do x) SKIP_XUL=YES ;; + H) + PG_HOST="$OPTARG" + ;; + U) + PG_USER="$OPTARG" + ;; + P) + PG_PASS="$OPTARG" + ;; + O) + PG_PORT="$OPTARG" + ;; \?) echo "Invalid Option: -$OPTARG" exit 1 @@ -76,6 +92,8 @@ while getopts ":hv:f:F:nptbrij:cx" opt; do echo " VERSION is auto-detected by default and is based on the currently checked out branch." echo " PREV_BRANCH is auto-detected by default but that isn't reliable. Include remote name!" echo " PREV_VERSION Is auto-detected by default and is based on the PREV_BRANCH's name." + echo " Postgres credentials are required if you want to upgrade the enhanced concerto dataset." + echo " The provided PG credentials needs to have permissions to create databases. All PG permissions are required." echo " -n specifies that you don't want an upgrade script to be auto-generated." echo " -p specifies that this is a preview build." echo " -t turns on tag only mode." @@ -85,6 +103,11 @@ while getopts ":hv:f:F:nptbrij:cx" opt; do echo " -j opensrf javascript library path. If osrf_config is found, the value derived from osrf_config --libdir." echo " -c build the browser client; requires nodejs" echo " -x skip building the XUL client" + echo " -H Postgres [H]ostname" + echo " -D Postgres [D]atabase name" + echo " -U Postgres [U]sername" + echo " -P Postgres [P]assword" + echo " -O Postgres p[O]rt" echo " NOTE: -t and -b override PREV_BRANCH/PREV_VERSION, but -b overrides -t." exit -1 ;; @@ -296,6 +319,25 @@ if [ "$PREV_BRANCH" != "PACKAGE" ]; then COMMIT_MESSAGE="Bumping version numbers, adding Upgrade Script and Changelog" fi git commit -asm "$COMMIT_MESSAGE" + if [ "$PG_HOST" != "NONE" ]; then + echo "Attempting auto-upgrade for Enhanced Concerto Dataset" + $GIT_ABS/Open-ILS/src/support-scripts/make_concerto_from_evergreen_db.pl \ + --db-host "$PG_HOST" --db-user "$PG_USER" --db-pass "$PG_PASS" --db-port "$PG_PORT" \ + --output-folder "$GIT_ABS/Open-ILS/tests/datasets/sql/concerto_enhanced" \ + --evergreen-repo "$GIT_ABS" \ + --perform-upgrade \ + --non-interactive + + if [ $? -ne 0 ]; then + echo "Failed to auto-upgrade the Enhanced Concerto Dataset" + echo "Proceeding without it" + read -p "Press [Enter] key to continue" + else + echo "Committing Enhanced Concerto Dataset to git" + COMMIT_MESSAGE="Upgrade Enhanced Concerto Dataset" + git commit -asm "$COMMIT_MESSAGE" + fi + fi fi echo "Building release dump" diff --git a/docs/modules/development/pages/support_scripts.adoc b/docs/modules/development/pages/support_scripts.adoc index 8cbfdcf19e..09c2591e4a 100644 --- a/docs/modules/development/pages/support_scripts.adoc +++ b/docs/modules/development/pages/support_scripts.adoc @@ -100,120 +100,114 @@ Here is how the matching works: [#make_concerto_from_evergreen_db] -== make_concerto_from_evergreen_db.pl: Generating Evergreen enhanced datasets +== make_concerto_from_evergreen_db.pl: Generating Evergreen enhanced datasets == This script makes it possible to continue to improve/maintain the Evergreen -enhanced dataset. This script requires two databases. One database that is -created with only Evergreen's seed data. And another one that contains the -intended dataset for the enhanced concerto data. +enhanced dataset. This script requires access to a Postgres database. It will +automate the process of making the enhanced dataset match the current branch of +Evergreen. You need to provide the login credentials to the database as well as +a path to the Evergreen repository where you're currently on the intended branch. -=== Setup your server environment === +=== Generate new dataset from existing DB === -==== Creating the non-seed database ==== - -[NOTE] -Follow the standard PostgreSQL user creation steps from Evergreen's installation -instructions. +This command will produce new output sql from an already-existing database. +It requires that you've also pre-created a PG database representing the "seed" +database. The seed database is an Evergreen database created without data but +from the branch of Evergreen that matches the dataset's branch. [source,bash] ---- -perl Open-ILS/src/support-scripts/eg_db_config \ - --service all --create-database --create-schema \ - --user evergreen --password evergreen --hostname 127.0.0.1 --port 5432 \ - --database ref_db --admin-user admin --admin-pass demo123 +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--db-name eg_enhanced \ +--output-folder output \ +--seed-db-name seed_from_1326 \ +--evergreen-repo /home/opensrf/repos/Evergreen ---- -==== Creating the database containing the enhanced dataset ==== - -This will be the database containing "the" data that will ultimately be -generated. In this example, we'll use the concerto dataset +If you don't have a seed database, you can omit it, and the software will make one +based upon the version we find in the file /config.upgrade_log.sql [source,bash] ---- -perl Open-ILS/src/support-scripts/eg_db_config \ - --service all --create-database --create-schema --load-all-sample \ - --user evergreen --password evergreen --hostname 127.0.0.1 --port 5432 \ - --database evergreen --admin-user admin --admin-pass demo123 +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--db-name eg_enhanced \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen ---- -[NOTE] -At this point, you can edit the Evergreen database via Staff client or direct DB. +Or, you can have this software make a seed DB, and that's all it will do. +The version of Evergreen it will use will be found in /config.upgrade_log.sql -=== Run the script === +[source,bash] +---- +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--create-seed-db +---- -Now that the database is ready to become the enhanced dataset, we need to make -sure that we have the database connection details setup in two files. By default, -this script will use /openils/conf/opensrf.xml for connection information to the -enhanced dataset database. You will also need to provide a link to another -XML file with the details on how to connect to the seed database. +Or, you can have this software make a seed DB based on your specified version of Evergreen -[NOTE] -Example of the minimum XML required for connection to the enhanced dataset database: - -opensrf.xml -[source,xml] +[source,bash] ---- - - - - - - - - evergreen - 127.0.0.1 - 5432 - evergreen - evergreen - - - - - - - +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--create-seed-db \ +--seed-from-egdbid 1350 ---- +=== Upgrade a previously-created dataset === -[NOTE] -Example of the minimum XML required for connection to the seed-only database: +Use this when cutting new releases of Evergreen and you want to include +the enhanced dataset to match. It will use the current git branch found in the provided path to the EG repo. -seedonly.xml -[source,xml] +[source,bash] ---- - - - - - - - - evergreen - 127.0.0.1 - 5432 - evergreen - ref_db - - - - - - - +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--perform-upgrade ---- -And we're all set. +=== Test the existing dataset === + +Create a new database and restore the dataset. +The software will first create a database that matches the version of Evergreen in the +dataset output folder, then restore the dataset into the newly created database. [source,bash] ---- -mkdir output -./make_concerto_from_evergreen_db.pl --xmlseed /openils/conf/seedonly.xml --output-folder output +./make_concerto_from_evergreen_db.pl \ +--db-host localhost \ +--db-user evergreen \ +--db-pass evergreen \ +--db-port 5432 \ +--output-folder output \ +--evergreen-repo /home/opensrf/repos/Evergreen \ +--test-restore ---- -This software needs to know what data is seed data and what data is not. It compares the data for each -table against the seed-only database and determines what needs to be outputted. - - [#marc_export] == marc_export: Exporting Bibliographic Records into MARC files == -- 2.11.0