-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.txt
2023 lines (2023 loc) · 164 KB
/
insert.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
qcode = create_item(George Barrell Cheever, George Barrell Cheever)
edit_item(QGeorge Barrell Cheever, P33, Q90, Q5) # instance_of human
edit_item(QGeorge Barrell Cheever, P29, Q5, Q5) # Publisher
edit_item(QGeorge Barrell Cheever, P21, Correspondence, Q5) # Publication
edit_item(QGeorge Barrell Cheever, P17, 3, Q5) # Series
edit_item(QGeorge Barrell Cheever, P14, 2, Q5) # Volume
edit_item(QGeorge Barrell Cheever, P22, 1, Q5) # Note
edit_item(QGeorge Barrell Cheever, P28, Cheever, Q5) # Surname
edit_item(QGeorge Barrell Cheever, P30, George, Q5) # Forename
edit_item(QGeorge Barrell Cheever, P30, Barrell, Q5) # Middle Name/Initial
edit_item(QGeorge Barrell Cheever, P6, 45957584, Q5) # SNAC ID
edit_item(QGeorge Barrell Cheever, P7, Q7, Q5) # Sex
edit_item(QGeorge Barrell Cheever, P8, 1807, Q5) # Birth Date
edit_item(QGeorge Barrell Cheever, P9, 1890, Q5) # Death Date
edit_item(QGeorge Barrell Cheever, P10, Q12, Q5) # State/Country of Birth
edit_item(QGeorge Barrell Cheever, P26, McKivigan, War against Proslavery Religion, 137-41; ACAB, 1:597; DAB, 4:48-49., Q5) # Citation
edit_item(QGeorge Barrell Cheever, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QGeorge Barrell Cheever, P32, http://172.104.209.93:8181/wiki/George_Barrell_Cheever, Q5)
qcode = create_item(Theodore Tilton, Theodore Tilton)
edit_item(QTheodore Tilton, P33, Q90, Q5) # instance_of human
edit_item(QTheodore Tilton, P29, Q5, Q5) # Publisher
edit_item(QTheodore Tilton, P21, Correspondence, Q5) # Publication
edit_item(QTheodore Tilton, P17, 3, Q5) # Series
edit_item(QTheodore Tilton, P14, 2, Q5) # Volume
edit_item(QTheodore Tilton, P22, 1, Q5) # Note
edit_item(QTheodore Tilton, P28, Tilton, Q5) # Surname
edit_item(QTheodore Tilton, P30, Theodore, Q5) # Forename
edit_item(QTheodore Tilton, P6, 15594285, Q5) # SNAC ID
edit_item(QTheodore Tilton, P7, Q7, Q5) # Sex
edit_item(QTheodore Tilton, P8, 1835, Q5) # Birth Date
edit_item(QTheodore Tilton, P9, 1907, Q5) # Death Date
edit_item(QTheodore Tilton, P10, Q61, Q5) # State/Country of Birth
edit_item(QTheodore Tilton, P26,
Douglass to Theodore Tilton, 22 November 1860, 2 December 1869, FD Papers, NRU; Douglass to Theodore Tilton, 2 September 1867, FD Papers, NHi; Theodore Tilton to Douglass, 30 April, 22 October 1862, 20 April 1869, 5 September 1882, General Correspondence File, reel 1, frames 718-19, 745-47, reel 2, frames 464-66, and reel 3, frames 627-31, FD Papers, DLC; Chicago Open Court, 28 April 1887; New York Times, 26 May 1907; New York Independent, 10 December 1908; Robert Shaplen, Free Love and Heavenly Sinners: The Story of the Great Henry Ward Beecher Scandal (New York, 1954); ACAB, 6:120; DAB, 2:129-35.
, Q5) # Citation
edit_item(QTheodore Tilton, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QTheodore Tilton, P32, http://172.104.209.93:8181/wiki/Theodore_Tilton, Q5)
qcode = create_item(W. W. Tate, W. W. Tate)
edit_item(QW. W. Tate, P33, Q90, Q5) # instance_of human
edit_item(QW. W. Tate, P29, Q5, Q5) # Publisher
edit_item(QW. W. Tate, P21, Correspondence, Q5) # Publication
edit_item(QW. W. Tate, P17, 3, Q5) # Series
edit_item(QW. W. Tate, P14, 2, Q5) # Volume
edit_item(QW. W. Tate, P22, 1, Q5) # Note
edit_item(QW. W. Tate, P28, Tate, Q5) # Surname
edit_item(QW. W. Tate, P30, W., Q5) # Forename
edit_item(QW. W. Tate, P30, W., Q5) # Middle Name/Initial
edit_item(QW. W. Tate, P7, Q7, Q5) # Sex
edit_item(QW. W. Tate, P13, Q9, Q5) # Race Description
edit_item(QW. W. Tate, P8, c1840, Q5) # Birth Date
edit_item(QW. W. Tate, P10, Q62, Q5) # State/Country of Birth
edit_item(QW. W. Tate, P26, Lib., 8 September 1865; The Assassination of Abraham Lincoln, Late President of the Unites States of America, and the Attempted Assassination of William H. Seward, Secretary of State, and Frederick W. Seward, Assistant Secretary, on the Evening of the 14th of April, 1865 (Washington, D.C. 1867); 1880 U.S. Census, New Mexico, Santa Fe County, 38., Q5) # Citation
edit_item(QW. W. Tate, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QW. W. Tate, P32, http://172.104.209.93:8181/wiki/W._W._Tate, Q5)
qcode = create_item(Jeremiah Powers, Jeremiah Powers)
edit_item(QJeremiah Powers, P33, Q90, Q5) # instance_of human
edit_item(QJeremiah Powers, P29, Q5, Q5) # Publisher
edit_item(QJeremiah Powers, P21, Correspondence, Q5) # Publication
edit_item(QJeremiah Powers, P17, 3, Q5) # Series
edit_item(QJeremiah Powers, P14, 2, Q5) # Volume
edit_item(QJeremiah Powers, P22, 5, Q5) # Note
edit_item(QJeremiah Powers, P28, Powers, Q5) # Surname
edit_item(QJeremiah Powers, P30, Jeremiah, Q5) # Forename
edit_item(QJeremiah Powers, P6, 56944870, Q5) # SNAC ID
edit_item(QJeremiah Powers, P7, Q7, Q5) # Sex
edit_item(QJeremiah Powers, P13, Q9, Q5) # Race Description
edit_item(QJeremiah Powers, P8, c1819, Q5) # Birth Date
edit_item(QJeremiah Powers, P26, NASS, quoted in FDP, 5 February 1852; DM, 4:642-43 (May 1862); 1850 U.S. Census, New York, New York County, 10; Leslie M. Alexander, African or American?: Black Identity and Political Activism in New York City, 1784-1861 (Urbana, Ill., 2008), 123-24; Foner and Walker, Black State Conventions, 1: 36, 87., Q5) # Citation
edit_item(QJeremiah Powers, P38, 'Correspondence, Series 3, Volume 2, Note 5', Q5)
edit_item(QJeremiah Powers, P32, http://172.104.209.93:8181/wiki/Jeremiah_Powers, Q5)
qcode = create_item(Stephen Allen Benson, Stephen Allen Benson)
edit_item(QStephen Allen Benson, P33, Q90, Q5) # instance_of human
edit_item(QStephen Allen Benson, P29, Q5, Q5) # Publisher
edit_item(QStephen Allen Benson, P21, Correspondence, Q5) # Publication
edit_item(QStephen Allen Benson, P17, 3, Q5) # Series
edit_item(QStephen Allen Benson, P14, 2, Q5) # Volume
edit_item(QStephen Allen Benson, P22, 8, Q5) # Note
edit_item(QStephen Allen Benson, P28, Benson, Q5) # Surname
edit_item(QStephen Allen Benson, P30, Stephen, Q5) # Forename
edit_item(QStephen Allen Benson, P30, Allen, Q5) # Middle Name/Initial
edit_item(QStephen Allen Benson, P6, 8448204, Q5) # SNAC ID
edit_item(QStephen Allen Benson, P7, Q7, Q5) # Sex
edit_item(QStephen Allen Benson, P13, Q9, Q5) # Race Description
edit_item(QStephen Allen Benson, P8, 1816, Q5) # Birth Date
edit_item(QStephen Allen Benson, P9, 1865, Q5) # Death Date
edit_item(QStephen Allen Benson, P10, Q63, Q5) # State/Country of Birth
edit_item(QStephen Allen Benson, P26, D. Ellwood Dunn, Amos J. Beyan, and Carl Patrick Burrowes, eds., Historical Dictionary of Liberia, 2d ed. (Lanham, Md., 2001), 37-38. , Q5) # Citation
edit_item(QStephen Allen Benson, P38, 'Correspondence, Series 3, Volume 2, Note 8', Q5)
edit_item(QStephen Allen Benson, P32, http://172.104.209.93:8181/wiki/Stephen_Allen_Benson, Q5)
qcode = create_item(Austin Willey, Austin Willey)
edit_item(QAustin Willey, P33, Q90, Q5) # instance_of human
edit_item(QAustin Willey, P29, Q5, Q5) # Publisher
edit_item(QAustin Willey, P21, Correspondence, Q5) # Publication
edit_item(QAustin Willey, P17, 3, Q5) # Series
edit_item(QAustin Willey, P14, 2, Q5) # Volume
edit_item(QAustin Willey, P22, 1, Q5) # Note
edit_item(QAustin Willey, P28, Willey, Q5) # Surname
edit_item(QAustin Willey, P30, Austin, Q5) # Forename
edit_item(QAustin Willey, P6, 44562021, Q5) # SNAC ID
edit_item(QAustin Willey, P7, Q7, Q5) # Sex
edit_item(QAustin Willey, P8, 1806, Q5) # Birth Date
edit_item(QAustin Willey, P9, 1896, Q5) # Death Date
edit_item(QAustin Willey, P10, Q64, Q5) # State/Country of Birth
edit_item(QAustin Willey, P26, [New York] Emancipator, 17 November 1847; Oscar Fay Adams, A Dictionary of American Authors (1884; Boston, 1970), 425; Carter, Ministry of New Hampshire, 89-90; Herringshaw, National Library of American Biography, 5:704; Edward O. Schriver, “Antislavery: The Free Soil and Free Democratic Parties in Maine, 1848-1855,” NEQ, 42:83 (March 1969). , Q5) # Citation
edit_item(QAustin Willey, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QAustin Willey, P32, http://172.104.209.93:8181/wiki/Austin_Willey, Q5)
qcode = create_item(Samuel Clarke Pomeroy, Samuel Clarke Pomeroy)
edit_item(QSamuel Clarke Pomeroy, P33, Q90, Q5) # instance_of human
edit_item(QSamuel Clarke Pomeroy, P29, Q5, Q5) # Publisher
edit_item(QSamuel Clarke Pomeroy, P21, Correspondence, Q5) # Publication
edit_item(QSamuel Clarke Pomeroy, P17, 3, Q5) # Series
edit_item(QSamuel Clarke Pomeroy, P14, 2, Q5) # Volume
edit_item(QSamuel Clarke Pomeroy, P22, 1, Q5) # Note
edit_item(QSamuel Clarke Pomeroy, P28, Pomeroy, Q5) # Surname
edit_item(QSamuel Clarke Pomeroy, P30, Samuel, Q5) # Forename
edit_item(QSamuel Clarke Pomeroy, P30, Clarke, Q5) # Middle Name/Initial
edit_item(QSamuel Clarke Pomeroy, P6, 71979181, Q5) # SNAC ID
edit_item(QSamuel Clarke Pomeroy, P7, Q7, Q5) # Sex
edit_item(QSamuel Clarke Pomeroy, P8, 1816, Q5) # Birth Date
edit_item(QSamuel Clarke Pomeroy, P9, 1891, Q5) # Death Date
edit_item(QSamuel Clarke Pomeroy, P10, Massachusetts, Q5) # State/Country of Birth
edit_item(QSamuel Clarke Pomeroy, P26, Douglass to Samuel C. Pomeroy, 12 November 1874, Samuel C. Pomeroy to Douglass, 14 June 1883, General Correspondence File, reel 2, frames 761-62, reel 3, frames 731-32, FD Papers, DLC; Wilder, Annals of Kansas, 241, 457, 521, 570; ACAB, 5:60; NCAB, 12:69-70; DAB, 15:54-55. , Q5) # Citation
edit_item(QSamuel Clarke Pomeroy, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QSamuel Clarke Pomeroy, P32, http://172.104.209.93:8181/wiki/Samuel_Clarke_Pomeroy, Q5)
qcode = create_item(Perry Wilmer, Perry Wilmer)
edit_item(QPerry Wilmer, P33, Q90, Q5) # instance_of human
edit_item(QPerry Wilmer, P29, Q5, Q5) # Publisher
edit_item(QPerry Wilmer, P21, Correspondence, Q5) # Publication
edit_item(QPerry Wilmer, P17, 3, Q5) # Series
edit_item(QPerry Wilmer, P14, 2, Q5) # Volume
edit_item(QPerry Wilmer, P22, 2, Q5) # Note
edit_item(QPerry Wilmer, P28, Wilmer, Q5) # Surname
edit_item(QPerry Wilmer, P30, Perry, Q5) # Forename
edit_item(QPerry Wilmer, P19, "Uncle Perry", Q5) # Alternate Name
edit_item(QPerry Wilmer, P7, Q7, Q5) # Sex
edit_item(QPerry Wilmer, P13, Q9, Q5) # Race Description
edit_item(QPerry Wilmer, P8, c1815, Q5) # Birth Date
edit_item(QPerry Wilmer, P26, 1860 U.S. Census, New Jersey, Salem County, 44; 1870 U.S. Census, New Jersey, Salem County, 82. , Q5) # Citation
edit_item(QPerry Wilmer, P38, 'Correspondence, Series 3, Volume 2, Note 2', Q5)
edit_item(QPerry Wilmer, P32, http://172.104.209.93:8181/wiki/Perry_Wilmer, Q5)
qcode = create_item(Laura Moody, Laura Moody)
edit_item(QLaura Moody, P33, Q90, Q5) # instance_of human
edit_item(QLaura Moody, P29, Q5, Q5) # Publisher
edit_item(QLaura Moody, P21, Correspondence, Q5) # Publication
edit_item(QLaura Moody, P17, 3, Q5) # Series
edit_item(QLaura Moody, P14, 2, Q5) # Volume
edit_item(QLaura Moody, P22, 6, Q5) # Note
edit_item(QLaura Moody, P28, Moody, Q5) # Surname
edit_item(QLaura Moody, P30, Laura, Q5) # Forename
edit_item(QLaura Moody, P19, Wheeler, Q5) # Alternate Name
edit_item(QLaura Moody, P7, Q8, Q5) # Sex
edit_item(QLaura Moody, P8, 1843, Q5) # Birth Date
edit_item(QLaura Moody, P9, 1921, Q5) # Death Date
edit_item(QLaura Moody, P26, 1860 U.S. Census, New York, Niagara County, 312; Portrait and Biographical Album of Marshall County, Kansas (Chicago, 1889), 736-38; William Richard Cutter, Genealogical and Family History of Western New York, 3 vols. (New York, 1912), 2:735. , Q5) # Citation
edit_item(QLaura Moody, P38, 'Correspondence, Series 3, Volume 2, Note 6', Q5)
edit_item(QLaura Moody, P32, http://172.104.209.93:8181/wiki/Laura_Moody, Q5)
qcode = create_item(Thomas Joshua Dorsey, Thomas Joshua Dorsey)
edit_item(QThomas Joshua Dorsey, P33, Q90, Q5) # instance_of human
edit_item(QThomas Joshua Dorsey, P29, Q5, Q5) # Publisher
edit_item(QThomas Joshua Dorsey, P21, Correspondence, Q5) # Publication
edit_item(QThomas Joshua Dorsey, P17, 3, Q5) # Series
edit_item(QThomas Joshua Dorsey, P14, 2, Q5) # Volume
edit_item(QThomas Joshua Dorsey, P22, 9, Q5) # Note
edit_item(QThomas Joshua Dorsey, P28, Dorsey, Q5) # Surname
edit_item(QThomas Joshua Dorsey, P30, Thomas, Q5) # Forename
edit_item(QThomas Joshua Dorsey, P30, Joshua, Q5) # Middle Name/Initial
edit_item(QThomas Joshua Dorsey, P7, Q7, Q5) # Sex
edit_item(QThomas Joshua Dorsey, P8, 1810, Q5) # Birth Date
edit_item(QThomas Joshua Dorsey, P9, 1875, Q5) # Death Date
edit_item(QThomas Joshua Dorsey, P10, Q66, Q5) # State/Country of Birth
edit_item(QThomas Joshua Dorsey, P26, . Philadelphia Times, 17 October 1896; Roger Lane, William Dorsey’s Philadelphia and Ours: On the Past and Future of the Black City in America (New York, 1991), 2, 301; John N. Ingham and Lynne B. Feldman, African-American Business Leaders: A Biographical Dictionary (Westport, Conn., 1994), 226; Randall K. Burkett, Nancy Hall Burkett, and Henry Louis Gates, Jr., eds., Black Biography, 1790-1950, 3 vols. (Alexandria, Va., 1991), 1:364; Dubois, The Philadelphia Negro, 34; ANB, 20:775-76., Q5) # Citation
edit_item(QThomas Joshua Dorsey, P38, 'Correspondence, Series 3, Volume 2, Note 9', Q5)
edit_item(QThomas Joshua Dorsey, P32, http://172.104.209.93:8181/wiki/Thomas_Joshua_Dorsey, Q5)
qcode = create_item(Hester Reckless, Hester Reckless)
edit_item(QHester Reckless, P33, Q90, Q5) # instance_of human
edit_item(QHester Reckless, P29, Q5, Q5) # Publisher
edit_item(QHester Reckless, P21, Correspondence, Q5) # Publication
edit_item(QHester Reckless, P17, 3, Q5) # Series
edit_item(QHester Reckless, P14, 2, Q5) # Volume
edit_item(QHester Reckless, P22, 13, Q5) # Note
edit_item(QHester Reckless, P28, Reckless, Q5) # Surname
edit_item(QHester Reckless, P30, Hester, Q5) # Forename
edit_item(QHester Reckless, P19, Amy, Q5) # Alternate Name
edit_item(QHester Reckless, P7, Q8, Q5) # Sex
edit_item(QHester Reckless, P8, 1793, Q5) # Birth Date
edit_item(QHester Reckless, P9, 1881, Q5) # Death Date
edit_item(QHester Reckless, P10, Q67, Q5) # State/Country of Birth
edit_item(QHester Reckless, P26, Robert Clemens Smedley, History of the Underground Railroad in Chester and the Neighboring Counties of Pennsylvania (1883; New York, 1968), 348. , Q5) # Citation
edit_item(QHester Reckless, P38, 'Correspondence, Series 3, Volume 2, Note 13', Q5)
edit_item(QHester Reckless, P32, http://172.104.209.93:8181/wiki/Hester_Reckless, Q5)
qcode = create_item(Rachael Mason, Rachael Mason)
edit_item(QRachael Mason, P33, Q90, Q5) # instance_of human
edit_item(QRachael Mason, P29, Q5, Q5) # Publisher
edit_item(QRachael Mason, P21, Correspondence, Q5) # Publication
edit_item(QRachael Mason, P17, 3, Q5) # Series
edit_item(QRachael Mason, P14, 2, Q5) # Volume
edit_item(QRachael Mason, P22, 18, Q5) # Note
edit_item(QRachael Mason, P28, Mason, Q5) # Surname
edit_item(QRachael Mason, P30, Rachael, Q5) # Forename
edit_item(QRachael Mason, P7, Q8, Q5) # Sex
edit_item(QRachael Mason, P13, Q9, Q5) # Race Description
edit_item(QRachael Mason, P8, c1800, Q5) # Birth Date
edit_item(QRachael Mason, P26, 1850 U.S. Census, Maryland, Baltimore County, 132., Q5) # Citation
edit_item(QRachael Mason, P38, 'Correspondence, Series 3, Volume 2, Note 18', Q5)
edit_item(QRachael Mason, P32, http://172.104.209.93:8181/wiki/Rachael_Mason, Q5)
qcode = create_item(Montgomery Blair, Montgomery Blair)
edit_item(QMontgomery Blair, P33, Q90, Q5) # instance_of human
edit_item(QMontgomery Blair, P29, Q5, Q5) # Publisher
edit_item(QMontgomery Blair, P21, Correspondence, Q5) # Publication
edit_item(QMontgomery Blair, P17, 3, Q5) # Series
edit_item(QMontgomery Blair, P14, 2, Q5) # Volume
edit_item(QMontgomery Blair, P22, 1, Q5) # Note
edit_item(QMontgomery Blair, P28, Blair, Q5) # Surname
edit_item(QMontgomery Blair, P30, Montgomery, Q5) # Forename
edit_item(QMontgomery Blair, P6, 64547398, Q5) # SNAC ID
edit_item(QMontgomery Blair, P7, Q7, Q5) # Sex
edit_item(QMontgomery Blair, P8, 1813, Q5) # Birth Date
edit_item(QMontgomery Blair, P9, 1883, Q5) # Death Date
edit_item(QMontgomery Blair, P10, Q68, Q5) # State/Country of Birth
edit_item(QMontgomery Blair, P26, Rita L. Moroney, Montgomery Blair, Postmaster General (Washington, D.C., 1963). , Q5) # Citation
edit_item(QMontgomery Blair, P38, 'Correspondence, Series 3, Volume 2, Note 1', Q5)
edit_item(QMontgomery Blair, P32, http://172.104.209.93:8181/wiki/Montgomery_Blair, Q5)
qcode = create_item(Thomas Jefferson, Thomas Jefferson)
edit_item(QThomas Jefferson, P33, Q90, Q5) # instance_of human
edit_item(QThomas Jefferson, P29, Q5, Q5) # Publisher
edit_item(QThomas Jefferson, P21, Correspondence, Q5) # Publication
edit_item(QThomas Jefferson, P17, 3, Q5) # Series
edit_item(QThomas Jefferson, P14, 2, Q5) # Volume
edit_item(QThomas Jefferson, P22, 4, Q5) # Note
edit_item(QThomas Jefferson, P28, Jefferson, Q5) # Surname
edit_item(QThomas Jefferson, P30, Thomas, Q5) # Forename
edit_item(QThomas Jefferson, P6, 83449756, Q5) # SNAC ID
edit_item(QThomas Jefferson, P7, Q7, Q5) # Sex
edit_item(QThomas Jefferson, P13, Q10, Q5) # Race Description
edit_item(QThomas Jefferson, P8, 1743, Q5) # Birth Date
edit_item(QThomas Jefferson, P9, 1826, Q5) # Death Date
edit_item(QThomas Jefferson, P26, Noble E. Cunningham, Jr., In Pursuit of Reason: The Life of Thomas Jefferson (New York, 1987); Nicholas E. Magnis, “Thomas Jefferson and Slavery: An Analysis of his Racist Thinking as Revealed by His Writings and Political Behavior,” Journal of Black Studies, 29:491-509 (March 1999); DAB, 10:17-35. , Q5) # Citation
edit_item(QThomas Jefferson, P38, 'Correspondence, Series 3, Volume 2, Note 4', Q5)
edit_item(QThomas Jefferson, P32, http://172.104.209.93:8181/wiki/Thomas_Jefferson, Q5)
qcode = create_item(Benjamin Banneker, Benjamin Banneker)
edit_item(QBenjamin Banneker, P33, Q90, Q5) # instance_of human
edit_item(QBenjamin Banneker, P29, Q5, Q5) # Publisher
edit_item(QBenjamin Banneker, P21, Correspondence, Q5) # Publication
edit_item(QBenjamin Banneker, P17, 3, Q5) # Series
edit_item(QBenjamin Banneker, P14, 2, Q5) # Volume
edit_item(QBenjamin Banneker, P22, 2, Q5) # Note
edit_item(QBenjamin Banneker, P28, Banneker, Q5) # Surname
edit_item(QBenjamin Banneker, P30, Benjamin, Q5) # Forename
edit_item(QBenjamin Banneker, P6, 55074987, Q5) # SNAC ID
edit_item(QBenjamin Banneker, P7, Q7, Q5) # Sex
edit_item(QBenjamin Banneker, P13, Q9, Q5) # Race Description
edit_item(QBenjamin Banneker, P8, 1731, Q5) # Birth Date
edit_item(QBenjamin Banneker, P9, 1806, Q5) # Death Date
edit_item(QBenjamin Banneker, P10, Q66, Q5) # State/Country of Birth
edit_item(QBenjamin Banneker, P26, Silvio A. Bedini, The Life of Benjamin Banneker (New York, 1972); P. Lee Phillips, “The Negro, Benjamin Banneker; Astronomer and Mathematician, Plea for Universal Peace,” Records of the Columbia Historical Society, 20:114-20 (1917); ACAB, 1:159; DANB, 22-25. , Q5) # Citation
edit_item(QBenjamin Banneker, P38, 'Correspondence, Series 3, Volume 2, Note 2', Q5)
edit_item(QBenjamin Banneker, P32, http://172.104.209.93:8181/wiki/Benjamin_Banneker, Q5)
qcode = create_item(John Caldwell Calhoun, John Caldwell Calhoun)
edit_item(QJohn Caldwell Calhoun, P33, Q90, Q5) # instance_of human
edit_item(QJohn Caldwell Calhoun, P29, Q5, Q5) # Publisher
edit_item(QJohn Caldwell Calhoun, P21, Correspondence, Q5) # Publication
edit_item(QJohn Caldwell Calhoun, P17, 3, Q5) # Series
edit_item(QJohn Caldwell Calhoun, P14, 2, Q5) # Volume
edit_item(QJohn Caldwell Calhoun, P22, 19, Q5) # Note
edit_item(QJohn Caldwell Calhoun, P28, Calhoun, Q5) # Surname
edit_item(QJohn Caldwell Calhoun, P30, John, Q5) # Forename
edit_item(QJohn Caldwell Calhoun, P30, Caldwell, Q5) # Middle Name/Initial
edit_item(QJohn Caldwell Calhoun, P6, 20178031, Q5) # SNAC ID
edit_item(QJohn Caldwell Calhoun, P7, Q7, Q5) # Sex
edit_item(QJohn Caldwell Calhoun, P13, Q10, Q5) # Race Description
edit_item(QJohn Caldwell Calhoun, P8, 1782, Q5) # Birth Date
edit_item(QJohn Caldwell Calhoun, P9, 1850, Q5) # Death Date
edit_item(QJohn Caldwell Calhoun, P26, John Niven, John C. Calhoun and the Price of Union: A Biography (Baton Rouge, La., 1988); Charles M. Wiltse, John C. Calhoun, 3 vols. (New York, 1944-51); DAB, 3:410-19. , Q5) # Citation
edit_item(QJohn Caldwell Calhoun, P38, 'Correspondence, Series 3, Volume 2, Note 19', Q5)
edit_item(QJohn Caldwell Calhoun, P32, http://172.104.209.93:8181/wiki/John_Caldwell_Calhoun, Q5)
qcode = create_item(James Rood Doolittle, James Rood Doolittle)
edit_item(QJames Rood Doolittle, P33, Q90, Q5) # instance_of human
edit_item(QJames Rood Doolittle, P29, Q5, Q5) # Publisher
edit_item(QJames Rood Doolittle, P21, Correspondence, Q5) # Publication
edit_item(QJames Rood Doolittle, P17, 3, Q5) # Series
edit_item(QJames Rood Doolittle, P14, 2, Q5) # Volume
edit_item(QJames Rood Doolittle, P22, 21, Q5) # Note
edit_item(QJames Rood Doolittle, P28, Doolittle, Q5) # Surname
edit_item(QJames Rood Doolittle, P30, James, Q5) # Forename
edit_item(QJames Rood Doolittle, P30, Rood, Q5) # Middle Name/Initial
edit_item(QJames Rood Doolittle, P6, 52562129, Q5) # SNAC ID
edit_item(QJames Rood Doolittle, P7, Q7, Q5) # Sex
edit_item(QJames Rood Doolittle, P8, 1815, Q5) # Birth Date
edit_item(QJames Rood Doolittle, P9, 1897, Q5) # Death Date
edit_item(QJames Rood Doolittle, P10, Q61, Q5) # State/Country of Birth
edit_item(QJames Rood Doolittle, P26, LaWanda C. Fenlason Cox and John Henry Cox, Politics, Principle, and Prejudice, 1865-1866: Dilemma of Reconstruction America (1963; New York, 1976), 215-16, 224, 227; Howard K. Beale, The Critical Year: A Study of Andrew Johnson and Reconstruction (1930; New York, 1958), 123-31; ACAB, 2:201-02; DAB, 5:274-75. , Q5) # Citation
edit_item(QJames Rood Doolittle, P38, 'Correspondence, Series 3, Volume 2, Note 21', Q5)
edit_item(QJames Rood Doolittle, P32, http://172.104.209.93:8181/wiki/James_Rood_Doolittle, Q5)
qcode = create_item(Martha Fletcher, Martha Fletcher)
edit_item(QMartha Fletcher, P33, Q90, Q5) # instance_of human
edit_item(QMartha Fletcher, P29, Q5, Q5) # Publisher
edit_item(QMartha Fletcher, P21, Correspondence, Q5) # Publication
edit_item(QMartha Fletcher, P17, 3, Q5) # Series
edit_item(QMartha Fletcher, P14, 2, Q5) # Volume
edit_item(QMartha Fletcher, P22, 7, Q5) # Note
edit_item(QMartha Fletcher, P28, Fletcher, Q5) # Surname
edit_item(QMartha Fletcher, P30, Martha, Q5) # Forename
edit_item(QMartha Fletcher, P19, Bailey, Q5) # Alternate Name
edit_item(QMartha Fletcher, P7, Q8, Q5) # Sex
edit_item(QMartha Fletcher, P13, Q9, Q5) # Race Description
edit_item(QMartha Fletcher, P8, c1811, Q5) # Birth Date
edit_item(QMartha Fletcher, P9, 1875, Q5) # Death Date
edit_item(QMartha Fletcher, P10, Q65, Q5) # State/Country of Birth
edit_item(QMartha Fletcher, P26, 1840 U.S. Census, Massachusetts, Bristol County, 395; The New Bedford Directory, Containing the names of the Inhabitants, Their Occupations, Places, Business and Dwelling houses (New Bedford, Mass., 1841), 70; 1850 U.S. Census, Massachusetts, Bristol County, 230; Vital Records of New Bedford Massachusetts to the Year 1850, 3 vols. (Boston, 1932), 2:38; Kathryn Grover, The Fugitive’s Gibraltar: Escaping Slaves and Abolitionism in New Bedford, Massachusetts (Amherst, Mass., 2001), 122; Sterling, We Are Your Sisters, 144-46. , Q5) # Citation
edit_item(QMartha Fletcher, P38, 'Correspondence, Series 3, Volume 2, Note 7', Q5)
edit_item(QMartha Fletcher, P32, http://172.104.209.93:8181/wiki/Martha_Fletcher, Q5)
qcode = create_item(Elizabeth Josephine Brown, Elizabeth Josephine Brown)
edit_item(QElizabeth Josephine Brown, P33, Q90, Q5) # instance_of human
edit_item(QElizabeth Josephine Brown, P29, Q5, Q5) # Publisher
edit_item(QElizabeth Josephine Brown, P21, Correspondence, Q5) # Publication
edit_item(QElizabeth Josephine Brown, P17, 3, Q5) # Series
edit_item(QElizabeth Josephine Brown, P14, 2, Q5) # Volume
edit_item(QElizabeth Josephine Brown, P22, 8, Q5) # Note
edit_item(QElizabeth Josephine Brown, P28, Brown, Q5) # Surname
edit_item(QElizabeth Josephine Brown, P30, Elizabeth, Q5) # Forename
edit_item(QElizabeth Josephine Brown, P30, Josephine, Q5) # Middle Name/Initial
edit_item(QElizabeth Josephine Brown, P19, Mrs. E. Jospehine Brown Campbell, Q5) # Alternate Name
edit_item(QElizabeth Josephine Brown, P6, 20024933, Q5) # SNAC ID
edit_item(QElizabeth Josephine Brown, P7, Q8, Q5) # Sex
edit_item(QElizabeth Josephine Brown, P8, 1839, Q5) # Birth Date
edit_item(QElizabeth Josephine Brown, P9, 1874, Q5) # Death Date
edit_item(QElizabeth Josephine Brown, P10, Q61, Q5) # State/Country of Birth
edit_item(QElizabeth Josephine Brown, P11, Q65, Q5) # State/Country of Death
edit_item(QElizabeth Josephine Brown, P26, 1850 U.S. Census, Massachusetts, Bristol County, 230; William L. Andrews, Two Biographies by African-American Women (New York, 1991), xxxiv-xxxv; Sterling, We Were Your Sisters, 144-47; Massachusetts Deaths and Burials, 1795-1910 (online). , Q5) # Citation
edit_item(QElizabeth Josephine Brown, P38, 'Correspondence, Series 3, Volume 2, Note 8', Q5)
edit_item(QElizabeth Josephine Brown, P32, http://172.104.209.93:8181/wiki/Elizabeth_Josephine_Brown, Q5)
qcode = create_item(Mary Louise Harlan, Mary Louise Harlan)
edit_item(QMary Louise Harlan, P33, Q90, Q5) # instance_of human
edit_item(QMary Louise Harlan, P29, Q5, Q5) # Publisher
edit_item(QMary Louise Harlan, P21, Correspondence, Q5) # Publication
edit_item(QMary Louise Harlan, P17, 3, Q5) # Series
edit_item(QMary Louise Harlan, P14, 2, Q5) # Volume
edit_item(QMary Louise Harlan, P22, 4, Q5) # Note
edit_item(QMary Louise Harlan, P28, Harlan, Q5) # Surname
edit_item(QMary Louise Harlan, P30, Mary, Q5) # Forename
edit_item(QMary Louise Harlan, P30, Louise, Q5) # Middle Name/Initial
edit_item(QMary Louise Harlan, P19, Dorsey, Q5) # Alternate Name
edit_item(QMary Louise Harlan, P7, Q8, Q5) # Sex
edit_item(QMary Louise Harlan, P8, c1849, Q5) # Birth Date
edit_item(QMary Louise Harlan, P9, 1901, Q5) # Death Date
edit_item(QMary Louise Harlan, P10, Q69, Q5) # State/Country of Birth
edit_item(QMary Louise Harlan, P11, Q70, Q5) # State/Country of Death
edit_item(QMary Louise Harlan, P26, 1850 U.S. Census, Pennsylvania, Philadelphia County, 147; Loren P. Beth, John Marshall Harlan: The Last Whig Justice (Lexington, Ky., 1992), 12-13; Ronald Shannon, Profiles in Ohio History: A Legacy of African American Achievement (Bloomington, Ind., 2008), 33-35; Lane, William Dorsey’s Philadelphia, 60, 301-03. , Q5) # Citation
edit_item(QMary Louise Harlan, P38, 'Correspondence, Series 3, Volume 2, Note 4', Q5)
edit_item(QMary Louise Harlan, P32, http://172.104.209.93:8181/wiki/Mary_Louise_Harlan, Q5)
qcode = create_item(Elizabeth Abell, Elizabeth Abell)
edit_item(QElizabeth Abell, P33, Q90, Q4) # instance_of human
edit_item(QElizabeth Abell, P29, Q4, Q4) # Publisher
edit_item(QElizabeth Abell, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QElizabeth Abell, P28, Abell, Q4) # Surname
edit_item(QElizabeth Abell, P30, Elizabeth, Q4) # Forename
edit_item(QElizabeth Abell, P19, Owens, Q4) # Alternate Name
edit_item(QElizabeth Abell, P7, Q8, Q4) # Sex
edit_item(QElizabeth Abell, P13, Q10, Q4) # Race Description
edit_item(QElizabeth Abell, P8, 1804-08-06, Q4) # Birth Date
edit_item(QElizabeth Abell, P9, 1869-11-20, Q4) # Death Date
edit_item(QElizabeth Abell, P10, Q71, Q4) # State/Country of Birth
edit_item(QElizabeth Abell, P11, Illinois /USA, Q4) # State/Country of Death
edit_item(QElizabeth Abell, P26, Gravestone, Avon Cemetery, Avon, IL; U.S. Census Office, Seventh Census of the United States (1850), Menard County, IL, 340; U.S. Census Office, Eighth Census of the United States (1860), McDonough County, IL, 233; Douglas L. Wilson and Rodney O. Davis, eds., Herndon's Informants: Letters, Interviews, and Statements about Abraham Lincoln (Urbana: University of Illinois Press, 1998), 738; Dale Thomas, Lincoln's Old Friends of Menard County, Illinois (Charleston, SC: The History Press, 2012), 15-17, 46-48. , Q4) # Citation
edit_item(QElizabeth Abell, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QElizabeth Abell, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QElizabeth Abell, P32, http://172.104.209.93:8181/wiki/Elizabeth_Abell, Q4)
qcode = create_item(Mark Aldrich , Mark Aldrich )
edit_item(QMark Aldrich , P33, Q90, Q4) # instance_of human
edit_item(QMark Aldrich , P29, Q4, Q4) # Publisher
edit_item(QMark Aldrich , P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QMark Aldrich , P28, Aldrich , Q4) # Surname
edit_item(QMark Aldrich , P30, Mark, Q4) # Forename
edit_item(QMark Aldrich , P7, Q7, Q4) # Sex
edit_item(QMark Aldrich , P13, Q10, Q4) # Race Description
edit_item(QMark Aldrich , P8, 1802-01-22, Q4) # Birth Date
edit_item(QMark Aldrich , P9, 1873-09-21, Q4) # Death Date
edit_item(QMark Aldrich , P10, New York/USA, Q4) # State/Country of Birth
edit_item(QMark Aldrich , P11, Arizona/USA, Q4) # State/Country of Death
edit_item(QMark Aldrich , P26, Th. Gregg, History of Hancock County, Illinois (Chicago: Chas. C. Chapman, 1880), 329, 435, 447, 448, 637, 638, 653-54; History of Hancock County, Illinois (Hancock County: Board of Supervisors, 1968), 110, 154, 577, 578, 597; John Clayton, comp., Illinois Fact Book and Historical Almanac, 1673-1968 (Carbondale and Edwardsville: Southern Illinois University Press, 1968), 205, 207; Obituary, Arizona Citizen (Tucson, AZ), 27 September 1873, 3:2., Q4) # Citation
edit_item(QMark Aldrich , P25, https://https://papersofabrahamlincoln.org/, Q4)
edit_item(QMark Aldrich , P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QMark Aldrich , P32, http://172.104.209.93:8181/wiki/Mark_Aldrich, Q4)
qcode = create_item(Edward D Baker, Edward D Baker)
edit_item(QEdward D Baker, P33, Q90, Q4) # instance_of human
edit_item(QEdward D Baker, P29, Q4, Q4) # Publisher
edit_item(QEdward D Baker, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QEdward D Baker, P28, Baker, Q4) # Surname
edit_item(QEdward D Baker, P30, Edward, Q4) # Forename
edit_item(QEdward D Baker, P30, D, Q4) # Middle Name/Initial
edit_item(QEdward D Baker, P6, 35957659, Q4) # SNAC ID
edit_item(QEdward D Baker, P7, Q7, Q4) # Sex
edit_item(QEdward D Baker, P13, Q10, Q4) # Race Description
edit_item(QEdward D Baker, P8, 1811-02-24, Q4) # Birth Date
edit_item(QEdward D Baker, P9, 1861-10-21, Q4) # Death Date
edit_item(QEdward D Baker, P10, England/United Kingdom, Q4) # State/Country of Birth
edit_item(QEdward D Baker, P11, Virginia/USA, Q4) # State/Country of Death
edit_item(QEdward D Baker, P26, Eugene Berwanger, "Baker, Edward Dickinson," American National Biography (New York: Oxford University Press, 1999), 2:7-8; John M. Palmer, ed., The Bench and Bar of Illinois: Historical and Reminiscent (Chicago: Lewis, 1899), 1:177-80; "Baker, Edward Dickinson," Biographical Directory of the United States Congress, 1774-Present, http://bioguide.congress.gov/scripts/biodisplay.pl?index=B000059; Illinois Statewide Marriage Index, Greene County, 27 April 1831, Illinois State Archives, Springfield, IL; Gravestone, San Francisco National Cemetery, San Francisco, CA; John Clayton, comp., Illinois Fact Book and Historical Almanac, 1673-1968 (Carbondale: Southern Illinois University Press, 1970), 103, 205, 207, 208, 209. Illustration courtesy of the Abraham Lincoln Presidential Library, Springfield, IL. , Q4) # Citation
edit_item(QEdward D Baker, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QEdward D Baker, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QEdward D Baker, P32, http://172.104.209.93:8181/wiki/Edward_D_Baker, Q4)
qcode = create_item(William T Barry , William T Barry )
edit_item(QWilliam T Barry , P33, Q90, Q4) # instance_of human
edit_item(QWilliam T Barry , P29, Q4, Q4) # Publisher
edit_item(QWilliam T Barry , P21, Papers of Abraham Lincoln Digital Edition, Q4) # Publication
edit_item(QWilliam T Barry , P28, Barry , Q4) # Surname
edit_item(QWilliam T Barry , P30, William , Q4) # Forename
edit_item(QWilliam T Barry , P30, T, Q4) # Middle Name/Initial
edit_item(QWilliam T Barry , P6, 39081573, Q4) # SNAC ID
edit_item(QWilliam T Barry , P7, Q7, Q4) # Sex
edit_item(QWilliam T Barry , P13, Q10, Q4) # Race Description
edit_item(QWilliam T Barry , P8, 1784-02-05, Q4) # Birth Date
edit_item(QWilliam T Barry , P9, 1835-08-30, Q4) # Death Date
edit_item(QWilliam T Barry , P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QWilliam T Barry , P11, England/United Kingdom, Q4) # State/Country of Death
edit_item(QWilliam T Barry , P26, Gravestone, Frankfort Cemetery, Frankfort, Kentucky; Anderson Chesnault Quisenberry, Kentucky in the War of 1812 (Frankfort, KY: Kentucky Historical Society, 1915; Reprint, Baltimore, MD: Genealogical Publishing, 1969), 89; Thomas H. Appleton, Jr., "Barry, William Taylor," American National Biography (New York: Oxford University Press, 1999), 2:258-59. , Q4) # Citation
edit_item(QWilliam T Barry , P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QWilliam T Barry , P38, 'Papers of Abraham Lincoln Digital Edition', Q4)
edit_item(QWilliam T Barry , P32, http://172.104.209.93:8181/wiki/William_T_Barry, Q4)
qcode = create_item(William H Bissell, William H Bissell)
edit_item(QWilliam H Bissell, P33, Q90, Q4) # instance_of human
edit_item(QWilliam H Bissell, P29, Q4, Q4) # Publisher
edit_item(QWilliam H Bissell, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QWilliam H Bissell, P28, Bissell, Q4) # Surname
edit_item(QWilliam H Bissell, P30, William, Q4) # Forename
edit_item(QWilliam H Bissell, P30, H, Q4) # Middle Name/Initial
edit_item(QWilliam H Bissell, P6, 59833837, Q4) # SNAC ID
edit_item(QWilliam H Bissell, P7, Q7, Q4) # Sex
edit_item(QWilliam H Bissell, P13, Q10, Q4) # Race Description
edit_item(QWilliam H Bissell, P8, 1811-04-25, Q4) # Birth Date
edit_item(QWilliam H Bissell, P9, 1860-03-18, Q4) # Death Date
edit_item(QWilliam H Bissell, P10, New York/USA, Q4) # State/Country of Birth
edit_item(QWilliam H Bissell, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QWilliam H Bissell, P26, Illinois Daily State Journal, 19 March 1860, 2:1-2; David L. Lightner, "Bissell, William Henry," American National Biography (New York: Oxford University Press, 1999), 2:843-44; Jack R. Trout, "William H. Bissell: Anti-Nebraska Democrat and First Republican Governor of Illinois" (Master's Thesis, Illinois State Normal University, 1962);Governors of Illinois: 1818-1918 (Springfield: Illinois Centennial Commission, 1917), 23; Robert P. Howard, Mostly Good and Competent Men: Illinois Governors, 1818-1988 (Springfield: Illinois Issues, Sangamon State University and Illinois State Historical Society, 1988), 109-15., Q4) # Citation
edit_item(QWilliam H Bissell, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QWilliam H Bissell, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QWilliam H Bissell, P32, http://172.104.209.93:8181/wiki/William_H_Bissell, Q4)
qcode = create_item(Peleg C Canedy, Peleg C Canedy)
edit_item(QPeleg C Canedy, P33, Q90, Q4) # instance_of human
edit_item(QPeleg C Canedy, P29, Q4, Q4) # Publisher
edit_item(QPeleg C Canedy, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QPeleg C Canedy, P28, Canedy, Q4) # Surname
edit_item(QPeleg C Canedy, P30, Peleg, Q4) # Forename
edit_item(QPeleg C Canedy, P30, C, Q4) # Middle Name/Initial
edit_item(QPeleg C Canedy, P6, 28904224, Q4) # SNAC ID
edit_item(QPeleg C Canedy, P7, Q7, Q4) # Sex
edit_item(QPeleg C Canedy, P13, Q10, Q4) # Race Description
edit_item(QPeleg C Canedy, P8, 1803-08-25, Q4) # Birth Date
edit_item(QPeleg C Canedy, P9, 1881-09-08, Q4) # Death Date
edit_item(QPeleg C Canedy, P10, Massachusetts/USA, Q4) # State/Country of Birth
edit_item(QPeleg C Canedy, P11, New York/USA, Q4) # State/Country of Death
edit_item(QPeleg C Canedy, P26, John Carroll Power and S. A. Power, History of Early Settlers Sangamon County, Illinois (Springfield, IL: Edwin H. Wilson, 1876), 177; History of Sangamon County, Illinois (Chicago: Inter-State, 1881), 287,565; Gravestone, Block 8, 141, Oak Ridge Cemetery, Springfield, IL, https://www.findagrave.com/memorial/81126555/peleg-coffin-canedy; Illinois Public Domain Land Tract Sales, Bureau County, 817:146; Logan County, 817:110; Sangamon County, 817:103, 104; Illinois State Archives, Springfield, IL Illinois Statewide Marriage Index, Morgan County, 28 August 1838, Illinois State Archives, Springfield, IL; U.S. Census Office, Eighth Census of the United States (1860), Springfield, Sangamon County, IL, 239. , Q4) # Citation
edit_item(QPeleg C Canedy, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QPeleg C Canedy, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QPeleg C Canedy, P32, http://172.104.209.93:8181/wiki/Peleg_C_Canedy, Q4)
qcode = create_item(Eliza Browning, Eliza Browning)
edit_item(QEliza Browning, P33, Q90, Q4) # instance_of human
edit_item(QEliza Browning, P29, Q4, Q4) # Publisher
edit_item(QEliza Browning, P21, Papers of Abraham Lincoln Digital Editor, Q4) # Publication
edit_item(QEliza Browning, P28, Browning, Q4) # Surname
edit_item(QEliza Browning, P30, Eliza, Q4) # Forename
edit_item(QEliza Browning, P19, Caldwell, Q4) # Alternate Name
edit_item(QEliza Browning, P6, 51077241, Q4) # SNAC ID
edit_item(QEliza Browning, P7, Q8, Q4) # Sex
edit_item(QEliza Browning, P13, Q10, Q4) # Race Description
edit_item(QEliza Browning, P8, 1807-10, Q4) # Birth Date
edit_item(QEliza Browning, P9, 1885-01-23, Q4) # Death Date
edit_item(QEliza Browning, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QEliza Browning, P26, Gravestone, Woodland Cemetery, Quincy, IL; U.S. Census Office, Seventh Census of the United States (1850), Adams County, IL, 261; Obituary, Illinois State Journal (Springfield), 26 January 1885, 4:3; Mark E. Neely, Jr., The Abraham Lincoln Encyclopedia (New York: Da Capo, 1982), 39., Q4) # Citation
edit_item(QEliza Browning, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QEliza Browning, P38, 'Papers of Abraham Lincoln Digital Editor', Q4)
edit_item(QEliza Browning, P32, http://172.104.209.93:8181/wiki/Eliza_Browning, Q4)
qcode = create_item(Sallie Clary, Sallie Clary)
edit_item(QSallie Clary, P33, Q90, Q4) # instance_of human
edit_item(QSallie Clary, P29, Q4, Q4) # Publisher
edit_item(QSallie Clary, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QSallie Clary, P28, Clary, Q4) # Surname
edit_item(QSallie Clary, P30, Sallie, Q4) # Forename
edit_item(QSallie Clary, P19, Jarvis, Q4) # Alternate Name
edit_item(QSallie Clary, P7, Q8, Q4) # Sex
edit_item(QSallie Clary, P13, Q10, Q4) # Race Description
edit_item(QSallie Clary, P8, 1818-09-19, Q4) # Birth Date
edit_item(QSallie Clary, P9, 1878-05-24, Q4) # Death Date
edit_item(QSallie Clary, P10, Illinois/USA, Q4) # State/Country of Birth
edit_item(QSallie Clary, P11, Iowa/USA, Q4) # State/Country of Death
edit_item(QSallie Clary, P26, Gravestone, Union Chapel Cemetery, Patterson, IA; Illinois Statewide Marriage Index, Sangamon County, 10 March 1834, Illinois State Archives, Springfield, IL; Bill for Divorce in Clary v. Clary; Subpoena in Chancery, 19 November 1839, box 5; Publisher's Certificate, 16 May 1850, box 5 Decree, 8 June 1840, General Record A, 40-41, Menard County Circuit Court, Menard County Courthouse, Petersburg, IL, all in Clary v. Clary, Martha L. Benner and Cullom Davis et al., eds., The Law Practice of Abraham Lincoln: Complete Documentary Edition, 2d edition (Springfield: Illinois Historic Preservation Agency, 2009), http://www.lawpracticeofabrahamlincoln.org/Details.aspx?case=141602; U.S. Census Office, Eighth Census of the United States (1860), Menard County, IL, 67; U.S. Census Office, Ninth Census of the United States (1870), Scott, Madison County, IA, 28; Douglas L. Wilson and Rodney O. Davis, eds., Herndon's Informants: Letters, Interviews, and Statements about Abraham Lincoln (Urbana: University of Illinois Press, 1998), 758., Q4) # Citation
edit_item(QSallie Clary, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QSallie Clary, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QSallie Clary, P32, http://172.104.209.93:8181/wiki/Sallie_Clary, Q4)
qcode = create_item(Edward Coles, Edward Coles)
edit_item(QEdward Coles, P33, Q90, Q4) # instance_of human
edit_item(QEdward Coles, P29, Q4, Q4) # Publisher
edit_item(QEdward Coles, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QEdward Coles, P28, Coles, Q4) # Surname
edit_item(QEdward Coles, P30, Edward, Q4) # Forename
edit_item(QEdward Coles, P6, 28156739, Q4) # SNAC ID
edit_item(QEdward Coles, P7, Q7, Q4) # Sex
edit_item(QEdward Coles, P13, Q10, Q4) # Race Description
edit_item(QEdward Coles, P8, 1786-12-15, Q4) # Birth Date
edit_item(QEdward Coles, P9, 1868-07-07, Q4) # Death Date
edit_item(QEdward Coles, P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QEdward Coles, P11, Pennsylvania/USA, Q4) # State/Country of Death
edit_item(QEdward Coles, P26, Robert P. Howard, Mostly Good and Competent Men: Illinois Governors, 1818 to 1988 (Springfield, IL: Illinois Issues, 1988), 21-30; Gravestone, Woodlands Cemetery, Philadelphia, PA; John H. Krenkel, Illinois Internal Improvements, 1818-1848 (Cedar Rapids, IA: Torch Press, 1958), 38-39. , Q4) # Citation
edit_item(QEdward Coles, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QEdward Coles, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QEdward Coles, P32, http://172.104.209.93:8181/wiki/Edward_Coles, Q4)
qcode = create_item(Milton Carpenter, Milton Carpenter)
edit_item(QMilton Carpenter, P33, Q90, Q4) # instance_of human
edit_item(QMilton Carpenter, P29, Q4, Q4) # Publisher
edit_item(QMilton Carpenter, P21, Papers of Abraham Lincoln Digital Edition, Q4) # Publication
edit_item(QMilton Carpenter, P28, Carpenter, Q4) # Surname
edit_item(QMilton Carpenter, P30, Milton, Q4) # Forename
edit_item(QMilton Carpenter, P6, 73229446, Q4) # SNAC ID
edit_item(QMilton Carpenter, P7, Q7, Q4) # Sex
edit_item(QMilton Carpenter, P13, Q10, Q4) # Race Description
edit_item(QMilton Carpenter, P8, 1808, Q4) # Birth Date
edit_item(QMilton Carpenter, P9, 1848-08-13, Q4) # Death Date
edit_item(QMilton Carpenter, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QMilton Carpenter, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QMilton Carpenter, P26, Newton Bateman, et. al., Historical Encyclopedia of Illinois. Vol. I (Chicago: Munsell, 1921), 188, 267, 506; Blue Book of the State of Illinois (Springfield: Phillips Brothers, State Printers, 1919), 493, 529-32; Newton Bateman, Biographical and Memorial Edition of the Historical Encyclopedia of Illinois, Vol. I (Chicago: Munsell, 1915), 79-80; Illinois Statewide Marriage Index, Sangamon County, 29 June 1842, Illinois State Archives, Springfield, IL; Illinois Journal (Springfield), 16 August 1848, 3:1., Q4) # Citation
edit_item(QMilton Carpenter, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QMilton Carpenter, P38, 'Papers of Abraham Lincoln Digital Edition', Q4)
edit_item(QMilton Carpenter, P32, http://172.104.209.93:8181/wiki/Milton_Carpenter, Q4)
qcode = create_item(John Dawson, John Dawson)
edit_item(QJohn Dawson, P33, Q90, Q4) # instance_of human
edit_item(QJohn Dawson, P29, Q4, Q4) # Publisher
edit_item(QJohn Dawson, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QJohn Dawson, P28, Dawson, Q4) # Surname
edit_item(QJohn Dawson, P30, John, Q4) # Forename
edit_item(QJohn Dawson, P7, Q7, Q4) # Sex
edit_item(QJohn Dawson, P13, Q10, Q4) # Race Description
edit_item(QJohn Dawson, P8, 1791-11-24, Q4) # Birth Date
edit_item(QJohn Dawson, P9, 1850-11-12, Q4) # Death Date
edit_item(QJohn Dawson, P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QJohn Dawson, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QJohn Dawson, P26, G. Glenn Clift, Remember the Raisin!: Kentucky and Kentuckians in the Battles and Massacre at Frenchtown, Michigan Territory, in the War of 1812 (Frankfort: Kentucky Historical Society, 1961), 187; John Carroll Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 244; Ellen M. Whitney, comp., The Black Hawk War, 1831-1832: Illinois Volunteers, 2 vols., vols. 35-36 of Collections of the Illinois State Historical Library (Springfield: Illinois State Historical Library, 1970), 1:126, 204-6; Gravestone, Oak Ridge Cemetery, Springfield, IL; Illinois Daily Journal (Springfield), 3 December 1850, 2:3., Q4) # Citation
edit_item(QJohn Dawson, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJohn Dawson, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QJohn Dawson, P32, http://172.104.209.93:8181/wiki/John_Dawson, Q4)
qcode = create_item(Stephen A Douglas, Stephen A Douglas)
edit_item(QStephen A Douglas, P33, Q90, Q4) # instance_of human
edit_item(QStephen A Douglas, P29, Q4, Q4) # Publisher
edit_item(QStephen A Douglas, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QStephen A Douglas, P28, Douglas, Q4) # Surname
edit_item(QStephen A Douglas, P30, Stephen , Q4) # Forename
edit_item(QStephen A Douglas, P30, A, Q4) # Middle Name/Initial
edit_item(QStephen A Douglas, P19, Douglass, Little Giant, Q4) # Alternate Name
edit_item(QStephen A Douglas, P6, 67019095, Q4) # SNAC ID
edit_item(QStephen A Douglas, P7, Q7, Q4) # Sex
edit_item(QStephen A Douglas, P13, Q10, Q4) # Race Description
edit_item(QStephen A Douglas, P8, 1813-04-23, Q4) # Birth Date
edit_item(QStephen A Douglas, P9, 1861-06-03, Q4) # Death Date
edit_item(QStephen A Douglas, P10, Vermont/USA, Q4) # State/Country of Birth
edit_item(QStephen A Douglas, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QStephen A Douglas, P26, Usher F. Linder, Reminiscences of the Early Bench and Bar of Illinois (Chicago: Chicago Legal News, 1879), 76-82; John M. Palmer, ed., The Bench and Bar of Illinois: Historical and Reminiscent (Chicago: Lewis, 1899), 1:37-38; Allen Johnson, "Douglas, Stephen Arnold," Dictionary of American Biography (New York: Charles Scribner’s & Sons, 1964), 3:1:397-403; Robert W. Johannsen, Stephen A. Douglas (New York: Oxford University Press, 1973); Mark E. Neely Jr., The Abraham Lincoln Encyclopedia (New York: McGraw Hill, 1982), 84-88; Allen Johnson, Stephen A. Douglas: A Study in American Politics (New York: MacMillan, 1908); Robert W. Johannsen, The Frontier, the Union, and Stephen A. Douglas (Urbana: University of Illinois Press, 1989); Robert W. Johannsen, "Douglas, Stephen Arnold," American National Biography (New York: Oxford University Press, 1999), 6:805-808. Illustration courtesy of the Abraham Lincoln Presidential Library, Springfield, IL. , Q4) # Citation
edit_item(QStephen A Douglas, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QStephen A Douglas, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QStephen A Douglas, P32, http://172.104.209.93:8181/wiki/Stephen_A_Douglas, Q4)
qcode = create_item(Jesse K Dubois, Jesse K Dubois)
edit_item(QJesse K Dubois, P33, Q90, Q4) # instance_of human
edit_item(QJesse K Dubois, P29, Q4, Q4) # Publisher
edit_item(QJesse K Dubois, P21, Papers of Abraham Lincoln Digital Edition, Q4) # Publication
edit_item(QJesse K Dubois, P28, Dubois, Q4) # Surname
edit_item(QJesse K Dubois, P30, Jesse , Q4) # Forename
edit_item(QJesse K Dubois, P30, K, Q4) # Middle Name/Initial
edit_item(QJesse K Dubois, P6, 50250874, Q4) # SNAC ID
edit_item(QJesse K Dubois, P7, Q7, Q4) # Sex
edit_item(QJesse K Dubois, P13, Q10, Q4) # Race Description
edit_item(QJesse K Dubois, P8, 1811-01-11, Q4) # Birth Date
edit_item(QJesse K Dubois, P9, 1876-11-22, Q4) # Death Date
edit_item(QJesse K Dubois, P10, Illinois/USA, Q4) # State/Country of Birth
edit_item(QJesse K Dubois, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QJesse K Dubois, P26, Gravestone, Oak Ridge Cemetery, Springfield, IL; History of Sangamon County, Illinois (Chicago: Inter-State, 1881), 522-523; Joseph Wallace, Past and Present of the City of Springfield and Sangamon County, Illinois (La Crosse, WI: Brookhaven, 2001), 1:57-58; Affidavit of Decease, 28 November 1876, Jesse K. Dubois probate file 2619, Sangamon County Court, Illinois Regional Archives Depository, University of Illinois at Springfield, Springfield, IL; Illinois Statewide Marriage Index, Lawrence County, 2 September 1840, Illinois State Archives, Springfield, IL; U.S. Census Office, Seventh Census of the United States (1850) Crawford County, IL, 243; U.S. Census Office, Eighth Census of the United States (1860), Sangamon County, IL, 136. , Q4) # Citation
edit_item(QJesse K Dubois, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJesse K Dubois, P38, 'Papers of Abraham Lincoln Digital Edition', Q4)
edit_item(QJesse K Dubois, P32, http://172.104.209.93:8181/wiki/Jesse_K_Dubois, Q4)
qcode = create_item(Ninian W Edwards, Ninian W Edwards)
edit_item(QNinian W Edwards, P33, Q90, Q4) # instance_of human
edit_item(QNinian W Edwards, P29, Q4, Q4) # Publisher
edit_item(QNinian W Edwards, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QNinian W Edwards, P28, Edwards, Q4) # Surname
edit_item(QNinian W Edwards, P30, Ninian, Q4) # Forename
edit_item(QNinian W Edwards, P30, W, Q4) # Middle Name/Initial
edit_item(QNinian W Edwards, P6, 31731478, Q4) # SNAC ID
edit_item(QNinian W Edwards, P7, Q7, Q4) # Sex
edit_item(QNinian W Edwards, P13, Q10, Q4) # Race Description
edit_item(QNinian W Edwards, P8, 1809-04-15, Q4) # Birth Date
edit_item(QNinian W Edwards, P9, 1889-09-02, Q4) # Death Date
edit_item(QNinian W Edwards, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QNinian W Edwards, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QNinian W Edwards, P26, Newton Bateman and Paul Selby, eds., Historical Encyclopedia of Illinois and History of Sangamon County, 2 vols. (Chicago: Munsell Publishing, 1912), 1:152-53; Daily Illinois State Journal (Springfield), 3 September 1889, 1:3-4; Daily Illinois State Register (Springfield), 3 September 1889, 3:6; Ninian W. Edwards, History of Illinois From 1778 to 1833; And Life and Times of Ninian Edwards (Springfield: Illinois State Journal, 1870); John Carroll Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 278-79, 464; U.S. Census Office, Seventh Census of the United States (1850), Sangamon County, IL, 103; Gravestone, Oak Ridge Cemetery, Springfield, IL. Illustration courtesy of the Abraham Lincoln Presidential Library, Springfield, IL., Q4) # Citation
edit_item(QNinian W Edwards, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QNinian W Edwards, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QNinian W Edwards, P32, http://172.104.209.93:8181/wiki/Ninian_W_Edwards, Q4)
qcode = create_item(William L. D. Ewing, William L. D. Ewing)
edit_item(QWilliam L. D. Ewing, P33, Q90, Q4) # instance_of human
edit_item(QWilliam L. D. Ewing, P29, Q4, Q4) # Publisher
edit_item(QWilliam L. D. Ewing, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QWilliam L. D. Ewing, P28, Ewing, Q4) # Surname
edit_item(QWilliam L. D. Ewing, P30, William, Q4) # Forename
edit_item(QWilliam L. D. Ewing, P30, L. D., Q4) # Middle Name/Initial
edit_item(QWilliam L. D. Ewing, P6, 61227879, Q4) # SNAC ID
edit_item(QWilliam L. D. Ewing, P7, Q7, Q4) # Sex
edit_item(QWilliam L. D. Ewing, P13, Q10, Q4) # Race Description
edit_item(QWilliam L. D. Ewing, P8, 1795-08-31, Q4) # Birth Date
edit_item(QWilliam L. D. Ewing, P9, 1846-03-25, Q4) # Death Date
edit_item(QWilliam L. D. Ewing, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QWilliam L. D. Ewing, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QWilliam L. D. Ewing, P26, Biographical Directory of the United States Congress, http://bioguide.congress.gov/scripts/biodisplay.pl?index=E000283; Illinois Statewide Marriage Index, Fayette County, 3 May 1827, Illinois State Archives, Springfield, IL; Robert P. Howard, Mostly Good and Competent Men (Springfield, IL: Sangamon State University, 1988), 57-59; U.S. Census Office, Fifth Census of the United States (1830), Fayette County, IL, 236; U.S. Census Office, Sixth Census of the United States (1840), Fayette County, IL, 160; Sangamo Journal (Springfield, IL), 2 April 1846, 2:6. , Q4) # Citation
edit_item(QWilliam L. D. Ewing, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QWilliam L. D. Ewing, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QWilliam L. D. Ewing, P32, http://172.104.209.93:8181/wiki/William_L._D._Ewing, Q4)
qcode = create_item(Thomas Ewing, Thomas Ewing)
edit_item(QThomas Ewing, P33, Q90, Q4) # instance_of human
edit_item(QThomas Ewing, P29, Q4, Q4) # Publisher
edit_item(QThomas Ewing, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QThomas Ewing, P28, Ewing, Q4) # Surname
edit_item(QThomas Ewing, P30, Thomas, Q4) # Forename
edit_item(QThomas Ewing, P6, 23306796, Q4) # SNAC ID
edit_item(QThomas Ewing, P7, Q7, Q4) # Sex
edit_item(QThomas Ewing, P13, Q10, Q4) # Race Description
edit_item(QThomas Ewing, P8, 1789-12-28, Q4) # Birth Date
edit_item(QThomas Ewing, P9, 1871-10-26, Q4) # Death Date
edit_item(QThomas Ewing, P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QThomas Ewing, P11, Ohio/USA, Q4) # State/Country of Death
edit_item(QThomas Ewing, P26, Kenneth J. Heineman, Civil War Dynasty: The Ewing Family of Ohio (New York: New York University Press, 2012); Thomas Ewing, "The Autobiography of Thomas Ewing" 22 (January 1913): 126-204)., Q4) # Citation
edit_item(QThomas Ewing, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QThomas Ewing, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QThomas Ewing, P32, http://172.104.209.93:8181/wiki/Thomas_Ewing, Q4)
qcode = create_item(Jesse W Fell, Jesse W Fell)
edit_item(QJesse W Fell, P33, Q90, Q4) # instance_of human
edit_item(QJesse W Fell, P29, Q4, Q4) # Publisher
edit_item(QJesse W Fell, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QJesse W Fell, P28, Fell, Q4) # Surname
edit_item(QJesse W Fell, P30, Jesse, Q4) # Forename
edit_item(QJesse W Fell, P30, W, Q4) # Middle Name/Initial
edit_item(QJesse W Fell, P6, 3447752, Q4) # SNAC ID
edit_item(QJesse W Fell, P7, Q7, Q4) # Sex
edit_item(QJesse W Fell, P13, Q10, Q4) # Race Description
edit_item(QJesse W Fell, P8, 1808-11-10, Q4) # Birth Date
edit_item(QJesse W Fell, P9, 1887-02-25, Q4) # Death Date
edit_item(QJesse W Fell, P10, Pennsylvania/USA, Q4) # State/Country of Birth
edit_item(QJesse W Fell, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QJesse W Fell, P26, Obituary, Daily Illinois State Journal (Springfield), 26 February 1887, 1:7: "McLean County in the War of the Rebellion, 1861-65," Transactions of the McLean County Historical Society, vol. 1: War Record of McLean County with Other Papers (1899), 32; Illinois Statewide Marriage Index, Tazewell County, 25 January 1838, Illinois State Archives, Springfield, IL; Frances Milton I. Morehouse, "The Life of Jesse W. Fell," University of Illinois Studies in the Social Sciences 5 (June 1916), 15, 26-27, 36, 52, 55, 116; U.S. Census Office, Eighth Census of the United States (1860), McLean County, IL, 101. , Q4) # Citation
edit_item(QJesse W Fell, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJesse W Fell, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QJesse W Fell, P32, http://172.104.209.93:8181/wiki/Jesse_W_Fell, Q4)
qcode = create_item(Orlando B Ficklin, Orlando B Ficklin)
edit_item(QOrlando B Ficklin, P33, Q90, Q4) # instance_of human
edit_item(QOrlando B Ficklin, P29, Q4, Q4) # Publisher
edit_item(QOrlando B Ficklin, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QOrlando B Ficklin, P28, Ficklin, Q4) # Surname
edit_item(QOrlando B Ficklin, P30, Orlando, Q4) # Forename
edit_item(QOrlando B Ficklin, P30, B, Q4) # Middle Name/Initial
edit_item(QOrlando B Ficklin, P6, 73913753, Q4) # SNAC ID
edit_item(QOrlando B Ficklin, P7, Q7, Q4) # Sex
edit_item(QOrlando B Ficklin, P13, Q10, Q4) # Race Description
edit_item(QOrlando B Ficklin, P8, 1808-12-16, Q4) # Birth Date
edit_item(QOrlando B Ficklin, P9, 1886-05-05, Q4) # Death Date
edit_item(QOrlando B Ficklin, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QOrlando B Ficklin, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QOrlando B Ficklin, P26, Gravestone, Mound Cemetery, Charleston, IL; Biographical Diectory of the United States Congress, 1774-2005 (Washington: Government Printing Office, 2005), 1048; Theodore C. Pease, ed., Illinois Election Returns, 1818-1848, vol. 18 of Collections of the Illinois State Historical Library (Springfield: Illinois State Historical Library, 1923), 272, 316, 374; John J. Duff, A. Lincoln: Prairie Lawyer (New York & Toronto: Rinehart, 1960), 131; Edward F. Dunne, Illinois: The Heart of the Nation (Chicago and New York: Lewis, 1933), 3:496; Usher F. Linder, Reminiscences of the Early Bench and Bar of Illinois (Chicago: Chicago Legal News, 1879), 110-12; Mark E. Neely Jr., The Abraham Lincoln Encyclopedia (New York: McGraw Hill, 1982), 109-10; Charles Edward Wilson, History of Coles County (Chicago: Munsell, 1905), 795-96; Albert A. Woldman, Lawyer Lincoln (Boston & New York: Houghton Mifflin, 1936), 60, 102; In re Bryant et al., Martha L. Benner and Cullom Davis et al., eds., The Law Practice of Abraham Lincoln: Complete Documentary Edition, 2d edition (Springfield: Illinois Historic Preservation Agency, 2009), http://www.lawpracticeofabrahamlincoln.org/Details.aspx?case=135679., Q4) # Citation
edit_item(QOrlando B Ficklin, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QOrlando B Ficklin, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QOrlando B Ficklin, P32, http://172.104.209.93:8181/wiki/Orlando_B_Ficklin, Q4)
qcode = create_item(Job Fletcher Sr., Job Fletcher Sr.)
edit_item(QJob Fletcher Sr., P33, Q90, Q4) # instance_of human
edit_item(QJob Fletcher Sr., P29, Q4, Q4) # Publisher
edit_item(QJob Fletcher Sr., P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QJob Fletcher Sr., P28, Fletcher, Q4) # Surname
edit_item(QJob Fletcher Sr., P30, Job, Q4) # Forename
edit_item(QJob Fletcher Sr., P19, Squire Job, Q4) # Alternate Name
edit_item(QJob Fletcher Sr., P18, Sr., Q4) # Suffix
edit_item(QJob Fletcher Sr., P6, 41749039, Q4) # SNAC ID
edit_item(QJob Fletcher Sr., P7, Q7, Q4) # Sex
edit_item(QJob Fletcher Sr., P13, Q10, Q4) # Race Description
edit_item(QJob Fletcher Sr., P8, 1793-11-11, Q4) # Birth Date
edit_item(QJob Fletcher Sr., P9, 1872-09-04, Q4) # Death Date
edit_item(QJob Fletcher Sr., P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QJob Fletcher Sr., P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QJob Fletcher Sr., P26, John Carroll Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 301-302; Illinois Public Domain Land Tract Sales, Sangamon County, 68:6, 73, 146, Illinois State Archives, Springfield; John Clayton, The Illinois Fact Book and Historical Almanac 1673-1968 (Carbondale: Southern Illinois University Press, 1970), 200, 203, 205, 206, 212; History of Sangamon County, Illinois (Chicago: Inter-State, 1881), 285, 786-87; Sangamo Journal (Springfield, IL), 8 August 1835, 3:1; John Mack Faragher, Sugar Creek: Life on the Illinois Prairie (New Haven: Yale University, 1986), 58, 124; U.S. Census Office, Fifth Census of the United States (1830), Sangamon County, IL, 140; U.S. Census Office, Eighth Census of the United States (1860), Sangamon County, IL, 59-60; Gravestone, Cumberland Sugar Creek Cemetery, Glenarm, IL. , Q4) # Citation
edit_item(QJob Fletcher Sr., P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJob Fletcher Sr., P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QJob Fletcher Sr., P32, http://172.104.209.93:8181/wiki/Job_Fletcher_Sr., Q4)
qcode = create_item(Mentor Graham, Mentor Graham)
edit_item(QMentor Graham, P33, Q90, Q4) # instance_of human
edit_item(QMentor Graham, P29, Q4, Q4) # Publisher
edit_item(QMentor Graham, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QMentor Graham, P28, Graham, Q4) # Surname
edit_item(QMentor Graham, P30, Mentor, Q4) # Forename
edit_item(QMentor Graham, P6, 9629046, Q4) # SNAC ID
edit_item(QMentor Graham, P7, Q7, Q4) # Sex
edit_item(QMentor Graham, P13, Q10, Q4) # Race Description
edit_item(QMentor Graham, P8, 1800, Q4) # Birth Date
edit_item(QMentor Graham, P9, 1886, Q4) # Death Date
edit_item(QMentor Graham, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QMentor Graham, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QMentor Graham, P26, Gravestone, Farmers Point Cemetery, Tallula, IL; Benjamin P. Thomas, Lincoln's New Salem (Springfield, IL: Abraham Lincoln Association, 1934), 29-30, 48-49, 69; The History of Menard and Mason Counties, Illinois (Chicago: O. L. Baskin, 1879), 209; U.S. Census Office, Eighth Census of the United States (1860), Menard County, IL, 211., Q4) # Citation
edit_item(QMentor Graham, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QMentor Graham, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QMentor Graham, P32, http://172.104.209.93:8181/wiki/Mentor_Graham, Q4)
qcode = create_item(John J Hardin, John J Hardin)
edit_item(QJohn J Hardin, P33, Q90, Q4) # instance_of human
edit_item(QJohn J Hardin, P29, Q4, Q4) # Publisher
edit_item(QJohn J Hardin, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QJohn J Hardin, P28, Hardin, Q4) # Surname
edit_item(QJohn J Hardin, P30, John , Q4) # Forename
edit_item(QJohn J Hardin, P30, J, Q4) # Middle Name/Initial
edit_item(QJohn J Hardin, P6, 51393732, Q4) # SNAC ID
edit_item(QJohn J Hardin, P7, Q7, Q4) # Sex
edit_item(QJohn J Hardin, P13, Q10, Q4) # Race Description
edit_item(QJohn J Hardin, P8, 1810-01-06, Q4) # Birth Date
edit_item(QJohn J Hardin, P9, 1847-02-23, Q4) # Death Date
edit_item(QJohn J Hardin, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QJohn J Hardin, P11, Coahuila/Mexico, Q4) # State/Country of Death
edit_item(QJohn J Hardin, P26, Nancy L. Cox, A Life of John Hardin of Illinois: 1810-1847 (Oxford, OH: Miami University, 1964), 1-126, 163-188; Allen Johnson, ed., Dictionary of American Biography (New York: Charles Scribner's & Sons, 1964), 4:2:246-47; Mark E. Neely Jr., The Abraham Lincoln Encyclopedia (New York: McGraw Hill, 1982), 139-40. , Q4) # Citation
edit_item(QJohn J Hardin, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJohn J Hardin, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QJohn J Hardin, P32, http://172.104.209.93:8181/wiki/John_J_Hardin, Q4)
qcode = create_item(Milton Hay, Milton Hay)
edit_item(QMilton Hay, P33, Q90, Q4) # instance_of human
edit_item(QMilton Hay, P29, Q4, Q4) # Publisher
edit_item(QMilton Hay, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QMilton Hay, P28, Hay, Q4) # Surname
edit_item(QMilton Hay, P30, Milton, Q4) # Forename
edit_item(QMilton Hay, P6, 73136612, Q4) # SNAC ID
edit_item(QMilton Hay, P7, Q7, Q4) # Sex
edit_item(QMilton Hay, P13, Q10, Q4) # Race Description
edit_item(QMilton Hay, P8, 1817-07-03, Q4) # Birth Date
edit_item(QMilton Hay, P9, 1893-09-15, Q4) # Death Date
edit_item(QMilton Hay, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QMilton Hay, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QMilton Hay, P26, John J. Duff, A. Lincoln: Prairie Lawyer (New York: Rinehart, 1960), 285, 295; Illinois State Journal (Springfield, IL), 16 September 1893, 4:1-2; John M. Palmer, ed., The Bench and Bar of Illinois: Historical and Reminiscent (Chicago: Lewis, 1899), 1:196-98; People v. Harrison , Martha L. Benner and Cullom Davis et al., eds., The Law Practice of Abraham Lincoln: Complete Documentary Edition, 2d edition (Springfield: Illinois Historic Preservation Agency, 2009), http://www.lawpracticeofabrahamlincoln.org/Details.aspx?case=140154; Illustration courtesy of the Abraham Lincoln Presidential Library, Springfield, IL., Q4) # Citation
edit_item(QMilton Hay, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QMilton Hay, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QMilton Hay, P32, http://172.104.209.93:8181/wiki/Milton_Hay, Q4)
qcode = create_item(Anson G Henry, Anson G Henry)
edit_item(QAnson G Henry, P33, Q90, Q4) # instance_of human
edit_item(QAnson G Henry, P29, Q4, Q4) # Publisher
edit_item(QAnson G Henry, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QAnson G Henry, P28, Henry, Q4) # Surname
edit_item(QAnson G Henry, P30, Anson, Q4) # Forename
edit_item(QAnson G Henry, P30, G, Q4) # Middle Name/Initial
edit_item(QAnson G Henry, P6, 63741842, Q4) # SNAC ID
edit_item(QAnson G Henry, P7, Q7, Q4) # Sex
edit_item(QAnson G Henry, P13, Q10, Q4) # Race Description
edit_item(QAnson G Henry, P8, 1804-10-03, Q4) # Birth Date
edit_item(QAnson G Henry, P9, 1865-07-30, Q4) # Death Date
edit_item(QAnson G Henry, P10, New York/USA, Q4) # State/Country of Birth
edit_item(QAnson G Henry, P11, Q80, Q4) # State/Country of Death
edit_item(QAnson G Henry, P26, Harry E. Pratt, "Dr. Anson G. Henry: Lincoln's Physician and Friend," Lincoln Herald 45 (October 1943): 3-17; 45 (December 1943): 31-40; Sangamo Journal, 11 March 1842, 3:2., Q4) # Citation
edit_item(QAnson G Henry, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QAnson G Henry, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QAnson G Henry, P32, http://172.104.209.93:8181/wiki/Anson_G_Henry, Q4)
qcode = create_item(Elijah Iles, Elijah Iles)
edit_item(QElijah Iles, P33, Q90, Q4) # instance_of human
edit_item(QElijah Iles, P29, Q4, Q4) # Publisher
edit_item(QElijah Iles, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QElijah Iles, P30, Iles, Q4) # Forename
edit_item(QElijah Iles, P30, Elijah, Q4) # Middle Name/Initial
edit_item(QElijah Iles, P6, 52322435, Q4) # SNAC ID
edit_item(QElijah Iles, P7, Q7, Q4) # Sex
edit_item(QElijah Iles, P13, Q10, Q4) # Race Description
edit_item(QElijah Iles, P8, 1796-03-28, Q4) # Birth Date
edit_item(QElijah Iles, P9, 1883-09-04, Q4) # Death Date
edit_item(QElijah Iles, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QElijah Iles, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QElijah Iles, P26, Daily Illinois State Register (Springfield), 5 September 1883, 4:3; John Carroll Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 397-400; U.S. Census Office, Eighth Census of the United States (1860), Sangamon County, IL, 148; Joseph Wallace, Past and Present of the City of Springfield and Sangamon County Illinois (Chicago: S. J. Clarke, 1904), 1:39-40. , Q4) # Citation
edit_item(QElijah Iles, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QElijah Iles, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QElijah Iles, P32, http://172.104.209.93:8181/wiki/Elijah_Iles, Q4)
qcode = create_item(Ward Hill Lamon, Ward Hill Lamon)
edit_item(QWard Hill Lamon, P33, Q90, Q4) # instance_of human
edit_item(QWard Hill Lamon, P29, Q4, Q4) # Publisher
edit_item(QWard Hill Lamon, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QWard Hill Lamon, P28, Lamon, Q4) # Surname
edit_item(QWard Hill Lamon, P30, Ward, Q4) # Forename
edit_item(QWard Hill Lamon, P30, Hill, Q4) # Middle Name/Initial
edit_item(QWard Hill Lamon, P6, 61766323, Q4) # SNAC ID
edit_item(QWard Hill Lamon, P7, Q7, Q4) # Sex
edit_item(QWard Hill Lamon, P13, Q10, Q4) # Race Description
edit_item(QWard Hill Lamon, P8, 1828-01-06, Q4) # Birth Date
edit_item(QWard Hill Lamon, P9, 1893-05-07, Q4) # Death Date
edit_item(QWard Hill Lamon, P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QWard Hill Lamon, P11, West Virginia/USA, Q4) # State/Country of Death
edit_item(QWard Hill Lamon, P26, Lavern Marshall Hamand, "Ward Hill Lamon: Lincoln's 'Particular Friend'" (Ph.D. diss., University of Illinois, 1949), 5-6; Jonathan Lurie, "Lamon, Ward Hill," American National Biography (New York: Oxford University Press, 1999), 13:86-87; Clint Clay Tilton, “Lincoln and Lamon: Partners and Friends,” Transactions of the Illinois State Historical Society, 1931, 175-228; Benner, Martha L., and Cullom Davis et al., eds. The Law Practice of Abraham Lincoln: Complete Documentary Edition, 2d edition (Springfield: Illinois Historic Preservation Agency, 2009), http://www.lawpracticeofabrahamlincoln.org., Q4) # Citation
edit_item(QWard Hill Lamon, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QWard Hill Lamon, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QWard Hill Lamon, P32, http://172.104.209.93:8181/wiki/Ward_Hill_Lamon, Q4)
qcode = create_item(Abraham Lincoln, Abraham Lincoln)
edit_item(QAbraham Lincoln, P33, Q90, Q4) # instance_of human
edit_item(QAbraham Lincoln, P29, Q4, Q4) # Publisher
edit_item(QAbraham Lincoln, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QAbraham Lincoln, P28, Lincoln, Q4) # Surname
edit_item(QAbraham Lincoln, P30, Abraham , Q4) # Forename
edit_item(QAbraham Lincoln, P6, 83331846, Q4) # SNAC ID
edit_item(QAbraham Lincoln, P7, Q7, Q4) # Sex
edit_item(QAbraham Lincoln, P13, Q10, Q4) # Race Description
edit_item(QAbraham Lincoln, P8, 1809-02-12, Q4) # Birth Date
edit_item(QAbraham Lincoln, P9, 1865-04-15, Q4) # Death Date
edit_item(QAbraham Lincoln, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QAbraham Lincoln, P11, Washington, D.C./USA, Q4) # State/Country of Death
edit_item(QAbraham Lincoln, P26, Michael Burlingame, Abraham Lincoln: A Life, 2 vols. (Baltimore: Johns Hopkins University Press, 2008); David Herbert Donald, Lincoln (New York: Simon and Schuster, 1995); Phillip Shaw Paludan, The Presidency of Abraham Lincoln (Lawrence: University of Kansas Press, 1994); William H. Herndon and Jesse W. Weik, Herndon's Lincoln: The True Story of a Great Life, 3 vols. (Chicago: Belford, Clarke, and Company, 1889; One-volume reprint edited by Paul Angle, Cleveland, OH: World, 1965; Reprint, New York: Da Capo, 1983); Stephen B. Oates, With Malice Toward None: The Life of Abraham Lincoln (New York: Harper and Row, 1977); Benjamin P. Thomas, Abraham Lincoln (New York: Knopf, 1952); "Lincoln the Lawyer Outside the Courtroom," in Daniel W. Stowell et al., eds., The Papers of Abraham Lincoln: Legal Documents and Cases, 4 vols. (Charlottesville: University of Virginia Press, 2008), 4:193-94., Q4) # Citation
edit_item(QAbraham Lincoln, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QAbraham Lincoln, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QAbraham Lincoln, P32, http://172.104.209.93:8181/wiki/Abraham_Lincoln, Q4)
qcode = create_item(Stephen T Logan, Stephen T Logan)
edit_item(QStephen T Logan, P33, Q90, Q4) # instance_of human
edit_item(QStephen T Logan, P29, Q4, Q4) # Publisher
edit_item(QStephen T Logan, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QStephen T Logan, P28, Logan, Q4) # Surname
edit_item(QStephen T Logan, P30, Stephen, Q4) # Forename
edit_item(QStephen T Logan, P30, T, Q4) # Middle Name/Initial
edit_item(QStephen T Logan, P6, 32020350, Q4) # SNAC ID
edit_item(QStephen T Logan, P7, Q7, Q4) # Sex
edit_item(QStephen T Logan, P13, Q10, Q4) # Race Description
edit_item(QStephen T Logan, P8, 1800-02-24, Q4) # Birth Date
edit_item(QStephen T Logan, P9, 1880-07-17, Q4) # Death Date
edit_item(QStephen T Logan, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QStephen T Logan, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QStephen T Logan, P26, David Herbert Donald, Lincoln (New York: Simon & Schuster, 1995), 88, 96-100, 133; Sylvia B. Larson, "Logan, Stephen Trigg," American National Biography (New York: Oxford University Press, 1999), 13:845-47; Illinois State Journal (Springfield), 19 July 1880, 3:2-3; Mark E. Neely Jr., The Abraham Lincoln Encyclopedia (New York: McGraw Hill, 1982), 194-95; U.S. Census Office, U.S. Census Office, Eighth Census of the United States (1860), Sangamon County, IL, 102. , Q4) # Citation
edit_item(QStephen T Logan, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QStephen T Logan, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QStephen T Logan, P32, http://172.104.209.93:8181/wiki/Stephen_T_Logan, Q4)
qcode = create_item(Andrew McCormick, Andrew McCormick)
edit_item(QAndrew McCormick, P33, Q90, Q4) # instance_of human
edit_item(QAndrew McCormick, P29, Q4, Q4) # Publisher
edit_item(QAndrew McCormick, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QAndrew McCormick, P28, McCormick, Q4) # Surname
edit_item(QAndrew McCormick, P30, Andrew , Q4) # Forename
edit_item(QAndrew McCormick, P19, McCormack, Q4) # Alternate Name
edit_item(QAndrew McCormick, P6, 58570874, Q4) # SNAC ID
edit_item(QAndrew McCormick, P7, Q7, Q4) # Sex
edit_item(QAndrew McCormick, P13, Q10, Q4) # Race Description
edit_item(QAndrew McCormick, P8, 1801-04-27, Q4) # Birth Date
edit_item(QAndrew McCormick, P9, 1857-01-24, Q4) # Death Date
edit_item(QAndrew McCormick, P10, Tennessee/USA, Q4) # State/Country of Birth
edit_item(QAndrew McCormick, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QAndrew McCormick, P26, John C. Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 486-87; History of Sangamon County, Illinois (Chicago: Inter-State Publishing, 1881), 509, 566; Isaac H. Elliott, Record of the Services of Illinois Soldiers in the Black Hawk War, 1831-32, and in the Mexican War, 1846-8, (Springfield, IL: H. W. Rokker, 1882), 70; Theodore C. Pease, ed., Illinois Election Returns, 1818-1848, vol. 18 of Collections of the Illinois State Historical Library (Springfield: Illinois State Historical Library, 1923), 275, 299, 321; John Clayton, The Illinois Fact Book and Historical Almanac, 1673-1968 (Carbondale: Southern Illinois University Press, 1970), 206-207; U.S. Census Office, Seventh Census of the United States (1850), Sangamon, IL, 186., Q4) # Citation
edit_item(QAndrew McCormick, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QAndrew McCormick, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QAndrew McCormick, P32, http://172.104.209.93:8181/wiki/Andrew_McCormick, Q4)
qcode = create_item(Samuel Musick, Samuel Musick)
edit_item(QSamuel Musick, P33, Q90, Q4) # instance_of human
edit_item(QSamuel Musick, P29, Q4, Q4) # Publisher
edit_item(QSamuel Musick, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QSamuel Musick, P28, Musick, Q4) # Surname
edit_item(QSamuel Musick, P30, Samuel, Q4) # Forename
edit_item(QSamuel Musick, P7, Q7, Q4) # Sex
edit_item(QSamuel Musick, P13, Q10, Q4) # Race Description
edit_item(QSamuel Musick, P8, 1783, Q4) # Birth Date
edit_item(QSamuel Musick, P9, 1836-04-28, Q4) # Death Date
edit_item(QSamuel Musick, P10, Virginia/USA, Q4) # State/Country of Birth
edit_item(QSamuel Musick, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QSamuel Musick, P26, Marriage License of Samuel Musick and Elizabeth Byrd, 11 January 1832, Abraham Lincoln Presidential Library, Springfield, IL; Sangamo Journal (Springfield, IL), 2 May 1835, 2:1, 8 August 1835, 3:2; Copy of Petition for Dower, 21 March 1838, Martha L. Benner and Cullom Davis et al., eds., The Law Practice of Abraham Lincoln: Complete Documentary Edition, 2d edition (Springfield: Illinois Historic Preservation Agency, 2009), http://www.lawpracticeofabrahamlincoln.org; Affidavit of Decease, 2 May 1836, Samuel Musick probate file 269, Sangamon County Probate Court, Illinois Regional Archives Depository, University of Illinois Springfield, Springfield, IL; U.S. Census Office, Fifth Census of the United States (1830), Sangamon County, IL, 181; Lawrence Beaumont Stringer, History of Logan County, Illinois, 2 vols. (Chicago: Pioneer Publishing Company, 1911), 1:70-71. , Q4) # Citation
edit_item(QSamuel Musick, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QSamuel Musick, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QSamuel Musick, P32, http://172.104.209.93:8181/wiki/Samuel_Musick, Q4)
qcode = create_item(John H Nicolay, John H Nicolay)
edit_item(QJohn H Nicolay, P33, Q90, Q4) # instance_of human
edit_item(QJohn H Nicolay, P29, Q4, Q4) # Publisher
edit_item(QJohn H Nicolay, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QJohn H Nicolay, P28, Nicolay, Q4) # Surname
edit_item(QJohn H Nicolay, P30, John, Q4) # Forename
edit_item(QJohn H Nicolay, P30, H, Q4) # Middle Name/Initial
edit_item(QJohn H Nicolay, P6, 65680839, Q4) # SNAC ID
edit_item(QJohn H Nicolay, P7, Q7, Q4) # Sex
edit_item(QJohn H Nicolay, P13, Q10, Q4) # Race Description
edit_item(QJohn H Nicolay, P8, 1832-02-26, Q4) # Birth Date
edit_item(QJohn H Nicolay, P9, 1901-09-26, Q4) # Death Date
edit_item(QJohn H Nicolay, P10, Bavaria/Germany, Q4) # State/Country of Birth
edit_item(QJohn H Nicolay, P11, Washington, D.C./USA, Q4) # State/Country of Death
edit_item(QJohn H Nicolay, P26, Daniel Hamilton, "Nicolay, John George," American National Biography (New York: Oxford University Press, 1999), 16:412-13; Joshua Zeitz, Lincoln's Boys: John Hay, John Nicolay, and the War for Lincoln's Image (New York: Viking, 2014), 12-22; Michael Burlingame, ed., Abraham Lincoln: The Observations of John G. Nicolay and John Hay (Carbondale: Southern Illinois University, Press, 2007), 17-27; Helen Nicolay, Lincoln's Secretary: A Biography of John G. Nicolay (New York: Longmans, Green, 1949), 3-248. , Q4) # Citation
edit_item(QJohn H Nicolay, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QJohn H Nicolay, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QJohn H Nicolay, P32, http://172.104.209.93:8181/wiki/John_H_Nicolay, Q4)
qcode = create_item(Denton Offutt, Denton Offutt)
edit_item(QDenton Offutt, P33, Q90, Q4) # instance_of human
edit_item(QDenton Offutt, P29, Q4, Q4) # Publisher
edit_item(QDenton Offutt, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QDenton Offutt, P28, Offutt, Q4) # Surname
edit_item(QDenton Offutt, P30, Denton, Q4) # Forename
edit_item(QDenton Offutt, P7, Q7, Q4) # Sex
edit_item(QDenton Offutt, P13, Q10, Q4) # Race Description
edit_item(QDenton Offutt, P8, 1803-1807, Q4) # Birth Date
edit_item(QDenton Offutt, P9, 1861-1862, Q4) # Death Date
edit_item(QDenton Offutt, P10, Kentucky/USA, Q4) # State/Country of Birth
edit_item(QDenton Offutt, P11, Q84, Q4) # State/Country of Death
edit_item(QDenton Offutt, P26, Gary A. O'Dell, "Denton Offutt of Kentucky: America's First 'Horse Whisperer'"? The Register of the Kentucky Historical Society 108 3 (Summer 2010), 173-211; Benjamin P. Thomas, Lincoln’s New Salem (Springfield, IL: Abraham Lincoln Association, 1934), 6,41-42, 44, 54; Kenneth J. Winkle, The Young Eagle: The Rise of Abraham Lincoln (Dallas: Taylor Trade, 2001), 104; Denton Offutt, Best and Cheapest Book on the Management of Horses, Mules, &c (Washington: William Greer, 1843); Denton Offutt, A Method of Gentling Horses, Their Selection, and Curing Their Diseases (Lexington, KY: np., 1846); Denton Offutt, The Educated Horse: Teaching Horses and Other Animals (Washington: n.p., 1854); Denton Offutt to Abraham Lincoln; Denton Offutt to Abraham Lincoln; Denton Offutt to Abraham Lincoln. , Q4) # Citation
edit_item(QDenton Offutt, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QDenton Offutt, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QDenton Offutt, P32, http://172.104.209.93:8181/wiki/Denton_Offutt, Q4)
qcode = create_item(Mary S Owens, Mary S Owens)
edit_item(QMary S Owens, P33, Q90, Q4) # instance_of human
edit_item(QMary S Owens, P29, Q4, Q4) # Publisher
edit_item(QMary S Owens, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QMary S Owens, P28, Owens, Q4) # Surname
edit_item(QMary S Owens, P30, Mary, Q4) # Forename
edit_item(QMary S Owens, P30, S, Q4) # Middle Name/Initial
edit_item(QMary S Owens, P19, Vineyard, Q4) # Alternate Name
edit_item(QMary S Owens, P7, Q8, Q4) # Sex
edit_item(QMary S Owens, P13, Q10, Q4) # Race Description
edit_item(QMary S Owens, P8, 1808-09-29, Q4) # Birth Date
edit_item(QMary S Owens, P9, 1877-07-04, Q4) # Death Date
edit_item(QMary S Owens, P10, Q68, Q4) # State/Country of Birth
edit_item(QMary S Owens, P11, Q84, Q4) # State/Country of Death
edit_item(QMary S Owens, P26, Gravestones of Mary Vineyard and Jesse Vineyard, Pleasant Ridge Cemetery, Weston, MO; Mary Owens Vineyard to William H. Herndon, 23 May 1866, in Douglas L. Wilson and Rodney O. Davis, eds., Herndon's Informants: Letters, Interviews, and Statements about Abraham Lincoln (Urbana: University of Illinois Press, 1998), 255-56; Mark E. Neely Jr., The Abraham Lincoln Encyclopedia (New York: Da Capo Press, 1982), 230; Abraham Lincoln to Mary S. Owens; Abraham Lincoln to Mary S. Owens; Abraham Lincoln to Mary S. Owens; Abraham Lincoln to Eliza Browning; Dale Thomas, Lincoln's Old Friends of Menard County, Illinois (Charleston, SC: The History Press, 2012), 54-58, 60-64. , Q4) # Citation
edit_item(QMary S Owens, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QMary S Owens, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QMary S Owens, P32, http://172.104.209.93:8181/wiki/Mary_S_Owens, Q4)
qcode = create_item(George Pasfield, George Pasfield)
edit_item(QGeorge Pasfield, P33, Q90, Q4) # instance_of human
edit_item(QGeorge Pasfield, P29, Q4, Q4) # Publisher
edit_item(QGeorge Pasfield, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QGeorge Pasfield, P28, Pasfield, Q4) # Surname
edit_item(QGeorge Pasfield, P30, George, Q4) # Forename
edit_item(QGeorge Pasfield, P6, 43430181, Q4) # SNAC ID
edit_item(QGeorge Pasfield, P7, Q7, Q4) # Sex
edit_item(QGeorge Pasfield, P13, Q10, Q4) # Race Description
edit_item(QGeorge Pasfield, P8, 1792-10, Q4) # Birth Date
edit_item(QGeorge Pasfield, P9, 1869-11-09, Q4) # Death Date
edit_item(QGeorge Pasfield, P10, England/United Kingdom, Q4) # State/Country of Birth
edit_item(QGeorge Pasfield, P11, Illinois/USA, Q4) # State/Country of Death
edit_item(QGeorge Pasfield, P26, John Carroll Power and S. A. Power, History of the Early Settlers of Sangamon County, Illinois (Springfield, IL: Edwin A. Wilson, 1876), 559; Gravestone, Oak Ridge Cemetery, Block 10, 244, Springfield, IL. , Q4) # Citation
edit_item(QGeorge Pasfield, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QGeorge Pasfield, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QGeorge Pasfield, P32, http://172.104.209.93:8181/wiki/George_Pasfield, Q4)
qcode = create_item(Oliver H Perry, Oliver H Perry)
edit_item(QOliver H Perry, P33, Q90, Q4) # instance_of human
edit_item(QOliver H Perry, P29, Q4, Q4) # Publisher
edit_item(QOliver H Perry, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QOliver H Perry, P28, Perry, Q4) # Surname
edit_item(QOliver H Perry, P30, Oliver , Q4) # Forename
edit_item(QOliver H Perry, P30, H, Q4) # Middle Name/Initial
edit_item(QOliver H Perry, P6, 41078678, Q4) # SNAC ID
edit_item(QOliver H Perry, P7, Q7, Q4) # Sex
edit_item(QOliver H Perry, P13, Q10, Q4) # Race Description
edit_item(QOliver H Perry, P8, 1785-08-23, Q4) # Birth Date
edit_item(QOliver H Perry, P9, 1819-08-23, Q4) # Death Date
edit_item(QOliver H Perry, P10, Rhode Island , Q4) # State/Country of Birth
edit_item(QOliver H Perry, P11, Q86, Q4) # State/Country of Death
edit_item(QOliver H Perry, P26, Robert G. Baker, "Perry, Oliver Hazard," American National Biography (New York: Oxford University Press, 1999), 17:369-71., Q4) # Citation
edit_item(QOliver H Perry, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QOliver H Perry, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QOliver H Perry, P32, http://172.104.209.93:8181/wiki/Oliver_H_Perry, Q4)
qcode = create_item(Franklin Pierce, Franklin Pierce)
edit_item(QFranklin Pierce, P33, Q90, Q4) # instance_of human
edit_item(QFranklin Pierce, P29, Q4, Q4) # Publisher
edit_item(QFranklin Pierce, P21, Papers of Abraham Lincoln Digital Library, Q4) # Publication
edit_item(QFranklin Pierce, P28, Pierce, Q4) # Surname
edit_item(QFranklin Pierce, P30, Franklin, Q4) # Forename
edit_item(QFranklin Pierce, P6, 83198846, Q4) # SNAC ID
edit_item(QFranklin Pierce, P7, Q7, Q4) # Sex
edit_item(QFranklin Pierce, P13, Q10, Q4) # Race Description
edit_item(QFranklin Pierce, P8, 1804-11-23, Q4) # Birth Date
edit_item(QFranklin Pierce, P9, 1869-10-08, Q4) # Death Date
edit_item(QFranklin Pierce, P10, New Hampshire/USA, Q4) # State/Country of Birth
edit_item(QFranklin Pierce, P11, New Hampshire/USA, Q4) # State/Country of Death
edit_item(QFranklin Pierce, P26, Larry Gara, The Presidency of Franklin Pierce (Lawrence: University Press of Kansas, 1991); Roy Franklin Nichols, Franklin Pierce: Young Hickory of the Granite Hills (Philadelphia: University of Pennsylvania Press, 1969); Nathaniel Hawthorne, Life of Franklin Pierce (Boston, Mass.: Ticknor, Reed and Fields, 1852)., Q4) # Citation
edit_item(QFranklin Pierce, P25, https://papersofabrahamlincoln.org/, Q4)
edit_item(QFranklin Pierce, P38, 'Papers of Abraham Lincoln Digital Library', Q4)
edit_item(QFranklin Pierce, P32, http://172.104.209.93:8181/wiki/Franklin_Pierce, Q4)
qcode = create_item(Thomas A. Duke, Thomas A. Duke)
edit_item(QThomas A. Duke, P33, Q90, Q6) # instance_of human
edit_item(QThomas A. Duke, P29, Q6, Q6) # Publisher
edit_item(QThomas A. Duke, P21, CWGK, Q6) # Publication
edit_item(QThomas A. Duke, P28, Duke, Q6) # Surname
edit_item(QThomas A. Duke, P30, Thomas, Q6) # Forename
edit_item(QThomas A. Duke, P30, A., Q6) # Middle Name/Initial
edit_item(QThomas A. Duke, P7, Q7, Q6) # Sex
edit_item(QThomas A. Duke, P13, Q10, Q6) # Race Description
edit_item(QThomas A. Duke, P8, c1821, Q6) # Birth Date
edit_item(QThomas A. Duke, P10, KY, Q6) # State/Country of Birth
edit_item(QThomas A. Duke, P26, Eighth Manuscript Census of the United States (1860), Population Schedules, Kentucky, McCracken County, 1st District City of Paducah, p. 5; Berry Craig, Kentucky Confederates: Secession, Civil War, and the Jackson Purchase (Lexington: University Press of Kentucky, 2014), 168; Berry Craig and Dieter C. Ulrich, Unconditional Unionist: The Hazardous Life of Lucian Anderson, Kentucky Congressman (Jefferson, N.C.: McFarland & Company, Inc., 2016), 87, Q6) # Citation
edit_item(QThomas A. Duke, P24, http://discovery.civilwargovernors.org/document/N00000231, Q6)
edit_item(QThomas A. Duke, P38, 'CWGK', Q6)
edit_item(QThomas A. Duke, P32, http://172.104.209.93:8181/wiki/Thomas_A._Duke, Q6)
qcode = create_item(Joshua Tevis, Joshua Tevis)
edit_item(QJoshua Tevis, P33, Q90, Q6) # instance_of human
edit_item(QJoshua Tevis, P29, Q6, Q6) # Publisher
edit_item(QJoshua Tevis, P21, CWGK, Q6) # Publication
edit_item(QJoshua Tevis, P28, Tevis, Q6) # Surname
edit_item(QJoshua Tevis, P30, Joshua, Q6) # Forename
edit_item(QJoshua Tevis, P7, Q7, Q6) # Sex
edit_item(QJoshua Tevis, P13, Q10, Q6) # Race Description
edit_item(QJoshua Tevis, P8, 1826-06-20, Q6) # Birth Date
edit_item(QJoshua Tevis, P9, 1900-10-12, Q6) # Death Date
edit_item(QJoshua Tevis, P10, KY, Q6) # State/Country of Birth
edit_item(QJoshua Tevis, P26, Seventh Manuscript Census of the United States (1850), Population Schedules, Kentucky, Woodford County, Woodford, p 460. Eighth Manuscript Census of the United States (1860), Population Schedules, Kentucky, Jefferson County, Louisville, 5th Ward, p 138; "Joshua Tevis," Louisville Courier-Journal, October 14, 1900, p. A4; J. Stoddard Johnston, Memorial History of Louisville from its First Settlement to the Year 1896, vol. 1 (Chicago and New York: American Biographical Publishing Co., 1896), 135; Roger D. Hunt, Colonels in Blue: Indiana, Kentucky and Tennessee (Jefferson, N.C.: McFarland & Company, Inc., 2014), 190. , Q6) # Citation
edit_item(QJoshua Tevis, P24, http://discovery.civilwargovernors.org/document/N00000232, Q6)
edit_item(QJoshua Tevis, P38, 'CWGK', Q6)
edit_item(QJoshua Tevis, P32, http://172.104.209.93:8181/wiki/Joshua_Tevis, Q6)
qcode = create_item(Daniel Carmichael Wickliffe, Daniel Carmichael Wickliffe)
edit_item(QDaniel Carmichael Wickliffe, P33, Q90, Q6) # instance_of human
edit_item(QDaniel Carmichael Wickliffe, P29, Q6, Q6) # Publisher
edit_item(QDaniel Carmichael Wickliffe, P21, CWGK, Q6) # Publication
edit_item(QDaniel Carmichael Wickliffe, P28, Wickliffe, Q6) # Surname
edit_item(QDaniel Carmichael Wickliffe, P30, Daniel, Q6) # Forename
edit_item(QDaniel Carmichael Wickliffe, P30, Carmichael, Q6) # Middle Name/Initial
edit_item(QDaniel Carmichael Wickliffe, P6, 20823995, Q6) # SNAC ID