-
Notifications
You must be signed in to change notification settings - Fork 0
/
Origin-1911-a-0067.xml
2154 lines (2154 loc) · 102 KB
/
Origin-1911-a-0067.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://raw.githubusercontent.com/sounding-spirit/ocr-correction/master/alto-style.css"?>
<alto xmlns="http://www.loc.gov/standards/alto/ns-v2#"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/standards/alto/ns-v2# http://www.loc.gov/standards/alto/alto-v2.0.xsd">
<Description>
<MeasurementUnit>pixel</MeasurementUnit>
<OCRProcessing ID="IdOcr">
<ocrProcessingStep>
<processingDateTime>2020-06-16</processingDateTime>
<processingSoftware>
<softwareCreator>ABBYY</softwareCreator>
<softwareName>ABBYY FineReader Engine</softwareName>
<softwareVersion>12</softwareVersion>
</processingSoftware>
</ocrProcessingStep>
</OCRProcessing>
</Description>
<Styles/>
<Layout>
<Page ID="Page1" PHYSICAL_IMG_NR="1" HEIGHT="3505" WIDTH="4049">
<TopMargin HEIGHT="423" WIDTH="4049" VPOS="0" HPOS="0"/>
<LeftMargin HEIGHT="2438" WIDTH="136" VPOS="423" HPOS="0"/>
<RightMargin HEIGHT="2438" WIDTH="475" VPOS="423" HPOS="3574"/>
<BottomMargin HEIGHT="644" WIDTH="4049" VPOS="2861" HPOS="0"/>
<PrintSpace HEIGHT="2438" WIDTH="3438" VPOS="423" HPOS="136">
<TextBlock ID="Page1_Block1"
HEIGHT="289"
WIDTH="2353"
VPOS="423"
HPOS="254"
language="en-US">
<Shape>
<Polygon POINTS="1461,424 1564,424 1564,425 2210,425 2210,426 2406,426 2406,427 2509,427 2509,428 2539,428 2539,429 2599,429 2599,430 2606,430 2606,496 2605,496 2605,511 2606,511 2606,604 2607,604 2607,687 873,687 873,688 863,688 863,689 854,689 854,690 844,690 844,691 832,691 832,692 811,692 811,693 807,693 807,694 674,694 674,693 327,693 327,692 258,692 258,691 257,691 257,598 256,598 256,435 840,435 840,434 851,434 851,433 860,433 860,432 868,432 868,431 877,431 877,430 886,430 886,429 898,429 898,428 902,428 902,427 918,427 918,426 1181,426 1181,425 1461,425 1461,424"/>
</Shape>
<TextLine HEIGHT="83" WIDTH="1026" VPOS="422" HPOS="1355">
<String WC="0.52888888120651245"
CONTENT="CHRISTIAN"
HEIGHT="64"
WIDTH="393"
VPOS="428"
HPOS="1355">CHRISTIAN</String>
<SP WIDTH="38" VPOS="435" HPOS="1749"> </SP>
<String WC="0.42875000834465027"
CONTENT="SOLDIER."
HEIGHT="63"
WIDTH="336"
VPOS="433"
HPOS="1788">SOLDIER.</String>
<SP WIDTH="73" VPOS="441" HPOS="2125"> </SP>
<String WC="0.49500000476837158"
CONTENT="C."
HEIGHT="50"
WIDTH="60"
VPOS="441"
HPOS="2199">C.</String>
<SP WIDTH="41" VPOS="443" HPOS="2260"> </SP>
<String WC="0.46000000834465027"
CONTENT="M."
HEIGHT="49"
WIDTH="79"
VPOS="443"
HPOS="2302">M.</String>
</TextLine>
<TextLine HEIGHT="79" WIDTH="1433" VPOS="504" HPOS="1164">
<String WC="0.95499998331069946"
CONTENT="“Watch"
HEIGHT="32"
WIDTH="142"
VPOS="518"
HPOS="1164">“Watch</String>
<SP WIDTH="10" VPOS="521" HPOS="1307"> </SP>
<String WC="0.97666668891906738"
CONTENT="ye,"
HEIGHT="26"
WIDTH="49"
VPOS="528"
HPOS="1318">ye,</String>
<SP WIDTH="12" VPOS="529" HPOS="1368"> </SP>
<String WC="0.78200000524520874"
CONTENT="stand"
HEIGHT="28"
WIDTH="97"
VPOS="521"
HPOS="1381">stand</String>
<SP WIDTH="9" VPOS="520" HPOS="1479"> </SP>
<String WC="0.71749997138977051"
CONTENT="fast"
HEIGHT="31"
WIDTH="66"
VPOS="519"
HPOS="1489">fast</String>
<SP WIDTH="6" VPOS="522" HPOS="1556"> </SP>
<String WC="0.54500001668930054"
CONTENT="in"
HEIGHT="27"
WIDTH="36"
VPOS="522"
HPOS="1563">in</String>
<SP WIDTH="9" VPOS="526" HPOS="1600"> </SP>
<String WC="0.76666665077209473"
CONTENT="the"
HEIGHT="27"
WIDTH="58"
VPOS="524"
HPOS="1610">the</String>
<SP WIDTH="9" VPOS="522" HPOS="1669"> </SP>
<String WC="0.84833335876464844"
CONTENT="faith,"
HEIGHT="37"
WIDTH="94"
VPOS="521"
HPOS="1679">faith,</String>
<SP WIDTH="14" VPOS="533" HPOS="1774"> </SP>
<String WC="0.69499999284744263"
CONTENT="quit"
HEIGHT="35"
WIDTH="70"
VPOS="523"
HPOS="1789">quit</String>
<SP WIDTH="10" VPOS="527" HPOS="1860"> </SP>
<String WC="0.74000000953674316"
CONTENT="you"
HEIGHT="28"
WIDTH="63"
VPOS="532"
HPOS="1871">you</String>
<SP WIDTH="10" VPOS="526" HPOS="1935"> </SP>
<String WC="0.67250001430511475"
CONTENT="like"
HEIGHT="29"
WIDTH="69"
VPOS="526"
HPOS="1946">like</String>
<SP WIDTH="10" VPOS="534" HPOS="2016"> </SP>
<String WC="0.63249999284744263"
CONTENT="men,"
HEIGHT="25"
WIDTH="85"
VPOS="535"
HPOS="2027">men,</String>
<SP WIDTH="13" VPOS="528" HPOS="2113"> </SP>
<String WC="0.66500002145767212"
CONTENT="be"
HEIGHT="28"
WIDTH="41"
VPOS="528"
HPOS="2127">be</String>
<SP WIDTH="9" VPOS="537" HPOS="2169"> </SP>
<String WC="0.65299999713897705"
CONTENT="strong.”—1"
HEIGHT="37"
WIDTH="199"
VPOS="530"
HPOS="2179">strong.”—1</String>
<SP WIDTH="11" VPOS="533" HPOS="2379"> </SP>
<String WC="0.75"
CONTENT="Cor."
HEIGHT="28"
WIDTH="79"
VPOS="533"
HPOS="2391">Cor.</String>
<SP WIDTH="13" VPOS="534" HPOS="2471"> </SP>
<String WC="0.72000002861022949"
CONTENT="16:"
HEIGHT="28"
WIDTH="49"
VPOS="534"
HPOS="2485">16:</String>
<SP WIDTH="16" VPOS="535" HPOS="2535"> </SP>
<String WC="0.76999998092651367"
CONTENT="18."
HEIGHT="28"
WIDTH="45"
VPOS="535"
HPOS="2552">18.</String>
</TextLine>
<TextLine HEIGHT="81" WIDTH="1511" VPOS="566" HPOS="264">
<String WC="0.48199999332427979"
CONTENT="Isaac"
HEIGHT="38"
WIDTH="123"
VPOS="583"
HPOS="264">Isaac</String>
<SP WIDTH="27" VPOS="586" HPOS="386"> </SP>
<String WC="0.65166664123535156"
CONTENT="Watts,"
HEIGHT="45"
WIDTH="157"
VPOS="584"
HPOS="412">Watts,</String>
<SP WIDTH="28" VPOS="585" HPOS="568"> </SP>
<String WC="0.72200000286102295"
CONTENT="1709."
HEIGHT="38"
WIDTH="99"
VPOS="585"
HPOS="595">1709.</String>
<SP WIDTH="50" VPOS="588" HPOS="693"> </SP>
<String WC="0.81000000238418579"
CONTENT="Key"
HEIGHT="44"
WIDTH="85"
VPOS="587"
HPOS="742">Key</String>
<SP WIDTH="22" VPOS="596" HPOS="827"> </SP>
<String WC="0.63499999046325684"
CONTENT="Of"
HEIGHT="39"
WIDTH="42"
VPOS="585"
HPOS="849">Of</String>
<SP WIDTH="21" VPOS="583" HPOS="891"> </SP>
<String WC="0.28999999165534973"
CONTENT="G"
HEIGHT="33"
WIDTH="37"
VPOS="588"
HPOS="912">G</String>
<SP WIDTH="22" VPOS="588" HPOS="949"> </SP>
<String WC="0.75499999523162842"
CONTENT="Major."
HEIGHT="48"
WIDTH="134"
VPOS="584"
HPOS="971">Major.</String>
<SP WIDTH="51" VPOS="590" HPOS="1105"> </SP>
<String WC="0.86250001192092896"
CONTENT="Alto"
HEIGHT="35"
WIDTH="89"
VPOS="587"
HPOS="1156">Alto</String>
<SP WIDTH="21" VPOS="588" HPOS="1245"> </SP>
<String WC="0.88499999046325684"
CONTENT="by"
HEIGHT="45"
WIDTH="52"
VPOS="587"
HPOS="1266">by</String>
<SP WIDTH="23" VPOS="591" HPOS="1318"> </SP>
<String WC="0.73500001430511475"
CONTENT="S."
HEIGHT="35"
WIDTH="40"
VPOS="589"
HPOS="1341">S.</String>
<SP WIDTH="19" VPOS="592" HPOS="1381"> </SP>
<String WC="0.67500001192092896"
CONTENT="M."
HEIGHT="31"
WIDTH="54"
VPOS="592"
HPOS="1400">M.</String>
<SP WIDTH="19" VPOS="592" HPOS="1454"> </SP>
<String WC="0.62999999523162842"
CONTENT="Denson,"
HEIGHT="42"
WIDTH="185"
VPOS="590"
HPOS="1473">Denson,</String>
<SP WIDTH="19" VPOS="594" HPOS="1659"> </SP>
<String WC="0.55000001192092896"
CONTENT="1911."
HEIGHT="34"
WIDTH="96"
VPOS="593"
HPOS="1679">1911.</String>
</TextLine>
<TextLine HEIGHT="35" WIDTH="173" VPOS="645" HPOS="2395">
<String WC="0.47999998927116394"
CONTENT="1"
HEIGHT="30"
WIDTH="18"
VPOS="646"
HPOS="2395">1</String>
<SP WIDTH="132" VPOS="645" HPOS="2414"> </SP>
<String WC="1."
CONTENT="2"
HEIGHT="30"
WIDTH="21"
VPOS="649"
HPOS="2547">2</String>
</TextLine>
</TextBlock>
<ComposedBlock ID="Page1_Block2"
HEIGHT="202"
WIDTH="2091"
VPOS="811"
HPOS="523"
TYPE="container">
<Shape>
<Polygon POINTS="1461,828 1649,828 1649,829 1770,829 1770,830 2141,830 2141,831 2330,831 2330,832 2506,832 2506,833 2538,833 2538,834 2604,834 2604,835 2612,835 2612,884 2613,884 2613,978 2614,978 2614,991 849,991 849,992 834,992 834,993 811,993 811,994 806,994 806,995 622,995 622,994 525,994 525,970 524,970 524,954 525,954 525,878 524,878 524,839 531,839 531,838 834,838 834,837 847,837 847,836 857,836 857,835 867,835 867,834 877,834 877,833 889,833 889,832 903,832 903,831 907,831 907,830 1183,830 1183,829 1461,829 1461,828"/>
</Shape>
<TextBlock ID="Page1_Block3"
HEIGHT="56"
WIDTH="147"
VPOS="851"
HPOS="2334"
language="en-US">
<Shape>
<Polygon POINTS="2334,853 2459,853 2459,854 2480,854 2480,881 2481,881 2481,905 2480,905 2480,906 2374,906 2374,905 2335,905 2335,881 2334,881 2334,853"/>
</Shape>
<TextLine HEIGHT="39" WIDTH="130" VPOS="859" HPOS="2343">
<String WC="0.82200002670288086"
CONTENT="Lamb?"
HEIGHT="39"
WIDTH="130"
VPOS="859"
HPOS="2343">Lamb?</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block4"
HEIGHT="49"
WIDTH="52"
VPOS="887"
HPOS="1196"
language="en-US">
<TextLine HEIGHT="33" WIDTH="36" VPOS="895" HPOS="1204">
<String WC="0.95999997854232788"
CONTENT="to"
HEIGHT="33"
WIDTH="36"
VPOS="895"
HPOS="1204">to</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block5"
HEIGHT="62"
WIDTH="132"
VPOS="893"
HPOS="2086"
language="en-US">
<Shape>
<Polygon POINTS="2113,895 2132,895 2132,896 2217,896 2217,897 2218,897 2218,953 2207,953 2207,954 2174,954 2174,953 2087,953 2087,896 2113,896 2113,895"/>
</Shape>
<TextLine HEIGHT="46" WIDTH="116" VPOS="901" HPOS="2094">
<String WC="0.79600000381469727"
CONTENT="speak"
HEIGHT="46"
WIDTH="116"
VPOS="901"
HPOS="2094">speak</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block6"
HEIGHT="47"
WIDTH="34"
VPOS="942"
HPOS="2383"
language="en-US">
<Shape>
<Polygon POINTS="2392,943 2417,943 2417,988 2393,988 2393,989 2385,989 2385,975 2384,975 2384,944 2392,944 2392,943"/>
</Shape>
<TextLine HEIGHT="30" WIDTH="18" VPOS="951" HPOS="2391">
<String WC="1."
CONTENT="1"
HEIGHT="30"
WIDTH="18"
VPOS="951"
HPOS="2391">1</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block7"
HEIGHT="97"
WIDTH="93"
VPOS="843"
HPOS="1452"
language="en-US">
<Shape>
<Polygon POINTS="1461,843 1478,843 1478,844 1544,844 1544,873 1545,873 1545,939 1454,939 1454,938 1453,938 1453,873 1452,873 1452,844 1461,844 1461,843"/>
</Shape>
<TextLine HEIGHT="36" WIDTH="62" VPOS="851" HPOS="1475">
<String WC="0.93999999761581421"
CONTENT="the"
HEIGHT="36"
WIDTH="62"
VPOS="851"
HPOS="1475">the</String>
</TextLine>
<TextLine HEIGHT="36" WIDTH="66" VPOS="895" HPOS="1461">
<String WC="0.81333333253860474"
CONTENT="His"
HEIGHT="36"
WIDTH="66"
VPOS="895"
HPOS="1461">His</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block8"
HEIGHT="97"
WIDTH="85"
VPOS="851"
HPOS="2226"
language="en-US">
<Shape>
<Polygon POINTS="2227,852 2310,852 2310,879 2311,879 2311,948 2232,948 2232,947 2228,947 2228,879 2227,879 2227,852"/>
</Shape>
<TextLine HEIGHT="37" WIDTH="62" VPOS="859" HPOS="2240">
<String WC="0.99000000953674316"
CONTENT="the"
HEIGHT="37"
WIDTH="62"
VPOS="859"
HPOS="2240">the</String>
</TextLine>
<TextLine HEIGHT="37" WIDTH="67" VPOS="903" HPOS="2235">
<String WC="0.79666668176651001"
CONTENT="His"
HEIGHT="37"
WIDTH="67"
VPOS="903"
HPOS="2235">His</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block9"
HEIGHT="98"
WIDTH="98"
VPOS="837"
HPOS="523"
language="en-US">
<Shape>
<Polygon POINTS="531,838 568,838 568,839 621,839 621,935 531,935 531,934 525,934 525,878 524,878 524,839 531,839 531,838"/>
</Shape>
<TextLine HEIGHT="34" WIDTH="68" VPOS="846" HPOS="532">
<String WC="1."
CONTENT="Am"
HEIGHT="34"
WIDTH="68"
VPOS="846"
HPOS="532">Am</String>
</TextLine>
<TextLine HEIGHT="35" WIDTH="81" VPOS="890" HPOS="532">
<String WC="0.86000001430511475"
CONTENT="And"
HEIGHT="35"
WIDTH="81"
VPOS="890"
HPOS="532">And</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block10"
HEIGHT="97"
WIDTH="99"
VPOS="841"
HPOS="1305"
language="en-US">
<Shape>
<Polygon POINTS="1368,842 1403,842 1403,872 1404,872 1404,937 1369,937 1369,938 1306,938 1306,874 1305,874 1305,843 1368,843 1368,842"/>
</Shape>
<TextLine HEIGHT="35" WIDTH="37" VPOS="850" HPOS="1337">
<String WC="0.76499998569488525"
CONTENT="of"
HEIGHT="35"
WIDTH="37"
VPOS="850"
HPOS="1337">of</String>
</TextLine>
<TextLine HEIGHT="27" WIDTH="81" VPOS="903" HPOS="1315">
<String WC="0.66666668653488159"
CONTENT="own"
HEIGHT="27"
WIDTH="81"
VPOS="903"
HPOS="1315">own</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block11"
HEIGHT="85"
WIDTH="38"
VPOS="849"
HPOS="966"
language="en-US">
<Shape>
<Polygon POINTS="967,850 1004,850 1004,864 1003,864 1003,872 1004,872 1004,934 967,934 967,872 966,872 966,864 967,864 967,850"/>
</Shape>
<TextLine HEIGHT="23" WIDTH="22" VPOS="859" HPOS="974">
<String WC="1."
CONTENT="a"
HEIGHT="23"
WIDTH="22"
VPOS="859"
HPOS="974">a</String>
</TextLine>
<TextLine HEIGHT="34" WIDTH="10" VPOS="892" HPOS="981">
<String WC="0.28999999165534973"
CONTENT="1"
HEIGHT="34"
WIDTH="10"
VPOS="892"
HPOS="981">1</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block12"
HEIGHT="108"
WIDTH="109"
VPOS="833"
HPOS="785"
language="en-US">
<Shape>
<Polygon POINTS="889,833 894,833 894,867 893,867 893,872 894,872 894,934 886,934 886,935 874,935 874,936 863,936 863,937 852,937 852,938 839,938 839,939 821,939 821,940 812,940 812,941 787,941 787,880 786,880 786,841 810,841 810,839 834,839 834,838 847,838 847,837 857,837 857,836 867,836 867,835 877,835 877,834 889,834 889,833"/>
</Shape>
<TextLine HEIGHT="35" WIDTH="11" VPOS="846" HPOS="828">
<String WC="0.37999999523162842"
CONTENT="I"
HEIGHT="35"
WIDTH="11"
VPOS="846"
HPOS="828">I</String>
</TextLine>
<TextLine HEIGHT="47" WIDTH="92" VPOS="886" HPOS="794">
<String WC="0.80000001192092896"
CONTENT="shall"
HEIGHT="47"
WIDTH="92"
VPOS="886"
HPOS="794">shall</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block13"
HEIGHT="95"
WIDTH="137"
VPOS="898"
HPOS="2476"
language="en-US">
<Shape>
<Polygon POINTS="2485,900 2501,900 2501,901 2535,901 2535,902 2602,902 2602,903 2613,903 2613,991 2559,991 2559,990 2527,990 2527,989 2478,989 2478,975 2477,975 2477,901 2485,901 2485,900"/>
</Shape>
<TextLine HEIGHT="39" WIDTH="120" VPOS="907" HPOS="2484">
<String WC="0.96200001239776611"
CONTENT="name?"
HEIGHT="39"
WIDTH="120"
VPOS="907"
HPOS="2484">name?</String>
</TextLine>
<TextLine HEIGHT="28" WIDTH="23" VPOS="954" HPOS="2543">
<String WC="0.63999998569488525"
CONTENT="2"
HEIGHT="28"
WIDTH="23"
VPOS="954"
HPOS="2543">2</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block14"
HEIGHT="113"
WIDTH="359"
VPOS="840"
HPOS="1582"
language="en-US">
<Shape>
<Polygon POINTS="1647,844 1649,844 1649,845 1770,845 1770,846 1940,846 1940,876 1941,876 1941,949 1928,949 1928,950 1805,950 1805,949 1731,949 1731,948 1583,948 1583,874 1582,874 1582,845 1647,845 1647,844"/>
</Shape>
<TextLine HEIGHT="51" WIDTH="341" VPOS="849" HPOS="1598">
<String WC="0.92166668176651001"
CONTENT="cross,"
HEIGHT="35"
WIDTH="113"
VPOS="862"
HPOS="1598">cross,</String>
<SP WIDTH="27" VPOS="853" HPOS="1711"> </SP>
<String WC="1."
CONTENT="A"
HEIGHT="36"
WIDTH="30"
VPOS="852"
HPOS="1738">A</String>
<SP WIDTH="77" VPOS="852" HPOS="1768"> </SP>
<String WC="0.63999998569488525"
CONTENT="fol"
HEIGHT="35"
WIDTH="49"
VPOS="854"
HPOS="1845">fol</String>
<SP WIDTH="33" VPOS="855" HPOS="1894"> </SP>
<String WC="0.95999997854232788"
CONTENT="-"
HEIGHT="6"
WIDTH="12"
VPOS="873"
HPOS="1927">-</String>
</TextLine>
<TextLine HEIGHT="52" WIDTH="342" VPOS="892" HPOS="1591">
<String WC="0.74500000476837158"
CONTENT="cause,"
HEIGHT="36"
WIDTH="120"
VPOS="905"
HPOS="1591">cause,</String>
<SP WIDTH="18" VPOS="897" HPOS="1712"> </SP>
<String WC="1."
CONTENT="Or"
HEIGHT="38"
WIDTH="57"
VPOS="896"
HPOS="1731">Or</String>
<SP WIDTH="38" VPOS="900" HPOS="1789"> </SP>
<String WC="0.72399997711181641"
CONTENT="blush"
HEIGHT="38"
WIDTH="105"
VPOS="897"
HPOS="1828">blush</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block15"
HEIGHT="98"
WIDTH="196"
VPOS="839"
HPOS="1073"
language="en-US">
<Shape>
<Polygon POINTS="1183,840 1266,840 1266,841 1269,841 1269,848 1268,848 1268,872 1269,872 1269,892 1268,892 1268,893 1167,893 1167,936 1090,936 1090,937 1074,937 1074,873 1073,873 1073,848 1074,848 1074,842 1090,842 1090,841 1183,841 1183,840"/>
</Shape>
<TextLine HEIGHT="39" WIDTH="174" VPOS="847" HPOS="1087">
<String WC="0.85000002384185791"
CONTENT="sol"
HEIGHT="35"
WIDTH="53"
VPOS="848"
HPOS="1087">sol</String>
<SP WIDTH="17" VPOS="848" HPOS="1140"> </SP>
<String WC="1."
CONTENT="-"
HEIGHT="5"
WIDTH="14"
VPOS="868"
HPOS="1157">-</String>
<SP WIDTH="16" VPOS="848" HPOS="1171"> </SP>
<String WC="0.89999997615814209"
CONTENT="dier"
HEIGHT="36"
WIDTH="74"
VPOS="848"
HPOS="1187">dier</String>
</TextLine>
<TextLine HEIGHT="36" WIDTH="76" VPOS="892" HPOS="1083">
<String WC="0.72000002861022949"
CONTENT="fear"
HEIGHT="36"
WIDTH="76"
VPOS="892"
HPOS="1083">fear</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block16"
HEIGHT="101"
WIDTH="198"
VPOS="846"
HPOS="1969"
language="en-US">
<Shape>
<Polygon POINTS="1970,848 2137,848 2137,849 2166,849 2166,878 2167,878 2167,901 2042,901 2042,944 2021,944 2021,945 1977,945 1977,944 1971,944 1971,877 1970,877 1970,848"/>
</Shape>
<TextLine HEIGHT="41" WIDTH="180" VPOS="854" HPOS="1978">
<String WC="0.73400002717971802"
CONTENT="low’r"
HEIGHT="37"
WIDTH="104"
VPOS="855"
HPOS="1978">low’r</String>
<SP WIDTH="38" VPOS="867" HPOS="2082"> </SP>
<String WC="0.73500001430511475"
CONTENT="of"
HEIGHT="34"
WIDTH="38"
VPOS="858"
HPOS="2120">of</String>
</TextLine>
<TextLine HEIGHT="33" WIDTH="36" VPOS="904" HPOS="1995">
<String WC="0.69499999284744263"
CONTENT="to"
HEIGHT="33"
WIDTH="36"
VPOS="904"
HPOS="1995">to</String>
</TextLine>
</TextBlock>
</ComposedBlock>
<TextBlock ID="Page1_Block17"
HEIGHT="56"
WIDTH="193"
VPOS="881"
HPOS="2822"
language="en-US">
<Shape>
<Polygon POINTS="2857,883 2880,883 2880,884 2995,884 2995,885 3015,885 3015,936 2938,936 2938,935 2824,935 2824,888 2823,888 2823,884 2857,884 2857,883"/>
</Shape>
<TextLine HEIGHT="40" WIDTH="176" VPOS="889" HPOS="2831">
<String WC="0.62999999523162842"
CONTENT="Must"
HEIGHT="38"
WIDTH="101"
VPOS="890"
HPOS="2831">Must</String>
<SP WIDTH="62" VPOS="891" HPOS="2933"> </SP>
<String WC="0.81999999284744263"
CONTENT="1"
HEIGHT="34"
WIDTH="11"
VPOS="892"
HPOS="2996">1</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block18"
HEIGHT="208"
WIDTH="444"
VPOS="457"
HPOS="3128"
language="en-US">
<Shape>
<Polygon POINTS="3136,462 3153,462 3153,463 3176,463 3176,464 3198,464 3198,465 3570,465 3570,523 3571,523 3571,616 3572,616 3572,661 3509,661 3509,662 3416,662 3416,663 3295,663 3295,662 3212,662 3212,661 3187,661 3187,660 3165,660 3165,659 3131,659 3131,612 3130,612 3130,519 3129,519 3129,469 3130,469 3130,463 3136,463 3136,462"/>
</Shape>
<TextLine HEIGHT="49" WIDTH="74" VPOS="472" HPOS="3488">
<String WC="0.68999999761581421"
CONTENT="57"
HEIGHT="49"
WIDTH="74"
VPOS="472"
HPOS="3488">57</String>
</TextLine>
<TextLine HEIGHT="49" WIDTH="333" VPOS="607" HPOS="3137">
<String WC="0.59500002861022949"
CONTENT="F."
HEIGHT="35"
WIDTH="42"
VPOS="610"
HPOS="3137">F.</String>
<SP WIDTH="25" VPOS="613" HPOS="3179"> </SP>
<String WC="0.55833333730697632"
CONTENT="Price,"
HEIGHT="44"
WIDTH="140"
VPOS="612"
HPOS="3204">Price,</String>
<SP WIDTH="28" VPOS="615" HPOS="3344"> </SP>
<String WC="0.60199999809265137"
CONTENT="1832."
HEIGHT="36"
WIDTH="98"
VPOS="614"
HPOS="3372">1832.</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block19"
HEIGHT="62"
WIDTH="349"
VPOS="882"
HPOS="3139"
language="en-US">
<Shape>
<Polygon POINTS="3141,886 3161,886 3161,887 3184,887 3184,888 3235,888 3235,889 3488,889 3488,941 3417,941 3417,942 3324,942 3324,943 3319,943 3319,942 3273,942 3273,941 3207,941 3207,940 3184,940 3184,939 3161,939 3161,938 3141,938 3141,892 3140,892 3140,887 3141,887 3141,886"/>
</Shape>
<TextLine HEIGHT="45" WIDTH="332" VPOS="891" HPOS="3148">
<String WC="1."
CONTENT="be"
HEIGHT="36"
WIDTH="42"
VPOS="894"
HPOS="3148">be</String>
<SP WIDTH="67" VPOS="903" HPOS="3191"> </SP>
<String WC="0.80666667222976685"
CONTENT="car"
HEIGHT="25"
WIDTH="59"
VPOS="906"
HPOS="3259">car</String>
<SP WIDTH="33" VPOS="906" HPOS="3319"> </SP>
<String WC="1."
CONTENT="-"
HEIGHT="6"
WIDTH="15"
VPOS="917"
HPOS="3353">-</String>
<SP WIDTH="39" VPOS="908" HPOS="3369"> </SP>
<String WC="0.83249998092651367"
CONTENT="ried"
HEIGHT="36"
WIDTH="71"
VPOS="898"
HPOS="3409">ried</String>
</TextLine>
</TextBlock>
<ComposedBlock ID="Page1_Block20"
HEIGHT="187"
WIDTH="2196"
VPOS="1345"
HPOS="413"
TYPE="table">
<TextBlock ID="Page1_Block21"
HEIGHT="140"
WIDTH="76"
VPOS="1369"
HPOS="413"
language="en-US">
<Shape>
<Polygon POINTS="440,1369 445,1369 445,1370 489,1370 489,1408 488,1408 488,1432 489,1432 489,1508 440,1508 440,1509 414,1509 414,1433 413,1433 413,1424 414,1424 414,1370 440,1370 440,1369"/>
</Shape>
<TextLine HEIGHT="25" WIDTH="32" VPOS="1409" HPOS="421">
<String WC="1."
CONTENT="2."
HEIGHT="25"
WIDTH="32"
VPOS="1409"
HPOS="421">2.</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block22"
HEIGHT="64"
WIDTH="219"
VPOS="1367"
HPOS="488"
language="en-US">
<Shape>
<Polygon POINTS="533,1369 657,1369 657,1370 707,1370 707,1430 488,1430 488,1408 489,1408 489,1370 533,1370 533,1369"/>
</Shape>
<TextLine HEIGHT="36" WIDTH="69" VPOS="1377" HPOS="527">
<String WC="1."
CONTENT="Are"
HEIGHT="36"
WIDTH="69"
VPOS="1377"
HPOS="527">Are</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block23"
HEIGHT="67"
WIDTH="213"
VPOS="1363"
HPOS="707"
language="en-US">
<Shape>
<Polygon POINTS="904,1364 920,1364 920,1424 905,1424 905,1425 890,1425 890,1426 872,1426 872,1427 854,1427 854,1428 826,1428 826,1429 812,1429 812,1430 708,1430 708,1429 707,1429 707,1392 708,1392 708,1370 719,1370 719,1369 839,1369 839,1368 860,1368 860,1367 875,1367 875,1366 893,1366 893,1365 904,1365 904,1364"/>
</Shape>
<TextLine HEIGHT="43" WIDTH="100" VPOS="1374" HPOS="791">
<String WC="0.98000001907348633"
CONTENT="there"
HEIGHT="43"
WIDTH="100"
VPOS="1374"
HPOS="791">there</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block24"
HEIGHT="62"
WIDTH="124"
VPOS="1362"
HPOS="920"
language="en-US">
<Shape>
<Polygon POINTS="928,1363 1013,1363 1013,1364 1044,1364 1044,1424 920,1424 920,1364 928,1364 928,1363"/>
</Shape>
<TextLine HEIGHT="26" WIDTH="45" VPOS="1388" HPOS="962">
<String WC="1."
CONTENT="no"
HEIGHT="26"
WIDTH="45"
VPOS="1388"
HPOS="962">no</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block25"
HEIGHT="64"
WIDTH="234"
VPOS="1361"
HPOS="1044"
language="en-US">
<Shape>
<Polygon POINTS="1091,1363 1278,1363 1278,1423 1185,1423 1185,1424 1044,1424 1044,1364 1091,1364 1091,1363"/>
</Shape>
<TextLine HEIGHT="39" WIDTH="180" VPOS="1378" HPOS="1076">
<String WC="0.88499999046325684"
CONTENT="foes"
HEIGHT="36"
WIDTH="78"
VPOS="1379"
HPOS="1076">foes</String>
<SP WIDTH="44" VPOS="1380" HPOS="1155"> </SP>
<String WC="0.94333332777023315"
CONTENT="for"
HEIGHT="35"
WIDTH="56"
VPOS="1380"
HPOS="1200">for</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block26"
HEIGHT="62"
WIDTH="168"
VPOS="1361"
HPOS="1278"
language="en-US">
<Shape>
<Polygon POINTS="1278,1362 1284,1362 1284,1363 1446,1363 1446,1423 1286,1423 1286,1422 1278,1422 1278,1362"/>
</Shape>
<TextLine HEIGHT="26" WIDTH="55" VPOS="1391" HPOS="1333">
<String WC="1."
CONTENT="me"
HEIGHT="26"
WIDTH="55"
VPOS="1391"
HPOS="1333">me</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block27"
HEIGHT="63"
WIDTH="108"
VPOS="1361"
HPOS="1446"
language="en-US">
<Shape>
<Polygon POINTS="1463,1362 1489,1362 1489,1363 1554,1363 1554,1423 1447,1423 1447,1422 1446,1422 1446,1363 1463,1363 1463,1362"/>
</Shape>
<TextLine HEIGHT="33" WIDTH="36" VPOS="1385" HPOS="1479">
<String WC="0.68500000238418579"
CONTENT="to"
HEIGHT="33"
WIDTH="36"
VPOS="1385"
HPOS="1479">to</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block28"
HEIGHT="71"
WIDTH="401"
VPOS="1358"
HPOS="1554"
language="en-US">
<Shape>
<Polygon POINTS="1556,1362 1686,1362 1686,1363 1768,1363 1768,1364 1955,1364 1955,1424 1929,1424 1929,1425 1797,1425 1797,1424 1739,1424 1739,1423 1555,1423 1555,1422 1554,1422 1554,1363 1556,1363 1556,1362"/>
</Shape>
<TextLine HEIGHT="44" WIDTH="279" VPOS="1381" HPOS="1606">
<String WC="0.78799998760223389"
CONTENT="face?"
HEIGHT="37"
WIDTH="93"
VPOS="1383"
HPOS="1606">face?</String>
<SP WIDTH="25" VPOS="1384" HPOS="1700"> </SP>
<String WC="0.8125"
CONTENT="Must"
HEIGHT="40"
WIDTH="100"
VPOS="1384"
HPOS="1726">Must</String>
<SP WIDTH="47" VPOS="1386" HPOS="1827"> </SP>
<String WC="0.62999999523162842"
CONTENT="I"
HEIGHT="35"
WIDTH="10"
VPOS="1386"
HPOS="1875">I</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block29"
HEIGHT="74"
WIDTH="517"
VPOS="1359"
HPOS="1955"
language="en-US">
<Shape>
<Polygon POINTS="1955,1364 2044,1364 2044,1365 2145,1365 2145,1366 2223,1366 2223,1367 2430,1367 2430,1368 2472,1368 2472,1428 2283,1428 2283,1427 2170,1427 2170,1426 2104,1426 2104,1425 1969,1425 1969,1424 1955,1424 1955,1364"/>
</Shape>
<TextLine HEIGHT="49" WIDTH="452" VPOS="1384" HPOS="1993">
<String WC="1."
CONTENT="not"
HEIGHT="36"
WIDTH="63"
VPOS="1389"
HPOS="1993">not</String>
<SP WIDTH="45" VPOS="1390" HPOS="2057"> </SP>
<String WC="0.76499998569488525"
CONTENT="stem"
HEIGHT="37"
WIDTH="92"
VPOS="1391"
HPOS="2103">stem</String>
<SP WIDTH="45" VPOS="1394" HPOS="2195"> </SP>
<String WC="0.93666666746139526"
CONTENT="the"
HEIGHT="37"
WIDTH="62"
VPOS="1390"
HPOS="2241">the</String>
<SP WIDTH="29" VPOS="1393" HPOS="2304"> </SP>
<String WC="0.88499999046325684"
CONTENT="flood?"
HEIGHT="36"
WIDTH="111"
VPOS="1393"
HPOS="2334">flood?</String>
</TextLine>
</TextBlock>
<TextBlock ID="Page1_Block30"
HEIGHT="83"
WIDTH="220"
VPOS="1427"
HPOS="488"