Skip to content

Commit

Permalink
update and add 10 files
Browse files Browse the repository at this point in the history
  • Loading branch information
mnyrop committed Oct 8, 2024
1 parent 245e54c commit cc8e429
Show file tree
Hide file tree
Showing 8 changed files with 441 additions and 70 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GEM
tzinfo (~> 2.0, >= 2.0.5)
afm (0.2.2)
aws-eventstream (1.3.0)
aws-partitions (1.981.0)
aws-partitions (1.986.0)
aws-sdk-core (3.209.1)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
Expand All @@ -40,7 +40,7 @@ GEM
aws-sdk-kms (1.94.0)
aws-sdk-core (~> 3, >= 3.207.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.166.0)
aws-sdk-s3 (1.167.0)
aws-sdk-core (~> 3, >= 3.207.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
Expand Down
Empty file removed build/.gitkeep
Empty file.
144 changes: 112 additions & 32 deletions build/html/index.html

Large diffs are not rendered by default.

140 changes: 110 additions & 30 deletions build/html/index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
label: '2024-KC-NARA'
description: 'NARA A-Files for Migrants and the State Project'
attribution: ''
source_dir: '/Volumes/migrants_state/2024-KC-NARA/jpgs'
source_dir: '/Volumes/migrants_state/OG-2024-KC-NARA/jpgs'

presentation_api_url: 'https://mats-aperitiiif-presenation-api-store-v1.s3.us-east-1.amazonaws.com'
image_api_url: 'https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3'
Expand Down
12 changes: 7 additions & 5 deletions lib/split-pdfs-populate-csv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
require 'pdf-reader'
require 'vips'

pdf_dir = '/Volumes/migrants_state/2024-KC-NARA/pdfs'
data_dir = '/Volumes/migrants_state/2024-KC-NARA/jpgs'
pdf_dir = '/Volumes/migrants_state/OG-2024-KC-NARA/pdfs'
data_dir = '/Volumes/migrants_state/OG-2024-KC-NARA/jpgs'
pdfs = Dir.glob("#{pdf_dir}/*.pdf")
pdfs_count = pdfs.length

afiles_csv = './src/afiles.csv'
pages_csv = './src/pages.csv'


# write start of csvs
File.open(afiles_csv, 'w') do |file|
file.puts("id,label,og_pdf_id,page_count")
Expand All @@ -29,21 +30,22 @@
page_count = reader.page_count
og_pdf_id = File.basename(path, '.pdf')
a_number = og_pdf_id.sub('_redacted', '').sub('_withdrawal', '')
target_dir = "#{data_dir}/#{a_number}"
afile_data = [a_number,a_number,og_pdf_id,page_count]

File.open(afiles_csv, 'a') { |file| file.puts afile_data.join(',') }
FileUtils.mkdir_p "#{data_dir}/#{a_number}"
FileUtils.mkdir_p(target_dir)

(0..page_count - 1).each do |index|
page_number = index.to_s.rjust(4, "0")
doc_id = "#{a_number}_#{page_number}"
target = "#{data_dir}/#{a_number}/#{page_number}.jpg"
target = "#{target_dir}/#{page_number}.jpg"
extracted_text = reader.pages[index].text.to_s.gsub(/\R+/, "|").gsub('"', "'")
doc_data = [doc_id,doc_id,a_number,page_number,"\"#{extracted_text}\""]

File.open(pages_csv, "a") { |file| file.puts doc_data.join(',') }

return if File.exist? target
# return if File.exist? target

img = Vips::Image.pdfload path, page: index, n: 1, dpi: 300
img.jpegsave target
Expand Down
10 changes: 10 additions & 0 deletions src/afiles.csv
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
id,label,og_pdf_id,page_count
A10349777,A10349777,A10349777_redacted,12
A10564707,A10564707,A10564707,22
A11145060,A11145060,A11145060_withdrawal,32
A11695257,A11695257,A11695257_withdrawal,20
A1231114,A1231114,A1231114,166
A12507179,A12507179,A12507179_redacted,30
A17162650,A17162650,A17162650,31
A1730638,A1730638,A1730638,77
A17439501,A17439501,A17439501_redacted,19
A1866065,A1866065,A1866065,52
A2001556,A2001556,A2001556,56
A200620946,A200620946,A200620946,6
A200620954,A200620954,A200620954,7
A200621211,A200621211,A200621211,9
A20498138,A20498138,A20498138,2
A205067915,A205067915,A205067915,9
A205067917,A205067917,A205067917,9
A212535261,A212535261,A212535261,11
A2290620,A2290620,A2290620,51
A3035538,A3035538,A3035538,5
A30388146,A30388146,A30388146_redacted,22
A37126493,A37126493,A37126493_redacted,20
A3819203,A3819203,A3819203,68
A3834451,A3834451,A3834451,6
A3979866,A3979866,A3979866,67
Expand All @@ -29,3 +38,4 @@ A7142143,A7142143,A7142143,1
A7144110,A7144110,A7144110,3
A7144117,A7144117,A7144117,1
A7189367,A7189367,A7189367,4
A8859230,A8859230,A8859230_withdrawal,11
199 changes: 199 additions & 0 deletions src/pages.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
doc_id,label,a_number,page_number,extracted_text
A10349777_0000,A10349777_0000,A10349777,0000,"Screened by NARA, 7/24/2024"
A10349777_0001,A10349777_0001,A10349777,0001,"Screened by NARA, 7/24/2024"
A10349777_0002,A10349777_0002,A10349777,0002,"Screened by NARA, 7/24/2024"
A10349777_0003,A10349777_0003,A10349777,0003,"Screened by NARA, 7/24/2024"
A10349777_0004,A10349777_0004,A10349777,0004,"Screened by NARA, 7/24/2024"
A10349777_0005,A10349777_0005,A10349777,0005,""
A10349777_0006,A10349777_0006,A10349777,0006,"Screened by NARA, 7/24/2024"
A10349777_0007,A10349777_0007,A10349777,0007,"Screened by NARA, 7/24/2024"
A10349777_0008,A10349777_0008,A10349777,0008,"Screened by NARA, 7/24/2024"
A10349777_0009,A10349777_0009,A10349777,0009,"Screened by NARA, 7/24/2024"
A10349777_0010,A10349777_0010,A10349777,0010,"Screened by NARA, 7/24/2024"
A10349777_0011,A10349777_0011,A10349777,0011,"Screened by NARA, 7/24/2024"
A10564707_0000,A10564707_0000,A10564707,0000,""
A10564707_0001,A10564707_0001,A10564707,0001,""
A10564707_0002,A10564707_0002,A10564707,0002,""
Expand All @@ -21,6 +33,58 @@ A10564707_0018,A10564707_0018,A10564707,0018,""
A10564707_0019,A10564707_0019,A10564707,0019,""
A10564707_0020,A10564707_0020,A10564707,0020,""
A10564707_0021,A10564707_0021,A10564707,0021,""
A11145060_0000,A11145060_0000,A11145060,0000,""
A11145060_0001,A11145060_0001,A11145060,0001,""
A11145060_0002,A11145060_0002,A11145060,0002,""
A11145060_0003,A11145060_0003,A11145060,0003,""
A11145060_0004,A11145060_0004,A11145060,0004,""
A11145060_0005,A11145060_0005,A11145060,0005,""
A11145060_0006,A11145060_0006,A11145060,0006,""
A11145060_0007,A11145060_0007,A11145060,0007,""
A11145060_0008,A11145060_0008,A11145060,0008,""
A11145060_0009,A11145060_0009,A11145060,0009,""
A11145060_0010,A11145060_0010,A11145060,0010,""
A11145060_0011,A11145060_0011,A11145060,0011,""
A11145060_0012,A11145060_0012,A11145060,0012,""
A11145060_0013,A11145060_0013,A11145060,0013,""
A11145060_0014,A11145060_0014,A11145060,0014,""
A11145060_0015,A11145060_0015,A11145060,0015,""
A11145060_0016,A11145060_0016,A11145060,0016,""
A11145060_0017,A11145060_0017,A11145060,0017,""
A11145060_0018,A11145060_0018,A11145060,0018,""
A11145060_0019,A11145060_0019,A11145060,0019,""
A11145060_0020,A11145060_0020,A11145060,0020,""
A11145060_0021,A11145060_0021,A11145060,0021,""
A11145060_0022,A11145060_0022,A11145060,0022,"WITHDRAWN ITEM|RG: 566: Records of the US Citizenship and Immigration Service [USCIS]|Series: Alien Case Files|Folder: A11145060|Subject: IRS Tax Document (2 pages)|Reason for Withdrawal: Freedom of Information Act (FOIA) Exemption (b)(3) [Statute 26|U.S.C. 6103 – Income Tax Information]|Date of Review: 7/24/2024"
A11145060_0023,A11145060_0023,A11145060,0023,""
A11145060_0024,A11145060_0024,A11145060,0024,""
A11145060_0025,A11145060_0025,A11145060,0025,""
A11145060_0026,A11145060_0026,A11145060,0026,""
A11145060_0027,A11145060_0027,A11145060,0027,""
A11145060_0028,A11145060_0028,A11145060,0028,""
A11145060_0029,A11145060_0029,A11145060,0029,""
A11145060_0030,A11145060_0030,A11145060,0030,""
A11145060_0031,A11145060_0031,A11145060,0031,""
A11695257_0000,A11695257_0000,A11695257,0000,""
A11695257_0001,A11695257_0001,A11695257,0001,""
A11695257_0002,A11695257_0002,A11695257,0002,""
A11695257_0003,A11695257_0003,A11695257,0003,""
A11695257_0004,A11695257_0004,A11695257,0004,""
A11695257_0005,A11695257_0005,A11695257,0005,""
A11695257_0006,A11695257_0006,A11695257,0006,""
A11695257_0007,A11695257_0007,A11695257,0007,""
A11695257_0008,A11695257_0008,A11695257,0008,""
A11695257_0009,A11695257_0009,A11695257,0009,""
A11695257_0010,A11695257_0010,A11695257,0010,""
A11695257_0011,A11695257_0011,A11695257,0011,""
A11695257_0012,A11695257_0012,A11695257,0012,""
A11695257_0013,A11695257_0013,A11695257,0013,""
A11695257_0014,A11695257_0014,A11695257,0014,""
A11695257_0015,A11695257_0015,A11695257,0015,""
A11695257_0016,A11695257_0016,A11695257,0016,""
A11695257_0017,A11695257_0017,A11695257,0017,""
A11695257_0018,A11695257_0018,A11695257,0018,""
A11695257_0019,A11695257_0019,A11695257,0019,""
A1231114_0000,A1231114_0000,A1231114,0000,""
A1231114_0001,A1231114_0001,A1231114,0001,""
A1231114_0002,A1231114_0002,A1231114,0002,""
Expand Down Expand Up @@ -187,6 +251,67 @@ A1231114_0162,A1231114_0162,A1231114,0162,""
A1231114_0163,A1231114_0163,A1231114,0163,""
A1231114_0164,A1231114_0164,A1231114,0164,""
A1231114_0165,A1231114_0165,A1231114,0165,""
A12507179_0000,A12507179_0000,A12507179,0000,"Screened by NARA, 7/24/2024"
A12507179_0001,A12507179_0001,A12507179,0001,"Screened by NARA, 7/24/2024"
A12507179_0002,A12507179_0002,A12507179,0002,"Screened by NARA, 7/24/2024"
A12507179_0003,A12507179_0003,A12507179,0003,"Screened by NARA, 7/24/2024"
A12507179_0004,A12507179_0004,A12507179,0004,"Screened by NARA, 7/24/2024"
A12507179_0005,A12507179_0005,A12507179,0005,"Screened by NARA, 7/24/2024"
A12507179_0006,A12507179_0006,A12507179,0006,"Screened by NARA, 7/24/2024"
A12507179_0007,A12507179_0007,A12507179,0007,"Screened by NARA, 7/24/2024"
A12507179_0008,A12507179_0008,A12507179,0008,"Screened by NARA, 7/24/2024"
A12507179_0009,A12507179_0009,A12507179,0009,"Screened by NARA, 7/24/2024"
A12507179_0010,A12507179_0010,A12507179,0010,"Screened by NARA, 7/24/2024"
A12507179_0011,A12507179_0011,A12507179,0011,"Screened by NARA, 7/24/2024"
A12507179_0012,A12507179_0012,A12507179,0012,"Screened by NARA, 7/24/2024"
A12507179_0013,A12507179_0013,A12507179,0013,"Screened by NARA, 7/24/2024"
A12507179_0014,A12507179_0014,A12507179,0014,"Screened by NARA, 7/24/2024"
A12507179_0015,A12507179_0015,A12507179,0015,"Screened by NARA, 7/24/2024"
A12507179_0016,A12507179_0016,A12507179,0016,"Screened by NARA, 7/24/2024"
A12507179_0017,A12507179_0017,A12507179,0017,"Screened by NARA, 7/24/2024"
A12507179_0018,A12507179_0018,A12507179,0018,"Screened by NARA, 7/24/2024"
A12507179_0019,A12507179_0019,A12507179,0019,"Screened by NARA, 7/24/2024"
A12507179_0020,A12507179_0020,A12507179,0020,"Screened by NARA, 7/24/2024"
A12507179_0021,A12507179_0021,A12507179,0021,"Screened by NARA, 7/24/2024"
A12507179_0022,A12507179_0022,A12507179,0022,"Screened by NARA, 7/24/2024"
A12507179_0023,A12507179_0023,A12507179,0023,"Screened by NARA, 7/24/2024"
A12507179_0024,A12507179_0024,A12507179,0024,"Screened by NARA, 7/24/2024"
A12507179_0025,A12507179_0025,A12507179,0025,"Screened by NARA, 7/24/2024"
A12507179_0026,A12507179_0026,A12507179,0026,"Screened by NARA, 7/24/2024"
A12507179_0027,A12507179_0027,A12507179,0027,""
A12507179_0028,A12507179_0028,A12507179,0028,"Screened by NARA, 7/24/2024"
A12507179_0029,A12507179_0029,A12507179,0029,"Screened by NARA, 7/24/2024"
A17162650_0000,A17162650_0000,A17162650,0000,""
A17162650_0001,A17162650_0001,A17162650,0001,""
A17162650_0002,A17162650_0002,A17162650,0002,""
A17162650_0003,A17162650_0003,A17162650,0003,""
A17162650_0004,A17162650_0004,A17162650,0004,""
A17162650_0005,A17162650_0005,A17162650,0005,""
A17162650_0006,A17162650_0006,A17162650,0006,""
A17162650_0007,A17162650_0007,A17162650,0007,""
A17162650_0008,A17162650_0008,A17162650,0008,""
A17162650_0009,A17162650_0009,A17162650,0009,""
A17162650_0010,A17162650_0010,A17162650,0010,""
A17162650_0011,A17162650_0011,A17162650,0011,""
A17162650_0012,A17162650_0012,A17162650,0012,""
A17162650_0013,A17162650_0013,A17162650,0013,""
A17162650_0014,A17162650_0014,A17162650,0014,""
A17162650_0015,A17162650_0015,A17162650,0015,""
A17162650_0016,A17162650_0016,A17162650,0016,""
A17162650_0017,A17162650_0017,A17162650,0017,""
A17162650_0018,A17162650_0018,A17162650,0018,""
A17162650_0019,A17162650_0019,A17162650,0019,""
A17162650_0020,A17162650_0020,A17162650,0020,""
A17162650_0021,A17162650_0021,A17162650,0021,""
A17162650_0022,A17162650_0022,A17162650,0022,""
A17162650_0023,A17162650_0023,A17162650,0023,""
A17162650_0024,A17162650_0024,A17162650,0024,""
A17162650_0025,A17162650_0025,A17162650,0025,""
A17162650_0026,A17162650_0026,A17162650,0026,""
A17162650_0027,A17162650_0027,A17162650,0027,""
A17162650_0028,A17162650_0028,A17162650,0028,""
A17162650_0029,A17162650_0029,A17162650,0029,""
A17162650_0030,A17162650_0030,A17162650,0030,""
A1730638_0000,A1730638_0000,A1730638,0000,"Screened by NARA, 9/19/2024"
A1730638_0001,A1730638_0001,A1730638,0001,"Screened by NARA, 9/19/2024"
A1730638_0002,A1730638_0002,A1730638,0002,"Screened by NARA, 9/19/2024"
Expand Down Expand Up @@ -264,6 +389,25 @@ A1730638_0073,A1730638_0073,A1730638,0073,"Screened by NARA, 9/19/2024"
A1730638_0074,A1730638_0074,A1730638,0074,"Screened by NARA, 9/19/2024"
A1730638_0075,A1730638_0075,A1730638,0075,"Screened by NARA, 9/19/2024"
A1730638_0076,A1730638_0076,A1730638,0076,"Screened by NARA, 9/19/2024"
A17439501_0000,A17439501_0000,A17439501,0000,"Screened by NARA, 7/25/2024"
A17439501_0001,A17439501_0001,A17439501,0001,"Screened by NARA, 7/25/2024"
A17439501_0002,A17439501_0002,A17439501,0002,"Screened by NARA, 7/25/2024"
A17439501_0003,A17439501_0003,A17439501,0003,"Screened by NARA, 7/25/2024"
A17439501_0004,A17439501_0004,A17439501,0004,"Screened by NARA, 7/25/2024"
A17439501_0005,A17439501_0005,A17439501,0005,"Screened by NARA, 7/25/2024"
A17439501_0006,A17439501_0006,A17439501,0006,"Screened by NARA, 7/25/2024"
A17439501_0007,A17439501_0007,A17439501,0007,"Screened by NARA, 7/25/2024"
A17439501_0008,A17439501_0008,A17439501,0008,"Screened by NARA, 7/25/2024"
A17439501_0009,A17439501_0009,A17439501,0009,"Screened by NARA, 7/25/2024"
A17439501_0010,A17439501_0010,A17439501,0010,"Screened by NARA, 7/25/2024"
A17439501_0011,A17439501_0011,A17439501,0011,"Screened by NARA, 7/25/2024"
A17439501_0012,A17439501_0012,A17439501,0012,"Screened by NARA, 7/25/2024"
A17439501_0013,A17439501_0013,A17439501,0013,"Screened by NARA, 7/25/2024"
A17439501_0014,A17439501_0014,A17439501,0014,"Screened by NARA, 7/25/2024"
A17439501_0015,A17439501_0015,A17439501,0015,"Screened by NARA, 7/25/2024"
A17439501_0016,A17439501_0016,A17439501,0016,""
A17439501_0017,A17439501_0017,A17439501,0017,"Screened by NARA, 7/25/2024"
A17439501_0018,A17439501_0018,A17439501,0018,"Screened by NARA, 7/25/2024"
A1866065_0000,A1866065_0000,A1866065,0000,""
A1866065_0001,A1866065_0001,A1866065,0001,""
A1866065_0002,A1866065_0002,A1866065,0002,""
Expand Down Expand Up @@ -394,6 +538,8 @@ A200621211_0005,A200621211_0005,A200621211,0005,"Screened by NARA, 9/20/2024"
A200621211_0006,A200621211_0006,A200621211,0006,"Screened by NARA, 9/20/2024"
A200621211_0007,A200621211_0007,A200621211,0007,"Screened by NARA, 9/20/2024"
A200621211_0008,A200621211_0008,A200621211,0008,"Screened by NARA, 9/20/2024"
A20498138_0000,A20498138_0000,A20498138,0000,""
A20498138_0001,A20498138_0001,A20498138,0001,""
A205067915_0000,A205067915_0000,A205067915,0000,""
A205067915_0001,A205067915_0001,A205067915,0001,""
A205067915_0002,A205067915_0002,A205067915,0002,"Screened by NARA, 9/20/2024"
Expand Down Expand Up @@ -479,6 +625,48 @@ A3035538_0001,A3035538_0001,A3035538,0001,""
A3035538_0002,A3035538_0002,A3035538,0002,""
A3035538_0003,A3035538_0003,A3035538,0003,""
A3035538_0004,A3035538_0004,A3035538,0004,""
A30388146_0000,A30388146_0000,A30388146,0000,""
A30388146_0001,A30388146_0001,A30388146,0001,""
A30388146_0002,A30388146_0002,A30388146,0002,""
A30388146_0003,A30388146_0003,A30388146,0003,""
A30388146_0004,A30388146_0004,A30388146,0004,""
A30388146_0005,A30388146_0005,A30388146,0005,""
A30388146_0006,A30388146_0006,A30388146,0006,""
A30388146_0007,A30388146_0007,A30388146,0007,""
A30388146_0008,A30388146_0008,A30388146,0008,""
A30388146_0009,A30388146_0009,A30388146,0009,""
A30388146_0010,A30388146_0010,A30388146,0010,""
A30388146_0011,A30388146_0011,A30388146,0011,""
A30388146_0012,A30388146_0012,A30388146,0012,""
A30388146_0013,A30388146_0013,A30388146,0013,""
A30388146_0014,A30388146_0014,A30388146,0014,""
A30388146_0015,A30388146_0015,A30388146,0015,""
A30388146_0016,A30388146_0016,A30388146,0016,""
A30388146_0017,A30388146_0017,A30388146,0017,""
A30388146_0018,A30388146_0018,A30388146,0018,""
A30388146_0019,A30388146_0019,A30388146,0019,""
A30388146_0020,A30388146_0020,A30388146,0020,""
A30388146_0021,A30388146_0021,A30388146,0021,""
A37126493_0000,A37126493_0000,A37126493,0000,"Screened by NARA, 7/25/2024"
A37126493_0001,A37126493_0001,A37126493,0001,"Screened by NARA, 7/25/2024"
A37126493_0002,A37126493_0002,A37126493,0002,"Screened by NARA, 7/25/2024"
A37126493_0003,A37126493_0003,A37126493,0003,"Screened by NARA, 7/25/2024"
A37126493_0004,A37126493_0004,A37126493,0004,"Screened by NARA, 7/25/2024"
A37126493_0005,A37126493_0005,A37126493,0005,"Screened by NARA, 7/25/2024"
A37126493_0006,A37126493_0006,A37126493,0006,"Screened by NARA, 7/25/2024"
A37126493_0007,A37126493_0007,A37126493,0007,"Screened by NARA, 7/25/2024"
A37126493_0008,A37126493_0008,A37126493,0008,""
A37126493_0009,A37126493_0009,A37126493,0009,"Screened by NARA, 7/25/2024"
A37126493_0010,A37126493_0010,A37126493,0010,"Screened by NARA, 7/25/2024"
A37126493_0011,A37126493_0011,A37126493,0011,"Screened by NARA, 7/25/2024"
A37126493_0012,A37126493_0012,A37126493,0012,"Screened by NARA, 7/25/2024"
A37126493_0013,A37126493_0013,A37126493,0013,"Screened by NARA, 7/25/2024"
A37126493_0014,A37126493_0014,A37126493,0014,""
A37126493_0015,A37126493_0015,A37126493,0015,"Screened by NARA, 7/25/2024"
A37126493_0016,A37126493_0016,A37126493,0016,"Screened by NARA, 7/25/2024"
A37126493_0017,A37126493_0017,A37126493,0017,"Screened by NARA, 7/25/2024"
A37126493_0018,A37126493_0018,A37126493,0018,"Screened by NARA, 7/25/2024"
A37126493_0019,A37126493_0019,A37126493,0019,"Screened by NARA, 7/25/2024"
A3819203_0000,A3819203_0000,A3819203,0000,""
A3819203_0001,A3819203_0001,A3819203,0001,""
A3819203_0002,A3819203_0002,A3819203,0002,""
Expand Down Expand Up @@ -1008,3 +1196,14 @@ A7189367_0000,A7189367_0000,A7189367,0000,""
A7189367_0001,A7189367_0001,A7189367,0001,""
A7189367_0002,A7189367_0002,A7189367,0002,""
A7189367_0003,A7189367_0003,A7189367,0003,""
A8859230_0000,A8859230_0000,A8859230,0000,""
A8859230_0001,A8859230_0001,A8859230,0001,""
A8859230_0002,A8859230_0002,A8859230,0002,""
A8859230_0003,A8859230_0003,A8859230,0003,""
A8859230_0004,A8859230_0004,A8859230,0004,""
A8859230_0005,A8859230_0005,A8859230,0005,"WITHDRAWN ITEM|RG: 566: Records of the US Citizenship and Immigration Service [USCIS]|Series: Alien Case Files|Folder: A8859230|Subject: IRS Tax Document (5 pages)|Reason for Withdrawal: Freedom of Information Act (FOIA) Exemption (b)(3) [Statute 26|U.S.C. 6103 – Income Tax Information]|Date of Review: 7/24/2024"
A8859230_0006,A8859230_0006,A8859230,0006,""
A8859230_0007,A8859230_0007,A8859230,0007,""
A8859230_0008,A8859230_0008,A8859230,0008,""
A8859230_0009,A8859230_0009,A8859230,0009,""
A8859230_0010,A8859230_0010,A8859230,0010,""

0 comments on commit cc8e429

Please sign in to comment.