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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
|
%PDF-1.4
%ÐÔÅØ
3 0 obj <<
/Length 1513
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(The)-328(Project)-329(Gutenberg)-328(EBook)-328(of)-329(An)-328(Essay)-329(on)-328(the)-328(Antient)-329(and)]TJ 0 -13.549 Td[(Modern)-250(State)-250(of)-250(Ireland)-250(by)-250(Henry)-250(Brooke)]TJ 0 -29.913 Td[(This)-546(eBook)-546(is)-546(for)-546(the)-546(use)-546(of)-546(anyone)-546(anywhere)-546(a)-1(t)-546(no)-546(cost)]TJ 0 -13.549 Td[(and)-470(with)-470(almost)-470(no)-470(restrictions)-470(whatsoever.)-910(You)-470(may)-470(copy)]TJ 0 -13.549 Td[(it,)-565(give)-503(it)-502(away)-502(or)-502(re-use)-502(it)-503(under)-502(the)-502(terms)-502(of)-502(the)-503(Project)]TJ 0 -13.549 Td[(Gutenberg)-633(License)-632(included)-633(with)-632(this)-633(eBook)-632(or)-633(online)-633(at)]TJ 0 -13.55 Td[(http://www.gutenberg.org/license)]TJ 0 -29.913 Td[(Title:)-500(An)-500(Essay)-500(on)-500(the)-500(Antient)-500(and)-500(Modern)-500(State)-500(of)]TJ 0 -13.549 Td[(Ireland)]TJ 0 -27.098 Td[(Author:)-500(Henry)-500(Brooke)]TJ 0 -27.098 Td[(Release)-500(Date:)-500(November)-500(10,)-500(2008)-500([Ebook)-500(27226])]TJ 0 -27.099 Td[(Language:)-500(English)]TJ 0 -40.647 Td[(***START)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.55 Td[(AN)-500(ESSAY)-500(ON)-500(THE)-500(ANTIENT)-500(AND)-500(MODERN)-500(STATE)]TJ 0 -13.549 Td[(OF)-500(IRELAND***)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
2 0 obj <<
/Type /Page
/Contents 3 0 R
/Resources 1 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
/Annots [ 6 0 R 7 0 R ]
>> endobj
6 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [140.547 431.687 262.463 441.407]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
7 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.771 418.138 193.422 427.858]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
4 0 obj <<
/D [2 0 R /XYZ 46.771 529.134 null]
>> endobj
1 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
12 0 obj <<
/Length 1121
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 18.959 Tf 166.104 516.375 Td[(An)-272(Essay)-272(On)-271(The)]TJ -26.342 -24.647 Td[(Ancient)-260(and)-261(Modern)-260(State)]TJ 60.587 -24.646 Td[(Of)-279(Ireland)]TJ/F16 13.151 Tf -66.293 -17.096 Td[(With)-259(the)-258(Various)-259(Important)-258(Advantages)]TJ 54.125 -17.096 Td[(Thereunto)-275(Derived,)]TJ -70.687 -17.096 Td[(under)-254(th)1(e)-254(auspicious)-254(Reign)-253(of)-254(His)-253(most)-254(sacred)]TJ 95.179 -17.096 Td[(Majesty)]TJ -46.976 -17.096 Td[(King)-268(GEORGE)-268(the)-268(Second.)]TJ -6.707 -17.095 Td[(Including)-266(a)-266(particular)-266(Account)]TJ 16.015 -17.096 Td[(of)-271(the)-271(great)-271(and)-271(glorio)1(us)]TJ 36.8 -17.096 Td[(St.)-346(Patrick)]TJ 20.357 -17.096 Td[(By)]TJ/F16 15.781 Tf -37.458 -20.515 Td[(Henry)-277(Brooke)]TJ/F16 10.909 Tf 11.012 -13.549 Td[(Dublin:)-310(Printed)]TJ -9.661 -13.549 Td[(London:)-305(Re-Printed)]TJ 9.215 -13.55 Td[(for)-280(R.)-280(Griffiths.)]TJ 9.868 -13.549 Td[(MDCCLX.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
11 0 obj <<
/Type /Page
/Contents 12 0 R
/Resources 10 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
10 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
15 0 obj <<
/Length 1774
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(Contents)]TJ/F16 10.909 Tf 0 -32.422 Td[(Dedication.)-862(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
ET
1 0 0 1 321.947 446.899 cm
0 g 0 G
1 0 0 1 -321.947 -446.899 cm
BT
/F16 10.909 Tf 321.947 446.899 Td[(2)]TJ
ET
1 0 0 1 327.401 446.899 cm
0 g 0 G
1 0 0 1 -327.401 -446.899 cm
BT
/F16 10.909 Tf 46.771 433.35 Td[(Essay.)-667(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
ET
1 0 0 1 321.947 433.35 cm
0 g 0 G
1 0 0 1 -321.947 -433.35 cm
BT
/F16 10.909 Tf 321.947 433.35 Td[(4)]TJ
ET
1 0 0 1 327.401 433.35 cm
0 g 0 G
1 0 0 1 -327.401 -433.35 cm
BT
/F16 10.909 Tf 46.771 419.801 Td[(The)-250(Farmer's)-250(Case)-250(Of)-250(The)-250(Roman-Catholics)-250(Of)]TJ/F28 10.909 Tf 211.32 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-935(.)]TJ
ET
1 0 0 1 316.492 419.801 cm
0 g 0 G
1 0 0 1 -316.492 -419.801 cm
BT
/F16 10.909 Tf 316.492 419.801 Td[(55)]TJ
ET
1 0 0 1 327.401 419.801 cm
0 g 0 G
1 0 0 1 -327.401 -419.801 cm
BT
/F16 10.909 Tf 46.771 406.251 Td[(Footnotes)-805(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
ET
1 0 0 1 316.492 406.251 cm
0 g 0 G
1 0 0 1 -316.492 -406.251 cm
BT
/F16 10.909 Tf 316.492 406.251 Td[(65)]TJ
ET
1 0 0 1 327.401 406.251 cm
0 g 0 G
1 0 0 1 -280.63 -367.469 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
14 0 obj <<
/Type /Page
/Contents 15 0 R
/Resources 13 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
13 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
19 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
18 0 obj <<
/Type /Page
/Contents 19 0 R
/Resources 17 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
17 0 obj <<
/ProcSet [ /PDF ]
>> endobj
22 0 obj <<
/Length 233
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 7.97 Tf 337.795 512.811 Td[([003])]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
21 0 obj <<
/Type /Page
/Contents 22 0 R
/Resources 20 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
23 0 obj <<
/D [21 0 R /XYZ 46.771 518.175 null]
>> endobj
20 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
24 0 obj
<< /S /GoTo /D (index1) >>
endobj
27 0 obj
(Dedication.)
endobj
30 0 obj <<
/Length 3598
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 18.959 Tf 93.543 479.321 Td[(Dedication.)]TJ/F16 10.909 Tf 0 -38.164 Td[(TO)]TJ 11.956 -14.697 Td[(M)]TJ/F16 7.97 Tf 9.698 0 Td[(ATTHEW)]TJ/F16 10.909 Tf 36.369 0 Td[(M)]TJ/F16 7.97 Tf 9.698 4.909 Td[(C)]TJ/F16 10.909 Tf 5.316 -4.909 Td[(.)-250(N)]TJ/F16 7.97 Tf 13.331 0 Td[(AMARA)]TJ/F16 10.909 Tf 29.665 0 Td[(,)]TJ -104.077 -14.698 Td[(Of)]TJ/F28 10.909 Tf 14.236 0 Td[(LIMERICK)]TJ/F16 10.909 Tf 50.302 0 Td[(,)-250(Esq;)]TJ -64.538 -14.697 Td[(C)]TJ/F16 7.97 Tf 7.276 0 Td[(OUNSELLOR)]TJ/F16 10.909 Tf 50.102 0 Td[(at)-250(LAW.)]TJ -57.378 -14.698 Td[(Justly)-211(sensible,)-218(Sir,)-218(how)-211(sincerely)-210(You)-211(have)-211(the)-210(Character)-211(and)]TJ -11.956 -13.549 Td[(Esteem)-294(of)-294(our)-293(Native)-294(Country)-294(at)-294(Heart,)-305(I)-293(take)-294(Leave)-294(to)-294(offer)-294(to)]TJ 0 -13.549 Td[(Your)-229(Perusal,)-234(and)-229(commend)-229(to)-230(Your)-229(favourable)-229(Acceptance,)-234(the)]TJ 0 -13.55 Td[(following)-250(Sheets.)]TJ 11.956 -14.697 Td[(What)-612(gave)-612(them)-611(Rise)-1(,)-702(was)-612(my)-611(happening,)-703(some)-612(Time)]TJ -11.956 -13.549 Td[(since,)-356(to)-334(have)-334(fallen)-335(into)-334(Company)-335(with)-334(two)-335(or)-334(three)-335(sprightly)]TJ 0 -13.55 Td[(young)-511(Gentlemen,)-577(then)-511(just)-511(returned)-511(from)-511(their)-512(Continental)]TJ 0 -13.549 Td[(Rambles,)]TJ/F31 10.909 Tf 40.909 0 Td[(\024)]TJ/F16 10.909 Tf 10.91 0 Td[(who)]TJ/F31 10.909 Tf 18.785 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(altho')-186(little)-186(burthened)-186(with)-186(the)-186(Religion,)-199(Laws,)]TJ -81.513 -13.549 Td[(Learning,)-394(Policy,)-394(Customs,)-394(Habits,)-394(Manners,)-393(or)-365(Langu)-1(ages)-365(of)]TJ 0 -13.549 Td[(any,)-257(or)-255(the)-256(several)-255(Countries)-256(they)-255(had)-255(scampered)-256(thro',)-257(affected,)]TJ 0 -13.549 Td[(nevertheless,)-250(an)-250(high)-250(Contempt)-250(for)-250(this,)]TJ/F31 10.909 Tf 174.229 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(their)-250(Native.)]TJ/F16 7.97 Tf -257.893 0 Td[([004])]TJ/F16 10.909 Tf 84.711 -14.698 Td[(I)-199(listened)-199(with)-199(silent)-199(Indignation,)-209(and)-199(determined)-200(to)-199(contribute)]TJ -11.956 -13.549 Td[(my)-257(Mite)-257(towards)-257(giving)-257(such)-257(unattentive,)-259(uninformed)-257(Youths,)-259(a)]TJ 0 -13.549 Td[(more)-225(adequate)-226(Idea)-225(of)-225(this)-225(Kingdom,)-231(under)-225(its)-225(ancient)-225(and)-226(under)]TJ 0 -13.549 Td[(its)-250(present)-250(happy)-250(Establishment.)]TJ 11.956 -14.698 Td[(The)-416(common)-416(Accidents)-416(of)-415(Time)-416(must)-416(lead)-416(them)-416(by)-416(better)]TJ -11.956 -13.549 Td[(Authority)-224(to)-224(clearer)-224(Knowledge:)-237(In)-224(the)-224(mean)-224(while,)-229(I)-224(profess)-224(my)]TJ 0 -13.549 Td[(Obligations)-296(to)-297(them,)-308(as)-296(they)-297(have)-296(given)-296(me)-297(this)-296(Opportunity)-297(of)]TJ 0 -13.549 Td[(declaring)-203(my)-202(Regard)-203(to)-202(my)-203(Country)-202(in)-203(general,)-212(and)-202(the)-203(particular)]TJ 0 -13.55 Td[(Attachments)-280(that)-280(ever)-281(bind)-280(me,)-288(in)-280(the)-280(strictest)-280(Sense)-280(of)-281(Fidelity)]TJ 0 -13.549 Td[(and)-250(Esteem,)-250(to)-250(a)-250(Friend)-250(so)-250(worthy)-250(as)-250(You)-250(have)-250(been)-250(to,)]TJ 11.956 -14.697 Td[(Sir,)]TJ -11.956 -13.55 Td[(Your)-250(very)-250(obliged,)-250(and)]TJ 0 -13.549 Td[(Most)-250(obedient)-250(Servant.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
29 0 obj <<
/Type /Page
/Contents 30 0 R
/Resources 28 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
25 0 obj <<
/D [29 0 R /XYZ 93.543 529.134 null]
>> endobj
32 0 obj <<
/D [29 0 R /XYZ 93.543 243.348 null]
>> endobj
28 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
35 0 obj <<
/Length 299
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Dedication.)-20587(3)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 7.97 Tf 337.795 512.7 Td[([005])]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
34 0 obj <<
/Type /Page
/Contents 35 0 R
/Resources 33 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
36 0 obj <<
/D [34 0 R /XYZ 46.771 518.175 null]
>> endobj
33 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
38 0 obj
<< /S /GoTo /D (index2) >>
endobj
41 0 obj
(Essay.)
endobj
44 0 obj <<
/Length 5321
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 18.959 Tf 93.543 479.321 Td[(Essay.)]TJ/F16 10.909 Tf 0 -37.405 Td[(In)-248(a)-248(Nation,)-248(where)-248(almost)-247(every)-248(Gentleman)-248(is)-248(better)-248(acquainted,)]TJ 0 -13.549 Td[(and)-188(more)-188(conversant,)-200(with)-188(the)-187(Nature)-188(and)-188(Circumstances)-188(of)-188(other)]TJ 0 -13.549 Td[(Countries)-235(than)-235(those)-235(of)-235(his)-234(own,)-238(the)-235(Publication)-235(of)-235(such)-235(Hints)-235(as)]TJ 0 -13.55 Td[(may)-305(somewhat)-304(contribute)-305(to)-305(remove)-304(so)-305(odd)-305(an)-304(Inattention,)-319(and)]TJ 0 -13.549 Td[(induce)-212(those)-212(far)-212(better)-211(qualified)-212(to)-212(render)-212(a)-212(Subject)-212(so)-212(interesting)]TJ 0 -13.549 Td[(some)-357(Justice,)-383(will)-357(not,)-383(I)-357(hope,)-383(be)-357(deemed)-357(an)-356(Impertin)-1(ence;)-410(in)]TJ 0 -13.549 Td[(one)-262(especially)-262(who,)-265(by)-262(this)-262(Essay,)-265(however)-262(feeble,)-266(hath)-262(nothing)]TJ 0 -13.549 Td[(beside)-174(the)-173(Honour)-173(and)-174(Advantage)-173(of)]TJ/F28 10.909 Tf 159.876 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.008 0 Td[(in)-174(View,)-188(a)-174(Kingdom)]TJ/F16 7.97 Tf -266.639 0 Td[([006])]TJ/F16 10.909 Tf 72.755 -13.55 Td[(whereof)-250(he)-250(is,)-250(without)-250(Vanity,)-250(proud)-250(of)-250(being)-250(a)-250(Native.)]TJ 11.956 -14.545 Td[(As)-317(the)-317(Story)-317(of)-318(Savages)-317(and)-317(Barbarians)-317(can)-317(contain)-318(nothing)]TJ -11.956 -13.55 Td[(instructive,)-329(or)-314(entertaining,)-329(the)]TJ/F28 10.909 Tf 140.071 0 Td[(Antemilesian)]TJ/F16 10.909 Tf 60.388 0 Td[(Inhabitants)-314(of)-313(this)]TJ -200.459 -13.549 Td[(Land)-523(having)-524(been)-523(mostly)-523(such,)-592(and)-523(all)-523(surviving)-524(Accounts)]TJ 0 -13.549 Td[(of)-422(them)-422(almost)-422(totally)-422(overcast)-422(with)-422(Fable,)-465(we)-422(are)-422(therefore,)]TJ 0 -13.549 Td[(in)-452(treating)-451(of)-452(the)-452(antient)]TJ/F28 10.909 Tf 118.563 0 Td[(Scotia)]TJ/F16 10.909 Tf 27.273 0 Td[(,)-502(or)-452(modern)]TJ/F28 10.909 Tf 60.473 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-502(to)-452(refer)]TJ -238.426 -13.549 Td[(principally)-351(to)-351(three)-350(distinguished)-351(\346ras,)-376(whereof)-351(the)]TJ/F28 10.909 Tf 234.607 0 Td[(first)]TJ/F16 10.909 Tf 21.609 0 Td[(is,)-376(its)]TJ -256.216 -13.55 Td[(being)-170(peopled)-170(by)-170(an)]TJ/F28 10.909 Tf 87.397 0 Td[(Iberian)]TJ/F16 10.909 Tf 33.969 0 Td[(or)]TJ/F28 10.909 Tf 10.94 0 Td[(Spanish)]TJ/F16 10.909 Tf 36.401 0 Td[(Colony:)-210(The)]TJ/F28 10.909 Tf 56.266 0 Td[(second)]TJ/F16 10.909 Tf 30.295 0 Td[(,)-186(truly)]TJ -255.268 -13.549 Td[(glorious,)-243(the)-241(Arrival)-241(of)-240(St.)]TJ/F28 10.909 Tf 117.461 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-243(in)-241(his)-240(m)-1(ost)-240(salutary)-241(Mission:)]TJ -149.577 -13.549 Td[(The)]TJ/F28 10.909 Tf 21.329 0 Td[(third)]TJ/F16 10.909 Tf 25.878 0 Td[(and)-400(last,)-438(its)-400(Cession)-400(to)]TJ/F28 10.909 Tf 109.212 0 Td[(Henry)]TJ/F16 10.909 Tf 31.627 0 Td[(the)-400(Second,)-438(King)-400(of)]TJ/F28 10.909 Tf -188.046 -13.549 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-226(\050the)-219(first)-219(of)-220(the)-219(Royal)-220(Race)-219(of)]TJ/F28 10.909 Tf 135.857 0 Td[(Plantagenet)]TJ/F16 10.909 Tf 52.724 0 Td[(\051)-219(partly)-220(from)]TJ -225.552 -13.549 Td[(a)-387(pretended)-388(Title)-387(of)]TJ/F28 10.909 Tf 94.459 0 Td[(Adrian)]TJ/F16 10.909 Tf 34.532 0 Td[(the)-387(Fourth,)-422(Pope)-388(of)]TJ/F28 10.909 Tf 93.339 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(;)-456(partly)]TJ -247.17 -13.55 Td[(from)-251(the)-250(restless)-251(and)-251(insatiable)-251(Desires)-250(of)]TJ/F28 10.909 Tf 185.17 0 Td[(Henry)]TJ/F16 10.909 Tf 27.262 0 Td[(;)]TJ/F28 10.909 Tf 5.772 0 Td[(more)]TJ/F16 10.909 Tf 25.153 0 Td[(from)-251(the)]TJ -243.357 -13.549 Td[(manifold)-202(Infirmities)-202(of)-202(the)-202(then)-202(reigning)]TJ/F28 10.909 Tf 176.232 0 Td[(Irish)]TJ/F16 10.909 Tf 22.81 0 Td[(Chiefs)]TJ/F31 10.909 Tf 28.483 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(but)-202(above)]TJ -238.434 -13.549 Td[(all,)-284(from)-277(the)-278(peculiarly)-277(adverse)-277(Fate)-277(of)]TJ/F28 10.909 Tf 174.236 0 Td[(Roderick)]TJ/F16 10.909 Tf 39.381 0 Td[(,)-284(the)-277(last)-278(of)-277(our)]TJ -213.617 -13.549 Td[(Kings.)]TJ 11.955 -14.546 Td[(The)-195(assiduous,)-206(exact,)-206(and)-195(candid)-195(Author)-195(of)-195(the)]TJ/F28 10.909 Tf 203.276 0 Td[(Dissertations)]TJ/F16 10.909 Tf 58.189 0 Td[(,)]TJ/F16 7.97 Tf 2.727 3.959 Td[(1)]TJ/F16 10.909 Tf -276.147 -17.508 Td[(lately)-313(published,)-329(on)-313(the)-314(Origin,)-329(Government,)-329(Letters,)-329(Sciences,)]TJ 0 -13.549 Td[(Religion,)-235(Manners)-232(and)-231(Customs)-231(of)-232(the)-231(antient)-232(Inhabitants)-231(of)-232(this)]TJ
ET
1 0 0 1 93.543 73.974 cm
0 g 0 G
1 0 0 1 0 2.59 cm
q
[]0 d
0 J
0.398 w
0 0.199 m
112.25 0.199 l
S
Q
1 0 0 1 -93.543 -76.564 cm
BT
/F16 5.978 Tf 99.77 69.951 Td[(1)]TJ/F28 8.966 Tf 5.729 -3.809 Td[(Dublin)]TJ/F16 8.966 Tf 24.908 0 Td[(,)-250(1753,)]TJ/F28 8.966 Tf 26.899 0 Td[(M.)-250(Reilly)]TJ/F16 8.966 Tf 32.871 0 Td[(,)-250(Editor.)]TJ
ET
1 0 0 1 93.543 62.854 cm
0 g 0 G
1 0 0 1 0 -24.072 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
43 0 obj <<
/Type /Page
/Contents 44 0 R
/Resources 42 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
39 0 obj <<
/D [43 0 R /XYZ 93.543 529.134 null]
>> endobj
45 0 obj <<
/D [43 0 R /XYZ 251.526 347.072 null]
>> endobj
42 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
48 0 obj <<
/Length 4944
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22642(5)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(Country,)-341(hath)-323(put)-323(all)-323(those)-323(Matters)-323(in)-323(so)-323(clear)-323(and)-322(happy,)-342(and,)]TJ 0 -13.549 Td[(at)-261(the)-260(same)-261(Time,)-263(in)-261(so)-260(stro)-1(ng)-260(a)-261(Light,)-263(by)-261(the)-260(Powers)-261(of)-261(various)]TJ 0 -13.549 Td[(foreign)-211(Testimonies,)-219(of)-211(undeniable)-211(Authenticity,)-219(coincident)-212(with)]TJ 0 -13.549 Td[(our)-285(own,)-293(that)-285(scarce)-285(any)-285(Thing)-285(new)-284(ca)-1(n)-284(be)-285(offered)-285(on)-285(the)-285(same)]TJ 0 -13.55 Td[(Subject.)]TJ 11.956 -14.776 Td[(It)-449(may,)-500(however,)-499(in)-450(general)-449(be)-449(obser)-1(ved,)-499(that)]TJ/F28 10.909 Tf 218.685 0 Td[(Milesius)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-499(a)]TJ/F28 10.909 Tf -267.612 -13.549 Td[(Spanish)]TJ/F16 10.909 Tf 37.667 0 Td[(Prince,)-295(so)-285(far)-286(back)-286(as)-286(the)-285(Reign)-286(of)]TJ/F28 10.909 Tf 155.606 0 Td[(Solomon)]TJ/F16 10.909 Tf 41.299 0 Td[(\050instigated)]TJ -234.572 -13.55 Td[(by)-455(Necessity,)-506(or)-455(induced)-455(by)-454(Ambition\051)-455(with)-455(a)-455(considerable)]TJ/F16 7.97 Tf 291.024 0 Td[([007])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Number)-308(of)-308(Associates)-308(and)-309(Followers,)-322(landed)-308(from)-308(the)-309(Western)]TJ 0 -13.549 Td[(Parts)-268(of)]TJ/F28 10.909 Tf 36.754 0 Td[(Spain)]TJ/F16 10.909 Tf 24.851 0 Td[(,)-273(on)-268(the)-268(Southern)-268(Coasts)-268(of)-268(this)-268(Island,)-272(where)-268(it)-268(is)]TJ -61.605 -13.549 Td[(probable)-309(they)-308(met)-309(little,)-323(or)-308(but)-309(faint)-308(Opposition,)-324(from)-308(wild)-309(and)]TJ 0 -13.549 Td[(undisciplined)-250(Inhabitants.)]TJ 11.956 -14.777 Td[(Those)-310(People,)-325(from)-309(their)-310(early)-310(Knowledge)-310(of)-310(the)]TJ/F28 10.909 Tf 222.005 0 Td[(Ph)]TJ/F37 10.909 Tf 12.12 0 Td[(S)]TJ/F28 10.909 Tf 7.277 0 Td[(nician)]TJ/F16 10.909 Tf -253.358 -13.549 Td[(Arts)-308(and)-308(Letters,)-322(imported)-308(such)-308(Rudiments)-308(of)-308(Government)-308(and)]TJ 0 -13.549 Td[(Learning,)-485(as)-437(those)-438(primitive)-438(Times)-438(admitted;)-531(a)-438(Truth)-438(visible)]TJ 0 -13.55 Td[(from)-206(the)-206(Similarity)-206(or)-206(rather)-206(Identity)-206(of)-206(the)]TJ/F28 10.909 Tf 187.051 0 Td[(Ph)]TJ/F37 10.909 Tf 12.12 0 Td[(S)]TJ/F28 10.909 Tf 7.277 0 Td[(nician)]TJ/F16 10.909 Tf 29.52 0 Td[(and)]TJ/F28 10.909 Tf 18 0 Td[(Scotic)]TJ/F16 10.909 Tf -253.968 -13.549 Td[(Alphabet.)]TJ 11.956 -14.776 Td[(This)-478(antient)-478(Colony)-478(quietly)-478(settled)-478(here,)-535(remote)-478(from)-478(the)]TJ -11.956 -13.55 Td[(Storms)-550(and)-551(Revolutions)-550(of)-551(the)-550(greater)-551(World,)-625(and)-551(secured)]TJ 0 -13.549 Td[(by)-545(Situation)-544(from)-545(its)-544(hostile)-545(Incursions,)-618(there)-545(is)-544(no)-545(Doubt)]TJ 0 -13.549 Td[(but)-390(the)-389(Cultivation)-390(of)-390(Religion,)-424(Philosophy,)-425(Politicks,)-425(Poetry,)]TJ 0 -13.549 Td[(and)-443(Musick,)-491(became)-443(the)-443(chief)-443(Objects)-443(of)-443(popular)-443(Study)-443(and)]TJ 0 -13.549 Td[(Application:)-237(The)-223(Spirit)-224(of)-224(Ambition)-223(in)-224(succeeding)-223(Ages,)-229(with)-224(its)]TJ 0 -13.55 Td[(unhappy)-310(concomitant)-310(Train)-310(of)-310(Sedition,)-325(Faction,)-325(and)-310(Violence,)]TJ 0 -13.549 Td[(the)-375(foreign)-376(Invasions,)-406(and)-375(often)-376(the)-375(intestine)-375(Oppressions)-376(and)]TJ 0 -13.549 Td[(Calamities,)-495(to)-446(which)-446(our)-446(neighbouring)-446(Nations)-447(were)-446(subject,)]TJ 0 -13.549 Td[(calling)-285(forth)-284(the)-285(protective)-285(or)-284(conciliating)-285(Aids)-284(of)-285(those)-285(ancient)]TJ 0 -13.549 Td[(Heroes,)-250(made)-250(them)-250(great)-250(Masters)-250(also)-250(in)-250(the)-250(Art)-250(military.)]TJ 11.956 -14.777 Td[(The)-378(Pentarchy)-377(originally)-378(formed)-377(by)-378(those)]TJ/F28 10.909 Tf 193.171 0 Td[(Iberian)]TJ/F16 10.909 Tf 36.235 0 Td[(or)]TJ/F28 10.909 Tf 13.206 0 Td[(Celtic)]TJ -254.568 -13.549 Td[(Spaniards)]TJ/F16 10.909 Tf 44.248 0 Td[(,)-481(with)-435(a)-434(popular)-435(Right)-435(of)-434(Election,)-481(was)-435(certainly)-435(a)]TJ -44.248 -13.549 Td[(Kind)-279(of)-278(Government)-279(extremely)-278(consistent)-279(with)-278(the)-279(Essence)-279(and)]TJ 0 -13.549 Td[(Genius)-231(of)-231(true)-231(Liberty,)-234(and)-231(a)-231(System)-231(derived)-231(from)-231(the)-231(Patriarchs)]TJ 0 -13.55 Td[(themselves.)-234(For)-202(when)-201(the)-202(various)-202(Necessities)-201(of)-202(Society)-202(required)]TJ 0 -13.549 Td[(a)-392(Subordination,)-426(together)-392(with)-391(some)-392(stated)-391(Maxims)-392(to)-391(go)-392(by,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
47 0 obj <<
/Type /Page
/Contents 48 0 R
/Resources 46 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
49 0 obj <<
/D [47 0 R /XYZ 327.401 422.103 null]
>> endobj
46 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F37 50 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
53 0 obj <<
/Length 4844
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(6)-3922(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(to)-278(avoid)-279(the)-278(confused)-279(and)-278(promiscuous)-279(Intercourse)-278(in)-279(a)-278(State)-279(of)]TJ 0 -13.549 Td[(Nature;)-390(then)-343(did)-343(the)-343(People)-343(elect)-343(the)-343(most)-343(Virtuous)-343(and)-344(Wise,)]TJ 0 -13.549 Td[(to)-424(lead)-847(and)-424(conduct)-424(them)-424(in)-424(Times)-423(of)-424(War)-424(and)-424(Trouble;)-511(to)]TJ/F16 7.97 Tf -72.755 0 Td[([008])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(govern,)-240(inform,)-240(and)-237(protect)-238(them,)-240(in)-237(milder)-238(and)-237(more)-238(auspicious)]TJ 0 -13.55 Td[(Seasons.)-773(Then)-425(was)-424(the)-425(Motto)-424(of)-425(the)-424(Crown,)-468(or)-425(of)-424(the)-425(chief)]TJ 0 -13.549 Td[(Ensign)-388(of)-387(Pre-eminence,)]TJ/F28 10.909 Tf 115.162 0 Td[(Digniori)-388(detur)]TJ/F16 10.909 Tf 64.84 0 Td[(,)-422(and)-388(so)-388(continued)-387(till)]TJ -180.002 -13.549 Td[(the)-237(Degeneracy)-237(of)-237(Time,)-239(and)-237(the)-237(baneful)-237(Growth)-237(of)-237(Avarice)-237(and)]TJ 0 -13.549 Td[(Pride,)-342(with)-324(the)-323(feverish)-324(Lust)-324(of)-323(Power,)-342(perverted)-324(it)-324(to)]TJ/F31 10.909 Tf 240.627 0 Td[(\024)]TJ/F28 10.909 Tf 10.909 0 Td[(Rapiat)]TJ -251.536 -13.549 Td[(Fortior)]TJ/F16 10.909 Tf 32.128 0 Td[(!)]TJ -20.172 -18.459 Td[(Such,)-234(thro')-230(a)-230(long)-230(Succession)-230(of)-230(Ages,)-234(was)-230(the)-230(Condition,)-234(and)]TJ -11.956 -13.549 Td[(such)-245(at)-246(length)-245(the)-246(Fate)-245(of)-246(this)-245(Kingdom,)-246(destroyed)-246(after)-245(a)-246(longer)]TJ 0 -13.55 Td[(Continuance)-310(than)-310(any)-309(other)-310(can)-310(boast,)-325(by)-309(the)-310(Abuse)-310(of)-310(its)-310(own)]TJ 0 -13.549 Td[(Powers;)-362(a)-325(sure)-325(Argument)-324(that)-325(all)-325(created)-324(Beings,)-344(all)-325(sublunary)]TJ 0 -13.549 Td[(Institutions,)-365(however)-342(wisely)-343(composed,)-365(in)-342(the)-342(very)-342(Essence)-343(of)]TJ 0 -13.549 Td[(their)-392(Creation,)-427(and)-391(in)-392(the)-391(very)-392(Rudiments)-391(of)-392(their)-392(Formation,)]TJ 0 -13.549 Td[(comprehend,)-393(at)-364(the)-364(same)-365(Time,)-392(the)-365(Seeds)-364(of)-364(Dissolution:)-479(Yet)]TJ 0 -13.55 Td[(it)-324(is)-325(not)-324(more)-325(remarkable)-324(than)-325(true,)-343(that)-324(in)-325(the)-324(most)-325(boisterous)]TJ 0 -13.549 Td[(Periods)-380(of)-380(this)-380(Kingdom's)-380(antient)-380(Establishment,)-413(the)-380(Arts)-380(and)]TJ 0 -13.549 Td[(Sciences,)-292(with)-284(the)-284(fundamental)-284(Principles)-284(of)-284(Constitution,)-293(were)]TJ 0 -13.549 Td[(preserved)-303(and)-303(cherished)-303(with)-303(inviolable)-303(Assiduity.)-410(The)-303(Priests,)]TJ 0 -13.549 Td[(Philosophers,)-320(Advocates,)-321(Annalists,)-320(Poets)-306(and)-306(Musicians,)-321(were)]TJ 0 -13.55 Td[(obliged)-369(to)-369(preserve)-368(Religion,)-399(political)-369(Wisdom,)-398(Law,)-399(History,)]TJ/F28 10.909 Tf 0 -13.549 Td[(&c.)]TJ/F16 10.909 Tf 24.221 0 Td[(hereditarily)-416(in)-416(their)-416(respective)-416(Tribes,)-458(and)-416(to)-416(educate)-416(in)]TJ -24.221 -13.549 Td[(these)-286(different)-286(Branches)-286(the)-286(Chiefs)-286(and)-286(Nobles)-286(of)-286(the)-287(Land,)-295(for)]TJ 0 -13.549 Td[(which)-355(they)-355(were)-355(graciously)-355(maintained)-355(in)-355(secure)-356(and)-355(splendid)]TJ 0 -13.549 Td[(Tranquillity:)-545(Those)-397(Sages)-397(attended)-398(the)-397(National)-398(Conventions,)]TJ 0 -13.549 Td[(where)-232(all)-232(publick)-232(Acts)-232(were)-232(religiously)-232(recorded,)-236(and)-232(all)-232(Abuses)]TJ 0 -13.55 Td[(of)-441(Power)-441(and)-440(Government)-441(retrenched)-441(or)-441(reformed;)-536(nor)-441(were)]TJ 0 -13.549 Td[(they)-414(permitted,)-456(except)-414(in)-414(Case)-415(of)-414(extraordinary)-414(Necessity,)-456(or)]TJ 0 -13.549 Td[(uncommon)-395(Merit,)-431(to)-394(deviate)-395(from)-789(their)-395(proper)-395(and)-395(primitive)]TJ/F16 7.97 Tf -72.756 0 Td[([009])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(Spheres)-338(of)-338(Action:)-427(Since,)-360(where)-338(an)-338(harmonious)-339(Subordination)]TJ 0 -13.549 Td[(of)-359(Ra)-1(nk)-359(and)-359(Order)-360(hath)-359(not)-360(been)-359(duly)-360(preserved,)-387(even)-359(in)-360(free)]TJ 0 -13.55 Td[(Estates,)-186(Liberty)-170(itself)-170(\050wisely)-170(attempered,)-186(the)-170(greatest)-170(of)-171(all)-170(social)]TJ 0 -13.549 Td[(Blessings\051)-388(hath)-388(often,)-422(from)-388(Abuse)-388(and)-388(Neglect,)-423(sickened)-388(into)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
52 0 obj <<
/Type /Page
/Contents 53 0 R
/Resources 51 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
54 0 obj <<
/D [52 0 R /XYZ 129.452 491.077 null]
>> endobj
55 0 obj <<
/D [52 0 R /XYZ 252.725 120.339 null]
>> endobj
51 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
58 0 obj <<
/Length 4864
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22642(7)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(Licentiousness,)-315(the)-302(immediate)-303(lewd)-302(Mother)-302(of)-302(Anarchy!)-406(In)-303(the)]TJ 0 -13.549 Td[(visible)-271(Creation,)-276(the)-271(direct)-271(Result)-271(of)-271(infinite)-271(Wisdom,)-276(the)-271(lesser)]TJ 0 -13.549 Td[(Planets)-416(do)-416(not)-415(interfere)-416(with,)-458(much)-415(less)-416(shock)-416(or)-416(oppose)-416(the)]TJ 0 -13.549 Td[(Motions)-228(and)-228(Revolutions)-228(of)-229(the)-228(greater;)-235(they)-228(constantly)-228(keep)-229(the)]TJ 0 -13.55 Td[(Distances)-323(first)-323(prescribed)-323(them,)-341(and)-322(all)-323(move)-323(regularly)-323(to)-323(their)]TJ 0 -13.549 Td[(respective)-295(Ends.)-386(The)-295(most)-296(verdant)-295(and)-295(fragrant)-295(Meadows)-296(may,)]TJ 0 -13.549 Td[(from)-416(the)-416(too)-416(frequent)-416(Irruption)-416(of)-416(muddy)-416(Waters,)-458(degenerate)]TJ 0 -13.549 Td[(into)-459(noxious)-459(Marshes,)-512(if)-459(some)-459(Care)-459(was)-459(not)-459(taken)-459(to)-460(divert)]TJ 0 -13.549 Td[(those)-442(impure)-442(Gushings)-443(into)-442(their)-442(proper)-442(Channels.)-826(Hence)-443(it)]TJ 0 -13.55 Td[(may)-297(be)-296(inferred,)-308(that)-297(laying)-296(open)-297(the)-296(most)-297(honorary,)-308(as)-296(well)-297(as)]TJ 0 -13.549 Td[(important)-283(and)-282(useful)-283(Professions)-282(of)-283(Society,)-291(to)-282(the)-283(Intrusion,)-291(or)]TJ 0 -13.549 Td[(rather)-262(pyratical)-261(Invasions,)-265(of)-261(the)-262(Scum)-261(and)-262(Dregs)-261(of)-262(the)-262(People,)]TJ 0 -13.549 Td[(cannot,)-236(however)-233(varnished)-233(over)-233(with)-233(the)-233(fictitious)-233(Colourings)-233(of)]TJ 0 -13.549 Td[(pretended)-250(Liberty,)-250(consist)-250(with)-250(true)-250(Political)-250(Wisdom.)]TJ 11.956 -16.004 Td[(Those)-405(ancient)]TJ/F28 10.909 Tf 67.007 0 Td[(Sophi)]TJ/F16 10.909 Tf 29.272 0 Td[(and)]TJ/F28 10.909 Tf 20.173 0 Td[(Literati)]TJ/F16 10.909 Tf 37.158 0 Td[(enjoyed)-405(their)-405(Places)-406(with)]TJ -165.566 -13.55 Td[(the)-317(greater)-317(Security,)-334(that)-317(they)-317(were)-317(uninvadable)-317(by)-317(the)-317(inferior)]TJ 0 -13.549 Td[(Classes)-267(of)-267(Mankind;)-276(with)-267(the)-267(greater)-267(Content)-267(and)-267(Chearfulness,)]TJ 0 -13.549 Td[(that)-362(much)-362(Esteem)-361(an)-1(d)-361(Emolument)-362(were)-362(connected)-362(with)-362(them:)]TJ 0 -13.549 Td[(The)-307(Priest)-306(and)-307(Advocate)-306(informed)-307(and)-306(directed)-307(the)-307(Conscience)]TJ 0 -13.549 Td[(and)-164(Conduct;)-192(the)-164(Historian)-163(and)-164(Annalist)-163(recorded)-164(the)-164(Institutions;)]TJ 0 -13.55 Td[(the)-289(Poe)-1(t)-289(and)-289(Musician)-290(celebrated)-289(and)-290(sung)-289(the)-290(Exploits)-289(of)-290(their)]TJ 0 -13.549 Td[(Kings)-251(and)-250(Leaders:)-251(No)-251(Wonder)-250(then)-251(this)-250(Kingdom)-251(should)-501(have)]TJ/F16 7.97 Tf 291.024 0 Td[([010])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(been)-457(revered)-457(at)-458(Home,)-509(and)-457(admired)-457(Abroad;)-561(when)-458(Religion)]TJ 0 -13.549 Td[(formed,)-480(Erudition)-435(nurtured,)-480(Philosophy)-434(strengthened,)-481(History)]TJ 0 -13.549 Td[(preserved,)-658(Rhetorick)-576(adorned,)-658(Musick)-576(softened,)-657(and)-577(Poesy)]TJ 0 -13.549 Td[(refined,)-591(the)-523(National)-523(Wisdom)-523(and)-523(Accomplishments;)-660(to)-523(all)]TJ 0 -13.55 Td[(which)-330(was)-330(added,)-349(a)-330(thorough)-330(Knowledge)-330(of)-330(Tactics,)-350(and)-330(great)]TJ 0 -13.549 Td[(Skill)-250(and)-250(Agility)-250(in)-250(all)-250(the)-250(athletick)-250(Arts,)-250(and)-250(bodily)-250(Exercises.)]TJ 11.955 -16.004 Td[(In)-515(the)-514(Versions)-515(of)-514(some)-515(original)-515(Codes)-514(exported)-515(by)-515(our)]TJ -11.955 -13.549 Td[(Countryman,)-233(the)-229(learned)-228(and)-229(pious)-229(St.)]TJ/F28 10.909 Tf 169.096 0 Td[(Fiechry)]TJ/F16 10.909 Tf 33.927 0 Td[(,)-233(still)-229(extant)-228(in)-229(the)]TJ/F28 10.909 Tf -203.023 -13.549 Td[(Navarre)]TJ/F16 10.909 Tf 39.348 0 Td[(Library)-274(at)]TJ/F28 10.909 Tf 46.569 0 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(,)-280(the)-274(Constitutional)-274(Wisdom)-274(of)]TJ/F28 10.909 Tf 138.956 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.513 -13.549 Td[(appears)-362(in)-361(a)-362(clear)-362(and)-361(happy)-362(Light:)-473(Persons,)-390(Things,)-390(Actions,)]TJ 0 -13.55 Td[(and)-492(Exp)-1(ressions,)-553(were)-492(cautiously)-493(attended)-492(to,)-553(by)-493(the)-493(Laws;)]TJ/F28 10.909 Tf 0 -13.549 Td[(Persons)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-366(in)-343(their)-343(Minority,)-367(Youth,)-366(and)-343(Manhood,)-366(according)-344(to)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
57 0 obj <<
/Type /Page
/Contents 58 0 R
/Resources 56 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
59 0 obj <<
/D [57 0 R /XYZ 304.072 231.187 null]
>> endobj
56 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
62 0 obj <<
/Length 5617
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(8)-3922(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(their)-279(different)-279(Ranks)-279(in)-279(the)-279(State,)-286(so)-279(as)-278(by)-279(Care,)-286(Education,)-287(and)]TJ 0 -13.549 Td[(Discipline,)-207(to)-197(render)-197(them,)-207(some)-197(subservient,)-207(others)-197(useful,)-208(some)]TJ 0 -13.549 Td[(beneficial,)-210(and)-199(others)-200(ornamental)-200(thereunto.)]TJ/F28 10.909 Tf 192.535 0 Td[(Things)]TJ/F16 10.909 Tf 29.705 0 Td[(,)-210(so)-199(carefully,)]TJ -222.24 -13.549 Td[(as)-251(to)-251(prevent,)-251(by)-250(prohibatory)-251(Laws,)-251(Wastes)-251(of)-251(whatsoever)-251(Kind,)]TJ 0 -13.55 Td[(and)-441(to)-441(ascertain)-441(to)-441(each)-442(Individual,)-488(as)-442(well)-441(as)-441(Society,)-489(their)]TJ 0 -13.549 Td[(proper)-216(and)-217(distinct)-216(Rights.)]TJ/F28 10.909 Tf 117.261 0 Td[(Actions)]TJ/F16 10.909 Tf 32.727 0 Td[(,)-223(by)-216(directing)-217(those)-216(in)-217(general,)]TJ -149.988 -13.549 Td[(and)-374(particular,)-406(to)-374(the)-374(Honour)-374(of)-374(the)-375(Deity)-374(and)-374(Welfare)-374(of)-375(the)]TJ 0 -13.549 Td[(Community:)]TJ/F28 10.909 Tf 59.522 0 Td[(Expression)]TJ/F16 10.909 Tf 48.48 0 Td[(,)-343(by)-325(the)-324(pen)-1(al)-324(Interdiction)-325(of)-324(prophane)]TJ -108.002 -13.549 Td[(Cursing)-520(and)-521(Swearing,)-588(Obscenity,)-588(Scurrility,)-588(Calumny,)-588(and)]TJ 0 -13.55 Td[(Detraction,)-401(yet)-371(with)-371(a)-371(full)-371(Indulgence)-371(of)-371(proper)-371(Satire)-371(against)]TJ 0 -13.549 Td[(such)-186(as)-185(merited)-186(popular)-185(Reprehension,)-199(or)-185(Contempt;)-207(the)-186(Satirist's)]TJ 0 -13.549 Td[(Pen)-208(in)-207(those)-208(Days)-207(being)-208(as)-207(much)-208(dreaded,)-216(or)-207(rather)-208(more)-208(so,)-216(than)]TJ 0 -13.549 Td[(the)-273(Magistrate's)-272(Rod,)-278(and)-273(consequently)-272(as)-273(diligently)-272(avoided)-273(by)]TJ 0 -13.549 Td[(a)-250(Demeanour)-250(absolutely)-250(irreproachable.)]TJ/F16 7.97 Tf -72.755 0 Td[([011])]TJ/F16 10.909 Tf 84.711 -16.004 Td[(It)-211(appeareth)-210(that,)-219(under)-210(the)-211(antient)-211(Government)-210(of)]TJ/F28 10.909 Tf 218.116 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-219(the)]TJ -262.188 -13.55 Td[(Education)-271(of)-271(the)-271(landed)-271(Gentry,)-277(when)-271(Luxury,)-276(with)-271(its)-272(wasteful)]TJ 0 -13.549 Td[(Catalogue)-341(of)-341(Vices,)-363(had)-341(not)-341(rendered)-341(Property)-341(so)-341(mutable)-341(and)]TJ 0 -13.549 Td[(wavering)-300(as)-300(in)-299(mode)-1(rn)-299(Ages,)-313(was)-299(provided)-300(for;)-325(whether)-300(by)-300(the)]TJ 0 -13.549 Td[(immediate)-291(Care)-291(of)-292(Parents,)-301(or)-291(essential)-291(Attention)-291(of)-292(Guardians,)]TJ 0 -13.549 Td[(by)-270(the)-270(Laws)-270(of)-270(the)-270(Land;)-280(in)-270(order)-270(that)-270(Gentlemen)-270(shou)-1(ld,)-275(to)-270(the)]TJ 0 -13.55 Td[(Antiquity)-280(of)-280(Birth)-281(and)-280(Possession,)-288(add)-280(the)-280(important)-280(Dignity)-281(of)]TJ 0 -13.549 Td[(Learning,)-195(and)-180(social)-181(Refinement)-180(of)-181(Arts:)-215(Since)-181(a)-181(Man)-180(at)-181(the)-181(Head)]TJ 0 -13.549 Td[(of)-244(an)-245(original)-244(Estate,)-245(who)-245(should)-244(want)-244(the)-244(necessary)-245(Cultivation)]TJ 0 -13.549 Td[(of)-238(Letters,)-240(was)-237(considered)-238(only)-237(as)-238(a)-237(Peasant)-238(in)-237(Disguise,)-240(and)-238(not)]TJ 0 -13.549 Td[(more)-250(respected)-250(than)-250(a)-250(Hewer)-250(of)-250(Wood,)-250(or)-250(Drawer)-250(of)-250(Water.)]TJ 11.956 -16.004 Td[(In)-353(these)-353(Writings)-353(of)-353(St.)]TJ/F28 10.909 Tf 112.1 0 Td[(Fiechry)]TJ/F16 10.909 Tf 33.927 0 Td[(,)-379(the)-353(legislative)-353(Wisdom)-353(of)]TJ/F28 10.909 Tf -157.983 -13.549 Td[(Olam-Fodla)]TJ/F16 10.909 Tf 53.935 0 Td[(;)-274(the)-266(philosophically-religious)-266(Capacity)-266(of)]TJ/F28 10.909 Tf 187.913 0 Td[(Cormac-)]TJ -241.848 -13.55 Td[(O)-581(Quin)]TJ/F16 10.909 Tf 36.035 0 Td[(,)-664(who,)-665(from)-582(the)-581(pure)-582(Light)-581(of)-582(Nature,)-664(in)-582(a)-581(great)]TJ -36.035 -13.549 Td[(Measure)-512(defeated)-513(the)-512(absurd)]TJ/F28 10.909 Tf 139.278 0 Td[(Polytheism)]TJ/F16 10.909 Tf 54.069 0 Td[(of)-512(the)]TJ/F28 10.909 Tf 33.595 0 Td[(Druids)]TJ/F16 10.909 Tf 30.305 0 Td[(;)-643(the)]TJ -257.247 -13.549 Td[(consummate)-240(Integrity)-240(and)-240(Impartiality)-240(of)]TJ/F28 10.909 Tf 182.163 0 Td[(Federach)]TJ/F16 10.909 Tf 44.422 0 Td[(the)-240(Just,)-242(and)]TJ/F28 10.909 Tf -226.585 -13.549 Td[(Moran)]TJ/F16 10.909 Tf 32.017 0 Td[(his)-213(Chief)-213(Justice;)-225(the)-213(Magnanimity)-213(of)]TJ/F28 10.909 Tf 164.973 0 Td[(Con-Ked-Cathagh)]TJ/F16 10.909 Tf 80.607 0 Td[(;)]TJ -277.597 -13.549 Td[(the)-464(Conquests)-464(of)]TJ/F28 10.909 Tf 83.067 0 Td[(Kineth)-464(Mac)-464(Alpin)]TJ/F16 10.909 Tf 82.246 0 Td[(;)-571(the)-464(long,)-518(glorious,)-518(and)]TJ -165.313 -13.55 Td[(peaceful)-367(Reign)-367(of)]TJ/F28 10.909 Tf 84.113 0 Td[(Conary)]TJ/F16 10.909 Tf 36.732 0 Td[(the)-367(Great,)]TJ/F28 10.909 Tf 48.617 0 Td[(co\346val)]TJ/F16 10.909 Tf 34.91 0 Td[(with)-367(the)-367(Birth)-367(of)]TJ -204.372 -13.549 Td[(our)-409(Blessed)-408(Lord)-409(and)-409(Saviour)]TJ/F28 10.909 Tf 141.672 0 Td[(Jesus)-409(Christ)]TJ/F16 10.909 Tf 55.371 0 Td[(,)-448(\050undoubtedly)-409(the)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
61 0 obj <<
/Type /Page
/Contents 62 0 R
/Resources 60 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 37 0 R
>> endobj
63 0 obj <<
/D [61 0 R /XYZ 93.543 339.657 null]
>> endobj
60 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
66 0 obj <<
/Length 6057
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22642(9)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(happiest,)-537(brightest,)-536(and)-479(most)-480(blissful)-479(Period)-479(the)-479(World)-480(ever)]TJ 0 -13.549 Td[(saw;\051)-229(are)-219(all)-218(displayed)-219(in)-219(a)-218(copious)-219(masterly)-218(Style,)-225(yet)-219(with)-219(strict)]TJ 0 -13.549 Td[(chronological)-250(Exactness.)]TJ 11.956 -15.186 Td[(This)-388(learned)-388(St.)]TJ/F28 10.909 Tf 79.048 0 Td[(Fiechry)]TJ/F16 10.909 Tf 38.163 0 Td[(was)-388(Founder)-388(of)-389(the)-388(University)-388(in)]TJ/F28 10.909 Tf -129.167 -13.549 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(,)-285(in)-277(the)-278(Beginning)-277(of)-278(the)-277(8th)-278(Century.)-333(The)-277(better)-278(to)-278(enable)]TJ -23.64 -13.549 Td[(him)-404(to)-403(carry)-404(on)-403(that)-404(noble)-403(Work,)-442(he)-404(obtained)-403(of)]TJ/F28 10.909 Tf 228.348 0 Td[(Charles)]TJ/F16 10.909 Tf 38.951 0 Td[(the)]TJ -267.299 -13.55 Td[(Great)-285(a)-286(Tax)-285(on)-285(all)-286(Wheel-Carriages,)-294(within)-571(the)-285(Barriers)-285(of)-286(that)]TJ/F16 7.97 Tf 291.024 0 Td[([012])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(City:)-230(Whence,)-217(a)-209(Hackney-Coach)-209(is)-209(at)-209(this)-209(Day)-209(technically)-210(term'd)]TJ/F28 10.909 Tf 0 -13.549 Td[(Fiacre)]TJ/F16 10.909 Tf 29.084 0 Td[(.)]TJ/F28 10.909 Tf -17.128 -15.186 Td[(Charles)]TJ/F16 10.909 Tf 40.167 0 Td[(the)-515(Great,)-581(in)-515(order)-515(to)-515(repair)-515(the)-516(cruel)-515(and)-515(truly)]TJ -52.123 -13.549 Td[(lamentable)-441(literary)-441(Dilapidations)-441(of)-441(the)-441(ferocious)-441(North-men,)]TJ 0 -13.549 Td[(invited)-754(Numbers)-753(of)-754(the)-754(learned)-753(and)-754(pious)]TJ/F28 10.909 Tf 221.763 0 Td[(Irish)]TJ/F16 10.909 Tf 28.828 0 Td[(to)-754(the)]TJ -250.591 -13.549 Td[(Continent,)-644(where)-565(he)-565(established)-565(and)-565(entertained)-565(them)-565(with)]TJ 0 -13.549 Td[(Dignity,)-543(Tenderness,)-544(and)-484(Respect.)-954(In)-484(a)-485(curious)-485(Manuscript)]TJ 0 -13.55 Td[(of)]TJ/F28 10.909 Tf 14.115 0 Td[(Nicholaus)-461(Gurtlerus)]TJ/F16 10.909 Tf 91.7 0 Td[(,)-514(\050now)-460(in)-461(the)]TJ/F28 10.909 Tf 67.648 0 Td[(French)]TJ/F16 10.909 Tf 36.533 0 Td[(King's)]TJ/F28 10.909 Tf 33.052 0 Td[(Parisian)]TJ/F16 10.909 Tf -243.048 -13.549 Td[(Library\051)-208(Author)-208(of)-209(the)]TJ/F28 10.909 Tf 98.758 0 Td[(Origines)-208(Mundi)]TJ/F16 10.909 Tf 68.937 0 Td[(,)-217(where)-208(he)-208(alludes)-208(to)-208(these)]TJ -167.695 -13.549 Td[(Times,)-371(you)-348(find)-347(the)-347(following)-347(favourable,)-371(but)-347(true)-347(Account)-348(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ/F31 10.909 Tf 2.727 0 Td[(\024)]TJ/F28 10.909 Tf 10.909 0 Td[(Temporibus)-289(illis,)-299(barbaris)-289(Normannorum)-290(Cohortibus)]TJ -45.753 -13.549 Td[(undequaque)-297(irrumpentibus,)-308(Religio,)-308(Fides,)-308(Philosophia,)-309(Virtus,)]TJ 0 -13.55 Td[(Hospitalitas,)-276(Fortitudo,)-276(Castitas,)-276(necnon)-270(et)-271(Am)]TJ/F37 10.909 Tf 207.979 0 Td[(S)]TJ/F28 10.909 Tf 7.277 0 Td[(niores)-271(omnium)]TJ -215.256 -13.549 Td[(generum)-759(Artes,)-886(Hibernia)-759(solummod\362)-759(natali,)-887(veluti)-759(Solo,)]TJ 0 -13.549 Td[(viguerunt)]TJ/F16 10.909 Tf 41.815 0 Td[(;)-246(little)-243(Wonder)-244(that)]TJ/F28 10.909 Tf 85.192 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.773 0 Td[(should)-244(have)-243(been)-244(esteemed)]TJ -161.78 -13.549 Td[(the)]TJ/F28 10.909 Tf 17.481 0 Td[(Ierne)]TJ/F16 10.909 Tf 23.018 0 Td[(,)-413(or)-381(sacred)-380(Isle)-380(of)-381(the)]TJ/F28 10.909 Tf 103.104 0 Td[(Greeks)]TJ/F16 10.909 Tf 30.894 0 Td[(,)-413(the)]TJ/F28 10.909 Tf 24.714 0 Td[(Insula)-380(Sanctorum)]TJ/F16 10.909 Tf 78.692 0 Td[(,)]TJ -277.903 -13.549 Td[(or)-528(Island)-529(of)-528(Saints)-529(of)-528(the)]TJ/F28 10.909 Tf 128.512 0 Td[(Romans)]TJ/F16 10.909 Tf 35.149 0 Td[(.)]TJ/F31 10.909 Tf 2.728 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(Would)-528(to)-529(Heaven)-528(our)]TJ -177.298 -13.55 Td[(Countrymen)-362(had,)-391(upon)-362(all)-362(considerable)-362(Occasions,)-391(recollected)]TJ 0 -13.549 Td[(those)-450(deserved)-450(Encomiums,)-500(thereby)-450(to)-450(approve)-451(them)-450(worthy)]TJ 0 -13.549 Td[(their)-250(applauded)-250(Origin,)-250(and)-250(native)-250(Soil!)]TJ 11.956 -15.186 Td[(We)-732(now)-732(proceed)-732(to)-732(consider)]TJ/F28 10.909 Tf 153.825 0 Td[(Ireland)]TJ/F16 10.909 Tf 40.101 0 Td[(in)-732(her)-732(happiest)]TJ -205.882 -13.549 Td[(and)-476(brightest)-477(View,)-532(after)-477(the)-476(Admission)-476(and)-476(Propagation)-477(of)]TJ 0 -13.549 Td[(Christianity.)-335(It)-278(is)-278(certain)-278(there)-279(were)-278(many)-278(Christians)-278(in)]TJ/F28 10.909 Tf 245.787 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)]TJ -277.903 -13.549 Td[(before)-250(th)-1(e)-250(Arrival)-250(of)]TJ/F28 10.909 Tf 92.714 0 Td[(Palladius)]TJ/F16 10.909 Tf 44.558 0 Td[(in)-250(431,)-251(or)-250(of)-251(St.)]TJ/F28 10.909 Tf 71.25 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.849 0 Td[(the)-250(Year)]TJ -243.371 -13.549 Td[(following:)-573(St.)]TJ/F28 10.909 Tf 71.548 0 Td[(Kieran)]TJ/F16 10.909 Tf 30.306 0 Td[(,)-452(St.)]TJ/F28 10.909 Tf 27.495 0 Td[(Ailbe)]TJ/F16 10.909 Tf 23.03 0 Td[(,)-452(St.)]TJ/F28 10.909 Tf 27.495 0 Td[(Declan)]TJ/F16 10.909 Tf 31.506 0 Td[(,)-452(and)-411(St.)]TJ/F28 10.909 Tf 47.737 0 Td[(Ibar)]TJ/F16 10.909 Tf 18.786 0 Td[(,)]TJ -277.903 -13.55 Td[(whom)]TJ/F28 10.909 Tf 29.785 0 Td[(Ussher)]TJ/F16 10.909 Tf 33.417 0 Td[(calls)-230(the)-231(Precursors,)-234(or)-230(Forerunners)-230(of)-231(St.)]TJ/F28 10.909 Tf 182.584 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ -277.903 -13.549 Td[(are)-362(pregnant)-361(Proofs)-362(of)-362(this;)-417(they)-362(were)-362(of)-361(the)-362(Birth)-362(of)]TJ/F28 10.909 Tf 245.786 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
65 0 obj <<
/Type /Page
/Contents 66 0 R
/Resources 64 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
67 0 obj <<
/D [65 0 R /XYZ 241.031 435.243 null]
>> endobj
64 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R /F37 50 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
71 0 obj <<
/Length 6742
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(10)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(from)-237(whence)-236(they)-237(travelled)-237(to)]TJ/F28 10.909 Tf 132.877 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-239(in)-237(Search)-237(of)-236(Education)-237(and)]TJ -157.717 -13.549 Td[(Learning,)-458(where)-832(they)-416(lived)-417(some)-416(Years,)-458(were)-416(ordained,)-458(and)]TJ/F16 7.97 Tf -72.755 0 Td[([013])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(returned)-250(Home)-250(about)-250(the)-250(Year)-250(402.)]TJ 11.956 -16.004 Td[(It)-299(seems)-299(that)-298(th)-1(ose)-298(early)-299(Preachers)-299(confined)-299(their)-299(Labours)-299(to)]TJ -11.956 -13.549 Td[(particular)-362(Places,)-390(in)-362(which)-362(they)-362(had)-362(considerable)-362(Success,)-390(but)]TJ 0 -13.55 Td[(fell)-309(very)-308(short)-309(of)-309(converting)-308(the)-309(Body)-309(of)-309(the)-308(Nation:)-368(However,)]TJ 0 -13.549 Td[(they)-259(sowed)-258(the)-258(Seed)-259(which)-258(St.)]TJ/F28 10.909 Tf 136.786 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.936 0 Td[(came)-258(after)-259(to)-258(water:)-267(And)]TJ -171.722 -13.549 Td[(it)-189(is)-189(certain)-189(that)-189(St.)]TJ/F28 10.909 Tf 81.971 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.179 0 Td[(was)-189(so)-189(well)-189(satisfied)-189(with)-189(the)-189(Progress)]TJ -116.15 -13.549 Td[(they)-288(made,)-296(in)-288(their)-287(particular)-288(Districts)-287(in)]TJ/F28 10.909 Tf 182.942 0 Td[(Munster)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-297(that)-287(this)-288(was)]TJ -219.302 -13.549 Td[(the)-240(last)-239(Province)-240(in)]TJ/F28 10.909 Tf 86.212 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.731 0 Td[(he)-240(thought)-239(proper)-240(to)-240(visit.)-246(That)-240(there)]TJ -120.943 -13.55 Td[(were)-425(many)-425(Christians)-425(in)]TJ/F28 10.909 Tf 116.716 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-469(at)-425(this)-425(Period,)-468(seems)-425(to)-425(be)]TJ -148.833 -13.549 Td[(confirmed)-222(by)]TJ/F28 10.909 Tf 60.579 0 Td[(Prosper)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-227(who,)-227(in)-222(giving)-221(an)-222(Account)-221(of)-222(the)-221(Mission)]TJ -95.728 -13.549 Td[(of)]TJ/F28 10.909 Tf 12.693 0 Td[(Palladius)]TJ/F16 10.909 Tf 41.825 0 Td[(,)-351(says,)-350(that)-331(he)-330(was)-331(ordained)-330(by)-331(Pope)]TJ/F28 10.909 Tf 168.047 0 Td[(Celestin)]TJ/F16 10.909 Tf 35.76 0 Td[(,)-351(and)]TJ -258.325 -13.549 Td[(sent)-196(the)-197(first)-196(Bishop)-197(to)-196(the)]TJ/F28 10.909 Tf 114.072 0 Td[(Scots)]TJ/F16 10.909 Tf 25.172 0 Td[(believing)-196(in)-197(Christ.)-232(This)-196(Passage)]TJ -139.244 -13.549 Td[(can)-320(mean)-320(nothing)-320(else,)-338(but)-320(that)]TJ/F28 10.909 Tf 143.248 0 Td[(Palladius)]TJ/F16 10.909 Tf 41.825 0 Td[(,)-338(born)-320(in)-320(Britain,)-337(was)]TJ -185.073 -13.55 Td[(sent)-194(to)-194(the)-195(Scots)-194([i.e.)-231(the)]TJ/F28 10.909 Tf 106.445 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(])-194(who)-194(had)-195(already)-194(formed)-194(Churches)]TJ -127.052 -13.549 Td[(under)]TJ/F28 10.909 Tf 28.177 0 Td[(Kieran)]TJ/F16 10.909 Tf 30.305 0 Td[(,)]TJ/F28 10.909 Tf 6.217 0 Td[(Ailbe)]TJ/F16 10.909 Tf 23.029 0 Td[(,)]TJ/F28 10.909 Tf 6.216 0 Td[(Declan)]TJ/F16 10.909 Tf 34.842 0 Td[(and)]TJ/F28 10.909 Tf 19.09 0 Td[(Ibar)]TJ/F16 10.909 Tf 18.785 0 Td[(;)-334(and)-306(so)-306(the)-305(Bishop)-306(of)-306(St.)]TJ/F28 10.909 Tf -166.661 -13.549 Td[(Asaph)]TJ/F16 10.909 Tf 31.594 0 Td[(expounds)-396(it.)-689(This)-396(then)-396(was)-396(the)-396(next)-396(Attempt)-396(that)-396(was)]TJ -31.594 -13.549 Td[(made)-382(for)-382(the)-381(Conversion)-382(of)-382(the)]TJ/F28 10.909 Tf 147.388 0 Td[(Irish)]TJ/F16 10.909 Tf 20.608 0 Td[(:)]TJ/F28 10.909 Tf 8.635 0 Td[(Palladius)]TJ/F16 10.909 Tf 45.99 0 Td[(engaged)-382(in)-382(a)]TJ -222.621 -13.549 Td[(more)-299(ample)-299(and)-298(extensive)-299(Design)-299(than)-299(his)-299(Predecessors,)-311(yet)-299(he)]TJ 0 -13.55 Td[(failed)-304(in)-303(the)-304(Execution)-304(of)-303(it,)-318(stay'd)-303(but)-304(a)-304(short)-303(Time)-304(in)]TJ/F28 10.909 Tf 245.786 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ -277.903 -13.549 Td[(and)-290(did)-289(little)-290(worth)-290(remembring;)-309(he)-290(converted,)-299(however,)-300(a)-290(few,)]TJ 0 -13.549 Td[(and)-321(is)-320(said)-321(to)-321(have)-320(founded)-321(three)-321(Churches;)-356(but)-320(he)-321(had)-321(neither)]TJ 0 -13.549 Td[(Courage)-395(to)-395(withstand)-394(the)-395(Fierceness)-395(of)-395(the)-395(heathen)]TJ/F28 10.909 Tf 238.052 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(,)-431(nor)]TJ -258.659 -13.549 Td[(Abilities,)-250(for)-250(Want)-250(of)-250(the)-250(Language,)-250(proper)-250(for)-250(the)-250(Work.)]TJ/F28 10.909 Tf 11.955 -16.004 Td[(Nathi)]TJ/F16 10.909 Tf 24.251 0 Td[(,)-616(the)-542(Son)-543(of)]TJ/F28 10.909 Tf 66.589 0 Td[(Garcon)]TJ/F16 10.909 Tf 33.327 0 Td[(,)-616(an)]TJ/F28 10.909 Tf 25.659 0 Td[(Irish)]TJ/F16 10.909 Tf 26.525 0 Td[(Prince,)-616(opposed)-542(his)]TJ -188.306 -13.549 Td[(preaching;)-319(upon)-296(which)]TJ/F28 10.909 Tf 104.465 0 Td[(Palladius)]TJ/F16 10.909 Tf 45.055 0 Td[(left)-296(the)-296(Kingdom,)-307(and)-296(died)-296(in)]TJ -149.52 -13.55 Td[(the)-417(Land)-417(of)-417(the)]TJ/F28 10.909 Tf 76.367 0 Td[(Picts)]TJ/F16 10.909 Tf 21.818 0 Td[(,)-459(on)-417(the)-417(15th)-417(of)]TJ/F28 10.909 Tf 78.655 0 Td[(December)]TJ/F16 10.909 Tf 44.826 0 Td[(,)-459(431.)-751(This)]TJ/F16 7.97 Tf -294.422 0 Td[([014])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(glorious)-271(Work)-271(was)-271(reserved)-271(for)-271(St.)]TJ/F28 10.909 Tf 157.249 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-276(to)-271(whose)-271(holy)-271(Life,)]TJ -189.365 -13.549 Td[(divine)-365(Mission,)-395(and)-365(extraordinary)-365(Success,)-395(I)-365(refer)-365(the)-366(Reader.)]TJ 0 -13.549 Td[(This)-323(great)-323(Apostle)-322(of)-323(the)]TJ/F28 10.909 Tf 115.164 0 Td[(Irish)]TJ/F16 10.909 Tf 24.128 0 Td[(founded)-323(and)-323(built)-322(the)-323(Cathedral)]TJ -139.292 -13.549 Td[(Church)-237(of)]TJ/F28 10.909 Tf 46.375 0 Td[(Ardmagh)]TJ/F16 10.909 Tf 40.603 0 Td[(,)-240(about)-237(the)-237(Year)-237(444,)-239(or)-237(45,)-240(which,)-240(from)-237(that)]TJ -86.978 -13.55 Td[(early)-305(Period)-304(to)-305(this,)-318(hath)-304(continued)-305(the)-304(Metropolitan)-305(Church)-305(of)]TJ 0 -13.549 Td[(all)]TJ/F28 10.909 Tf 13.97 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-342(So)-280(that)-281(1194)-280(Years)-281(passed)-280(away)-281(from)-280(the)-281(Founding)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
70 0 obj <<
/Type /Page
/Contents 71 0 R
/Resources 69 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
72 0 obj <<
/D [70 0 R /XYZ 171.837 504.626 null]
>> endobj
73 0 obj <<
/D [70 0 R /XYZ 374.173 147.437 null]
>> endobj
69 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
76 0 obj <<
/Length 6714
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(11)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(of)-250(the)-250(City)-250(of)]TJ/F28 10.909 Tf 61.211 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-250(to)-250(that)-250(of)]TJ/F28 10.909 Tf 47.575 0 Td[(Ardmagh)]TJ/F16 10.909 Tf 40.603 0 Td[(.)]TJ -162.273 -16.004 Td[(The)-258(various)-258(and)-259(most)-258(signal)-258(Blessings)-258(derived)-258(to)-258(this)-259(Nation,)]TJ -11.956 -13.549 Td[(from)-405(the)-405(salutary)-406(Mission)-405(of)-405(this)-405(illustrious)-406(Saint,)-444(require,)-444(in)]TJ 0 -13.549 Td[(Gratitude,)-424(our)-389(giving)-389(the)-389(Reader)-389(yet)-389(a)-389(further)-389(Account)-389(of)-389(the)]TJ 0 -13.549 Td[(Author)-250(of)-250(such)-250(Happiness)-250(and)-250(Glory)-250(to)]TJ/F28 10.909 Tf 174.218 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ -194.379 -16.004 Td[(He)-331(was)-331(born)-330(in)-331(the)-331(extreme)-331(Bounds)-330(of)]TJ/F28 10.909 Tf 177.927 0 Td[(Britain)]TJ/F16 10.909 Tf 30.917 0 Td[(,)-351(\050in)-331(that)-330(Part)]TJ -220.8 -13.55 Td[(thereof)-414(which)-414(is)-415(now)-414(comprehended)-414(within)-414(the)-414(Limits)-414(of)-415(the)]TJ 0 -13.549 Td[(modern)]TJ/F28 10.909 Tf 35.661 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.182 0 Td[(\051)-214(at)-214(a)-214(Village)-214(called)]TJ/F28 10.909 Tf 86.188 0 Td[(Banaven)]TJ/F16 10.909 Tf 38.171 0 Td[(,)-221(in)-214(the)-214(Territory)-214(of)]TJ/F28 10.909 Tf -198.202 -13.549 Td[(Tabernia)]TJ/F16 10.909 Tf 40.004 0 Td[(,)-203(\050as)-191(he)-190(himself)-191(saith)-191(in)-191(his)-191(Confession\051)-191(in)]TJ/F28 10.909 Tf 180.377 0 Td[(Vico)-191(Banaven)]TJ -220.381 -13.549 Td[(Taberni\346)]TJ/F16 10.909 Tf 41.826 0 Td[(,)-360(&c.)-514(He)-338(tells)-338(us)-338(that)-338(he)-338(was)-338(born)-338(of)-338(a)-338(good)-338(Family.)]TJ/F28 10.909 Tf -41.826 -13.549 Td[(Ingennuus)-309(fui)-309(secundum)-309(Carnem.)]TJ/F16 10.909 Tf 153.243 0 Td[(His)-309(Father)-309(was)]TJ/F28 10.909 Tf 70.104 0 Td[(Calphurnius)]TJ/F16 10.909 Tf 54.556 0 Td[(,)]TJ -277.903 -13.55 Td[(a)-355(Deacon,)-381(who)-354(was)-355(the)-355(Son)-354(of)]TJ/F28 10.909 Tf 143.401 0 Td[(Potitus)]TJ/F16 10.909 Tf 30.917 0 Td[(,)-381(a)-355(Priest;)-407(from)-354(whence)]TJ -174.318 -13.549 Td[(may)-262(be)-262(clearly)-262(inferred)-262(that)-262(the)-262(Clergy)-262(were)-262(not)-263(restrained)-262(from)]TJ 0 -13.549 Td[(Matrimony)-271(in)-271(that)-272(Age.)-313(He)-272(was)-271(just)-271(advanced)-271(into)-271(his)-272(sixteenth)]TJ 0 -13.549 Td[(Year,)-320(when)-307(he)-306(was)-306(taken)-306(Captive,)-320(the)-307(Manner)-306(of)-306(which)-306(is)-307(thus)]TJ 0 -13.549 Td[(related)-271(by)-270(St.)]TJ/F28 10.909 Tf 61.725 0 Td[(Evin)]TJ/F16 10.909 Tf 22.948 0 Td[(and)-271(others:)-291(His)-271(Father,)-275(Mother,)-276(Brother,)-276(and)]TJ -84.673 -13.55 Td[(five)-215(Sisters,)-223(undertook)-215(a)-215(Voyage)-215(to)]TJ/F28 10.909 Tf 154.447 0 Td[(Aremorick)-215(Gaul)]TJ/F16 10.909 Tf 70.214 0 Td[(,)-222(\050now)-216(called)]TJ/F28 10.909 Tf -224.661 -13.549 Td[(Bass)-312(Bretagne)]TJ/F16 10.909 Tf 64.004 0 Td[(\051)-312(to)-312(visit)-312(the)-312(Relations)-312(of)-312(his)-312(Mother)]TJ/F28 10.909 Tf 166.63 0 Td[(Couchessa)]TJ/F16 10.909 Tf 47.269 0 Td[(.)]TJ -277.903 -13.549 Td[(It)-253(happened)-253(about)-253(this)-253(Time,)-253(that)-253(the)-253(seven)-253(Sons)-253(of)]TJ/F28 10.909 Tf 226.667 0 Td[(Factmude)]TJ/F16 10.909 Tf 43.625 0 Td[(,)-254(a)]TJ/F28 10.909 Tf -270.292 -13.549 Td[(British)]TJ/F16 10.909 Tf 32.68 0 Td[(Prince,)-278(were)-273(banished,)-278(and)-273(took)-272(to)-273(the)-273(Sea;)-284(that,)-278(making)]TJ -32.68 -13.549 Td[(an)-232(Inroad)-233(into)]TJ/F28 10.909 Tf 63.353 0 Td[(Aremorick)-232(Gaul)]TJ/F16 10.909 Tf 70.401 0 Td[(,)-236(they)-232(took)]TJ/F28 10.909 Tf 48.555 0 Td[(Patrick)]TJ/F16 10.909 Tf 37.188 0 Td[(and)-232(his)-233(Sister,)]TJ/F16 7.97 Tf 71.527 0 Td[([015])]TJ/F28 10.909 Tf -291.024 -13.55 Td[(Lupita)]TJ/F16 10.909 Tf 28.495 0 Td[(,)-393(\050some)-364(say)]TJ/F28 10.909 Tf 56.158 0 Td[(Tigrida)]TJ/F16 10.909 Tf 36.71 0 Td[(also\051)-364(Prisoners.)-592(They)-364(brought)-365(their)]TJ -121.363 -13.549 Td[(Captives)-416(to)-415(the)-416(North)-416(of)]TJ/F28 10.909 Tf 117.213 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-457(and)-416(sold)]TJ/F28 10.909 Tf 50.722 0 Td[(Patrick)]TJ/F16 10.909 Tf 36.652 0 Td[(to)]TJ/F28 10.909 Tf 13.022 0 Td[(Milcho)]TJ -249.725 -13.549 Td[(Mac)-391(Huanan)]TJ/F16 10.909 Tf 58.801 0 Td[(,)-426(a)-392(Prince)-391(of)]TJ/F28 10.909 Tf 61.982 0 Td[(Dalaradia)]TJ/F16 10.909 Tf 45.459 0 Td[(:)-532(Others)-391(tell)-391(the)-392(Story)-391(in)]TJ -166.242 -13.549 Td[(a)-344(different)-344(Manner,)-368(and)-344(with)-344(a)-344(stronger)-344(Degree)-344(of)-344(Probability.)]TJ 0 -13.549 Td[(That)-287(the)]TJ/F28 10.909 Tf 39.583 0 Td[(Romans)]TJ/F16 10.909 Tf 38.276 0 Td[(having)-287(deserted)]TJ/F28 10.909 Tf 72.299 0 Td[(Britain)]TJ/F16 10.909 Tf 30.916 0 Td[(,)-296(to)-287(preserve)-286(their)-287(own)]TJ -181.074 -13.549 Td[(Country)-414(from)-414(the)-414(barbarous)-414(Incursions)-414(of)-414(the)]TJ/F28 10.909 Tf 212.787 0 Td[(Northern)-414(Hive)]TJ/F16 10.909 Tf 65.116 0 Td[(,)]TJ -277.903 -13.55 Td[(the)]TJ/F28 10.909 Tf 16.724 0 Td[(Irish)]TJ/F16 10.909 Tf 24 0 Td[(made)-311(frequent)-311(Conquests,)-326(in)]TJ/F28 10.909 Tf 130.389 0 Td[(North)-311(Britain)]TJ/F16 10.909 Tf 63.164 0 Td[(especially,)]TJ -234.277 -13.549 Td[(whence)-261(returning)-260(v)-1(ictorious,)-263(in)-261(one)-260(of)-261(those)-261(Expeditions)-261(among)]TJ 0 -13.549 Td[(others)-341(brought)]TJ/F28 10.909 Tf 68.041 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.837 0 Td[(Captive.)-523(But)-341(in)-341(this)-341(they)-341(all)-342(agree,)-363(and)]TJ -103.878 -13.549 Td[(he)-437(himself)-436(confirms)-437(it,)-483(that)-437(he)-437(continued)-436(Prisoner)-437(in)]TJ/F28 10.909 Tf 248.514 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.514 -13.549 Td[(six)-307(Years;)-336(he)-307(was)-308(sold)-307(to)]TJ/F28 10.909 Tf 115.56 0 Td[(Milcho)]TJ/F16 10.909 Tf 34.257 0 Td[(and)-307(his)-307(three)-308(Brothers,)-321(which)]TJ -149.817 -13.55 Td[(gave)-455(Occasion)-454(of)-455(his)-455(changing)-455(his)-454(Name)-455(into)]TJ/F28 10.909 Tf 218.439 0 Td[(Cathraigh)]TJ/F16 10.909 Tf 44.858 0 Td[(,)-506(or)]TJ -263.297 -13.549 Td[(rather)]TJ/F28 10.909 Tf 29.975 0 Td[(Ceathir-Tigh)]TJ/F16 10.909 Tf 56.978 0 Td[(,)-457(because)-416(he)-416(served)-415(four)-416(Masters;)]TJ/F28 10.909 Tf 160.339 0 Td[(Ceathir)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
75 0 obj <<
/Type /Page
/Contents 76 0 R
/Resources 74 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
77 0 obj <<
/D [75 0 R /XYZ 263.732 242.282 null]
>> endobj
74 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
80 0 obj <<
/Length 5796
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(12)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(signifying)-297(four,)-309(and)]TJ/F28 10.909 Tf 90.759 0 Td[(Tigh)]TJ/F16 10.909 Tf 23.25 0 Td[(a)-297(House)-297(or)-298(Family.)]TJ/F28 10.909 Tf 89.448 0 Td[(Milcho)]TJ/F16 10.909 Tf 34.148 0 Td[(observing)]TJ -237.605 -13.549 Td[(the)-215(Care)-214(and)-215(Diligence)-214(of)-215(his)-215(new)-214(Servant,)-222(bought)-214(out)-215(the)-215(Shares)]TJ 0 -13.549 Td[(of)-262(his)-262(Brothers,)-265(and)-262(made)-262(him)-262(his)-262(own)-262(Property.)-286(He)-262(sent)-262(him)-262(to)]TJ 0 -13.549 Td[(feed)-282(his)-281(Hogs)-282(on)]TJ/F28 10.909 Tf 77.736 0 Td[(Sliev-Mis)]TJ/F16 10.909 Tf 41.204 0 Td[(.)-345(And)-282(St.)]TJ/F28 10.909 Tf 43.94 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.189 0 Td[(himself)-282(tells)-281(us)-282(his)]TJ -198.069 -13.55 Td[(Behaviour)-250(in)-250(this)-250(Office.)]TJ/F31 10.909 Tf 11.956 -16.004 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(My)-296(constant)-296(Business)-295(was)-296(to)-296(feed)-296(the)-296(Hogs.)-387(I)-296(was)-296(frequent)]TJ -16.799 -13.549 Td[(in)-217(Prayer;)-229(the)-217(Love)-217(and)-217(Fear)-218(of)-217(God)-217(more)-218(and)-217(more)-217(inflamed)-218(my)]TJ 0 -13.549 Td[(Heart;)-273(my)-266(Faith)-266(was)-265(enlarged,)-270(and)-265(my)-266(Spirit)-265(augm)-1(ented,)-269(so)-266(that)]TJ 0 -13.549 Td[(I)-246(said)-246(an)-245(hundred)-246(Prayers)-246(by)-246(Day,)-247(and)-245(almost)-246(as)-246(many)-246(by)-246(Night.)]TJ 0 -13.549 Td[(I)-267(arose)-266(before)-267(Day)-267(to)-266(my)-267(Prayers,)-271(in)-266(the)-267(Snow,)-271(in)-266(the)-267(Frost,)-271(and)]TJ 0 -13.55 Td[(in)-340(the)-340(Rain,)-363(and)-340(yet)-340(I)-340(received)-340(no)-340(Damage;)-385(nor)-340(was)-341(I)-340(affected)]TJ 0 -13.549 Td[(with)-340(Slothfulness;)-386(for)-340(then)-340(the)-340(Spirit)-341(of)-340(God)-340(was)-340(warm)-341(within)]TJ 0 -13.549 Td[(me.)]TJ/F31 10.909 Tf 16.059 0 Td[(\035)]TJ/F16 10.909 Tf 7.768 0 Td[(It)-268(was)-268(here)-268(he)-268(perfected)-268(himself)-269(in)-268(the)]TJ/F28 10.909 Tf 171.225 0 Td[(Irish)]TJ/F16 10.909 Tf 23.532 0 Td[(Language,)-273(the)]TJ -218.584 -13.549 Td[(wonderful)-292(Provid)-1(ence)-292(of)-292(God)-293(visibly)-292(appearing)-293(in)-292(this)-293(Instance)]TJ 0 -13.549 Td[(of)-182(his)-364(Captivity,)-196(that)-182(he)-182(should)-182(have)-182(the)-182(Opportunity)-182(in)-182(his)-182(tender)]TJ/F16 7.97 Tf -72.755 0 Td[([016])]TJ/F16 10.909 Tf 72.755 -13.55 Td[(Years)-201(of)-201(becoming)-202(well)-201(acquainted)-201(with)-201(the)-202(Language,)-211(Manners,)]TJ 0 -13.549 Td[(and)-315(Dispositions)-314(of)-315(that)-314(People,)-331(to)-315(whom)-314(he)-315(was)-314(intended)-315(as)-315(a)]TJ 0 -13.549 Td[(future)-283(Apostle.)-348(He)-282(continued)-283(six)-283(whole)-282(Years)-283(in)-283(Servitude,)-291(and)]TJ 0 -13.549 Td[(in)-269(the)-268(seventh)-269(was)-268(released.)-306(There)-268(seems)-269(to)-268(have)-269(been)-269(a)-268(Law)-269(in)]TJ/F28 10.909 Tf 0 -13.549 Td[(Ireland)]TJ/F16 10.909 Tf 35.866 0 Td[(for)-344(this)-343(Purpose,)-367(agreeable)-344(to)-344(the)-343(Institution)-344(of)]TJ/F28 10.909 Tf 214.164 0 Td[(Moses)]TJ/F16 10.909 Tf 27.873 0 Td[(,)]TJ -277.903 -13.55 Td[(that)-250(a)-250(Servant)-250(should)-250(be)-250(released)-250(the)-250(seventh)-250(Year.)]TJ 11.956 -16.004 Td[(Having)-541(parted)-541(from)-541(his)-540(M)-1(aster,)-613(after)-541(a)-541(great)-541(Variety)-541(of)]TJ -11.956 -13.549 Td[(Distresses,)-503(he)-453(at)-452(length)-453(arrived)-452(to)-453(his)-452(Parents,)-503(who)-453(received)]TJ 0 -13.549 Td[(him)-303(with)-304(extraordinary)-303(Joy;)-330(with)-303(these)-304(he)-303(remained)-303(two)-304(Years,)]TJ 0 -13.549 Td[(and)-320(probably)-319(would)-320(much)-320(longer,)-337(had)-319(he)-320(not)-320(by)-319(a)-320(Vision)-320(been)]TJ 0 -13.549 Td[(quickened)-272(to)-272(a)-271(more)-272(active)-272(and)-272(glorious)-272(Life.)-315(In)-272(this)-272(he)-272(thought)]TJ 0 -13.549 Td[(he)-359(saw)-359(a)-360(Man)-359(coming)-359(to)-359(him)-359(from)]TJ/F28 10.909 Tf 162.846 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-387(whose)-359(Name)-359(was)]TJ/F28 10.909 Tf -194.962 -13.55 Td[(Victoricus)]TJ/F16 10.909 Tf 44.848 0 Td[(,)-242(with)-240(a)-240(great)-240(Number)-240(of)-240(Letters;)-243(that)-240(he)-240(gave)-240(him)-240(one)]TJ -44.848 -13.549 Td[(of)-256(them)-255(to)-256(read,)-257(in)-255(the)-256(Beginning)-255(of)-256(which)-255(were)-256(contained)-256(these)]TJ 0 -13.549 Td[(Words,)]TJ/F28 10.909 Tf 34.397 0 Td[(Vox-Hiberionacum)]TJ/F16 10.909 Tf 83.618 0 Td[(,)-237(the)-234(Voice)-234(of)-233(the)]TJ/F28 10.909 Tf 77.313 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(:)-242(While)-234(he)-233(was)]TJ -215.935 -13.549 Td[(reading)-304(this)-303(Letter,)-317(he)-303(thought)-304(the)-303(same)-304(Moment,)-317(that)-303(he)-304(heard)]TJ 0 -13.549 Td[(the)-256(Voice)-255(of)-256(the)-256(Inhabitants)-255(who)-256(lived)-256(near)-256(the)-255(Wood)-256(of)]TJ/F28 10.909 Tf 249.419 0 Td[(Foclut)]TJ/F16 10.909 Tf 28.484 0 Td[(,)]TJ -277.903 -13.55 Td[(in)-340(the)-340(Barony)-340(of)]TJ/F28 10.909 Tf 77.853 0 Td[(Tyr-Awley)]TJ/F16 10.909 Tf 45.447 0 Td[(,)-362(and)-340(County)-340(of)]TJ/F28 10.909 Tf 74.77 0 Td[(Mayo)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-362(hard)-340(by)-340(the)]TJ -222.91 -13.549 Td[(Western)-310(Sea,)-325(crying)-311(to)-310(him)-310(with)-310(an)-310(audible)-310(and)-310(distinct)-311(Voice,)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
79 0 obj <<
/Type /Page
/Contents 80 0 R
/Resources 78 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
81 0 obj <<
/D [79 0 R /XYZ 119.332 326.032 null]
>> endobj
78 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
84 0 obj <<
/Length 5585
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(13)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F31 10.909 Tf 46.771 518.175 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(We)-417(intreat)-418(thee,)-459(holy)-417(Youth,)-459(to)-417(come)-418(and)-417(walk)-417(among)-418(us.)]TJ/F31 10.909 Tf 270.943 0 Td[(\035)]TJ/F16 10.909 Tf -275.787 -13.549 Td[(He)-346(was)-347(greatly)-346(amazed)-346(at)-346(this)-346(Vision,)-371(and)-346(awoke;)-394(it)-347(animated)]TJ 0 -13.549 Td[(him,)-222(however,)-222(to)-214(his)-215(future)-214(Studie)-1(s)-214(and)-215(heavenly)-214(Progre)-1(ss;)-226(so)-215(far)]TJ 0 -13.549 Td[(even,)-351(that)-331(he)-331(tells)-331(us)-331(himself,)-351(he)-331(thanked)-331(God,)-351(that)-331(after)-331(many)]TJ 0 -13.55 Td[(Years)-250(he)-250(had)-250(dealt)-250(with)-250(the)]TJ/F28 10.909 Tf 121.789 0 Td[(Irish)]TJ/F16 10.909 Tf 20.608 0 Td[(,)-250(according)-250(to)-250(their)-250(crying)-250(out.)]TJ -130.441 -16.004 Td[(These)-330(early)-329(Scenes)-330(of)-330(this)-330(great)-329(Saint's)-330(Life,)-350(should,)-350(among)]TJ -11.956 -13.549 Td[(many)-387(others,)-422(serve)-387(as)-388(lessons)-387(of)-774(Charity,)-422(Consideration,)-422(and)]TJ/F16 7.97 Tf 291.024 0 Td[([017])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Humility,)-217(to)-208(the)-208(Rich,)-217(the)-208(Great,)-216(the)-209(Proud,)-216(and)-208(the)-208(Wanton;)-223(who)]TJ 0 -13.549 Td[(may)-263(recollect)-262(that,)-266(altho')-263(he)-263(was)-263(well)-262(born,)-266(he)-263(was)-263(nevertheless,)]TJ 0 -13.549 Td[(in)-275(the)-275(most)-276(vigorous)-275(Season)-275(of)-275(Life,)-282(a)-275(Slave)-275(and)-275(a)-276(Swine-Herd:)]TJ 0 -13.55 Td[(Happy,)-267(though)-264(wretched)-264(Servitude!)-292(In)-264(which,)-267(his)-264(leisure)-264(Hours,)]TJ 0 -13.549 Td[(mostly)-247(employed)-247(in)-247(Christian)-247(Confidence)-247(and)-247(Prayer,)-248(made)-247(him)]TJ 0 -13.549 Td[(so)-461(signally)-461(the)-460(Favourite)-461(of)-461(Heaven,)-513(that)-461(from)-461(those)-461(cloudy)]TJ 0 -13.549 Td[(Dawnings,)-403(he)-373(in)-372(Process)-373(of)-372(Time)-373(became)-372(a)-373(learned)-372(Doctor,)-404(a)]TJ 0 -13.549 Td[(sanctified)-279(Missioner)-1(,)-286(a)-280(venerable)-279(Prelate,)-287(an)-279(eminent)-280(Primate,)-287(a)]TJ 0 -13.55 Td[(national)-290(Apostle,)-300(and)-290(the)-290(bright)-290(Instructor)-290(of)-290(Kings!)-371(Such)-290(were)]TJ 0 -13.549 Td[(the)-270(fruitful)-270(Rewards)-270(of)-270(uninterrupted)-270(unshaken)-270(Devotion,)-275(Piety,)]TJ 0 -13.549 Td[(and)-348(Zeal!)-543(From)-347(this)-348(Time)-347(he)-348(formed)-348(the)-347(steady)-348(Resolution)-348(of)]TJ 0 -13.549 Td[(converting)-296(the)]TJ/F28 10.909 Tf 66.452 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(;)-319(and,)-308(the)-296(better)-296(to)-297(accomplish)-296(the)-296(heavenly)]TJ -87.059 -13.549 Td[(Task,)-298(he)-289(undertook)-288(a)-289(laborious)-289(Journey)-288(to)-289(foreign)-288(Countries,)-299(to)]TJ 0 -13.55 Td[(enrich)-250(his)-250(Mind)-250(with)-250(Learning)-250(and)-250(Experience.)]TJ 11.956 -16.004 Td[(He)-360(continued)-360(abroad)-360(thirty-five)-361(Years,)-387(pursuing)-360(his)-361(Studies)]TJ -11.956 -13.549 Td[(under)-201(the)-201(Direction)-201(principally)-202(of)-201(his)-201(Mother's)-201(Uncle,)-211(St.)]TJ/F28 10.909 Tf 247.598 0 Td[(Martin)]TJ/F16 10.909 Tf 30.305 0 Td[(,)]TJ -277.903 -13.549 Td[(Bishop)-496(of)]TJ/F28 10.909 Tf 50.817 0 Td[(Tours)]TJ/F16 10.909 Tf 25.461 0 Td[(,)-557(who)-496(had)-495(ordained)-496(him)-495(Deacon;)-619(and)-495(after)]TJ -76.278 -13.549 Td[(his)-399(Death,)-437(partly)-399(with)-400(St.)]TJ/F28 10.909 Tf 123.628 0 Td[(German)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-437(Bishop)-399(of)]TJ/F28 10.909 Tf 56.206 0 Td[(Auxerre)]TJ/F16 10.909 Tf 35.138 0 Td[(,)-437(\050who)]TJ -250.721 -13.549 Td[(ordained)-394(him)-394(a)-394(Priest,)-429(and)-394(called)-394(his)-394(Name)]TJ/F28 10.909 Tf 202.916 0 Td[(Magonius)]TJ/F16 10.909 Tf 43.636 0 Td[(,)-430(which)]TJ -246.552 -13.549 Td[(was)-215(the)-215(third)-216(Name)-215(he)-215(was)-215(known)-216(by,\051)-222(partly)-215(among)-215(a)-215(Colony)-216(of)]TJ/F28 10.909 Tf 0 -13.55 Td[(Hermits)]TJ/F16 10.909 Tf 38.449 0 Td[(and)]TJ/F28 10.909 Tf 19.052 0 Td[(Monks)]TJ/F16 10.909 Tf 29.084 0 Td[(,)-316(in)-302(some)-303(Islands)-302(of)-302(the)]TJ/F28 10.909 Tf 107.508 0 Td[(Tuscan)]TJ/F16 10.909 Tf 34.816 0 Td[(Sea;)-329(and)-302(he)]TJ -228.909 -13.549 Td[(employed)-312(a)-311(good)-312(Part)-311(of)-312(the)-312(Time)-311(in)-312(the)-311(City)-312(of)]TJ/F28 10.909 Tf 219.801 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-327(among)]TJ -244.641 -13.549 Td[(the)-364(Canons)-364(Regular)-365(of)-364(the)]TJ/F28 10.909 Tf 122.88 0 Td[(Lateran)]TJ/F16 10.909 Tf 38.522 0 Td[(Church:)-478(At)-365(length,)-392(having)]TJ -161.402 -13.549 Td[(his)-266(Soul)-266(thoroughly)-265(tempered)-266(with)-266(religious)-266(Virtue,)-270(enlightened)]TJ 0 -13.549 Td[(with)-274(the)-275(true)-274(Evangelical)-274(Faith,)-281(and)-274(his)-274(Understanding)-275(enlarged)]TJ 0 -13.55 Td[(by)-219(the)-220(most)-219(profitable)-219(and)-220(edifying)-219(Studies,)-226(he)-219(arrived)-219(in)]TJ/F28 10.909 Tf 248.514 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.514 -13.549 Td[(about)-224(the)-224(60th)-448(Year)-224(of)-224(his)-224(Age;)-233(and)-224(in)-224(the)-224(Year)-224(of)-224(our)-224(Lord)-224(432,)]TJ/F16 7.97 Tf 291.024 0 Td[([018])]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
83 0 obj <<
/Type /Page
/Contents 84 0 R
/Resources 82 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
85 0 obj <<
/D [83 0 R /XYZ 198.833 434.425 null]
>> endobj
86 0 obj <<
/D [83 0 R /XYZ 111.069 66.142 null]
>> endobj
82 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
89 0 obj <<
/Length 6371
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(14)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(landed)-294(in)-294(the)-294(County)-293(of)]TJ/F28 10.909 Tf 108.145 0 Td[(Wicklow)]TJ/F16 10.909 Tf 37.57 0 Td[(,)-305(where)-294(he)-294(began)-293(his)-294(Ministry,)]TJ -145.715 -13.549 Td[(by)-403(the)-402(Conversion)-403(of)]TJ/F28 10.909 Tf 101.196 0 Td[(Sinel)]TJ/F16 10.909 Tf 21.818 0 Td[(,)-441(a)-402(great)-403(Man)-402(in)-403(that)-403(Country,)-440(the)]TJ -123.014 -13.549 Td[(Grandson)-309(of)]TJ/F28 10.909 Tf 58.242 0 Td[(Finchad)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-324(who)-309(ought)-308(to)-309(be)-309(remembered,)-324(as)-309(he)-309(was)]TJ -94.602 -13.549 Td[(the)-356(first)-356(Fruits)-357(of)-356(St.)]TJ/F28 10.909 Tf 99.025 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.116 0 Td[('s)-356(Mission)-356(in)]TJ/F28 10.909 Tf 61.511 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(;)-409(he)-356(was)-357(the)]TJ -224.769 -13.55 Td[(8th)-288(in)-287(lineal)-288(Descent)-287(from)]TJ/F28 10.909 Tf 118.7 0 Td[(Cormac)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-297(King)-288(of)]TJ/F28 10.909 Tf 43.146 0 Td[(Leinster)]TJ/F16 10.909 Tf 35.76 0 Td[(,)-297(and)-288(came)]TJ -232.755 -13.549 Td[(afterwards)-250(to)-250(be)-250(enumerated)-250(among)-250(the)-250(Saints)-250(of)]TJ/F28 10.909 Tf 216.316 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ -236.477 -16.004 Td[(From)-312(this)-311(Country)-312(he)-312(sailed)-312(to)-311(an)-312(Island)-312(on)-311(the)-312(Coast)-312(of)-312(the)]TJ -11.956 -13.549 Td[(County)-388(of)]TJ/F28 10.909 Tf 49.679 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-422(called)-388(after)-388(him)]TJ/F28 10.909 Tf 83.043 0 Td[(Inis)-388(Phadring)]TJ/F16 10.909 Tf 61.811 0 Td[(,)-422(and)-388(by)-388(the)]TJ/F28 10.909 Tf -224.838 -13.549 Td[(English)]TJ/F16 10.909 Tf 33.338 0 Td[(,)]TJ/F28 10.909 Tf 7.698 0 Td[(Holm)-415(Patrick)]TJ/F16 10.909 Tf 65.401 0 Td[(at)-414(this)-415(Day,)-456(where)-414(he)-415(and)-414(his)-415(faithful)]TJ -106.437 -13.549 Td[(Companions)-283(rested)-283(after)-283(their)-283(Fatigues.)-349(From)]TJ/F28 10.909 Tf 203.764 0 Td[(Inis)-283(Phadring)]TJ/F16 10.909 Tf 60.664 0 Td[(,)-291(he)]TJ -264.428 -13.55 Td[(sailed)-285(Northward)-285(to)-285(that)-285(Part)-285(of)]TJ/F28 10.909 Tf 142.875 0 Td[(Ulster)]TJ/F16 10.909 Tf 30.381 0 Td[(called)]TJ/F28 10.909 Tf 29.16 0 Td[(Ulidia)]TJ/F16 10.909 Tf 27.883 0 Td[(,)-294(and)-285(put)-285(in)]TJ -230.299 -13.549 Td[(at)]TJ/F28 10.909 Tf 10.14 0 Td[(Inbherslaying)]TJ/F16 10.909 Tf 62.863 0 Td[(Bay.)-236(When)-207(he)-208(and)-207(his)-208(Fellow)-207(Labourers)-208(landed,)]TJ/F28 10.909 Tf -73.003 -13.549 Td[(Dichu)]TJ/F16 10.909 Tf 26.662 0 Td[(,)-280(the)-273(Son)-274(of)]TJ/F28 10.909 Tf 54.126 0 Td[(Trichem)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-280(Lord)-273(of)-274(the)-274(County,)-279(being)-274(informed)]TJ -117.148 -13.549 Td[(that)-399(they)-399(were)-398(Pirates,)-436(came)-399(out)-399(with)-399(armed)-398(Men)-399(in)-399(order)-399(to)]TJ 0 -13.549 Td[(kill)-376(them:)-501(But)-376(being)-375(struck)-376(with)-376(the)-375(venerable)-376(Appearance)-376(of)]TJ 0 -13.55 Td[(St.)]TJ/F28 10.909 Tf 21.408 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-512(he)-459(gave)-460(him)-459(Audience,)-512(and)-460(listened)-459(attentively)]TJ -53.525 -13.549 Td[(to)-374(the)-374(Word)-374(of)-374(Life)-373(preached)-374(by)-374(him;)-436(he)-374(changed)-374(his)-374(wicked)]TJ 0 -13.549 Td[(Purpose,)-408(believed,)-407(and)-376(was)-376(baptized,)-408(and)-376(brought)-376(over)-376(all)-376(his)]TJ 0 -13.549 Td[(Family)-504(to)-505(the)-504(Faith:)-758(It)-505(is)-504(further)-504(observed)-504(of)-505(him,)-567(that)-505(he)]TJ 0 -13.549 Td[(was)-347(the)-347(first)-346(Person)-347(in)]TJ/F28 10.909 Tf 104.965 0 Td[(Ulster)]TJ/F16 10.909 Tf 27.272 0 Td[(,)-371(who)-347(embraced)-347(Christianity.)-540(He)]TJ -132.237 -13.55 Td[(dedicated)-279(the)-278(Land)-279(whereon)-278(his)-279(Conversion)-278(was)-279(wrought)-278(to)-279(the)]TJ 0 -13.549 Td[(Service)-341(of)-341(God,)-364(where)-341(a)-341(Church)-341(was)-341(erected,)-364(changed)-341(after)-341(to)]TJ 0 -13.549 Td[(an)-237(eminen)-1(t)-237(Monastery.)-246(He)-237(travelled)-238(hence)-237(by)-238(Land)-237(to)]TJ/F28 10.909 Tf 236.383 0 Td[(Clunebois)]TJ/F16 10.909 Tf -236.383 -13.549 Td[(in)]TJ/F28 10.909 Tf 12.923 0 Td[(Dalaradia)]TJ/F16 10.909 Tf 45.458 0 Td[(,)-446(to)-406(endeavour)-407(the)-407(Conversion)-406(of)-407(his)-406(old)-407(Master)]TJ/F28 10.909 Tf -58.381 -13.549 Td[(Milcho)]TJ/F16 10.909 Tf 30.906 0 Td[(,)-508(whose)-456(Service)-457(he)-456(had)-456(left)-457(thirty-eight)-456(Years)-457(before;)]TJ -30.906 -13.55 Td[(but)-440(this)-440(obstinate)-441(Prince,)-487(hearing)-441(of)-440(the)-440(great)-440(Success)-440(of)-441(St.)]TJ/F28 10.909 Tf 0 -13.549 Td[(Patrick)]TJ/F16 10.909 Tf 32.117 0 Td[('s)-404(preaching,)-442(and)-404(ashamed)-404(to)-403(be)-404(persuaded)-808(in)-404(his)-404(old)]TJ/F16 7.97 Tf -104.873 0 Td[([019])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(Age,)-241(to)-239(forsake)-240(the)-239(Religion)-239(of)-239(his)-239(Ancestors,)-241(\050by)-239(one)-240(especially)]TJ 0 -13.549 Td[(who)-359(had)-359(been)-360(his)-359(Servant,)-386(in)-359(a)-360(most)-359(inferior)-359(Station,\051)-386(made)-360(a)]TJ 0 -13.549 Td[(funeral)-206(Pile)-205(of)-206(his)-206(House)-206(and)-205(Goods,)-215(and)-206(by)-205(the)-206(Instigation)-206(of)-206(the)]TJ 0 -13.549 Td[(Enemy)-266(of)-265(Mankind,)-270(burned)-265(himself)-266(therein:)-281(Thus)-266(ended)]TJ/F28 10.909 Tf 249.725 0 Td[(Milcho)]TJ -249.725 -13.55 Td[(McHuanan)]TJ/F16 10.909 Tf 49.08 0 Td[(.)]TJ -37.125 -16.004 Td[(Hence)-336(St.)]TJ/F28 10.909 Tf 48.887 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.78 0 Td[(returned)-336(to)]TJ/F28 10.909 Tf 52.164 0 Td[(Inis)]TJ/F16 10.909 Tf 16.363 0 Td[(,)-357(the)-336(Habitation)-336(of)]TJ/F28 10.909 Tf 86.092 0 Td[(Dichu)]TJ/F16 10.909 Tf 26.662 0 Td[(,)]TJ -277.903 -13.549 Td[(and)-283(in)-284(his)-283(Journey)-284(converted)-283(great)-284(Numbers)-283(to)-283(the)-284(true)-283(Faith)-284(of)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
88 0 obj <<
/Type /Page
/Contents 89 0 R
/Resources 87 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 68 0 R
>> endobj
90 0 obj <<
/D [88 0 R /XYZ 325.798 163.441 null]
>> endobj
87 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
93 0 obj <<
/Length 5812
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(15)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F28 10.909 Tf 46.771 518.175 Td[(Christ)]TJ/F16 10.909 Tf 27.284 0 Td[(.)-417(In)-306(some)-306(time,)-320(he)-306(took)-306(his)-305(Leave)-306(of)]TJ/F28 10.909 Tf 166.527 0 Td[(Dichu)]TJ/F16 10.909 Tf 26.662 0 Td[(,)-320(and)-306(bent)-305(his)]TJ -220.473 -13.549 Td[(course)-278(Southward)-277(by)-278(Sea,)-284(keeping)-278(the)-277(Coast)-278(on)-277(his)-278(Right-hand,)]TJ 0 -13.549 Td[(and)-441(arrived)-440(at)-441(Port)]TJ/F28 10.909 Tf 91.939 0 Td[(Colbdi)]TJ/F16 10.909 Tf 29.705 0 Td[(,)-488(where)-441(he)-441(landed,)-488(and)-441(committed)]TJ -121.644 -13.549 Td[(the)-369(Care)-369(of)-369(his)-369(Vessel)-369(to)-368(his)-369(Nephew)]TJ/F28 10.909 Tf 174.59 0 Td[(Luman)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-399(desiring)-369(him)-368(to)]TJ -204.895 -13.55 Td[(wait)-325(for)-324(him)-325(there)-325(forty)-325(Days,)-343(while)-325(he)-324(and)-325(his)-325(Disciples)-325(were)]TJ 0 -13.549 Td[(travelling)-251(in)-250(the)-251(inner)-250(Parts)-251(of)-250(the)-251(Country)-250(to)-251(preach)-250(the)-251(Gospel.)]TJ 0 -13.549 Td[(His)-389(Intention)-388(in)-389(this)-389(Journey)-388(was,)-424(to)-389(celebrate)-388(the)-389(Festival)-389(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Easter)]TJ/F16 10.909 Tf 31.861 0 Td[(in)-310(the)-309(Plains)-310(of)]TJ/F28 10.909 Tf 71.088 0 Td[(Bregia)]TJ/F16 10.909 Tf 29.694 0 Td[(,)-325(and)-309(to)-310(be)-309(in)-310(the)-310(Neighbourhood)]TJ -132.643 -13.549 Td[(of)-225(the)-225(Great)-225(Triennial)-225(Convention)-225(at)]TJ/F28 10.909 Tf 160.153 0 Td[(Tarah)]TJ/F16 10.909 Tf 26.672 0 Td[(,)-230(which)-225(at)-225(this)-225(Season)]TJ -186.825 -13.55 Td[(was)-236(held)-236(by)-236(King)]TJ/F28 10.909 Tf 78.774 0 Td[(Leogair)]TJ/F16 10.909 Tf 34.549 0 Td[(,)-239(and)-236(all)-236(his)-236(Tributary)-236(Princes,)-239(Nobles,)]TJ/F28 10.909 Tf -113.323 -13.549 Td[(Druids)]TJ/F16 10.909 Tf 30.306 0 Td[(,)]TJ/F28 10.909 Tf 5.639 0 Td[(Annalists)]TJ/F16 10.909 Tf 40.615 0 Td[(,)]TJ/F28 10.909 Tf 5.639 0 Td[(and)-264(Fileas)]TJ/F16 10.909 Tf 46.511 0 Td[(.)-291(St.)]TJ/F28 10.909 Tf 20.895 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.991 0 Td[(wisely)-264(foreseeing)-263(that)]TJ -184.596 -13.549 Td[(whatever)-299(Impressions)-299(he)-300(should)-299(make)-299(on)-299(this)-299(august)-300(Assembly)]TJ 0 -13.549 Td[(must)-350(have)-350(an)-350(Influence)-350(on)-350(the)-350(whole)-350(Kingdom,)-375(and)-350(therefore,)]TJ 0 -13.549 Td[(being)-218(supported)-217(with)-218(invincible)-218(Christian)-218(Fortitude,)-224(resolved)-218(not)]TJ 0 -13.55 Td[(to)-289(be)-288(absent)-289(from)-289(a)-288(Place)-289(where)-289(his)-289(Presence)-288(was)-289(so)-289(conducive)]TJ 0 -13.549 Td[(to)-250(the)-250(Ends)-250(of)-250(his)-250(Holy)-250(Ministry.)]TJ 11.956 -18.459 Td[(Never)-441(did)-440(the)-441(Spirit)-440(of)-441(popular)-441(Freedom)-440(exert)-441(itself)-441(more)]TJ -11.956 -13.549 Td[(powerfully)-381(or)-381(harmoniously,)-414(than)-381(in)-381(those)-381(truly)-381(parliamentary)]TJ 0 -13.549 Td[(Triennial)-293(Conventions)-293(of)]TJ/F28 10.909 Tf 113.829 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-304(where)-293(the)-293(supreme)-293(Monarch,)]TJ -145.945 -13.549 Td[(the)-381(Provincial)-381(Kings,)-413(the)-381(feudatory)-381(Lords,)-413(the)-381(Nobles,)-414(landed)]TJ 0 -13.549 Td[(Men,)]TJ/F28 10.909 Tf 27.639 0 Td[(Druids)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-451(&c.)-731(by)-410(the)-821(unbiased)-411(Suffrages)-410(of)-411(the)-410(People,)]TJ/F16 7.97 Tf 233.08 0 Td[([020])]TJ/F16 10.909 Tf -291.024 -13.55 Td[(convened)-275(for)-275(the)-275(Peace,)-281(good)-275(Government)-275(and)-276(Security)-275(of)-275(each)]TJ 0 -13.549 Td[(particular)-446(Province,)-495(as)-446(well)-445(as)-446(those)-446(of)-446(the)-446(whole)-446(Kingdom.)]TJ 0 -13.549 Td[(Many)-211(Centuries)-212(had)-211(this)-211(wise)-212(Constitution)-211(subsisted)-211(here)-1(,)-219(before)]TJ 0 -13.549 Td[(our)-300(Neighbours,)-313(even)-300(of)]TJ/F28 10.909 Tf 111.094 0 Td[(South)-300(Britain)]TJ/F16 10.909 Tf 59.043 0 Td[(,)-313(knew)-300(any)-300(thing)-301(relative)]TJ -170.137 -13.549 Td[(to)-425(Houses,)-469(or)-425(Raiment;)-513(it)-425(being)-426(notorious)-425(that)-425(so)-425(late)-425(as)-426(the)]TJ 0 -13.549 Td[(Arrival)-277(of)]TJ/F28 10.909 Tf 46.645 0 Td[(Julius)-277(C\346sar)]TJ/F16 10.909 Tf 60.609 0 Td[(among)-277(them,)-285(they)-277(painted)-277(their)-278(Bodies,)]TJ -107.254 -13.55 Td[(to)-293(render)-294(them)-293(terrible,)-304(and)-293(lived)-293(in)-294(the)-293(open)-293(Fields.)-380(It)-293(is)-294(really)]TJ 0 -13.549 Td[(somewhat)-169(surprzing)-168(that)-168(People)-169(so)-168(near)-169(in)-168(Situation,)-185(should)-169(differ)]TJ 0 -13.549 Td[(so)-298(essentially)-299(in)-298(Disposition,)-311(as)-298(the)-298(Inhabitants)-299(of)-298(those)-299(Islands)]TJ 0 -13.549 Td[(have)-460(in)-459(all)-459(Ages;)-565(Hospitality)-459(having)-460(been)-459(the)-460(distinguishing)]TJ 0 -13.549 Td[(Attribute)-205(of)-204(the)]TJ/F28 10.909 Tf 68.506 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(,)-214(and)-204(it's)-205(opposite)-204(Defect,)-214(that)-205(of)-204(the)]TJ/F28 10.909 Tf 156.357 0 Td[(Britons)]TJ/F16 10.909 Tf 32.127 0 Td[(;)]TJ -277.597 -13.55 Td[(the)-281(Account)-281(given)-281(of)-281(them)-281(by)]TJ/F28 10.909 Tf 134.735 0 Td[(Horace)]TJ/F16 10.909 Tf 35.781 0 Td[(1700)-281(and)-281(odd)-281(Years)-281(ago,)]TJ/F28 10.909 Tf -170.516 -13.549 Td[(Visam)-211(Britannes)-211(Hospitibus)-212(feros)]TJ/F16 10.909 Tf 145.709 0 Td[(,)-219(being)-211(as)-211(literally)-212(applicable)-211(to)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
92 0 obj <<
/Type /Page
/Contents 93 0 R
/Resources 91 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
94 0 obj <<
/D [92 0 R /XYZ 169.589 242.282 null]
>> endobj
91 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
98 0 obj <<
/Length 6295
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(16)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(them)-256(at)-255(this)-256(Day,)-257(where)-255(the)-256(Force)-255(of)-256(Education)-255(doth)-256(not)-256(operate)]TJ 0 -13.549 Td[(to)-250(mitigate)-250(their)-250(natural)-250(Ferocity.)]TJ 11.956 -15.186 Td[(But)-346(to)-346(return:)-441(St.)]TJ/F28 10.909 Tf 83.382 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.889 0 Td[(in)-346(his)-346(Way)-345(to)]TJ/F28 10.909 Tf 65.39 0 Td[(Tarah)]TJ/F16 10.909 Tf 26.672 0 Td[(,)-370(took)-346(up)-345(his)]TJ -223.289 -13.549 Td[(Lodgings)-270(at)-269(the)-269(House)-270(of)-269(the)-270(hospitable)]TJ/F28 10.909 Tf 178.137 0 Td[(Sesgnen)]TJ/F16 10.909 Tf 38.688 0 Td[(in)]TJ/F28 10.909 Tf 11.427 0 Td[(Meath)]TJ/F16 10.909 Tf 27.873 0 Td[(,)-274(who)]TJ -256.125 -13.549 Td[(kindly)-300(received)-301(and)-300(welcomed)-300(him.)-401(St.)]TJ/F28 10.909 Tf 178.799 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.392 0 Td[(preach'd)-300(Christ)]TJ -214.191 -13.549 Td[(and)-336(his)-335(Gospel)-336(to)-335(him;)-378(he)-336(believed,)-357(and)-335(was)-336(baptized)-335(with)-336(his)]TJ 0 -13.55 Td[(whole)-250(Family.)]TJ 11.956 -15.185 Td[(From)-230(the)-230(House)-230(of)]TJ/F28 10.909 Tf 83.969 0 Td[(Sesgnen)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-234(he)-230(moved)-230(Westward,)-234(and)-230(arrived)]TJ -131.674 -13.549 Td[(on)]TJ/F28 10.909 Tf 14.914 0 Td[(Easter)-367(Eve)]TJ/F16 10.909 Tf 52.846 0 Td[(at)]TJ/F28 10.909 Tf 11.882 0 Td[(Fierta-fir-feic)]TJ/F16 10.909 Tf 60.6 0 Td[(,)-396(on)-367(the)-368(Northern)-367(Banks)-367(of)-367(the)]TJ -140.242 -13.55 Td[(River)]TJ/F28 10.909 Tf 29.052 0 Td[(Boyne)]TJ/F16 10.909 Tf 27.262 0 Td[(,)-489(where)-441(he)-441(rested,)-489(resolving)-441(there)-441(to)-441(prepare)-441(for)]TJ -56.314 -13.549 Td[(the)-390(next)-391(Day's)-390(Solemnity.)-672(It)-390(was)-390(penal)-391(for)-390(any)-391(Person)-390(at)-391(the)]TJ 0 -13.549 Td[(Time)-405(of)-404(the)-405(Celebration)-405(of)-404(this)-405(solemn)-404(Convention)-405(at)]TJ/F28 10.909 Tf 251.23 0 Td[(Tarah)]TJ/F16 10.909 Tf 26.673 0 Td[(,)]TJ -277.903 -13.549 Td[(to)-323(kindle)-324(a)-323(Fire)-324(in)-323(the)-323(Province,)-342(before)-323(the)-324(King's)-323(Bonfire)-324(first)]TJ 0 -13.549 Td[(appeared.)-619(I)-373(am)-373(of)-373(Opinion)-373(this)-373(was)-373(a)-373(religious)-373(Ceremony,)-404(as)]TJ 0 -13.55 Td[(the)-327(chief)-328(Deity)-327(of)-328(the)-327(ancient)-327(Inhabitants,)-694(in)-327(exterior)-328(Worship)]TJ/F16 7.97 Tf -72.756 0 Td[([021])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(especially,)-434(was)]TJ/F28 10.909 Tf 72.379 0 Td[(Bel)]TJ/F16 10.909 Tf 14.541 0 Td[(,)-434(or)]TJ/F28 10.909 Tf 20.877 0 Td[(Belus)]TJ/F16 10.909 Tf 24.24 0 Td[(;)-470(whence)]TJ/F28 10.909 Tf 45.812 0 Td[(Apollo)]TJ/F16 10.909 Tf 33.425 0 Td[(or)]TJ/F28 10.909 Tf 13.418 0 Td[(Ap-haul)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-434(the)]TJ -259.841 -13.549 Td[(Son)-486(of)-485(the)-486(Sun,)-545(whom)-486(they)-485(emblematically)-486(worshipped,)-545(by)]TJ 0 -13.549 Td[(those)-348(fiery)-348(Offerings;)-396(whence)-348(the)-348(first)-348(Day)-348(of)]TJ/F28 10.909 Tf 210.831 0 Td[(May)]TJ/F16 10.909 Tf 19.386 0 Td[(,)-372(peculiarly)]TJ -230.217 -13.549 Td[(dedicated)-207(to)-207(this)]TJ/F28 10.909 Tf 72.83 0 Td[(Bel)]TJ/F16 10.909 Tf 14.542 0 Td[(,)-216(is)-207(even)-207(now)-207(in)]TJ/F28 10.909 Tf 69.259 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(,)-216(called)]TJ/F28 10.909 Tf 33.389 0 Td[(Lha-Bel-Thinih)]TJ/F16 10.909 Tf 67.276 0 Td[(,)]TJ -277.903 -13.55 Td[(and)-273(probably)-273(from)-273(the)-272(same)-273(Source)-273(may)-273(be)-273(derived)-273(the)-273(Custom)]TJ 0 -13.549 Td[(of)-257(lighting)-256(up)-256(Bon)-1(fires,)-258(and)-256(Sops,)-258(on)-257(the)-256(Eve)-257(of)-256(the)-257(24th)-256(Day)-257(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(June)]TJ/F16 10.909 Tf 20.597 0 Td[(.)-503(St.)]TJ/F28 10.909 Tf 25.517 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.762 0 Td[(however,)-355(either)-334(not)-335(knowing)-334(or)-334(not)-334(minding)]TJ -81.876 -13.549 Td[(this)-297(Ceremony,)-308(lighted)-297(up)-297(a)-296(Fire)-297(before)-297(his)-296(Booth,)-309(which)-297(altho')]TJ 0 -13.549 Td[(eight)-193(Miles)-193(distant)-192(from)]TJ/F28 10.909 Tf 105.384 0 Td[(Tarah)]TJ/F16 10.909 Tf 26.673 0 Td[(,)-204(was)-193(very)-193(visible.)-231(It)-193(was)-192(seen)-193(with)]TJ -132.057 -13.55 Td[(Astonishment)-385(from)-385(Court,)-419(and)-385(the)]TJ/F28 10.909 Tf 159.853 0 Td[(Druids)]TJ/F16 10.909 Tf 34.506 0 Td[(informed)-385(the)-385(King,)]TJ -194.359 -13.549 Td[(that)-199(if)-199(he)-199(did)-198(not)-199(immediately)-199(extinguish)-199(the)-199(Fire,)-209(he)-199(who)-199(kindled)]TJ 0 -13.549 Td[(it,)-383(and)-356(his)-356(Successors,)-383(should)-356(for)-357(ever)-356(hold)-356(the)-356(Principality)-357(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(;)-239(which)-233(hath)-233(hitherto)-234(turned)-233(out)-233(a)-234(true)-233(Prediction)-233(of)-234(those)]TJ -32.117 -13.549 Td[(Heathen)-250(Priests,)-250(in)-250(a)-250(Primatial)-250(and)-250(Spiritual)-250(Principality.)]TJ 11.956 -15.186 Td[(The)-235(King)-236(dispatched)-235(Messengers)-235(to)-236(bring)]TJ/F28 10.909 Tf 183.86 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.683 0 Td[(before)-235(him,)]TJ -230.499 -13.549 Td[(and)-413(gave)-412(his)-413(positive)-413(Orders,)-453(that)-413(nobody)-412(should)-413(presume)-413(to)]TJ 0 -13.549 Td[(rise)-333(out)-332(of)-333(his)-333(Seat,)-353(or)-333(pay)-332(him)-333(the)-333(least)-332(Honour:)-416(But)]TJ/F28 10.909 Tf 244.965 0 Td[(Ere)]TJ/F16 10.909 Tf 15.753 0 Td[(,)-353(the)]TJ -260.718 -13.55 Td[(Son)-286(of)]TJ/F28 10.909 Tf 32.297 0 Td[(Dego)]TJ/F16 10.909 Tf 23.629 0 Td[(,)-295(ventured)-286(to)-285(disobey)-286(this)-286(Command;)-304(he)-285(arose,)-295(and)]TJ -55.926 -13.549 Td[(offered)-354(the)-353(Holy)-354(Father)-353(his)-354(Seat.)-561(St.)]TJ/F28 10.909 Tf 172.109 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.973 0 Td[(preached)-354(to)-353(him)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
97 0 obj <<
/Type /Page
/Contents 98 0 R
/Resources 96 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
99 0 obj <<
/D [97 0 R /XYZ 283.263 325.213 null]
>> endobj
96 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
102 0 obj <<
/Length 5992
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(17)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(and)-369(converted)-370(him.)-608(He)-369(became)-369(a)-370(Person)-369(of)-369(eminent)-370(Sanctity,)]TJ 0 -13.549 Td[(and)-291(after)-292(some)-291(Time)-291(was)-292(consecrated)-291(by)-292(St.)]TJ/F28 10.909 Tf 199.314 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-302(Bishop)-291(of)]TJ/F28 10.909 Tf -231.43 -13.549 Td[(Slain)]TJ/F16 10.909 Tf 22.429 0 Td[(.)]TJ -10.473 -14.777 Td[(The)-240(Day)-240(following,)-242(when)-240(St.)]TJ/F28 10.909 Tf 128.93 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.734 0 Td[(and)-240(two)-240(of)-240(his)-240(Disciples)]TJ -175.62 -13.549 Td[(appeared)-335(unexpectedly)-335(at)-335(Court,)-356(and)-335(preached)-336(to)-335(the)-335(King)-335(and)]TJ 0 -13.549 Td[(his)-223(Nobles,)]TJ/F28 10.909 Tf 51.282 0 Td[(Dubtach)]TJ/F16 10.909 Tf 37.571 0 Td[(,)-228(the)-223(King's)-222(Poet)-223(Laureat,)-228(payed)-223(Honour)-223(and)]TJ -88.853 -13.549 Td[(Respect)-236(to)-235(the)-236(Saint,)-238(and)-235(was)-236(converted)-235(by)-236(his)-235(Preaching.)]TJ/F28 10.909 Tf 253.063 0 Td[(Fiech)]TJ/F16 10.909 Tf 24.84 0 Td[(,)]TJ -277.903 -13.55 Td[(a)-301(young)-301(Poet,)-314(who)-302(was)-301(under)-301(the)-301(Tuition)-301(of)]TJ/F28 10.909 Tf 199.083 0 Td[(Dubtach)]TJ/F16 10.909 Tf 37.571 0 Td[(,)-314(was)-301(also)]TJ -236.654 -13.549 Td[(converted,)-567(and)-276(afterwards)-277(made)-276(Bishop)-277(of)]TJ/F28 10.909 Tf 192.43 0 Td[(Sletty)]TJ/F16 10.909 Tf 24.24 0 Td[(,)-283(and)-277(is)-276(said)-277(to)]TJ/F16 7.97 Tf 74.354 0 Td[([022])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(have)-270(been)-270(the)-269(Author)-270(of)-270(a)-270(celebrated)-269(Poem,)-275(composed)-270(in)-270(Praise)]TJ 0 -13.549 Td[(of)-308(St.)]TJ/F28 10.909 Tf 28.907 0 Td[(Patrick)]TJ/F16 10.909 Tf 32.116 0 Td[(.)]TJ/F28 10.909 Tf 7.359 0 Td[(Anselm)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-323(Arch-Bishop)-308(of)]TJ/F28 10.909 Tf 78.416 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.301 0 Td[(,)-323(relates)-308(the)]TJ -229.216 -13.549 Td[(Conversion)-359(of)]TJ/F28 10.909 Tf 67.22 0 Td[(Tingar)]TJ/F16 10.909 Tf 29.705 0 Td[(,)-386(the)-359(Son)-359(of)]TJ/F28 10.909 Tf 58.079 0 Td[(Clito)]TJ/F16 10.909 Tf 21.829 0 Td[(,)-386(\050one)-359(of)-359(the)-359(Nobles)-359(in)]TJ -176.833 -13.55 Td[(this)-257(Assembly,\051)-259(in)-257(the)-257(same)-258(Manner.)-271(The)-257(Queen)-257(also,)-259(and)-258(many)]TJ 0 -13.549 Td[(others)-273(of)-272(the)-272(Court,)-279(became)-272(Christians;)-284(and)-272(altho')-273(the)-272(King)-273(held)]TJ 0 -13.549 Td[(out)-220(for)-220(a)-219(long)-220(Time)-220(with)-220(great)-220(Obstinacy,)-225(yet)-220(at)-220(last)-220(he)-220(submitted)]TJ 0 -13.549 Td[(to)-341(be)-341(baptized.)-524(St.)]TJ/F28 10.909 Tf 89.158 0 Td[(Patrick)]TJ/F16 10.909 Tf 35.837 0 Td[(is)-341(said)-341(here)-341(to)-341(have)-342(wrought)-341(many)]TJ -124.995 -13.549 Td[(Miracles:)-306(There)-277(could)-278(not)-278(truly,)-285(even)-277(according)-278(to)-278(the)-278(Purposes)]TJ 0 -13.55 Td[(of)-371(human)-371(Wisdom,)-401(have)-371(happened)-370(a)-371(more)-371(solemn)-371(or)-371(weighty)]TJ 0 -13.549 Td[(Occasion,)-287(for)-279(God)-279(Almighty's)-279(supporting)-280(this)-279(Holy)-279(Preacher)-280(by)]TJ 0 -13.549 Td[(Miracles,)-431(than)-395(when)-395(the)-395(collective)-394(Body)-395(of)-395(the)-395(whole)-395(Nation)]TJ 0 -13.549 Td[(was)-232(assembled)-232(together;)-238(from)-233(whose)-232(Report)-232(and)-232(Conviction,)-236(the)]TJ 0 -13.549 Td[(Influences)-377(of)-378(his)-377(blessed)-377(Works)-377(and)-378(Doctrine)-377(must)-377(of)-378(Course)]TJ 0 -13.55 Td[(spread)-250(through)-250(the)-250(whole)-250(Kingdom.)]TJ 11.956 -14.776 Td[(His)-246(Conduct)-246(and)-247(Proceedings)-246(here,)-247(with)-246(a)-246(particular)-246(Detail)-247(of)]TJ -11.956 -13.549 Td[(the)-253(Miracles)-253(wrought)-252(by)-253(him,)-253(may)-253(be)-253(had)-253(at)-252(large)-253(in)-253(the)-253(History)]TJ 0 -13.549 Td[(of)-250(his)-250(Life,)-250(published)-250(by)]TJ/F28 10.909 Tf 109.691 0 Td[(John)-250(Colgan)]TJ/F16 10.909 Tf 56.062 0 Td[(.)]TJ -153.797 -14.777 Td[(From)]TJ/F28 10.909 Tf 26.618 0 Td[(Tarah)]TJ/F16 10.909 Tf 26.672 0 Td[(,)-279(the)-273(Saint)-273(proceeded)-273(next)-273(to)]TJ/F28 10.909 Tf 128.518 0 Td[(Talten)]TJ/F16 10.909 Tf 27.883 0 Td[(,)-279(not)-273(far)-273(from)]TJ -221.647 -13.549 Td[(thence,)-254(at)-253(the)-254(Season)-253(of)-253(the)-253(Royal)-254(Diversions:)-256(Here)-253(he)-254(preached)]TJ 0 -13.549 Td[(to)]TJ/F28 10.909 Tf 12.539 0 Td[(Cairbre)]TJ/F16 10.909 Tf 34.549 0 Td[(,)-402(and)]TJ/F28 10.909 Tf 26.915 0 Td[(Conall)]TJ/F16 10.909 Tf 29.705 0 Td[(,)-402(the)-371(two)-372(Brothers)-371(of)-371(King)]TJ/F28 10.909 Tf 125.539 0 Td[(Leogin)]TJ/F16 10.909 Tf 30.306 0 Td[(;)-432(the)]TJ -259.553 -13.55 Td[(former)-213(received)-213(him)-213(with)-213(great)-213(Indignity,)-220(and)-213(perversely)-213(shut)-213(his)]TJ 0 -13.549 Td[(Ears)-208(against)-208(his)-208(Doctrine;)-222(but)]TJ/F28 10.909 Tf 129.666 0 Td[(Conall)]TJ/F16 10.909 Tf 31.974 0 Td[(believed,)-216(and)-208(was)-208(baptized,)]TJ -161.64 -13.549 Td[(and)-250(gave)-250(St.)]TJ/F28 10.909 Tf 56.357 0 Td[(Patrick)]TJ/F16 10.909 Tf 34.843 0 Td[(a)-250(Place)-250(to)-250(build)-250(a)-250(Church)-250(on.)]TJ -79.245 -14.777 Td[(This)]TJ/F28 10.909 Tf 24.765 0 Td[(Conall)]TJ/F16 10.909 Tf 35.073 0 Td[(was)-492(Great-Grand-Father)-492(to)]TJ/F28 10.909 Tf 128.184 0 Td[(Columb-Kill)]TJ/F16 10.909 Tf 54.556 0 Td[(.)-976(He)]TJ -254.533 -13.549 Td[(spent)-339(the)-340(Remainder)-339(of)-340(this)-339(Year)-339(in)]TJ/F28 10.909 Tf 164.679 0 Td[(Meath)]TJ/F16 10.909 Tf 31.575 0 Td[(and)]TJ/F28 10.909 Tf 19.455 0 Td[(Louth)]TJ/F16 10.909 Tf 25.462 0 Td[(,)-362(and)-339(the)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
101 0 obj <<
/Type /Page
/Contents 102 0 R
/Resources 100 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
103 0 obj <<
/D [101 0 R /XYZ 95.603 408.554 null]
>> endobj
100 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
106 0 obj <<
/Length 7019
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(18)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Districts)-269(adjoining,)-275(preaching,)-274(and)-269(converting)-270(great)-269(Numbers)-270(of)]TJ 0 -13.549 Td[(People.)-232(The)]TJ/F28 10.909 Tf 54.036 0 Td[(Taltenian)]TJ/F16 10.909 Tf 43.949 0 Td[(Sports)-195(above-mentioned,)-411(have)-195(been)-195(much)]TJ/F16 7.97 Tf -170.74 0 Td[([023])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(celebrated)-327(by)-326(the)]TJ/F28 10.909 Tf 79.755 0 Td[(Irish)]TJ/F16 10.909 Tf 24.171 0 Td[(Historians,)-346(and)-326(Antiquaries.)-480(They)-327(were)]TJ -103.926 -13.549 Td[(a)-254(kind)-255(of)-254(warlike)-254(Exercises,)-256(somewhat)-254(resembling)-254(the)]TJ/F28 10.909 Tf 238.827 0 Td[(Olympick)]TJ/F16 10.909 Tf -238.827 -13.55 Td[(Games,)-504(consisting)-453(of)-453(Racing,)-503(Tilts,)-504(Tournaments,)-504(Wrestling,)]TJ 0 -13.549 Td[(Leaping,)-410(Vaulting,)-410(an)-1(d)-378(all)-378(other)-378(manly)-378(and)-378(martial)-379(Exercises,)]TJ 0 -13.549 Td[(which)-194(gave)-194(Rise)-194(to)-194(the)-194(many)-194(hyperbolical)-194(Tales,)-206(formerly)-194(related)]TJ 0 -13.549 Td[(of)-367(those)]TJ/F28 10.909 Tf 40.119 0 Td[(Taltenian)]TJ/F16 10.909 Tf 45.826 0 Td[(Sports.)-600(They)-367(were)-367(exhibited)-367(every)-366(Year)-367(at)]TJ/F28 10.909 Tf -85.945 -13.549 Td[(Talten)]TJ/F16 10.909 Tf 27.884 0 Td[(,)-234(a)-230(Mountain)-230(in)]TJ/F28 10.909 Tf 68.57 0 Td[(Meath)]TJ/F16 10.909 Tf 27.872 0 Td[(,)-234(for)-230(fifteen)-230(Days)-231(before,)-234(and)-230(fifteen)]TJ -124.326 -13.55 Td[(Days)-294(after)-295(the)-294(First)-295(of)]TJ/F28 10.909 Tf 100.886 0 Td[(August)]TJ/F16 10.909 Tf 30.305 0 Td[(.)-383(Their)-295(first)-294(Institution)-294(is)-295(ascribed)]TJ -131.191 -13.549 Td[(to)]TJ/F28 10.909 Tf 12.147 0 Td[(Lughaid-lam-fadha)]TJ/F16 10.909 Tf 84.851 0 Td[(,)-357(the)-335(twelfth)-336(King)-335(of)]TJ/F28 10.909 Tf 96.4 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-357(who)-335(began)]TJ -225.514 -13.549 Td[(his)-327(Reign)]TJ/F28 10.909 Tf 45.924 0 Td[(A.)-327(M.)]TJ/F16 10.909 Tf 28.338 0 Td[(2764)-327(\050a)-327(sufficient)-327(Proof)-326(of)]TJ/F28 10.909 Tf 122.654 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[('s)-327(Antiquity)]TJ -229.032 -13.549 Td[(as)-264(a)-264(Kingdom\051.)-292(They)-265(were)-264(ordained)-264(by)]TJ/F28 10.909 Tf 174.673 0 Td[(Lughaid)]TJ/F16 10.909 Tf 36.371 0 Td[(,)-268(in)-264(Gratitude)-264(to)]TJ -211.044 -13.549 Td[(the)-261(Memory)-262(of)]TJ/F28 10.909 Tf 68.54 0 Td[(Tailte)]TJ/F16 10.909 Tf 25.462 0 Td[(,)-264(the)-261(Daughter)-262(of)]TJ/F28 10.909 Tf 77.17 0 Td[(Magh-More)]TJ/F16 10.909 Tf 52.713 0 Td[(,)-264(\050a)-261(Prince)-262(of)]TJ -223.885 -13.55 Td[(some)-275(Part)-275(of)]TJ/F28 10.909 Tf 58.689 0 Td[(Spain)]TJ/F16 10.909 Tf 24.85 0 Td[(\051)-275(who)-275(having)-275(been)-275(married)-275(to)]TJ/F28 10.909 Tf 133.119 0 Td[(Eochaid)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-281(King)]TJ -253.018 -13.549 Td[(of)]TJ/F28 10.909 Tf 11.821 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-251(took)-250(the)-251(same)]TJ/F28 10.909 Tf 68.806 0 Td[(Lughaid)]TJ/F16 10.909 Tf 39.103 0 Td[(under)-251(her)-250(Protection,)-251(and)-250(had)]TJ -151.846 -13.549 Td[(the)-186(Care)-185(of)-186(his)-186(Education)-186(in)-185(his)-186(Minority.)-228(From)-186(this)-186(Princess)-186(both)]TJ 0 -13.549 Td[(the)-277(Sports,)-284(and)-278(the)-277(Place)-277(where)-278(they)-277(were)-277(celebrated,)-284(took)-278(their)]TJ 0 -13.549 Td[(Names:)-321(From)]TJ/F28 10.909 Tf 63.583 0 Td[(Lughaid)]TJ/F16 10.909 Tf 36.37 0 Td[(,)-294(the)-286(First)-285(of)]TJ/F28 10.909 Tf 57.706 0 Td[(August)]TJ/F16 10.909 Tf 33.419 0 Td[(was)-286(called)]TJ/F28 10.909 Tf 49.243 0 Td[(Lugnasa)]TJ/F16 10.909 Tf 37.582 0 Td[(,)]TJ -277.903 -13.55 Td[(or)-210(the)-210(Memory)-209(of)]TJ/F28 10.909 Tf 78.229 0 Td[(Lughaid)]TJ/F16 10.909 Tf 36.37 0 Td[(,)]TJ/F28 10.909 Tf 5.104 0 Td[(Nasa)]TJ/F16 10.909 Tf 24.717 0 Td[(signifying)-210(Memory,)-218(in)-209(the)]TJ/F28 10.909 Tf 115.603 0 Td[(Irish)]TJ/F16 10.909 Tf -260.023 -13.549 Td[(Language.)]TJ 11.956 -18.459 Td[(In)-331(the)-330(Year)-331(of)-331(the)-331(World)-330(2700,)]TJ/F28 10.909 Tf 143.927 0 Td[(Gideon)]TJ/F16 10.909 Tf 35.724 0 Td[(then)-331(reigning)-330(fou)-1(rth)]TJ -191.607 -13.549 Td[(Judge)-508(of)-507(the)]TJ/F28 10.909 Tf 64.481 0 Td[(Hebrews)]TJ/F16 10.909 Tf 38.782 0 Td[(,)-572(appear'd)-508(many)-507(Heroes,)-572(as)]TJ/F28 10.909 Tf 135.258 0 Td[(Hercules)]TJ/F16 10.909 Tf 39.382 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Orpheus)]TJ/F16 10.909 Tf 37.571 0 Td[(,)]TJ/F28 10.909 Tf 9.221 0 Td[(Castor)]TJ/F16 10.909 Tf 29.705 0 Td[(,)]TJ/F28 10.909 Tf 9.221 0 Td[(Pollux)]TJ/F16 10.909 Tf 28.484 0 Td[(,)-595(the)]TJ/F28 10.909 Tf 28.292 0 Td[(Argonauts)]TJ/F16 10.909 Tf 45.458 0 Td[(,)]TJ/F28 10.909 Tf 9.221 0 Td[(Jason)]TJ/F16 10.909 Tf 25.451 0 Td[(,)]TJ/F28 10.909 Tf 9.221 0 Td[(Laomedon)]TJ/F16 10.909 Tf 46.058 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Thes\346us)]TJ/F16 10.909 Tf 37.582 0 Td[(,)]TJ/F28 10.909 Tf 8.299 0 Td[(Dedalus)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-511(&c.)-875(The)]TJ/F28 10.909 Tf 55.875 0 Td[(Amazones)]TJ/F16 10.909 Tf 44.236 0 Td[(,)-511(Heroines)-458(of)]TJ/F28 10.909 Tf 66.773 0 Td[(Scythic)]TJ/F16 10.909 Tf -249.125 -13.549 Td[(Extraction,)-342(having)-323(lost)-324(their)-323(Husbands)-324(in)-323(Battle,)-342(took)-323(up)-324(Arms)]TJ 0 -13.549 Td[(themselves,)-439(with)-400(a)-401(manly)-401(Spirit)-401(of)-400(Resentment,)-439(and)-401(\050inspired)]TJ 0 -13.55 Td[(with)-378(Love)-379(of)-378(their)-378(deceased)-378(Husbands,)-411(and)-378(Grief)-378(for)-378(so)-379(great)]TJ 0 -13.549 Td[(and)-462(irretrievable)-462(a)-462(Loss!\051)-886(subdued)]TJ/F28 10.909 Tf 167.963 0 Td[(Asia)]TJ/F16 10.909 Tf 19.397 0 Td[(,)-515(and)-462(built)]TJ/F28 10.909 Tf 54.183 0 Td[(Ephesus)]TJ/F16 10.909 Tf 36.36 0 Td[(.)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Hercules)]TJ/F16 10.909 Tf 42.577 0 Td[(and)]TJ/F28 10.909 Tf 18.947 0 Td[(Thes\346us)]TJ/F16 10.909 Tf 40.777 0 Td[(waged)-586(War)-293(against)-292(those)-293(Heroines,)-304(and)]TJ/F16 7.97 Tf -175.056 0 Td[([024])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(defeated)-329(them,)-349(more)-330(to)-329(the)-329(Glory)-329(of)-330(the)-329(Vanquished)-329(than)-330(their)]TJ 0 -13.549 Td[(own,)-238(those)-234(Matrons)-235(having)-234(defended)-235(themselves)-234(with)-235(surprizing)]TJ 0 -13.55 Td[(Resolution.)-333(They)-278(cut)-278(off)-278(the)-278(Guards)-277(set)-278(over)-278(them,)-285(and)-278(escaped)]TJ 0 -13.549 Td[(the)-258(Severity)-258(and)-258(Pride)-258(of)-258(their)-258(Conquerors.)]TJ/F28 10.909 Tf 191.057 0 Td[(Hercules)]TJ/F16 10.909 Tf 39.382 0 Td[(,)-260(in)-258(Honour)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
105 0 obj <<
/Type /Page
/Contents 106 0 R
/Resources 104 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
107 0 obj <<
/D [105 0 R /XYZ 302.248 504.626 null]
>> endobj
108 0 obj <<
/D [105 0 R /XYZ 227.512 120.339 null]
>> endobj
104 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
111 0 obj <<
/Length 6591
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(19)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(of)-328(such)-327(extraordinary)-328(heroick)-327(Females,)-347(instituted)-328(the)]TJ/F28 10.909 Tf 238.827 0 Td[(Olympick)]TJ/F16 10.909 Tf -238.827 -13.549 Td[(Games;)-425(as)-367(likewise)-366(did)]TJ/F28 10.909 Tf 109.349 0 Td[(Thes\346us)]TJ/F16 10.909 Tf 37.582 0 Td[(,)-396(the)]TJ/F28 10.909 Tf 24.374 0 Td[(Isthmian)]TJ/F16 10.909 Tf 38.182 0 Td[(,)-396(in)-366(the)-367(Year)-366(o)-1(f)]TJ -209.487 -13.549 Td[(the)-253(World,)-254(about)-253(2700,)-253(the)]TJ/F28 10.909 Tf 119.859 0 Td[(Taltenian)]TJ/F16 10.909 Tf 44.585 0 Td[(Sports,)-254(the)-253(very)-253(same)-252(with)]TJ -164.444 -13.549 Td[(the)]TJ/F28 10.909 Tf 17.941 0 Td[(Olympick)]TJ/F16 10.909 Tf 41.803 0 Td[(,)-466(brought)-422(sixty-four)-423(Years)-422(after)-423(from)]TJ/F28 10.909 Tf 174.451 0 Td[(Spain)]TJ/F16 10.909 Tf 29.461 0 Td[(into)]TJ/F28 10.909 Tf -263.656 -13.55 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-372(by)]TJ/F28 10.909 Tf 21.477 0 Td[(Tailte)]TJ/F16 10.909 Tf 25.462 0 Td[(,)-372(and)-347(her)-347(Followers.)-542(Now)-347(this)]TJ/F28 10.909 Tf 140.859 0 Td[(Tailte)]TJ/F16 10.909 Tf 25.462 0 Td[(,)-372(Queen)]TJ -245.377 -13.549 Td[(of)]TJ/F28 10.909 Tf 13.882 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-487(was)-439(the)-440(Grand-daughter)-439(of)-440(an)]TJ/F28 10.909 Tf 150.757 0 Td[(Amazone)]TJ/F16 10.909 Tf 44.787 0 Td[(Princess,)]TJ -241.543 -13.549 Td[(those)-476(immortal)-477(Females)-476(having,)-533(with)-476(their)-477(Progeny,)-533(Friends)]TJ 0 -13.549 Td[(and)-523(Followers,)-592(to)-523(avoid)-523(the)-523(ruinous)-523(Hostilities)-523(of)]TJ/F28 10.909 Tf 241.248 0 Td[(Hercules)]TJ/F16 10.909 Tf -241.248 -13.549 Td[(and)]TJ/F28 10.909 Tf 20.266 0 Td[(Thes\346us)]TJ/F16 10.909 Tf 37.582 0 Td[(,)-455(sought)-413(Shelter)-414(in)]TJ/F28 10.909 Tf 89.713 0 Td[(Spain)]TJ/F16 10.909 Tf 24.851 0 Td[(,)-455(whither)-413(they)-414(imported)]TJ -172.412 -13.55 Td[(the)-440(Learning)-441(of)]TJ/F28 10.909 Tf 76.21 0 Td[(Trismegistus)]TJ/F16 10.909 Tf 55.767 0 Td[(,)-488(the)-440(Grandson)-440(of)]TJ/F28 10.909 Tf 87.291 0 Td[(Mercury)]TJ/F16 10.909 Tf 37.56 0 Td[(,)-488(and)]TJ -256.828 -13.549 Td[(Glory)-324(of)]TJ/F28 10.909 Tf 41.601 0 Td[(\306gypt)]TJ/F16 10.909 Tf 28.484 0 Td[(,)-342(together)-324(with)-324(all)-323(the)-324(literary)-324(Arts)-323(derived)-324(into)]TJ/F28 10.909 Tf -70.085 -13.549 Td[(Greece)]TJ/F16 10.909 Tf 31.495 0 Td[(,)-497(from)]TJ/F28 10.909 Tf 34.235 0 Td[(Ph)]TJ/F37 10.909 Tf 12.12 0 Td[(S)]TJ/F28 10.909 Tf 7.276 0 Td[(nicia)]TJ/F16 10.909 Tf 21.818 0 Td[(,)-497(by)]TJ/F28 10.909 Tf 23.937 0 Td[(Cadmus)]TJ/F16 10.909 Tf 35.76 0 Td[(,)-497(the)-447(Brother)-448(of)]TJ/F28 10.909 Tf 78.535 0 Td[(Europa)]TJ/F16 10.909 Tf 32.727 0 Td[(,)]TJ -277.903 -13.549 Td[(about)-367(the)-367(Year)-367(of)-368(the)-367(World)-367(2530,)]TJ/F28 10.909 Tf 161.958 0 Td[(Othoniel)]TJ/F16 10.909 Tf 42.186 0 Td[(then)-367(reigning)-367(the)]TJ -204.144 -13.549 Td[(first)-392(Judge)-391(of)-392(the)]TJ/F28 10.909 Tf 82.533 0 Td[(Hebrews)]TJ/F16 10.909 Tf 38.782 0 Td[(.)-675(The)-391(Posterity)-392(of)-392(this)-391(ancient)-392(and)]TJ -121.315 -13.55 Td[(illustrious)-271(Colony,)-276(about)-271(the)-271(Year)-271(of)-271(the)-271(World)-270(3000,)-277(\050)]TJ/F28 10.909 Tf 242.448 0 Td[(Solomon)]TJ/F16 10.909 Tf -242.448 -13.549 Td[(then)-299(reigning)-298(with)-299(great)-298(Splendour,)-311(third)-299(King)-298(of)-299(the)]TJ/F28 10.909 Tf 238.216 0 Td[(Hebrews)]TJ/F16 10.909 Tf 38.781 0 Td[(\051)]TJ -276.997 -13.549 Td[(settled)-453(in)-454(this)-453(Kingdom,)-504(as)-453(before)-453(observed:)-657(So)-453(that,)-504(by)-454(an)]TJ 0 -13.549 Td[(impartial)-387(Estimate)-387(of)-388(Dates,)-421(Periods,)-422(and)-387(Facts,)-421(our)-387(Origin)-388(is)]TJ 0 -13.549 Td[(well)-378(ascertained,)-410(our)-379(early)-378(Possession)-378(of)-378(Letters,)-410(wise)-379(Policy,)]TJ 0 -13.55 Td[(and)-253(the)-253(politer)-253(Arts,)-253(proved,)-254(and)-253(the)-253(Remark)-253(of)-253(an)]TJ/F28 10.909 Tf 222.715 0 Td[(Italian)]TJ/F16 10.909 Tf 31.853 0 Td[(Monk)]TJ -254.568 -13.549 Td[(in)-232(the)-232(7th)-232(Century,)-236(from)-232(the)-232(University)-232(of)]TJ/F28 10.909 Tf 183.609 0 Td[(Mongret)]TJ/F16 10.909 Tf 37.57 0 Td[(,)-236(in)-232(an)-232(Epistle)]TJ -221.179 -13.549 Td[(to)-189(his)-189(Correspondent)-189(at)]TJ/F28 10.909 Tf 101.575 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-201(justified,)]TJ/F28 10.909 Tf 45.604 0 Td[(Nil)-189(mirum)-189(Populum)-189(hunc)]TJ -172.019 -13.549 Td[(Celtico)-169(Scythicum)-169(\350)-169(pr\346clar\342)-169(Amazonidum)-169(stirp\352)-168(oriundum,)-186(ver\342)]TJ 0 -13.549 Td[(Religion\352)-381(et)-761(incorrupt\342)-380(Fide)-381(illuminatum,)-413(sapientia)-381(Doctrina)]TJ/F16 7.97 Tf 291.024 0 Td[([025])]TJ/F28 10.909 Tf -291.024 -13.55 Td[(optimisque)-373(Morbidus)-373(ornatum,)-403(viros)-373(fortes)-373(et)-373(F\346minas)-373(castas)]TJ 0 -13.549 Td[(plerumque)-375(procreare)]TJ/F16 10.909 Tf 94.379 0 Td[(.)-626(A)-375(Rescript)-376(of)-375(this)-375(Original)-376(Epistle)-375(still)]TJ -94.379 -13.549 Td[(extant,)-456(in)-414(the)]TJ/F28 10.909 Tf 65.226 0 Td[(Vatican)]TJ/F16 10.909 Tf 38.461 0 Td[(Library,)-456(some)-414(Years)-415(ago)-415(in)-414(the)-415(Hands)]TJ -103.687 -13.549 Td[(of)-369(Father)-369(Don)]TJ/F28 10.909 Tf 67.82 0 Td[(Levy)]TJ/F16 10.909 Tf 20.597 0 Td[(,)-399(may)-369(therefore,)-398(I)-369(believe,)-399(be)-369(found)-369(in)-369(the)]TJ -88.417 -13.549 Td[(College)-250(of)]TJ/F28 10.909 Tf 48.48 0 Td[(Lombard)]TJ/F16 10.909 Tf 42.731 0 Td[(at)]TJ/F28 10.909 Tf 10.604 0 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(.)]TJ -113.499 -18.459 Td[(In)-277(this)-277(shining)-277(Period)-277(were)-277(Cathedrals)-277(and)-278(Churches)-277(erected,)]TJ -11.956 -13.549 Td[(Universities)-302(founded)-302(and)-302(established,)-315(Colleges,)-315(Se)-1(minaries)-302(and)]TJ 0 -13.549 Td[(Schools)-370(propagated)-371(in)-370(many)-370(Parts)-370(of)-371(this)-370(Kingdom,)-400(which,)-401(at)]TJ 0 -13.55 Td[(the)-437(same)-437(Time,)-484(became)-437(a)-437(peaceful)-437(and)-437(hospitable)-437(R)-1(etreat)-437(to)]TJ 0 -13.549 Td[(religious)-203(and)-204(learned)-203(Men,)-212(disturbed)-204(on)-203(the)-203(Continent)-203(of)]TJ/F28 10.909 Tf 245.787 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
110 0 obj <<
/Type /Page
/Contents 111 0 R
/Resources 109 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
112 0 obj <<
/D [110 0 R /XYZ 104.765 206.544 null]
>> endobj
109 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F37 50 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
115 0 obj <<
/Length 5551
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(20)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(by)-203(the)-204(frequent)-203(Invasions,)-213(and)-203(cruel)-204(Hostilities)-203(of)-203(the)-204(North-men,)]TJ 0 -13.549 Td[(whose)-423(Piracies)-422(and)-423(Barbarity,)-465(even)]TJ/F28 10.909 Tf 166.209 0 Td[(Ireland)]TJ/F16 10.909 Tf 36.726 0 Td[(could)-423(not)-422(always)]TJ -202.935 -13.549 Td[(escape!)-235(For,)-214(from)-205(the)-206(Time)-205(of)]TJ/F28 10.909 Tf 131.094 0 Td[(Artigrius)]TJ/F16 10.909 Tf 39.403 0 Td[(,)-214(Archbishop)-205(of)]TJ/F28 10.909 Tf 69.53 0 Td[(Ardmagh)]TJ/F16 10.909 Tf -240.027 -13.549 Td[(in)-194(822,)-206(for)-194(near)-194(200)-194(Years)-194(the)-195(cruel)]TJ/F28 10.909 Tf 153.085 0 Td[(Danes)]TJ/F16 10.909 Tf 29.992 0 Td[(miserably)-194(ravaged)-194(this)]TJ -183.077 -13.55 Td[(Kingdom,)-318(destroying,)-318(by)-304(Fire)-304(and)-304(Sword,)-318(every)-305(Establishment,)]TJ 0 -13.549 Td[(as)-273(well)-272(of)-273(Piety)-272(as)-273(Learning,)-278(\050to)-273(both)-273(which,)-278(and)-272(to)-273(all)-273(religious)]TJ 0 -13.549 Td[(Maxims)-295(of)-294(civilized)-295(Society,)-305(they)-295(had)-294(been)-295(avowed)-295(implacable)]TJ 0 -13.549 Td[(Enemies\051)-306(till)-306(they)-307(were)-306(themselves,)-320(in)-306(1014,)-320(totally)-306(defeated)-307(at)]TJ/F28 10.909 Tf 0 -13.549 Td[(Clontarf)]TJ/F16 10.909 Tf 36.982 0 Td[(,)-357(by)-335(the)-335(invincible)-336(Arms)-335(of)-335(the)-336(Great)-335(Monarch,)]TJ/F28 10.909 Tf 216.986 0 Td[(Bryan)]TJ -253.968 -13.55 Td[(Borou)]TJ/F16 10.909 Tf 27.273 0 Td[(,)-208(from)-198(whom)-197(descended)-198(a)-198(Race)-197(conspicuous)-198(for)-198(exemplary)]TJ -27.273 -13.549 Td[(Prelates,)-250(heroick)-250(Leaders,)-250(and)-250(steady)-250(Patriots.)]TJ 11.956 -15.186 Td[(The)-425(learned)-425(Author)-425(of)-425(the)]TJ/F28 10.909 Tf 125.57 0 Td[(Dissertations)]TJ/F16 10.909 Tf 62.824 0 Td[(before-mentioned,)]TJ -200.35 -13.549 Td[(charges)-423(this)-422(Hero)-423(with)-422(a)-423(Violation)-422(of)-423(the)-422(Constitution)-423(of)-423(his)]TJ 0 -13.549 Td[(Country:)-685(Yet)-468(the)-467(Violation)-468(seems)-467(of)-468(far)-467(earlier)-468(Date,)-522(when)]TJ 0 -13.549 Td[(the)-310(supreme)-309(Monarchy)-310(was,)-324(by)-310(the)]TJ/F28 10.909 Tf 159.484 0 Td[(Hugonian)]TJ/F16 10.909 Tf 47.014 0 Td[(Law,)-324(inalienably)]TJ -206.498 -13.549 Td[(united)-491(to)-492(one)-491(Family,)-552(whose)-491(Sovereignty,)-552(however)-492(founded)]TJ 0 -13.55 Td[(originally,)-429(whether)-393(by)-393(Birth,)-428(or)-393(Election,)-429(was)-393(essential)-393(to)-393(the)]TJ 0 -13.549 Td[(public)-580(Welfare:)-330(For)-289(we)-290(must)-290(allow)-290(that)-290(the)-290(Preservation)-290(of)-290(the)]TJ/F16 7.97 Tf -72.756 0 Td[([026])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(People)-298(is)-298(the)-298(principal)-297(Law)-298(to)-298(which)-298(all)-298(others)-298(are)-298(subordinate.)]TJ/F28 10.909 Tf 0 -13.549 Td[(Salus)-564(Populi)-563(suprema)-564(Lex)]TJ/F16 10.909 Tf 124.506 0 Td[(;)-721(and)-563(equally,)-642(that)-564(not)-564(only)-563(the)]TJ -124.506 -13.549 Td[(Necessities,)-542(but)-483(the)-483(Safety)-484(also)-483(of)-483(the)-483(People,)-542(at)-483(that)-484(Time)]TJ 0 -13.549 Td[(of)-275(Danger)-275(and)-275(Distraction,)-281(eagerly)-275(called)-275(forth)-275(the)-275(Conduct)-275(and)]TJ 0 -13.55 Td[(Valour,)-296(the)-287(protective)-287(and)-286(r)-1(estorative)-286(Abilities)-287(of)-287(that)-287(great)-287(and)]TJ 0 -13.549 Td[(virtuous)-291(Man,)-302(of)-292(whom)-291(a)-292(faithful)-291(Historian,)-302(in)-291(his)-292(Detail)-291(of)-292(the)]TJ 0 -13.549 Td[(Battle)-393(of)]TJ/F28 10.909 Tf 43.715 0 Td[(Clontarf)]TJ/F16 10.909 Tf 36.982 0 Td[(,)-428(says;)]TJ/F28 10.909 Tf 34.278 0 Td[(Integr\342)-393(prius)-392(adept)-393(a)-393(Victori\342)-392(rebus)]TJ -114.975 -13.549 Td[(humanis)-241(eodem)-241(Di\352)-242(excessit)-241(vir)-241(Bell\364)-241(ac)-241(Pac\352)-242(summus,)-243(Justiti\346,)]TJ 0 -13.549 Td[(Religionis,)-474(Literarum,)-475(Cultor)-429(eximius,)-474(et)-430(cum)-429(Carolo)-430(Magno)]TJ 0 -13.55 Td[(utique)-250(comparandus)]TJ/F16 10.909 Tf 89.389 0 Td[(.)]TJ -77.434 -15.185 Td[(In)-336(the)-336(239)-1(th)-336(Page)-336(of)-336(the)]TJ/F28 10.909 Tf 112.902 0 Td[(Dissertations)]TJ/F16 10.909 Tf 58.189 0 Td[(,)-358(the)-336(excellent)-336(Author)]TJ -183.046 -13.55 Td[(expresseth)-250(himself)-250(as)-250(follows:)]TJ/F31 10.909 Tf 11.955 -15.185 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(I)-374(now)-375(proceed)-374(to)-375(give)-374(some)-375(Account)-374(of)-375(the)-374(second)-375(Royal)]TJ -16.799 -13.549 Td[(House)-211(of)]TJ/F28 10.909 Tf 41.568 0 Td[(Scots)]TJ/F16 10.909 Tf 23.029 0 Td[(,)-219(the)-211(oldest)-211(of)-211(the)]TJ/F28 10.909 Tf 76.141 0 Td[(Milesian)]TJ/F16 10.909 Tf 40.485 0 Td[(Race,)-219(and)-211(the)-211(Posterity)]TJ -181.223 -13.55 Td[(of)]TJ/F28 10.909 Tf 13.004 0 Td[(Eber)]TJ/F16 10.909 Tf 21.207 0 Td[(.)]TJ/F31 10.909 Tf 2.728 0 Td[(\035)]TJ/F16 10.909 Tf 8.76 0 Td[(This)-359(Race)-359(then)-359(being)-359(avowed)-359(the)-359(oldest,)-386(in)-359(Respect)]TJ -45.699 -13.549 Td[(of)-331(Primogeniture,)-350(must,)-351(of)-330(Course,)-351(have)-331(been)-330(prior)-331(in)-330(Point)-331(of)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
114 0 obj <<
/Type /Page
/Contents 115 0 R
/Resources 113 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
116 0 obj <<
/D [114 0 R /XYZ 123.978 286.202 null]
>> endobj
113 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
119 0 obj <<
/Length 6106
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(21)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(Dignity)-272(and)-272(Sway,)-278(or)-272(at)-272(least,)-278(equally)-272(entitled)-272(to)-272(the)-272(Election)-273(of)]TJ 0 -13.549 Td[(the)-340(People)-341(to)-340(such)-341(Ranks;)-385(were)-341(not)-340(those)-341(by)-340(violent)-341(Measures)]TJ 0 -13.549 Td[(annexed)-272(to)-273(the)]TJ/F28 10.909 Tf 67.079 0 Td[(Heremonian)]TJ/F16 10.909 Tf 57.505 0 Td[(Line:)-295(Yet,)-277(however)-273(this)-272(might)-272(have)]TJ -124.584 -13.549 Td[(been,)-552(certain)-492(it)-492(is,)-552(that)-492(no)-491(Houses)-492(that)-492(we)-492(read)-491(of,)-553(ancient)]TJ 0 -13.55 Td[(or)-413(modern,)-454(have)-413(produced)-414(a)-413(greater)-413(Number)-413(of)-413(truly)-414(heroick)]TJ 0 -13.549 Td[(Princes,)-350(or)-330(of)-330(longer)-330(Continuance,)-350(than)-330(those)-330(of)-330(the)-330(North)-330(and)]TJ 0 -13.549 Td[(South)]TJ/F28 10.909 Tf 28.607 0 Td[(Hy-Nial)]TJ/F16 10.909 Tf 35.149 0 Td[(;)-307(from)-289(whom)-288(also)-288(issued)-288(many)-289(noble)-288(Families)-288(of)]TJ -63.756 -13.549 Td[(real)-318(Worth,)-336(and)-318(equal)-318(Renown.)-455(With)]TJ/F28 10.909 Tf 169.743 0 Td[(Bryan)]TJ/F16 10.909 Tf 26.662 0 Td[(,)-335(the)-318(happy)-319(Genius)]TJ -196.405 -13.549 Td[(of)]TJ/F28 10.909 Tf 11.704 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-242(in)-240(a)-240(great)-239(Measure,)-242(expired:)-245(For)-240(the)-240(cruel)]TJ/F28 10.909 Tf 187.84 0 Td[(Danes)]TJ/F16 10.909 Tf 30.489 0 Td[(had,)]TJ -262.15 -13.55 Td[(for)-201(near)-200(200)-201(Years)-200(before,)-211(so)-200(wofully)-201(overturned)-200(the)-201(Universities)]TJ 0 -13.549 Td[(of)]TJ/F28 10.909 Tf 14.331 0 Td[(Ardmagh)]TJ/F16 10.909 Tf 40.604 0 Td[(,)]TJ/F28 10.909 Tf 8.599 0 Td[(Dondaleith-Glass)]TJ/F16 10.909 Tf 77.575 0 Td[(,)]TJ/F28 10.909 Tf 8.599 0 Td[(Mongret)]TJ/F16 10.909 Tf 37.571 0 Td[(,)-538(and)]TJ/F28 10.909 Tf 29.595 0 Td[(Lismore)]TJ/F16 10.909 Tf 35.76 0 Td[(,)-538(with)]TJ -252.634 -13.549 Td[(all)-351(other)-351(Seminaries)-351(of)-350(Piety)-702(and)-351(Learning,)-376(\050the)-351(only)-351(genuine)]TJ/F16 7.97 Tf 291.024 0 Td[([027])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Sources)-387(of)-387(national)-387(Greatness,)-421(Concord,)-421(good)-387(Discipline,)-422(and)]TJ 0 -13.549 Td[(Happiness\051)-187(had)-187(obliged,)-199(in)-187(the)-187(8th)-187(Century,)-200(so)-187(many)-187(learned)-187(Men)]TJ 0 -13.55 Td[(to)-394(seek)-394(that)-394(Shelter)-394(and)-394(Security)-394(on)-394(the)-394(Continent,)-431(which)-394(the)]TJ 0 -13.549 Td[(barbarous)-293(Hostilities,)-303(and)-293(impious)-293(Manners)-293(of)-293(those)-293(Northerns,)]TJ 0 -13.549 Td[(denied)-538(them)-539(at)-538(Home;)-683(had)-538(made)-539(such)-538(frequent)-539(lamentable)]TJ 0 -13.549 Td[(Breaches)-516(in)-517(the)-516(antient,)-583(wise)-516(Constitution)-517(of)-516(the)-517(Kingdom;)]TJ 0 -13.549 Td[(had,)-472(by)-428(the)-428(fatal)-428(Example)-427(of)-428(their)-428(profligate)-428(dissolute)-428(Lives,)]TJ 0 -13.55 Td[(so)-410(vitiated)-410(the)-410(national)-410(Morality;)-490(and)-410(finally,)-450(had)-410(left)-410(behind)]TJ 0 -13.549 Td[(them)-253(so)-253(many)-253(noxious)-252(Seeds)-253(of)-253(Faction)-253(and)-253(Anarchy,)-253(as,)-254(in)-253(less)]TJ 0 -13.549 Td[(than)-346(two)-346(Centuries,)-370(gave)-345(up)-346(a)-346(Kingdom,)-370(of)-346(above)-346(2000)-346(Years)]TJ 0 -13.549 Td[(Establishment,)-519(the)-466(unaccountable)-466(Prey)-465(of)-466(a)-465(few)-466(adventurous)]TJ/F28 10.909 Tf 0 -13.549 Td[(Normans)]TJ/F16 10.909 Tf 40.004 0 Td[(!)]TJ/F28 10.909 Tf -28.048 -16.004 Td[(Patrick)]TJ/F16 10.909 Tf 34.838 0 Td[(governed)-249(the)-250(See)-249(of)]TJ/F28 10.909 Tf 89.65 0 Td[(Dublin)]TJ/F16 10.909 Tf 33.027 0 Td[(about)-249(ten)-250(Years,)-250(and,)-249(in)-250(a)]TJ -169.471 -13.549 Td[(Voyage)-315(to)]TJ/F28 10.909 Tf 49.283 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-331(perished)-315(by)-315(Shipwreck,)-331(in)-314(the)]TJ/F28 10.909 Tf 142.757 0 Td[(British)]TJ/F16 10.909 Tf 33.139 0 Td[(Sea,)]TJ -262.15 -13.55 Td[(on)-405(the)-406(16th)-405(of)]TJ/F28 10.909 Tf 70.414 0 Td[(October)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-444(1084;)-483(having)-406(been)-405(sent)-406(to)]TJ/F28 10.909 Tf 131.736 0 Td[(Lanfranc)]TJ/F16 10.909 Tf 40.004 0 Td[(,)]TJ -277.903 -13.549 Td[(Archbishop)-250(of)]TJ/F28 10.909 Tf 65.444 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.302 0 Td[(,)-250(by)-250(King)]TJ/F28 10.909 Tf 43.636 0 Td[(Tirdelvac)]TJ/F16 10.909 Tf 41.814 0 Td[(.)]TJ/F28 10.909 Tf -189.24 -16.004 Td[(Donat)]TJ/F16 10.909 Tf 27.272 0 Td[(,)-279(or)]TJ/F28 10.909 Tf 17.842 0 Td[(Dongus)-273(O'Haingly)]TJ/F16 10.909 Tf 82.28 0 Td[(,)-279(having)-273(spent)-274(some)-273(Time)-273(in)-274(the)]TJ -139.35 -13.549 Td[(Study)-216(of)-216(useful)-215(Learning)-216(in)]TJ/F28 10.909 Tf 120.85 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-223(went)-215(over)-216(into)]TJ/F28 10.909 Tf 69.785 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-223(and)]TJ -259.722 -13.549 Td[(became)-279(a)-278(Benedictine)-279(Monk)-279(at)]TJ/F28 10.909 Tf 139.41 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.302 0 Td[(.)-336(He)-279(was)-278(afterwards,)]TJ -189.712 -13.549 Td[(\050by)-362(the)-361(Consent)-362(of)-361(King)]TJ/F28 10.909 Tf 114.26 0 Td[(Tirdelvac)]TJ/F16 10.909 Tf 41.814 0 Td[(,)-389(and)-362(the)-362(Clergy)-361(of)]TJ/F28 10.909 Tf 90.618 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.305 0 Td[(\051)]TJ -276.997 -13.55 Td[(consecrated,)]TJ/F28 10.909 Tf 59.518 0 Td[(A.)-439(D.)]TJ/F16 10.909 Tf 29.568 0 Td[(1085,)-486(in)-438(the)-439(Cathedral)-439(of)]TJ/F28 10.909 Tf 122.306 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.302 0 Td[(,)-486(by)]TJ -261.694 -13.549 Td[(the)-247(before-mentioned)]TJ/F28 10.909 Tf 96.275 0 Td[(Lanfranc)]TJ/F16 10.909 Tf 40.004 0 Td[(,)-248(to)-247(whom)-247(he)-247(made)-247(the)-247(following)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
118 0 obj <<
/Type /Page
/Contents 119 0 R
/Resources 117 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
120 0 obj <<
/D [118 0 R /XYZ 179.231 369.134 null]
>> endobj
117 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
124 0 obj <<
/Length 6322
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(22)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Profession)-250(of)-250(Obedience:)]TJ/F31 10.909 Tf 11.956 -14.685 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(I,)]TJ/F28 10.909 Tf 9.05 0 Td[(Donat)]TJ/F16 10.909 Tf 27.273 0 Td[(,)-247(Bishop)-247(of)-246(the)-247(See)-246(of)]TJ/F28 10.909 Tf 97.047 0 Td[(Dublin)]TJ/F16 10.909 Tf 32.995 0 Td[(in)]TJ/F28 10.909 Tf 11.177 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-247(do)-247(promise)]TJ -226.458 -13.549 Td[(Canonical)-402(Obedience)-402(to)-402(you,)]TJ/F28 10.909 Tf 136.416 0 Td[(O')-402(Lanfranc)]TJ/F16 10.909 Tf 54.598 0 Td[(,)-440(Archbishop)-402(of)-402(the)]TJ -191.014 -13.549 Td[(holy)-250(Church)-250(of)]TJ/F28 10.909 Tf 68.782 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.302 0 Td[(,)-250(and)-250(to)-250(your)-250(Successors.)]TJ/F31 10.909 Tf 108.469 0 Td[(\035)]TJ/F16 10.909 Tf -215.597 -14.685 Td[(It)-409(is)-409(evident)-409(that)-409(the)-408(Title)-409(of)-409(the)-409(Kings)-409(of)]TJ/F28 10.909 Tf 198.531 0 Td[(England)]TJ/F16 10.909 Tf 41.432 0 Td[(to)-409(this)]TJ -251.919 -13.549 Td[(Kingdom,)-640(by)-562(Papal)-563(Donation,)-1280(or)-562(Appointment,)-640(was)-563(very)]TJ/F16 7.97 Tf -72.755 0 Td[([028])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(insufficient,)-535(if)-478(not)-478(absolutely)-478(trifling:)-706(Nor)-478(could)-478(a)-478(Right)-478(of)]TJ 0 -13.55 Td[(Conquest)-445(be)-445(urged)-445(in)-445(any)-445(Period)-445(of)-445(the)-445(Reign)-445(of)]TJ/F28 10.909 Tf 235.183 0 Td[(Henry)]TJ/F16 10.909 Tf 32.116 0 Td[(the)]TJ -267.299 -13.549 Td[(Second,)-340(or)-322(his)-322(Descendants.)-466(But)-322(the)-322(Great)-322(and)-323(Royal)-322(Families)]TJ 0 -13.549 Td[(of)]TJ/F28 10.909 Tf 13.77 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-474(long)-429(the)-429(Prey)-430(of)-429(Faction,)-474(deliberately)-429(preferred)-429(a)]TJ -45.886 -13.549 Td[(limitted)-348(and)-348(stipulated)-347(Submission)-348(to)-348(foreign)-348(Authority,)-372(to)-348(the)]TJ 0 -13.549 Td[(various)-283(Evils)-283(arising)-283(from)-283(intestine)-283(Feuds)-283(and)-283(Animosities;)-300(and)]TJ 0 -13.55 Td[(this,)-390(had)-361(the)-362(wise)-362(Conditions)-361(thereof)-362(been)-362(constantly)-362(attended)]TJ 0 -13.549 Td[(to,)-390(with)-361(mutual)-362(Observance,)-390(had)-361(been)-362(a)-362(sound)-361(Title,)-390(well)-362(and)]TJ 0 -13.549 Td[(judiciously)-250(founded.)]TJ 11.956 -14.685 Td[(True)-254(it)-254(is,)-255(that)-254(after)-254(the)-254(Surrender)-254(of)-254(the)-254(Crown)-254(b)-1(y)-254(King)]TJ/F28 10.909 Tf 247.467 0 Td[(John)]TJ/F16 10.909 Tf -259.423 -13.549 Td[(to)-318(the)-319(See)-318(of)]TJ/F28 10.909 Tf 60.549 0 Td[(Rome)]TJ/F16 10.909 Tf 24.84 0 Td[(,)-335(the)-319(Pope)-318(exerted)-318(so)-1(me)-318(temporal)-318(Authority)]TJ -85.389 -13.549 Td[(in)-273(this)-273(Kingdom,)-279(instanced)-273(in)-273(his)-273(having)-273(created)]TJ/F28 10.909 Tf 215.697 0 Td[(Mc.)-319(Con)-273(More)]TJ -215.697 -13.549 Td[(Mc.)-586(Namaras)]TJ/F16 7.97 Tf 63.056 3.958 Td[(2)]TJ/F16 10.909 Tf 8.433 -3.958 Td[(Duke)-362(of)]TJ/F28 10.909 Tf 40.615 0 Td[(Klan)-362(Cullane)]TJ/F16 10.909 Tf 59.717 0 Td[(,)-390(a)-362(Man)-362(of)-362(great)-362(Valour)]TJ -171.821 -13.55 Td[(and)-383(Piety,)-415(supported)-383(by)-382(ample)-383(Possessions)-382(in)-383(the)-382(Baronies)-383(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Tulla)]TJ/F16 10.909 Tf 27.573 0 Td[(and)]TJ/F28 10.909 Tf 20.285 0 Td[(Bunratty)]TJ/F16 10.909 Tf 38.182 0 Td[(,)-457(in)-415(the)-416(County)-415(of)]TJ/F28 10.909 Tf 88.873 0 Td[(Clare)]TJ/F16 10.909 Tf 24.851 0 Td[(;)-498(which)-416(extensive)]TJ -199.764 -13.549 Td[(Districts)-384(entirely)-384(belonged)-384(to)-384(that)-384(ancient,)-417(hospitable,)-418(martial,)]TJ 0 -13.549 Td[(and)-251(religious)-250(Race,)-251(of)-250(which)]TJ/F28 10.909 Tf 127.885 0 Td[(Mc.)-252(Con)-250(More)]TJ/F16 10.909 Tf 66.682 0 Td[(was)-251(Chief:)-251(The)]TJ/F28 10.909 Tf 69.405 0 Td[(Mc.)]TJ -263.972 -13.549 Td[(Namaras)]TJ/F16 10.909 Tf 40.004 0 Td[(,)-242(more)-240(or)-239(less,)-242(have)-240(in)-240(all)-239(Ages)-240(made,)-242(and)-240(still)-240(continue)]TJ -40.004 -13.55 Td[(to)-344(make,)-367(a)-344(distinguished)-344(Figure,)-368(as)-344(well)-343(in)-344(the)-344(Field,)-368(as)-344(in)-344(the)]TJ 0 -13.549 Td[(learned)-244(Professions;)-247(and)-244(were)-244(former)-1(ly)-244(so)-244(warlike)-245(a)-244(People,)-246(that)]TJ 0 -13.549 Td[(of)-371(themselves)-370(they)-371(formed)-371(an)-371(heroic)-370(Cavalry,)-401(justly)-371(stiled)-371(the)]TJ/F28 10.909 Tf 0 -13.549 Td[(Phalanx)]TJ/F16 10.909 Tf 39.087 0 Td[(of)-250(that)-250(Part)-250(of)]TJ/F28 10.909 Tf 63.022 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.844 0 Td[(wherein)-250(they)-250(resided.)]TJ -124.998 -14.685 Td[(How)-207(our)-207(Neighbours)-207(came)-207(to)-207(call)-207(us)]TJ/F28 10.909 Tf 159.415 0 Td[(waild)-207(Ayrish)]TJ/F16 10.909 Tf 54.992 0 Td[(,)-216(I)-207(am)-207(a)-207(Loss)]TJ -226.362 -13.549 Td[(to)-289(conjecture;)-309(it)-290(being)-289(evident)-579(we)-289(have)-290(been)-289(a)-289(thousand)-290(Years,)]TJ/F16 7.97 Tf -72.756 0 Td[([029])]TJ
ET
1 0 0 1 93.543 106.851 cm
0 g 0 G
1 0 0 1 0 2.59 cm
q
[]0 d
0 J
0.398 w
0 0.199 m
112.25 0.199 l
S
Q
1 0 0 1 -93.543 -109.441 cm
BT
/F16 5.978 Tf 99.77 102.828 Td[(2)]TJ/F16 8.966 Tf 5.729 -3.809 Td[(This)]TJ/F28 8.966 Tf 18.101 0 Td[(Mac)-241(Con)-241(More)-241(Macnamara)]TJ/F16 8.966 Tf 100.607 0 Td[(,)-243(Duke)-241(of)]TJ/F28 8.966 Tf 35.626 0 Td[(Klan)-241(Cullane)]TJ/F16 8.966 Tf 47.995 0 Td[(,)-243(founded,)-242(e)-1(rected,)]TJ -214.285 -10.959 Td[(and)-337(amply)-336(endowed)-337(the)-336(beautiful)-337(Abbey)-336(of)]TJ/F28 8.966 Tf 163.052 0 Td[(Quin)]TJ/F16 8.966 Tf 17.933 0 Td[(;)-380(as)-336(did)-337(other)-336(Chieftains)-337(of)]TJ -180.985 -10.959 Td[(his)-380(Name)-381(and)-380(Family,)-413(several)-380(Paroc)-1(hial)-380(Churches,)-413(with)-380(a)-380(g)-1(reat)-380(Number)-380(of)]TJ 0 -10.959 Td[(magnificent)-250(Castles.)]TJ
ET
1 0 0 1 93.543 62.854 cm
0 g 0 G
1 0 0 1 0 -24.072 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
123 0 obj <<
/Type /Page
/Contents 124 0 R
/Resources 122 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
125 0 obj <<
/D [123 0 R /XYZ 242.198 448.158 null]
>> endobj
126 0 obj <<
/D [123 0 R /XYZ 228.918 120.706 null]
>> endobj
122 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
129 0 obj <<
/Length 5785
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(23)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(at)-296(least,)-307(in)-296(Possession)-296(of)-296(Letters,)-307(Laws,)-308(and)-295(Civility,)-308(before)-296(the)]TJ 0 -13.549 Td[(Arrival)-250(of)]TJ/F28 10.909 Tf 46.048 0 Td[(Julius)-250(C\346sar)]TJ/F16 10.909 Tf 60.01 0 Td[(in)]TJ/F28 10.909 Tf 11.215 0 Td[(Britain)]TJ/F16 10.909 Tf 30.916 0 Td[(.)]TJ -136.233 -15.186 Td[(I)-296(am)-297(equally)-296(at)-297(a)-296(Loss)-297(to)-297(know)-296(why)-297(a)-296(Man)-297(should)-296(become)-297(a)]TJ -11.956 -13.549 Td[(standing)-362(Jest)-361(for)-362(his)-362(Ignorance)-361(in)-362(an)-362(alien)-361(Tongue,)-390(almost)-362(the)]TJ 0 -13.549 Td[(constant)-427(Fate)-427(of)-427(our)-428(Countrymen)-427(in)]TJ/F28 10.909 Tf 169.764 0 Td[(Britain)]TJ/F16 10.909 Tf 30.916 0 Td[(,)-471(where,)-472(whoever)]TJ -200.68 -13.549 Td[(is)-371(not)-370(smartly)-371(expert)-370(in)-370(the)]TJ/F28 10.909 Tf 127.275 0 Td[(English)]TJ/F16 10.909 Tf 37.38 0 Td[(Language,)-401(is)-370(immediately)]TJ -164.655 -13.55 Td[(denominated)-248(a)]TJ/F28 10.909 Tf 66.612 0 Td[(Teague)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-248(a)]TJ/F28 10.909 Tf 12.987 0 Td[(Paddy)]TJ/F16 10.909 Tf 27.872 0 Td[(,)-248(or)-248(I)-248(kno)-1(w)-248(not)-248(what,)-248(in)-248(the)-248(Stile)]TJ -139.587 -13.549 Td[(of)-314(Derisio)-1(n:)-378(At)-315(the)-314(same)-315(Time)-314(that)-315(the)-314(most)-315(awkward-tongued)]TJ/F28 10.909 Tf 0 -13.549 Td[(Irishman)]TJ/F16 10.909 Tf 42.056 0 Td[(in)]TJ/F28 10.909 Tf 11.151 0 Td[(London)]TJ/F16 10.909 Tf 36.001 0 Td[(speaks)]TJ/F28 10.909 Tf 31.747 0 Td[(English)]TJ/F16 10.909 Tf 36.002 0 Td[(with)-244(far)-244(more)-244(Propriety,)-246(and)]TJ -156.957 -13.549 Td[(a)-334(better)-335(Accent,)-355(than)-335(the)-334(smartest)]TJ/F28 10.909 Tf 153.902 0 Td[(British)-334(Petit)-335(Maitre)]TJ/F16 10.909 Tf 90.953 0 Td[(in)]TJ/F28 10.909 Tf 12.135 0 Td[(Paris)]TJ/F16 10.909 Tf -256.99 -13.549 Td[(doth)]TJ/F28 10.909 Tf 22.124 0 Td[(French)]TJ/F16 10.909 Tf 31.505 0 Td[(.)]TJ -41.673 -15.186 Td[(Some)-345(dramatick)-345(Scriblers,)-369(\050probably)-345(of)-345(our)-345(own)-346(degenerate)]TJ -11.956 -13.549 Td[(Growth\051)-414(the)-414(better)-414(to)-414(qualify)-414(them)-414(for)-414(eleem)-1(osinary)-414(Dinners,)]TJ 0 -13.549 Td[(gave)-222(Rise)-221(to)-222(this)-221(im)-1(pertinent)-221(Treatment)-222(of)-221(a)-222(Nation,)-227(which,)-228(from)]TJ 0 -13.55 Td[(the)-220(concurrent)-219(Testimonies)-220(of)-220(all)-219(the)-220(Dispassionate)-220(and)-220(Learned,)]TJ 0 -13.549 Td[(can,)-250(in)-250(Reality,)-250(be)-250(as)-250(little)-250(the)-250(Object)-250(of)-250(Scurrility,)-250(as)-250(any)-250(other.)]TJ 11.956 -15.186 Td[(Why)-363(should)-363(even)-363(poor)]TJ/F28 10.909 Tf 106.735 0 Td[(Teague)]TJ/F16 10.909 Tf 36.077 0 Td[(prove)-363(so)-363(constant)-363(a)-363(Butt,)-391(to)]TJ -154.768 -13.549 Td[(Farce-wrights,)-196(and)-183(Hackney)-183(Laughers;)-205(when,)-197(upon)-183(Examination,)]TJ 0 -13.549 Td[(he)-248(is,)-248(by)-248(a)-248(thousand)-247(Degrees,)-249(preferable)-247(to)-248(the)]TJ/F28 10.909 Tf 204.28 0 Td[(British)]TJ/F16 10.909 Tf 32.408 0 Td[(Hobbinol,)]TJ -236.688 -13.549 Td[(or)]TJ/F28 10.909 Tf 11.693 0 Td[(French)]TJ/F16 10.909 Tf 34.11 0 Td[(Gregoire?)-246(For)]TJ/F28 10.909 Tf 64.059 0 Td[(Teague)]TJ/F16 10.909 Tf 34.721 0 Td[(is)-239(a)-239(very)-238(Pattern)-239(of)-239(Hospitality;)]TJ -144.583 -13.549 Td[(so)-468(much)-467(so,)-522(that)-468(if)-467(a)-468(Gentleman)-467(should)-468(happen)-467(to)-468(miss)-468(his)]TJ 0 -13.55 Td[(Road,)-303(and)-293(be)-292(nessitated)-293(to)-293(seek)-292(the)-293(Shelter)-292(of)]TJ/F28 10.909 Tf 204.871 0 Td[(Teague)]TJ/F16 10.909 Tf 32.117 0 Td[('s)-293(Cabbin,)]TJ -236.988 -13.549 Td[(or)-324(Hut,)-344(was)-324(poor)]TJ/F28 10.909 Tf 79.499 0 Td[(Teague)]TJ/F16 10.909 Tf 35.655 0 Td[(trusting)-324(to)-325(two)-324(Sheep)-325(for)-324(his)-325(worldly)]TJ -115.154 -13.549 Td[(Subsistance,)-410(he)-378(would)-378(kill)-378(one,)-410(and)-378(sell)-378(the)-378(other,)-410(at)-379(the)-378(next)]TJ 0 -13.549 Td[(Village)-175(or)-174(Inn,)-190(for)-174(the)-175(better)-175(Entertainment)-174(of)-175(his)-174(Guest,)-190(and)-175(think)]TJ 0 -13.549 Td[(himself)-285(happy)-284(in)-285(such)-284(an)-285(Occasion)-285(of)-284(approving)-285(his)-285(Generosity)]TJ 0 -13.55 Td[(and)-200(Respect:)-225(He)-200(would)-199(the)-200(next)-200(Morning)-200(abandon)-200(his)-200(Spade,)-210(and)]TJ 0 -13.549 Td[(chearfully)-233(trot)-232(ten)-233(Miles)-233(to)-232(shew)-466(such)-232(bewilder'd)-233(Gentleman)-233(the)]TJ/F16 7.97 Tf 291.024 0 Td[([030])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(right)-305(Road.)-414(He)-305(is)-305(naturally)-305(civil,)-319(generous,)-318(and)-305(hospitable,)-319(\050for)]TJ 0 -13.549 Td[(scarce)-359(a)-359(Night)-359(passeth)-359(that)-359(poor)-359(Travellers)-359(are)-360(not)-359(entertained)]TJ 0 -13.549 Td[(in)-272(his)-271(Cottage,\051)-277(extremely)-272(respectful)-271(to)-272(his)-271(Superiors,)-277(and)-272(to)-272(his)]TJ 0 -13.549 Td[(Lord)-182(and)-183(Master)-182(faithful)-182(to)-182(Death.)-228(The)-182(military)-182(Annals)-182(of)]TJ/F28 10.909 Tf 248.514 0 Td[(Europe)]TJ/F16 10.909 Tf -248.514 -13.55 Td[(proclaim)-250(his)-251(Capacity)-250(and)-250(Taste)-251(for)-250(Fighting;)-251(then)-250(if)-250(you)-251(should)]TJ 0 -13.549 Td[(take)-350(this)-349(identical)]TJ/F28 10.909 Tf 82.946 0 Td[(Teague)]TJ/F16 10.909 Tf 32.116 0 Td[('s)-349(infa)-1(nt)-349(Son,)-374(and)-350(give)-349(him)-350(a)-349(regular)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
128 0 obj <<
/Type /Page
/Contents 129 0 R
/Resources 127 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
130 0 obj <<
/D [128 0 R /XYZ 190.464 147.437 null]
>> endobj
127 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
133 0 obj <<
/Length 5624
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(24)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(liberal)-370(Education,)-401(it)-370(is)-371(one)-370(hundred)-370(to)-371(one,)-400(but)-371(he)-370(turns)-370(out)-371(a)]TJ 0 -13.549 Td[(Gentleman)-216(of)-215(Merit,)-223(Learning,)-222(Worth,)-222(and)-216(Politeness;)-227(whereas)-216(it)]TJ 0 -13.549 Td[(would)-229(certainly)-230(require)-229(more)-229(than)]TJ/F28 10.909 Tf 150.048 0 Td[(Herculean)]TJ/F16 10.909 Tf 48.548 0 Td[(Labour)-229(to)-230(chissel)-229(a)]TJ/F28 10.909 Tf -198.596 -13.549 Td[(French)-280(Paisan)]TJ/F16 10.909 Tf 64.869 0 Td[(,)-288(a)-280(primitive)]TJ/F28 10.909 Tf 56.832 0 Td[(Westmoreland)]TJ/F16 10.909 Tf 63.021 0 Td[(,)-288(or)]TJ/F28 10.909 Tf 18.014 0 Td[(Devonshire)]TJ/F16 10.909 Tf 53.349 0 Td[(Boor,)]TJ -256.085 -13.55 Td[(not)-405(only)-406(into)-405(the)-406(Form)-405(of)-406(an)-405(elegant,)-444(but)-406(even)-405(into)-406(that)-405(of)-406(a)]TJ 0 -13.549 Td[(sociable)-250(Creature.)]TJ 11.956 -13.549 Td[(The)-303(Insignificancy)-303(of)-303(those)-304(Jesters)-303(and)-303(Spatterers,)-316(will)-304(more)]TJ -11.956 -13.549 Td[(clearly)-478(appear,)-534(if)-478(we)-478(look)-478(back)-477(to)-478(the)-478(wise,)-534(free,)-535(and)-478(truly)]TJ 0 -13.549 Td[(parliamentary)-303(Constitution)-303(of)-302(this)-303(Kingdom;)-329(if)-303(we)-303(recollect)-303(the)]TJ 0 -13.55 Td[(vast)-274(Length)-274(of)-275(its)-274(Duration,)-280(as)-274(a)-275(free)-274(and)-274(independant)-274(State;)-287(the)]TJ 0 -13.549 Td[(military)-335(Prowess)-335(of)-335(its)-335(Inhabitants)-336(in)-335(all)-335(Ages;)-377(their)-336(victorious)]TJ 0 -13.549 Td[(Conflicts)-383(with)-382(the)]TJ/F28 10.909 Tf 85.256 0 Td[(Romans)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-416(and)-383(with)-382(the)]TJ/F28 10.909 Tf 68.268 0 Td[(French)]TJ/F16 10.909 Tf 35.681 0 Td[(under)]TJ/F28 10.909 Tf 29.014 0 Td[(Henry)]TJ/F16 10.909 Tf -253.368 -13.549 Td[(the)-242(Vth,)-243(an)-1(d)-241(the)-242(Black)]TJ/F28 10.909 Tf 100.169 0 Td[(Prince)]TJ/F16 10.909 Tf 29.084 0 Td[(;)-245(their)-242(having)-241(founded)-242(a)-242(Monarchy)]TJ -129.253 -13.549 Td[(in)]TJ/F28 10.909 Tf 11.578 0 Td[(North)-283(Britain)]TJ/F16 10.909 Tf 59.469 0 Td[(,)-292(whence,)-291(by)-284(a)-283(Right)-283(of)-284(Descent,)-291(in)-284(Addition)-283(to)]TJ -71.047 -13.55 Td[(every)-262(other,)-265(his)-263(present)-262(Majesty,)-265(\050whom)-262(God)-262(long)-262(preserve,\051)-266(by)]TJ 0 -13.549 Td[(the)-226(special)-226(Providence)-225(and)-226(infinite)-226(Mercy)-226(of)-225(Heaven,)-231(ruleth)-226(over)]TJ 0 -13.549 Td[(us:)-560(If)-405(we)-405(consider)-405(the)-405(Number)-406(of)-405(our)-405(Universities,)-444(Colleges,)]TJ 0 -13.549 Td[(and)-473(Academies,)-529(religious)-473(Monasteries)-473(and)-473(pious)-474(Seminaries,)]TJ 0 -13.549 Td[(resorted)-251(to)-250(from)-251(all)-250(civilized)-251(Parts)-251(of)]TJ/F28 10.909 Tf 163.354 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-251(our)-250(Metropolitical)]TJ -195.47 -13.55 Td[(and)-288(Diocesan)-287(Cathe)-1(drals;)-306(on)-288(such)-288(impartial)-287(Review,)-297(surely,)-298(the)]TJ 0 -13.549 Td[(foregoing)-439(Tribe)-439(of)-439(Sneerers)-877(and)-439(Flouters)-439(must)-439(dwindle)-439(into)]TJ/F16 7.97 Tf -72.756 0 Td[([031])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(deserved)-250(Contempt.)]TJ 11.955 -13.549 Td[(I)-201(shall)-202(close)-201(this)-201(feeble)-202(Attempt)-201(on)-201(the)-202(antient)-201(State)-201(of)]TJ/F28 10.909 Tf 233.831 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ -277.903 -13.549 Td[(with)-324(the)-323(Description)-324(thereof)-324(by)]TJ/F28 10.909 Tf 143.085 0 Td[(Donat)]TJ/F16 10.909 Tf 27.273 0 Td[(,)-342(Bishop)-324(of)]TJ/F28 10.909 Tf 53.523 0 Td[(Fesul\346)]TJ/F16 10.909 Tf 31.516 0 Td[(,)-342(near)]TJ/F28 10.909 Tf -255.397 -13.55 Td[(Florence)]TJ/F16 10.909 Tf 39.382 0 Td[(,)-262(in)-260(the)-260(7th)-260(or)-259(8th)-260(Century;)-265(referring,)-262(at)-260(the)-260(same)-260(Time,)]TJ -39.382 -13.549 Td[(to)-328(the)-328(most)-328(authentick)]TJ/F28 10.909 Tf 102.799 0 Td[(British)]TJ/F16 10.909 Tf 33.284 0 Td[(Antiquaries,)]TJ/F28 10.909 Tf 57.421 0 Td[(Campden)]TJ/F16 10.909 Tf 41.814 0 Td[(,)]TJ/F28 10.909 Tf 6.519 0 Td[(Giraldus)]TJ -241.837 -13.549 Td[(Cambrensis)]TJ/F16 10.909 Tf 52.124 0 Td[(,)]TJ/F28 10.909 Tf 7.442 0 Td[(Buchanan)]TJ/F16 10.909 Tf 44.237 0 Td[(,)]TJ/F28 10.909 Tf 7.442 0 Td[(Ware)]TJ/F16 10.909 Tf 23.629 0 Td[(,)-432(&c.)-688(for)-395(Confirmation)-396(of)-396(what)]TJ -134.874 -13.549 Td[(hath)-250(been)-250(previously)-250(observed)-250(on)-250(the)-250(same)-250(Subject.)]TJ/F28 10.909 Tf 0 -18.459 Td[(Finibus)-250(Occiduis)-250(describitur)-250(optima)-250(Tellus,)]TJ 0 -13.549 Td[(Nomine)-250(et)-250(Antiquis)-250(S)]TJ/F28 7.97 Tf 91.822 0 Td[(COTIA)]TJ/F28 10.909 Tf 25.753 0 Td[(scripta)-250(Libris)]TJ/F39 10.909 Tf 59.105 0 Td[(\024\024)]TJ/F28 10.909 Tf -176.68 -13.549 Td[(Insula)-250(dives)-250(Opum,)-250(Gemmarum,)-250(Vestis)-250(et)-250(Auri,)]TJ 0 -13.549 Td[(Commoda)-250(Corporibus,)-250(Aere)-250(sole)-250(Solo;)]TJ 0 -13.55 Td[(Melle)-250(fluit)-250(pulchris)-250(et)-250(lacteis)-250(S)]TJ/F28 7.97 Tf 133.636 0 Td[(COTIA)]TJ/F28 10.909 Tf 25.753 0 Td[(Campis)]TJ -159.389 -13.549 Td[(Vestibus)-250(atque)-250(Armis,)-250(frugibus,)-250(arte)-250(viris.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
132 0 obj <<
/Type /Page
/Contents 133 0 R
/Resources 131 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
134 0 obj <<
/D [132 0 R /XYZ 225.383 247.191 null]
>> endobj
131 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F39 135 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
138 0 obj <<
/Length 4746
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(25)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F28 10.909 Tf 46.771 518.175 Td[(Ursorum)-250(Rabies,)-250(nulla)-250(est)-250(ibi;)-250(s\346va)-250(Leonum)]TJ 0 -13.549 Td[(Semina,)-250(nec)-250(unquam)-250(S)]TJ/F28 7.97 Tf 98.771 0 Td[(COTICA)]TJ/F28 10.909 Tf 31.069 0 Td[(Terra)-250(tulit)]TJ -129.84 -13.549 Td[(Nulla)-250(Venena)-250(nocent,)-250(nec)-250(Serpens)-250(serpit)-250(in)-250(Herb\342,)]TJ 0 -13.549 Td[(Nec)-250(conquesta)-250(canit)-250(Garula)-250(Rana)-250(Lacu;)]TJ 0 -13.55 Td[(In)-250(qua)-250(S)]TJ/F28 7.97 Tf 36.36 0 Td[(COTORUM)]TJ/F28 10.909 Tf 41.247 0 Td[(Gentes)-250(habitare)-250(merentur)]TJ -77.607 -13.549 Td[(Inclita)-250(Gens)-250(Hominum)-250(Milite,)-250(Pace,)-250(Fide.)]TJ/F16 10.909 Tf 11.956 -19.752 Td[(Thus)-250(Englished)-250(by)-250(the)-250(Ingenius)-250(and)-250(Reverend)-250(Mr.)]TJ/F28 10.909 Tf 222.697 0 Td[(Dunkin)]TJ/F16 10.909 Tf 32.117 0 Td[(:)]TJ/F31 10.909 Tf -266.77 -19.602 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Far)-250(Westward,)-250(lies)-250(an)-250(Isle)-250(of)-250(antient)-250(Fame,)]TJ -4.844 -13.549 Td[(By)-250(Nature)-250(bless'd,)-250(and)-250(S)]TJ/F16 7.97 Tf 107.106 0 Td[(COTIA)]TJ/F16 10.909 Tf 27.076 0 Td[(is)-250(her)-250(Name;)]TJ -134.182 -13.55 Td[(Enroll'd)-250(in)-250(Books:)-250(Exhaustless)-250(is)-250(her)-250(Store)]TJ 0 -13.549 Td[(Of)-250(veiny)-250(Silver,)-250(and)-250(of)-250(Golden)-250(Ore:)]TJ 0 -13.549 Td[(Her)-250(fruitful)-250(Soil)-250(for)-250(ever)-250(teams)-250(with)-250(Wealth,)]TJ 0 -13.549 Td[(With)-250(Gems)-250(her)-250(Waters,)-250(and)-250(her)-250(Air)-250(with)-250(Health:)]TJ 0 -13.549 Td[(Her)-250(verdant)-250(Fields)-250(with)-250(Milk)-250(and)-250(Honey)-250(flow;)]TJ 0 -13.55 Td[(Her)-250(woolly)-250(Fleeces)-250(vie)-250(with)-250(Virgin)-250(Snow:)]TJ/F16 7.97 Tf 291.024 0 Td[([032])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Her)-250(waving)-250(Furrows)-250(float)-250(with)-250(bearded)-250(Corn,)]TJ 0 -13.549 Td[(And)-250(Arms)-250(and)-250(Arts)-250(her)-250(envy'd)-250(Sons)-250(adorn.)]TJ 0 -13.549 Td[(No)-250(savage)-250(Bear,)-250(with)-250(lawless)-250(Fury,)-250(roves;)]TJ 0 -13.549 Td[(No)-250(rav'nous)-250(Lion,)-250(thro')-250(her)-250(peaceful)-250(Groves;)]TJ 0 -13.55 Td[(No)-250(Poison)-250(there)-250(infects;)-250(no)-250(scaly)-250(Snake)]TJ 0 -13.549 Td[(Creeps)-250(thro')-250(the)-250(Grass,)-250(nor)-250(Frog)-250(annoys)-250(the)-250(Lake:)]TJ 0 -13.549 Td[(An)-250(Island)-250(worthy)-250(of)-250(its)-250(pious)-250(Race,)]TJ 0 -13.549 Td[(In)-250(War)-250(triumphant,)-250(and)-250(unmatch'd)-250(in)-250(Peace.)]TJ/F31 10.909 Tf 192.229 0 Td[(\035)]TJ/F16 10.909 Tf -180.273 -19.752 Td[(This)]TJ/F28 10.909 Tf 21.92 0 Td[(Donat)]TJ/F16 10.909 Tf 27.272 0 Td[(,)-235(Bishop)-231(of)]TJ/F28 10.909 Tf 50.343 0 Td[(Fesula)]TJ/F16 10.909 Tf 29.694 0 Td[(,)-235(was)-231(an)]TJ/F28 10.909 Tf 37.601 0 Td[(Irishman)]TJ/F16 10.909 Tf 39.393 0 Td[(,)-235(of)-231(the)-232(antient)]TJ -218.179 -13.549 Td[(and)-413(hospitable)-412(Family,)-453(afterwards)]TJ/F28 10.909 Tf 158.722 0 Td[(O)-412(Hogan)]TJ/F16 10.909 Tf 42.069 0 Td[(;)-494(a)-412(Family)-413(which)]TJ -200.791 -13.55 Td[(held)-259(ample)-258(and)-259(fair)-259(Possessions)-258(in)-259(the)-259(Province)-258(of)]TJ/F28 10.909 Tf 222.945 0 Td[(Munster)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-261(and)]TJ -259.305 -13.549 Td[(which,)-325(in)-310(former)-310(Times,)-325(adorned)-310(the)-310(See)-310(of)]TJ/F28 10.909 Tf 198.246 0 Td[(Killaloe)]TJ/F16 10.909 Tf 35.16 0 Td[(,)-325(with)-310(four)]TJ -233.406 -13.549 Td[(very)-330(learned)-330(and)-331(exemplary)-330(Prelates;)-370(namely,)-350(with)]TJ/F28 10.909 Tf 230.97 0 Td[(Matthew)-330(O)]TJ -230.97 -13.549 Td[(Hogan)]TJ/F16 10.909 Tf 29.695 0 Td[(,)-237(who)-233(succeeded)-233(to)-233(this)-233(Bishoprick,)-237(in)-233(the)-233(Reign)-233(of)]TJ/F28 10.909 Tf 223.673 0 Td[(Henry)]TJ/F16 10.909 Tf -253.368 -13.549 Td[(the)-392(IIId,)-427(and)-391(in)-392(the)-391(Year)-392(of)-391(our)-392(Lord)-392(1267;)-462(and)-392(who,)-427(having)]TJ 0 -13.549 Td[(much)-169(enlarged)-168(his)-169(Diocese,)-184(and)-169(done)-168(ma)-1(ny)-168(signal)-169(Acts)-168(of)-169(popular)]TJ 0 -13.55 Td[(Charity,)-317(died)-304(in)-304(the)-303(Year,)-317(1281,)-318(and)-303(was)-304(buried)-304(in)]TJ/F28 10.909 Tf 227.174 0 Td[(Limerick)]TJ/F16 10.909 Tf 38.782 0 Td[(,)-317(in)]TJ -265.956 -13.549 Td[(a)-503(Convent)-504(of)]TJ/F28 10.909 Tf 67.372 0 Td[(Dominican)]TJ/F16 10.909 Tf 53.97 0 Td[(Friars.)-1010(To)-503(this)-503(Bishop)-503(succee)-1(ded)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
137 0 obj <<
/Type /Page
/Contents 138 0 R
/Resources 136 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
139 0 obj <<
/D [137 0 R /XYZ 46.771 313.852 null]
>> endobj
136 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
142 0 obj <<
/Length 6770
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(26)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F28 10.909 Tf 93.543 518.175 Td[(Maurice)-389(O)-389(Hogan)]TJ/F16 10.909 Tf 83.014 0 Td[(,)-424(who)-388(gove)-1(rned)-388(this)-389(See)-389(with)-389(peculiar)-389(Zeal)]TJ -83.014 -13.549 Td[(and)-284(Charity,)-292(upwards)-283(of)-284(sixteen)-284(Years,)-292(and)-284(died)-283(in)-284(1298,)-292(or)-284(the)]TJ 0 -13.549 Td[(Year)-318(follow)-1(ing,)-335(and)-319(was)-318(buried)-318(in)-319(his)-318(own)-319(Church.)]TJ/F28 10.909 Tf 234.731 0 Td[(Thomas)-318(O)]TJ -234.731 -13.549 Td[(Hogan)]TJ/F16 10.909 Tf 29.695 0 Td[(,)-239(Canon)-235(of)]TJ/F28 10.909 Tf 48.046 0 Td[(Killaloe)]TJ/F16 10.909 Tf 35.16 0 Td[(,)-239(was)-235(consecrated)-236(in)-236(1343,)-239(and)-235(died)-236(on)]TJ -112.901 -13.55 Td[(the)-262(30th)-262(of)]TJ/F28 10.909 Tf 50.396 0 Td[(October)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-265(1354;)-269(five)-262(Days)-262(after)-262(which,)-265(he)-263(was)-262(buried)]TJ -86.145 -13.549 Td[(among)-325(his)-326(worthy)-325(Ancestors)-325(at)]TJ/F28 10.909 Tf 142.579 0 Td[(Nenagh)]TJ/F16 10.909 Tf 33.938 0 Td[(;)-363(as)-325(may)-326(be)-325(seen)-325(in)-326(the)]TJ -176.517 -13.549 Td[(Annals)-250(of)-250(that)-250(Place.)]TJ/F28 10.909 Tf 11.956 -15.186 Td[(Richard)-306(O)-306(Hogan)]TJ/F16 10.909 Tf 82.738 0 Td[(succeeded)-306(to)-306(the)-307(See)-306(of)]TJ/F28 10.909 Tf 108.183 0 Td[(Killaloe)]TJ/F16 10.909 Tf 35.16 0 Td[(,)-320(in)-306(1525,)]TJ -238.037 -13.549 Td[(and)-289(was)-289(in)-289(1539)-289(translated)-288(to)]TJ/F28 10.909 Tf 132.832 0 Td[(Clon)-289(Mac)-289(Nois)]TJ/F16 10.909 Tf 66.914 0 Td[(:)-328(He)-289(was)-289(a)-288(Prelate)]TJ -199.746 -13.549 Td[(of)-225(great)-451(Learning)-225(and)-225(Capacity,)-231(in)-225(all)-225(spiritual)-225(and)-226(ecclesiastical)]TJ/F16 7.97 Tf -72.756 0 Td[([033])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(Matters.)]TJ 11.955 -15.186 Td[(This)-217(antient)-218(Family)-217(is,)-224(at)-217(this)-217(Time,)-224(represented)-217(by)]TJ/F28 10.909 Tf 222.069 0 Td[(Edmund)-217(O)]TJ -234.024 -13.549 Td[(Hogan)]TJ/F16 10.909 Tf 29.695 0 Td[(,)-279(Esq;)-285(High)-273(Sheriff)-273(of)-273(the)-273(County)-273(of)]TJ/F28 10.909 Tf 161.895 0 Td[(Clare)]TJ/F16 10.909 Tf 24.851 0 Td[(,)-279(a)-273(Gentleman,)]TJ -216.441 -13.549 Td[(who,)-284(by)-277(the)-277(whole)-278(Tenor)-277(of)-277(his)-277(Life,)-284(hath)-277(proved)-277(Generosity)-278(of)]TJ 0 -13.55 Td[(Heart,)-250(Charity,)-250(and)-250(Hospitality,)-250(to)-250(be)-250(Qualities)-250(inherent.)]TJ/F28 10.909 Tf 11.955 -15.185 Td[(Dermod)-378(Mac)-378(Murchad)]TJ/F16 10.909 Tf 103.373 0 Td[(,)-410(sovereign)-378(Prince)-378(of)]TJ/F28 10.909 Tf 98.942 0 Td[(Hy-Kinsellagh)]TJ/F16 10.909 Tf 63.633 0 Td[(,)]TJ -277.903 -13.55 Td[(banished)-222(by)]TJ/F28 10.909 Tf 54.526 0 Td[(Roderick)-222(O)-221(Connor)]TJ/F16 10.909 Tf 85.431 0 Td[(,)-227(King)-222(of)]TJ/F28 10.909 Tf 40.948 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-227(for)-222(his)-222(various)]TJ -213.021 -13.549 Td[(and)-449(high)-448(State)-449(Crimes,)-498(sought)-449(Sanctuary)-449(and)-448(Redress)-449(in)-449(the)]TJ 0 -13.549 Td[(Court)-453(of)]TJ/F28 10.909 Tf 43.813 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(;)-554(where,)-503(in)-453(the)-452(Absence)-453(of)]TJ/F28 10.909 Tf 132.157 0 Td[(Henry)]TJ/F16 10.909 Tf 27.262 0 Td[(,)-503(then)-453(in)]TJ/F28 10.909 Tf -240.203 -13.549 Td[(Normandy)]TJ/F16 10.909 Tf 46.058 0 Td[(,)-523(diverse)-468(adventurous)]TJ/F28 10.909 Tf 103.473 0 Td[(Normans)]TJ/F16 10.909 Tf 40.004 0 Td[(,)]TJ/F28 10.909 Tf 8.429 0 Td[(Flemings)]TJ/F16 10.909 Tf 40.604 0 Td[(,)]TJ/F28 10.909 Tf 8.429 0 Td[(Saxons)]TJ/F16 10.909 Tf 30.906 0 Td[(,)]TJ -277.903 -13.549 Td[(and)-246(old)]TJ/F28 10.909 Tf 35.071 0 Td[(Britons)]TJ/F16 10.909 Tf 32.128 0 Td[(,)-247(\050being)-247(themselves)-246(unsettled,)-247(and)-247(unestablished\051)]TJ -67.199 -13.55 Td[(acceded)-158(to)-158(the)-158(Fate)-158(and)-159(Fortunes)-158(of)]TJ/F28 10.909 Tf 150.825 0 Td[(Dermod)]TJ/F16 10.909 Tf 35.75 0 Td[(,)-176(under)-159(the)-158(Conduct)-158(of)]TJ/F28 10.909 Tf -186.575 -13.549 Td[(Strongbow)]TJ/F16 10.909 Tf 47.28 0 Td[(,)-267(Earl)-263(of)]TJ/F28 10.909 Tf 38.647 0 Td[(Pembroke)]TJ/F16 10.909 Tf 44.225 0 Td[(;)-270(whose)-264(casual)-263(Success)-263(in)]TJ/F28 10.909 Tf 115.634 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ -277.903 -13.549 Td[(against)]TJ/F28 10.909 Tf 34.559 0 Td[(Roderick)]TJ/F16 10.909 Tf 43.036 0 Td[(\050owing)]TJ/F28 10.909 Tf 34.559 0 Td[(more)]TJ/F16 10.909 Tf 26.071 0 Td[(to)-335(the)-335(general)-335(Defection,)-356(at)-335(that)]TJ -138.225 -13.549 Td[(fatal)-332(Period,)-352(of)-331(the)]TJ/F28 10.909 Tf 87.71 0 Td[(Irish)]TJ/F16 10.909 Tf 24.226 0 Td[(Chiefs)-332(against)-331(their)-332(lawful)-332(Sovereign,)]TJ -111.936 -13.549 Td[(than)-362(to)-363(any)]TJ/F28 10.909 Tf 54.882 0 Td[(superior)-362(Valour)]TJ/F16 10.909 Tf 75.431 0 Td[(or)-362(Address)-363(of)-362(those)-362(Adventurers\051)]TJ -130.313 -13.549 Td[(induced)]TJ/F28 10.909 Tf 37.183 0 Td[(Henry)]TJ/F16 10.909 Tf 29.907 0 Td[(to)-242(a)-243(deliberate)-242(and)-243(grand)-242(Invasion)-243(of)-242(a)-243(Kingdom,)]TJ -67.09 -13.55 Td[(to)-264(which)-264(he)-264(could)-264(lay)-264(no)-265(Claim)-264(on)-264(the)-264(Score)-264(of)-264(Nature,)-268(Reason,)]TJ 0 -13.549 Td[(or)-393(Right,)-429(and)-394(whither)-393(his)-393(pretended)-394(Mission,)-429(on)-393(the)-393(Score)-394(of)]TJ 0 -13.549 Td[(collecting)-447(St.)]TJ/F28 10.909 Tf 68.885 0 Td[(Peter)]TJ/F16 10.909 Tf 23.629 0 Td[('s)-447(Dues,)-495(\050which)-447(St.)]TJ/F28 10.909 Tf 97.786 0 Td[(Peter)]TJ/F16 10.909 Tf 28.502 0 Td[(himself)-447(never)]TJ -218.802 -13.549 Td[(once)-320(thought)-319(of,)-337(or)-320(imagined\051)-319(was)-320(as)]TJ/F28 10.909 Tf 169.716 0 Td[(ridiculous)]TJ/F16 10.909 Tf 47.733 0 Td[(as)]TJ/F28 10.909 Tf 12.574 0 Td[(groundless)]TJ/F16 10.909 Tf 47.88 0 Td[(.)]TJ -277.903 -13.549 Td[(The)]TJ/F28 10.909 Tf 20.392 0 Td[(Summa)-314(Dies)]TJ/F16 10.909 Tf 55.54 0 Td[(,)-330(however,)-331(arrived:)-378(and)-314(the)-315(People)-314(of)]TJ/F28 10.909 Tf 169.854 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)]TJ -277.903 -13.55 Td[(wearied)-295(out)-294(with)-295(intestine)-295(Strife,)-306(acknowledged)]TJ/F28 10.909 Tf 214.223 0 Td[(Henry)]TJ/F16 10.909 Tf 30.476 0 Td[(for)-295(their)]TJ -244.699 -13.549 Td[(Sovereign)-321(Lord;)-356(and)-321(a)-321(grand)-320(Charter)-321(of)-321(Rights)-321(and)-321(Covenants,)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
141 0 obj <<
/Type /Page
/Contents 142 0 R
/Resources 140 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 121 0 R
>> endobj
143 0 obj <<
/D [141 0 R /XYZ 129.352 394.596 null]
>> endobj
140 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
146 0 obj <<
/Length 5512
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(27)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(mutual)-366(Protection)-365(and)-366(Allegiance,)-395(was)-365(entered)-366(into,)-395(anteriorly)]TJ 0 -13.549 Td[(to)-304(that)-304(of)]TJ/F28 10.909 Tf 43.884 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(.)-412(How)-303(we)-1(ll)-303(this)-304(Charter)-304(was)]TJ/F28 10.909 Tf 129.229 0 Td[(observed)]TJ/F16 10.909 Tf 42.991 0 Td[(on)-304(the)]TJ/F28 10.909 Tf -253.075 -13.549 Td[(protective)]TJ/F16 10.909 Tf 47.705 0 Td[(Side,)-405(the)-374(absolute)-374(Anarchy)-374(of)-748(near)-374(four)-374(Centuries,)]TJ/F16 7.97 Tf 243.319 0 Td[([034])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(from)-416(its)-416(original)-416(Date)-416(and)-416(Perfection,)-457(to)-416(the)-416(Reign)-416(of)-416(Queen)]TJ/F28 10.909 Tf 0 -13.55 Td[(Elizabeth)]TJ/F16 10.909 Tf 41.215 0 Td[(,)-214(demonstrates:)-228(A)-204(whole)-205(Nation)-1(,)-214(that)-205(sought)-205(Protection,)]TJ -41.215 -13.549 Td[(and)-248(that)]TJ/F28 10.909 Tf 37.52 0 Td[(agreed)]TJ/F16 10.909 Tf 33.291 0 Td[(for)-248(quiet,)-248(regular,)-248(and)-248(lawful)-247(Government,)-249(upon)]TJ -70.811 -13.549 Td[(rationable)-186(Terms,)-198(deprived)-186(of)-185(the)-186(Power)-185(of)-186(ordaining)-185(Laws)-186(for)-186(its)]TJ 0 -13.549 Td[(own)-291(Security)-292(and)-291(Well-being,)-302(and)-292(precluded)-291(\050all)-291(to)-292(four)-291(or)-292(five)]TJ 0 -13.549 Td[(great)-279(and)-278(favourite)-279(Families\051)-279(from)-279(the)-278(Benefits)-279(and)-279(Advantages)]TJ 0 -13.55 Td[(accruing)-225(from)-225(those)-225(of)-225(that)-225(Kingdom,)-230(to)-225(which)-225(it)-225(had)-225(voluntarily)]TJ 0 -13.549 Td[(united)-209(itself;)-222(exposed,)-217(through)-209(such)-208(a)-209(Length)-208(of)-209(Time,)-217(to)-209(arbitary)]TJ 0 -13.549 Td[(Depredations,)-236(and)-233(unpunished,)-236(unredressed,)-237(uncensured)-233(Rapine,)]TJ/F28 10.909 Tf 0 -13.549 Td[(Quis)-250(talia)-250(sando)-250(temperet)-250(a)-250(Lachrymis)]TJ/F16 10.909 Tf 169.996 0 Td[(!)]TJ -158.04 -14.368 Td[(King)]TJ/F28 10.909 Tf 27.32 0 Td[(Henry)]TJ/F16 10.909 Tf 32.763 0 Td[(called)-504(back)-505(into)]TJ/F28 10.909 Tf 80.127 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-568(to)-504(lay)-505(the)-504(Storms)]TJ -189.137 -13.549 Td[(raised)-356(by)-355(his)-356(rebellious)-355(Sons,)-382(with)-356(whom)-355(and)]TJ/F28 10.909 Tf 210.402 0 Td[(Thomas)-356(Becket)]TJ/F16 10.909 Tf 67.501 0 Td[(,)]TJ -277.903 -13.549 Td[(Archbishop)-375(of)]TJ/F28 10.909 Tf 68.174 0 Td[(Canterbury)]TJ/F16 10.909 Tf 50.302 0 Td[(,)-406(he)-376(was)-375(so)-375(constantly)-375(embroiled)-375(to)]TJ -118.476 -13.549 Td[(the)-312(End)-311(of)-312(his)-311(Life,)-327(that)-311(he)-312(could)-312(little)-311(attend)-312(to)-311(the)-312(Settlement)]TJ 0 -13.549 Td[(of)-250(the)-250(Affairs)-250(of)-250(this)-250(new)-250(acquired)-250(Sovereignty.)]TJ/F28 10.909 Tf 11.956 -14.368 Td[(Richard)]TJ/F16 10.909 Tf 39.399 0 Td[(the)-390(First,)-424(his)-390(immediate)-389(Successor,)-425(called)-389(away)-390(to)]TJ -51.355 -13.549 Td[(the)-300(Holy)-300(Wars)-300(against)-300(the)]TJ/F28 10.909 Tf 118.762 0 Td[(Saracens)]TJ/F16 10.909 Tf 39.993 0 Td[(,)-312(had)-300(as)-300(little)-300(Leisure)-300(as)-300(his)]TJ -158.755 -13.549 Td[(Predecessor)-250(to)-250(promote)-250(the)-250(Quiet,)-250(or)-250(Happiness)-250(of)]TJ/F28 10.909 Tf 222.687 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ -242.848 -14.368 Td[(From)-258(the)-258(usurped)-258(A)-1(uthority)-258(of)-258(King)]TJ/F28 10.909 Tf 161.737 0 Td[(John)]TJ/F16 10.909 Tf 21.208 0 Td[(,)-260(a)-258(continued)-259(Series)]TJ -194.901 -13.549 Td[(of)-279(Papal)-279(Animosity,)-287(Bloodshed,)-286(Calamities)-279(and)-279(Piracies,)-287(closed)]TJ 0 -13.549 Td[(at)-406(last)-407(by)-406(Poison;)-484(little)-406(beside)-407(political)-406(Disasters)-406(of)-406(all)-407(Sorts,)]TJ 0 -13.549 Td[(could)-250(be)-250(expected.)]TJ/F28 10.909 Tf 11.956 -14.368 Td[(Henry)]TJ/F16 10.909 Tf 32.086 0 Td[(the)-442(Third,)-491(through)-442(a)-442(Reign)-442(of)-443(Fifty-six)-442(Years,)-490(was)]TJ -44.042 -13.549 Td[(continually)-649(involved)-648(in)-649(Troubles)-649(and)-649(Hostilities,)-748(with)-649(his)]TJ 0 -13.549 Td[(inflexible)]TJ/F28 10.909 Tf 44.542 0 Td[(English)]TJ/F16 10.909 Tf 36.065 0 Td[(Barons.)]TJ/F28 10.909 Tf -68.651 -14.368 Td[(Edward)]TJ/F16 10.909 Tf 37.299 0 Td[(the)-252(First,)-253(a)-252(great)-252(and)-252(warlike)-252(Prince,)-253(was,)-253(throughout)]TJ -49.255 -13.549 Td[(his)-400(whole)-399(Reign,)-437(engaged)-400(in)-400(the)-399(Reduction)-400(of)-399(the)]TJ/F28 10.909 Tf 233.256 0 Td[(Welch)]TJ/F16 10.909 Tf 31.621 0 Td[(and)]TJ/F28 10.909 Tf -264.877 -13.549 Td[(Scots)]TJ/F16 10.909 Tf 23.029 0 Td[(,)-300(and)-291(so)-580(intent)-291(thereon,)-300(that)-290(he)-290(could)-291(turn)-290(his)-290(Thoughts)-291(to)]TJ/F16 7.97 Tf 267.995 0 Td[([035])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(no)-250(other)-250(Object.)]TJ/F28 10.909 Tf 11.956 -14.368 Td[(Edward)]TJ/F16 10.909 Tf 40.589 0 Td[(the)-554(Second,)-629(indeed,)-630(sent)]TJ/F28 10.909 Tf 123.377 0 Td[(Gaveston)]TJ/F16 10.909 Tf 47.243 0 Td[(hither,)-630(more)]TJ -223.165 -13.549 Td[(to)-765(screen)-764(him)-765(from)-764(the)-765(implacable)-764(Resentments)-765(of)-765(the)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
145 0 obj <<
/Type /Page
/Contents 146 0 R
/Resources 144 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
147 0 obj <<
/D [145 0 R /XYZ 233.672 491.077 null]
>> endobj
148 0 obj <<
/D [145 0 R /XYZ 107.588 107.608 null]
>> endobj
144 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
152 0 obj <<
/Length 5843
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(28)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(stubborn)]TJ/F28 10.909 Tf 43.744 0 Td[(English)]TJ/F16 10.909 Tf 38.899 0 Td[(Nobility,)-575(than)-510(to)-509(render)-510(any)-510(good)-510(Offices)]TJ -82.643 -13.549 Td[(to)-634(the)-634(Inhabitants)-633(of)-634(this)-634(Country;)-826(who,)-730(indiscriminately,)]TJ 0 -13.549 Td[(\050)]TJ/F28 10.909 Tf 3.633 0 Td[(Strongbownians)]TJ/F16 10.909 Tf 72.984 0 Td[(as)-189(well)-190(as)]TJ/F28 10.909 Tf 43.154 0 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(\051)-189(felt)-189(the)-190(Severity)-189(of)-189(that)-190(insolent)]TJ -140.378 -13.549 Td[(Favourite's)-250(Measures.)]TJ/F28 10.909 Tf 11.956 -15.186 Td[(Richard)]TJ/F16 10.909 Tf 38.289 0 Td[(the)-288(Second)-288(visited)-288(this)-288(Kingdom)-288(in)-287(Person,)-298(with)-288(the)]TJ -50.245 -13.549 Td[(good)-330(Intentions)-330(of)-330(establishing)-330(Peace,)-350(Order,)-350(and)-331(Harmony,)-350(in)]TJ 0 -13.55 Td[(a)-289(valuable)-288(but)-289(long)-288(neglected)-289(Estate:)-327(Yet)-288(his)-289(own)-288(adverse)-289(Fate,)]TJ 0 -13.549 Td[(conspiring)-399(with)-398(that)-399(of)-399(this)-399(Land,)-436(called)-398(him)-399(back,)-436(before)-399(he)]TJ 0 -13.549 Td[(could)-240(carry)-240(his)-240(favourable)-240(Resolutions)-240(into)-240(Execution,)-243(to)-240(defend)]TJ 0 -13.549 Td[(his)]TJ/F28 10.909 Tf 14.999 0 Td[(English)]TJ/F16 10.909 Tf 35.606 0 Td[(Dominions)-208(from)-208(the)-208(hostile)-208(Attacks)-208(of)]TJ/F28 10.909 Tf 168.146 0 Td[(Henry)]TJ/F16 10.909 Tf 27.262 0 Td[(,)-216(Earl)-208(of)]TJ/F28 10.909 Tf -246.013 -13.549 Td[(Hereford)]TJ/F16 10.909 Tf 39.993 0 Td[(,)-244(who,)-244(with)-242(the)-242(Duke)-243(of)]TJ/F28 10.909 Tf 105.58 0 Td[(Norfolk)]TJ/F16 10.909 Tf 33.338 0 Td[(,)-244(Son)-242(to)]TJ/F28 10.909 Tf 36.137 0 Td[(John)]TJ/F16 10.909 Tf 23.851 0 Td[(of)]TJ/F28 10.909 Tf 11.731 0 Td[(Gaunt)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ -277.903 -13.55 Td[(had)-395(some)-395(Years)-395(before)-395(been)-395(banished)-395(by)]TJ/F28 10.909 Tf 192.536 0 Td[(Richard)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-431(to)-395(prevent)]TJ -227.685 -13.549 Td[(a)-383(personal)-382(Combat:)-515(This)-382(King,)-416(worthy)-383(more)-382(propitious)-383(Stars,)]TJ 0 -13.549 Td[(long)-286(agitated)-286(and)-285(afflicted)-286(by)-286(the)-286(Turbulence)-286(and)-286(irreconcilable)]TJ 0 -13.549 Td[(Obstinacy)-473(of)-472(his)]TJ/F28 10.909 Tf 81.523 0 Td[(British)]TJ/F16 10.909 Tf 34.861 0 Td[(Subjects,)-528(perished)-473(at)-473(last)-472(under)-473(the)]TJ -116.384 -13.549 Td[(impious)-451(Hands)-451(of)-451(Sir)]TJ/F28 10.909 Tf 104.531 0 Td[(Pierce)]TJ/F16 10.909 Tf 33.392 0 Td[(of)]TJ/F28 10.909 Tf 14.008 0 Td[(Exton)]TJ/F16 10.909 Tf 25.45 0 Td[(,)-501(who,)-502(at)-451(the)-451(Head)-451(of)]TJ -177.381 -13.55 Td[(eight)-296(barbarous)-297(armed)-296(Assassins,)-308(rushed)-297(into)-296(his)-297(Chamber,)-308(and)]TJ 0 -13.549 Td[(murdered)-250(him.)]TJ 11.955 -15.185 Td[(The)-378(Reign)-378(of)]TJ/F28 10.909 Tf 64.476 0 Td[(Henry)]TJ/F16 10.909 Tf 31.382 0 Td[(the)-378(Fourth)-378(was)-377(short,)-410(tumultuous,)-410(and)]TJ -107.813 -13.55 Td[(bloody;)-394(Deluges)-345(of)-346(noble)-346(Blood)-346(having)-346(been)-345(shed)-346(by)-346(the)-346(bare)]TJ 0 -13.549 Td[(Hands)-200(of)-201(the)-200(common)-201(Executioner,)-210(to)-200(confirm)-201(a)-200(Throne)-201(acquired)]TJ 0 -13.549 Td[(by)-285(abominable)-285(Crimes,)-294(and)-285(Violence!)-356(And)-285(no)-285(sooner)-285(had)-286(these)]TJ 0 -13.549 Td[(dreadful)-237(Storms)-236(begun)-237(to)-237(abate,)-239(than)]TJ/F28 10.909 Tf 162.466 0 Td[(Henry)]TJ/F16 10.909 Tf 29.844 0 Td[(was)-237(forced)-236(to)-237(depart)]TJ -192.31 -13.549 Td[(from)-167(a)-167(Scene)-167(he)-167(had)-167(more)-167(adorned,)-183(\050for)-167(he)-167(was,)-184(without)-167(Question,)]TJ 0 -13.55 Td[(a)-319(great)-318(and)-319(valiant)-318(Man\051)-638(had)-318(not)-319(his)-318(Ambition)-319(blindly)-319(hurried)]TJ/F16 7.97 Tf -72.756 0 Td[([036])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(him)-250(beyond)-250(the)-250(Bounds)-250(of)-250(Justice)-250(and)-250(Nature.)]TJ/F28 10.909 Tf 11.955 -15.186 Td[(Henry)]TJ/F16 10.909 Tf 31.384 0 Td[(the)-378(Fifth,)-410(his)-378(Son)-377(and)-378(Successor,)-410(and)-378(truly)-378(Inheritor)]TJ -43.339 -13.549 Td[(of)-741(his)-741(Ambition)-741(and)-740(warlike)-741(Genius,)-864(imagining)-741(himself)]TJ 0 -13.549 Td[(aggrieved)-287(by)-287(the)]TJ/F28 10.909 Tf 76.641 0 Td[(Salique)-287(Law)]TJ/F16 10.909 Tf 54.652 0 Td[(,)-296(which)-287(excluded)-287(his)-286(Great)-287(Great-)]TJ -131.293 -13.549 Td[(Grandmother,)]TJ/F28 10.909 Tf 64.369 0 Td[(Isabel)]TJ/F16 10.909 Tf 26.662 0 Td[(,)-318(from)-305(the)-305(Monarchy)-305(of)]TJ/F28 10.909 Tf 107.963 0 Td[(France)]TJ/F16 10.909 Tf 31.506 0 Td[(,)-318(turned)-305(his)]TJ -230.5 -13.549 Td[(elevated)-445(Thoughts)-445(intirely)-444(to)-445(the)-445(Conquest)-445(of)-445(that)-445(Kingdom:)]TJ 0 -13.549 Td[(Wherein,)-542(by)-483(his)-484(own)-483(vast)-483(Merit)-484(in)-483(martial)-483(Affairs,)-542(and)-484(the)]TJ 0 -13.55 Td[(Co-operation)-341(of)-341(the)-340(Queen)-341(of)]TJ/F28 10.909 Tf 136.132 0 Td[(France)]TJ/F16 10.909 Tf 31.505 0 Td[(,)-363(\050Consort)-341(of)]TJ/F28 10.909 Tf 61.396 0 Td[(Charles)]TJ/F16 10.909 Tf 38.266 0 Td[(the)]TJ -267.299 -13.549 Td[(Sixth,)-310(then)-298(frantick,\051)-310(and)-297(that)-298(of)-298(the)-298(Duke)-298(of)]TJ/F28 10.909 Tf 201.597 0 Td[(Burgundy)]TJ/F16 10.909 Tf 43.025 0 Td[(,)-310(a)-298(great)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
151 0 obj <<
/Type /Page
/Contents 152 0 R
/Resources 150 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
153 0 obj <<
/D [151 0 R /XYZ 206.648 189.721 null]
>> endobj
150 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
156 0 obj <<
/Length 5703
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(29)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(and)-279(powe)-1(rful)-279(Prince,)-287(he)-279(so)-280(far)-279(succeeded,)-287(as,)-287(after)-279(his)-280(Marriage)]TJ 0 -13.549 Td[(with)]TJ/F28 10.909 Tf 22.761 0 Td[(Catharine)-308(de)-309(Valois)]TJ/F16 10.909 Tf 89.159 0 Td[(,)-323(Daughter)-308(of)]TJ/F28 10.909 Tf 62.66 0 Td[(Charles)]TJ/F16 10.909 Tf 37.914 0 Td[(the)-308(Sixth,)-323(to)-309(be)]TJ -212.494 -13.549 Td[(crowned,)-250(and)-250(acknowledged)-250(King)-250(of)]TJ/F28 10.909 Tf 163.593 0 Td[(France)]TJ/F16 10.909 Tf 31.505 0 Td[(.)]TJ -183.142 -14.531 Td[(To)-399(this)-398(great)-399(and)-399(victorious)-398(Mona)-1(rch)-398(succeeded)]TJ/F28 10.909 Tf 223.732 0 Td[(Henry)]TJ/F16 10.909 Tf 31.611 0 Td[(the)]TJ -267.299 -13.55 Td[(Sixth,)-513(who,)-513(through)-460(a)-460(long,)-513(various,)-513(and)-460(constantly)-461(clouded)]TJ 0 -13.549 Td[(Reign,)-335(seemed)-319(the)-318(very)-318(Play)-319(of)-318(Fortune!)-455(This)-318(D)-1(ay)-318(a)-318(King,)-336(the)]TJ 0 -13.549 Td[(next)-344(a)-345(Prisoner!)-533(One)-345(Day)-344(acknowleged)-345(by)-344(his)-345(Parliament,)-368(the)]TJ 0 -13.549 Td[(next)-250(attainted!)-250(One)-250(Day)-250(a)-250(Conqueror,)-250(and)-250(the)-250(next)-250(a)-250(Captive!)]TJ 11.956 -14.531 Td[(Fierce,)-313(frequent,)-313(and)-300(bloody,)-313(were)-300(the)-300(Conflicts)-300(between)-301(the)]TJ -11.956 -13.549 Td[(Houses)-387(of)]TJ/F28 10.909 Tf 49.657 0 Td[(York)]TJ/F16 10.909 Tf 24.834 0 Td[(and)]TJ/F28 10.909 Tf 19.979 0 Td[(Lancaster)]TJ/F16 10.909 Tf 43.637 0 Td[(,)-422(the)]TJ/F28 10.909 Tf 24.886 0 Td[(White)]TJ/F16 10.909 Tf 29.677 0 Td[(and)]TJ/F28 10.909 Tf 19.979 0 Td[(Red)-387(Roses)]TJ/F16 10.909 Tf 46.641 0 Td[(;)-456(the)]TJ -259.29 -13.55 Td[(former)-219(ende)-1(avouring)-219(to)-219(recover)-220(its)-219(Loss,)-226(the)-219(latter)-220(to)-219(maintain)-220(its)]TJ 0 -13.549 Td[(usurped)-194(Authority.)-232(In)-194(this)-194(dreadful)-194(Quarrel)-194(perished)-194(two)-195(hundred)]TJ 0 -13.549 Td[(thousand)-155(of)-156(private)-155(Soldiers;)-187(ten)-155(thousand)-156(of)-155(the)-155(Nobility,)-175(Gentry,)]TJ 0 -13.549 Td[(and)-328(Persons)-327(of)-328(Distinction;)-367(three)-327(Kings;)-367(and,)-347(at)-328(last,)-347(the)-328(entire)]TJ 0 -13.549 Td[(Race)-250(of)]TJ/F28 10.909 Tf 36.349 0 Td[(Plantagenet)]TJ/F16 10.909 Tf 52.724 0 Td[(.)]TJ/F28 10.909 Tf -77.117 -14.532 Td[(Edward)]TJ/F16 10.909 Tf 37.714 0 Td[(the)-290(Fourth)-290(soon)-291(fell,)-300(by)-290(his)-290(natural)-290(Intemperance,)-300(or)]TJ -49.67 -13.549 Td[(rather)-301(by)-300(the)-300(insatiable)-301(Cruelty)-300(of)]TJ/F28 10.909 Tf 152.976 0 Td[(Gloucester)]TJ/F16 10.909 Tf 47.869 0 Td[(;)-326(who)-300(had)-301(already)]TJ -200.845 -13.549 Td[(sacrificed)-283(his)-283(Brothe)-1(r)]TJ/F28 10.909 Tf 97.731 0 Td[(Clarence)]TJ/F16 10.909 Tf 39.993 0 Td[(,)-291(to)-284(pave)-283(his)-283(Way)-283(to)-284(the)-283(Throne.)]TJ -128.843 -13.549 Td[(Nor)-438(better)-438(fared)-438(it)-438(with)]TJ/F28 10.909 Tf 113.565 0 Td[(Edward)]TJ/F16 10.909 Tf 39.328 0 Td[(the)-438(Fifth,)-485(who,)-485(by)-438(all)-438(the)]TJ/F16 7.97 Tf 129.25 0 Td[([037])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Arts)-293(of)-292(Seduction)-293(and)-293(Delusion,)-303(which)-293(his)-292(unnatural)-293(Uncle)-293(and)]TJ 0 -13.55 Td[(Guardian,)]TJ/F28 10.909 Tf 49.18 0 Td[(Richard)]TJ/F16 10.909 Tf 35.149 0 Td[(,)-537(practised)-480(on)-480(the)-479(Fears)-480(and)-480(Weakness)-479(of)]TJ -84.329 -13.549 Td[(the)-370(Queen)-369(Dowager;)-429(was,)-400(with)-369(his)-370(Brother)-369(the)-370(Duke)-369(of)]TJ/F28 10.909 Tf 257.296 0 Td[(York)]TJ/F16 10.909 Tf 20.607 0 Td[(,)]TJ -277.903 -13.549 Td[(conveyed)-482(with)-481(great)-482(Pomp)-482(to)-481(the)-482(Tower;)-597(where)-482(the)-482(bloody)]TJ 0 -13.549 Td[(Tyrant,)-255(aided)-253(by)-254(the)-254(Duke)-254(of)]TJ/F28 10.909 Tf 129.015 0 Td[(Buckingham)]TJ/F16 10.909 Tf 54.534 0 Td[(,)-255(soon)-253(sacrificed)-254(those)]TJ -183.549 -13.549 Td[(young,)-210(innocent)-200(and)-200(hopeful)-200(Princes)-200(to)-200(his)-200(wicked)-201(and)-200(boundless)]TJ 0 -13.549 Td[(Ambition.)-446(But)-315(he)-315(soon)-316(after)-315(lost)-315(his)-315(own)-316(flagitious)-315(Life,)-331(and)-316(a)]TJ 0 -13.55 Td[(most)-250(cruelly-acquired)-250(Crown,)-250(on)-250(the)-250(Plains)-250(of)]TJ/F28 10.909 Tf 204.218 0 Td[(Bosworth)]TJ/F16 10.909 Tf 41.826 0 Td[(.)]TJ -234.088 -14.531 Td[(To)-211(him)-211(succeeded)]TJ/F28 10.909 Tf 80.824 0 Td[(Henry)]TJ/F16 10.909 Tf 29.563 0 Td[(the)-211(Seventh,)-219(and)-211(the)-211(first)-211(of)-211(the)-211(Race)]TJ -122.343 -13.549 Td[(of)]TJ/F28 10.909 Tf 12.594 0 Td[(Tudor)]TJ/F16 10.909 Tf 26.673 0 Td[(,)-339(a)-322(great,)-339(wise)-322(and)-321(valiant)-321(Prince,)-340(but)-321(rather)-322(too)-321(much)]TJ -39.267 -13.549 Td[(inclined)-258(to)-258(Rigour,)-260(and)-258(Avarice;)-262(Imperfections)-259(which)-258(extremely)]TJ 0 -13.549 Td[(blemished)-250(his)-250(other)-250(great)-250(Qualities.)]TJ 11.956 -14.531 Td[(In)-214(the)-215(tenth)-214(Year)-214(of)-214(this)-215(Reign,)-221(the)-214(Parliamentary)-215(Constitution)]TJ -11.956 -13.55 Td[(of)]TJ/F28 10.909 Tf 14.635 0 Td[(Ireland)]TJ/F16 10.909 Tf 37.663 0 Td[(received)-509(a)-508(deeper)-508(Stab)-509(than)-508(had)-509(ever)-508(before,)-574(or)]TJ -52.298 -13.549 Td[(since,)-230(been)-224(inflicted)-224(thereon,)-230(by)-224(a)-224(Statute)-225(Law,)-229(commonly)-225(called)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
155 0 obj <<
/Type /Page
/Contents 156 0 R
/Resources 154 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
157 0 obj <<
/D [155 0 R /XYZ 46.771 271.344 null]
>> endobj
154 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
160 0 obj <<
/Length 5720
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(30)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F28 10.909 Tf 93.543 518.175 Td[(Poynin)]TJ/F16 10.909 Tf 30.906 0 Td[('s)-272(Act;)-283(by)-272(which)-272(a)-272(new,)-278(and,)-278(till)-272(that)-272(wretched)-272(Period,)-278(an)]TJ -30.906 -13.549 Td[(unheard)-335(of)-335(Order,)-356(was)-335(added)-334(to)-335(the)-335(three)-335(established)-335(Ranks)-335(of)]TJ 0 -13.549 Td[(the)-322(State.)-465(By)-322(this)-322(Law,)-339(the)]TJ/F28 10.909 Tf 124.638 0 Td[(English)]TJ/F16 10.909 Tf 36.848 0 Td[(Privy-Council)-322(may)-322(impose)]TJ -161.486 -13.549 Td[(a)]TJ/F28 10.909 Tf 7.505 0 Td[(Negative)]TJ/F16 10.909 Tf 41.443 0 Td[(on)-244(the)]TJ/F28 10.909 Tf 29.562 0 Td[(free)]TJ/F16 10.909 Tf 19.625 0 Td[(and)]TJ/F28 10.909 Tf 18.413 0 Td[(unanimous)]TJ/F16 10.909 Tf 50.541 0 Td[(Parliamentary)-244(Ordinances)]TJ -167.089 -13.55 Td[(of)-210(the)-211(representative)-210(Body)-211(of)-210(the)-211(Kingdom)-210(of)]TJ/F28 10.909 Tf 198.332 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(;)-224(a)-210(manifest)]TJ -230.448 -13.549 Td[(Injury)-288(to)-287(the)-287(Authority)-288(and)-287(Dignity)-288(of)-287(Parliament;)-307(and)-287(an)-288(equal)]TJ 0 -13.549 Td[(Diminution)-331(of)-331(the)-331(R)-1(oyal)-331(Prerogative,)-351(that)-331(only)-331(should)-332(include,)]TJ 0 -13.549 Td[(and)-250(should)-250(alone)-250(exert,)-250(a)-250(Power)-250(so)-250(important.)]TJ 11.956 -14.777 Td[(In)-612(Times)-612(dark,)-703(tumultuated)-612(and)-612(dangerous,)-703(no)-612(Wonder)]TJ -11.956 -13.549 Td[(extraordinary)-465(Laws)-466(should)-465(pass:)]TJ/F28 10.909 Tf 155.965 0 Td[(Desperate)-465(Diseases)]TJ/F16 10.909 Tf 93.771 0 Td[(require)]TJ/F28 10.909 Tf -249.736 -13.549 Td[(desperate)-231(Remedies)]TJ/F16 10.909 Tf 86.736 0 Td[(:)-240(But)-231(when)-231(the)]TJ/F28 10.909 Tf 65.931 0 Td[(Fever)]TJ/F16 10.909 Tf 27.958 0 Td[(is)-231(removed,)-234(it)-231(certainly)]TJ -180.625 -13.549 Td[(is)-456(a)-912(horrid)-456(Management)-456(to)-456(leave)-456(the)-456(blistering)-456(Plaister)]TJ/F28 10.909 Tf 264.256 0 Td[(still)]TJ/F16 7.97 Tf -337.011 0 Td[([038])]TJ/F28 10.909 Tf 72.755 -13.55 Td[(sticking)]TJ/F16 10.909 Tf 36.666 0 Td[(to)-250(the)]TJ/F28 10.909 Tf 27.272 0 Td[(recovered)]TJ/F16 10.909 Tf 46.637 0 Td[(Patient's)-250(Back.)]TJ -98.619 -14.776 Td[(The)-323(Distempers)-324(of)-323(this)-324(Nation)-323(were)-323(heavy,)-342(complicated)-324(and)]TJ -11.956 -13.549 Td[(chronic;)-551(and)-451(finally)-451(curable,)-501(only)-450(by)-451(the)-451(salutary)-451(all-healing)]TJ 0 -13.55 Td[(Hands)-250(of)-250(our)-250(present)-250(King,)-250(and)-250(present)-250(Parliament.)]TJ 11.956 -14.776 Td[(To)]TJ/F28 10.909 Tf 18.807 0 Td[(Henry)]TJ/F16 10.909 Tf 33.948 0 Td[(the)-613(Seventh)-613(succeeded)]TJ/F28 10.909 Tf 113.367 0 Td[(Henry)]TJ/F16 10.909 Tf 33.948 0 Td[(the)-613(Eighth,)-704(as)]TJ -212.026 -13.549 Td[(consummate)-535(a)-534(Tyrant,)-606(in)-534(every)-535(Sense,)-605(as)-535(ever)-534(swayed)-535(the)]TJ/F28 10.909 Tf 0 -13.55 Td[(British)]TJ/F16 10.909 Tf 29.706 0 Td[(,)-215(or)-207(any)-207(other)-206(Sceptre;)-221(whose)-207(whole)-207(Life)-206(was)-207(so)-207(continued)]TJ -29.706 -13.549 Td[(a)-204(Scene)-205(of)-204(wanton)-204(Dissipation,)-213(Lust,)-214(Cruelty,)-213(Rapine,)-214(Bloodshed)]TJ 0 -13.549 Td[(and)-201(Sacrilege,)-211(that)-201(it)-200(must)-201(have)-201(been)-201(a)-201(peculiar)-201(Happiness,)-211(to)-201(any)]TJ 0 -13.549 Td[(Part)-348(of)-348(his)-348(Dominions,)-373(to)-348(have)-348(been)]TJ/F28 10.909 Tf 167.14 0 Td[(neglected)]TJ/F16 10.909 Tf 45.896 0 Td[(or)]TJ/F28 10.909 Tf 12.884 0 Td[(forgotten)]TJ/F16 10.909 Tf 43.801 0 Td[(by)]TJ -269.721 -13.549 Td[(him:)-266(Nor)-258(could)-257(th)-1(e)-257(two)-258(succeeding)-258(Reigns)-258(of)]TJ/F28 10.909 Tf 201.357 0 Td[(Edward)]TJ/F16 10.909 Tf 37.362 0 Td[(the)-258(Sixth,)]TJ -238.719 -13.549 Td[(and)-454(Queen)]TJ/F28 10.909 Tf 54.14 0 Td[(Mary)]TJ/F16 10.909 Tf 23.629 0 Td[(,)-505(short,)-506(various,)-505(cloudy,)-506(and)-454(vastly)-455(agitated)]TJ -77.769 -13.55 Td[(on)-434(the)-434(Score)-433(of)-434(Religion,)-480(\050which,)-480(in)-433(those)-434(two)-434(Reigns,)-480(took)]TJ 0 -13.549 Td[(Faces)-234(almost)-235(diametrically)-234(opposite,\051)-238(afford)-234(this)-234(Kingdom)-235(much)]TJ 0 -13.549 Td[(reflected)-250(Sunshine.)]TJ 11.955 -14.777 Td[(To)-553(those)-552(ensued)-553(that)-552(of)-553(Queen)]TJ/F28 10.909 Tf 155.534 0 Td[(Elizabeth)]TJ/F16 10.909 Tf 41.215 0 Td[(,)-628(a)-553(Princess)-552(of)]TJ -208.704 -13.549 Td[(powerful)-222(Abilities,)-227(who,)-228(truly)-222(intent)-221(on)-222(the)-222(Peace)-222(and)-222(Welfare)-222(of)]TJ 0 -13.549 Td[(her)-228(Subjects,)-232(caused)-228(her)-228(Laws)-227(to)-228(operate,)-232(and)-228(Justice)-228(to)-228(circulate)]TJ 0 -13.549 Td[(in)-331(this)-330(Kingdom,)-351(abandoned,)-351(as)-330(hath)-331(been)-331(observed,)-350(to)-331(a)-331(State)]TJ 0 -13.549 Td[(almost)-186(of)-187(Anarchy,)-199(thro')-186(a)-187(dismal)-186(Series)-187(of)-186(seventeen)-186(Reigns:)-219(But)]TJ 0 -13.55 Td[(the)-291(Reformation)-291(in)-290(Religion,)-301(which)-291(she)-291(established)-291(in)]TJ/F28 10.909 Tf 240.932 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)]TJ -277.903 -13.549 Td[(and)-341(introduced)-341(in)]TJ/F28 10.909 Tf 82.05 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-363(much)-341(obviated)-341(her)-341(Purposes)-341(for)-340(the)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
159 0 obj <<
/Type /Page
/Contents 160 0 R
/Resources 158 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
161 0 obj <<
/D [159 0 R /XYZ 115.611 367.907 null]
>> endobj
158 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
164 0 obj <<
/Length 6874
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(31)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(latter)-362(Kingdom:)-473(For,)-389(the)]TJ/F28 10.909 Tf 115.175 0 Td[(Irish)]TJ/F16 10.909 Tf 20.608 0 Td[(,)-389(more)-362(tenacious)-362(of)-361(their)-362(Altars,)]TJ -135.783 -13.549 Td[(than)-335(of)-335(their)-335(Fire-places,)-356(could)-335(not)-335(e)-1(asily)-335(reconcile)-335(themselves)]TJ 0 -13.549 Td[(to)-312(the)-312(Exchange)-311(of)-312(a)-312(Religion)-312(they)-311(deemed)-312(a)]TJ/F28 10.909 Tf 204.51 0 Td[(new)-312(one)]TJ/F16 10.909 Tf 36.728 0 Td[(,)-327(for)]TJ/F28 10.909 Tf 22.418 0 Td[(that)]TJ/F16 10.909 Tf -263.656 -13.549 Td[(they)-289(had)-289(been)-289(in)-289(Possession)-289(of)-289(from)-289(the)-289(fourth,)-299(to)-578(the)-289(fifteenth)]TJ/F16 7.97 Tf 291.024 0 Td[([039])]TJ/F16 10.909 Tf -291.024 -13.55 Td[(Century:)-249(Which)-248(produced)-248(a)-248(rebellious)-248(Defection,)-248(in)-248(a)-248(few)-248(of)-248(the)]TJ 0 -13.549 Td[(principal)-169(Chieftains)-168(of)-169(this)-168(Land,)-185(and)-168(gave)-169(Occasion)-169(to)-168(the)-169(greedy)]TJ 0 -13.549 Td[(Provincial)-306(Precedents,)-320(of)-306(trumping)-306(up)]TJ/F28 10.909 Tf 171.68 0 Td[(imaginary)-306(Rebellions)]TJ/F16 10.909 Tf 94.244 0 Td[(,)-320(to)]TJ -265.924 -13.549 Td[(pave)-388(the)-388(Way)-389(to)]TJ/F28 10.909 Tf 79.949 0 Td[(real)-388(Forfeitures)]TJ/F16 10.909 Tf 70.899 0 Td[(;)-457(thereby)-388(to)-389(aggrandize)-388(their)]TJ -150.848 -13.549 Td[(own)-375(Houses;)-436(what)-375(some)-374(of)-375(them)-374(effectually)-375(accomplished,)-406(to)]TJ 0 -13.55 Td[(the)-250(Ruin)-250(and)-250(Extirpation)-250(of)-250(many)-250(honest)-250(Families.)]TJ 11.956 -18.458 Td[(This)-171(great)-170(and)-171(illustrious)-171(Princess,)-186(\050whose)-171(Reign)-171(had)-171(remained)]TJ -11.956 -13.55 Td[(untarnished,)-282(had)-275(it)-276(not)-275(been)-275(for)-276(the)-275(Death)-275(of)-276(the)-275(ill-fated)-276(Queen)]TJ 0 -13.549 Td[(of)]TJ/F28 10.909 Tf 13.91 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.182 0 Td[(\051)-442(was)-442(succeeded)-442(by)]TJ/F28 10.909 Tf 95.62 0 Td[(James)]TJ/F16 10.909 Tf 32.084 0 Td[(the)-442(Sixth)-442(of)]TJ/F28 10.909 Tf 59.925 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.182 0 Td[(,)]TJ -277.903 -13.549 Td[(and)-377(the)-376(first)-377(of)-377(the)]TJ/F28 10.909 Tf 89.623 0 Td[(Stuart)]TJ/F16 10.909 Tf 30.781 0 Td[(Race)-377(that)-376(governed)]TJ/F28 10.909 Tf 91.092 0 Td[(England)]TJ/F16 10.909 Tf 36.97 0 Td[(:)-503(From)]TJ -248.466 -13.549 Td[(this)-458(Prince,)-510(descended)-459(of)]TJ/F28 10.909 Tf 121.447 0 Td[(Irish)]TJ/F16 10.909 Tf 25.605 0 Td[(Kings,)-510(the)-458(People)-459(of)]TJ/F28 10.909 Tf 101.462 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.514 -13.549 Td[(might)-384(have)-384(expected)-384(many)-384(Favours)-384(and)-384(Immunities;)-452(wherein,)]TJ 0 -13.55 Td[(however,)-220(they)-211(were)-212(miserably)-212(disappointed:)-231(Which,)-220(with)-212(a)-212(Train)]TJ 0 -13.549 Td[(of)-328(other)-327(Hardships)-328(and)-327(antiparental)-328(Severities,)-347(\050particularly)-328(his)]TJ 0 -13.549 Td[(alienating,)-204(at)]TJ/F28 10.909 Tf 57.958 0 Td[(one)-193(Stroke)]TJ/F16 10.909 Tf 45.728 0 Td[(,)-204(six)-193(of)-193(the)-192(best)-193(Counties)-193(in)-192(the)-193(Kingdom,)]TJ -103.686 -13.549 Td[(on)-327(the)]TJ/F28 10.909 Tf 31.382 0 Td[(procured)]TJ/F16 10.909 Tf 43.857 0 Td[(Testimony)-327(of)-328(an)-327(obscure)-327(wretched)-328(Individual,)]TJ -75.239 -13.549 Td[(one)]TJ/F28 10.909 Tf 19.347 0 Td[(Teige)-329(Lenane)]TJ/F16 10.909 Tf 59.95 0 Td[(,\051)-349(is)-330(too)-329(sufficient)-330(and)-329(too)-329(lasting)-330(a)-329(Proof)-330(of:)]TJ/F28 10.909 Tf -79.297 -13.55 Td[(Heu!)-229(tot)-186(Conquesta)-186(Annorum,)-199(hauserit)-186(una)-186(Dies!)]TJ/F16 10.909 Tf 214.357 0 Td[(The)-186(Possession)]TJ -214.357 -13.549 Td[(of)-364(at)-364(least)-364(twenty)-365(Centuries,)-392(of)-364(the)-365(great)-364(and)-364(good,)-392(the)-365(heroic)]TJ 0 -13.549 Td[(and)-265(hospitable)]TJ/F28 10.909 Tf 66.378 0 Td[(O)-265(Neils)]TJ/F16 10.909 Tf 33.194 0 Td[(,)]TJ/F28 10.909 Tf 5.657 0 Td[(O)-265(Donnels)]TJ/F16 10.909 Tf 47.125 0 Td[(,)]TJ/F28 10.909 Tf 5.656 0 Td[(Mac)-265(Guires)]TJ/F16 10.909 Tf 51.969 0 Td[(,)]TJ/F28 10.909 Tf 5.657 0 Td[(Mac)-265(Gennises)]TJ/F16 10.909 Tf 62.267 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(O)-429(Reillys)]TJ/F16 10.909 Tf 42.252 0 Td[(,)]TJ/F28 10.909 Tf 7.9 0 Td[(O)-429(Cahanes)]TJ/F16 10.909 Tf 50.739 0 Td[(,)-474(&c.)-788(ravished)-429(away)-430(to)-429(gratify)-429(hungry)]TJ -100.891 -13.549 Td[(Favourites,)-221(and)-213(indigent)-214(Relatives!)-238(the)-213(six)-214(Counties,)-221(however,)-221(as)]TJ 0 -13.55 Td[(the)-257(Law)-258(Term)-257(has)-257(it,)]TJ/F28 10.909 Tf 93.735 0 Td[(escheated)]TJ/F16 10.909 Tf 43.014 0 Td[(.)-272(Had)-257(the)]TJ/F28 10.909 Tf 42.813 0 Td[(Highlands)]TJ/F16 10.909 Tf 48.265 0 Td[(of)]TJ/F28 10.909 Tf 11.894 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.182 0 Td[(,)]TJ -277.903 -13.549 Td[(at)-382(that)-382(unhappy)-383(Period,)-415(been)-382(more)-382(populated,)-415(probably)-382(six)-383(or)]TJ 0 -13.549 Td[(eight)-413(Counties)]TJ/F28 10.909 Tf 69.621 0 Td[(more)]TJ/F16 10.909 Tf 26.924 0 Td[(had)-413(been)-413(procured)-413(to)]TJ/F28 10.909 Tf 101.627 0 Td[(escheat)]TJ/F16 10.909 Tf 32.716 0 Td[(,)-454(and)-413(there)]TJ -230.888 -13.549 Td[(had)-283(been)]TJ/F28 10.909 Tf 42.531 0 Td[(a)-283(braa)-284(Clutch)-283(of)-283(bonny)-284(Traitors)]TJ/F16 10.909 Tf 141.53 0 Td[(;)-300(the)]TJ/F28 10.909 Tf 22.726 0 Td[(O)-283(Connors)]TJ/F16 10.909 Tf 48.549 0 Td[(,)]TJ/F28 10.909 Tf 5.909 0 Td[(Mac)]TJ -261.245 -13.549 Td[(Carthys)]TJ/F16 10.909 Tf 34.549 0 Td[(,)]TJ/F28 10.909 Tf 6.322 0 Td[(O)-313(Briens)]TJ/F16 10.909 Tf 39.78 0 Td[(,)]TJ/F28 10.909 Tf 6.321 0 Td[(O)-314(Donnels)]TJ/F16 10.909 Tf 47.656 0 Td[(,)]TJ/F28 10.909 Tf 6.322 0 Td[(O)-313(Hares)]TJ/F16 10.909 Tf 37.958 0 Td[(,)]TJ/F28 10.909 Tf 9.915 0 Td[(O)-314(Malones)]TJ/F16 10.909 Tf 48.867 0 Td[(,)-329(&c.)-441(had)]TJ/F16 7.97 Tf 53.334 0 Td[([040])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(been)]TJ/F28 10.909 Tf 23.327 0 Td[(all)]TJ/F16 10.909 Tf 14.26 0 Td[(in)-250(the)]TJ/F28 10.909 Tf 27.278 0 Td[(same)-250(Bottom)]TJ/F16 10.909 Tf 59.395 0 Td[(with)-250(the)-250(Families)-251(above)-250(mentioned;)]TJ -124.26 -13.55 Td[(especially,)-262(as)-260(they)-260(could)-260(not,)-262(according)-260(to)]TJ/F28 10.909 Tf 186.533 0 Td[(James)]TJ/F16 10.909 Tf 30.097 0 Td[(the)-260(First's)-260(own)]TJ -216.63 -13.549 Td[(Phrase,)]TJ/F28 10.909 Tf 34.538 0 Td[(look)-250(to)-250(the)-250(Pope,)-250(and)-250(row)-250(with)-250(him)]TJ/F16 10.909 Tf 153.338 0 Td[(.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
163 0 obj <<
/Type /Page
/Contents 164 0 R
/Resources 162 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
165 0 obj <<
/D [163 0 R /XYZ 270.806 477.528 null]
>> endobj
166 0 obj <<
/D [163 0 R /XYZ 232 106.79 null]
>> endobj
162 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
169 0 obj <<
/Length 5814
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(32)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(To)]TJ/F28 10.909 Tf 14.619 0 Td[(James)]TJ/F16 10.909 Tf 29.761 0 Td[(the)-229(6th)-229(of)]TJ/F28 10.909 Tf 43.859 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.181 0 Td[(,)-233(and)-229(first)-230(of)]TJ/F28 10.909 Tf 55.186 0 Td[(England)]TJ/F16 10.909 Tf 36.97 0 Td[(,)-233(succeeded)]TJ/F28 10.909 Tf -230.532 -13.549 Td[(Charles)]TJ/F16 10.909 Tf 37.746 0 Td[(the)-293(First;)-315(who,)-303(notwithstanding)-293(his)-293(eminent)-294(Possession)]TJ -37.746 -13.549 Td[(of)-308(all)-307(the)-308(Virtues)-307(that)-308(adorn)-307(and)-308(illustrate)-307(human)-308(Nature,)-322(could)]TJ 0 -13.549 Td[(neither)-250(divert)-250(the)-250(adverse)-250(Fate)-250(of)-250(Subjects,)-250(or)-250(prevent)-250(his)-250(own.)]TJ 11.956 -15.186 Td[(The)-502(Disseisin)-502(of)-502(many)-502(honest)-502(Families)-502(in)-502(the)-502(County)-502(of)]TJ/F28 10.909 Tf -11.956 -13.549 Td[(Kilkenny)]TJ/F16 10.909 Tf 38.782 0 Td[(,)-578(and)-513(elsewhere,)-579(by)-512(the)-513(Earl)-513(of)]TJ/F28 10.909 Tf 156.909 0 Td[(Strafford)]TJ/F16 10.909 Tf 39.404 0 Td[(,)-578(on)-513(stale)]TJ -235.095 -13.55 Td[(Pretences)-359(of)]TJ/F28 10.909 Tf 58.717 0 Td[(Non)-359(Performance)-358(of)-359(Covenants)]TJ/F16 10.909 Tf 145.338 0 Td[(on)-359(their)-358(Part;)-413(his)]TJ -204.055 -13.549 Td[(Attempt)-297(of)-297(confiscating)-297(twenty-five)-296(Parts)-297(in)-297(thirty)-297(of)-297(the)-297(whole)]TJ 0 -13.549 Td[(Province)-394(of)]TJ/F28 10.909 Tf 56.46 0 Td[(Connaught)]TJ/F16 10.909 Tf 48.491 0 Td[(,)-430(on)-393(a)-394(Claim)-394(of)-394(Descent,)-429(dormant)-394(300)]TJ -104.951 -13.549 Td[(Years,)-459(and)]TJ/F28 10.909 Tf 53.476 0 Td[(originally)-417(ill)-417(founded)]TJ/F16 10.909 Tf 96.384 0 Td[(,)-459(with)-417(the)-417(arbitrary)-417(Steps)-417(by)]TJ -149.86 -13.549 Td[(him)-300(taken)-300(to)-300(the)-300(Accomplishment)-300(of)-300(this)-300(wasteful)-300(Purpos)-1(e;)-325(too)]TJ 0 -13.55 Td[(clearly)-357(proved)-357(that)-357(Nobleman)-357(a)-356(second)]TJ/F28 10.909 Tf 180.285 0 Td[(Verres)]TJ/F16 10.909 Tf 29.084 0 Td[(.)-571(The)-356(cruel)-357(and)]TJ -209.369 -13.549 Td[(intoxicated)-209(Administration)-208(of)-209(the)-209(Rump)-208(Parliament;)-223(the)-209(insolent,)]TJ 0 -13.549 Td[(licentious,)-224(and)-217(riotous)-217(Controul)-217(of)-217(the)-217(military)]TJ/F28 10.909 Tf 203.612 0 Td[(Independents)]TJ/F16 10.909 Tf 58.167 0 Td[(;)-228(the)]TJ -261.779 -13.549 Td[(abject)-206(Tyranny)-205(of)]TJ/F28 10.909 Tf 78.829 0 Td[(Oliver)-206(Cromwell)]TJ/F16 10.909 Tf 73.152 0 Td[(,)-215(who)-205(prostrated)-206(Constitution,)]TJ -151.981 -13.549 Td[(Church)-247(and)-248(State,)-248(will)-247(always)-248(be)-247(recollected)-248(with)-247(the)-248(Contempt,)]TJ 0 -13.55 Td[(Horror,)-250(and)-250(Detestation)-250(of)-250(every)-250(good)-250(Subject.)]TJ 11.955 -15.185 Td[(The)-300(Calamities)-300(from)-300(1641,)-313(to)-300(the)-300(happy)-300(Restoration)-301(of)-300(King)]TJ/F28 10.909 Tf -11.955 -13.549 Td[(Charles)]TJ/F16 10.909 Tf 36.679 0 Td[(the)-195(Second,)-207(in)-195(1660,)-206(being)-195(common)-196(to)-195(all)-195(good)-195(Subjects,)]TJ -36.679 -13.55 Td[(were)-412(the)-413(more)-412(tolerable,)]TJ/F28 10.909 Tf 116.28 0 Td[(ferre)-412(quam)-413(sortem)-412(patiuntur)-413(omnes,)]TJ -116.28 -13.549 Td[(nemo)-354(recusat)]TJ/F16 10.909 Tf 59.611 0 Td[(:)-459(But)-354(now)-354(or)-354(ne)-1(ver,)-380(surely,)-380(might)-355(his)-354(ever)-354(loyal,)]TJ -59.611 -13.549 Td[(ever)-544(faithful)]TJ/F28 10.909 Tf 62.752 0 Td[(Irish)]TJ/F16 10.909 Tf 26.538 0 Td[(Subjects)-544(have,)-617(with)-543(the)-544(most)-544(reasonable)]TJ -89.29 -13.549 Td[(Assurance,)-408(hoped,)-407(if)-376(not)-376(for)-376(publick)-376(and)-376(lasting)-376(Rewards,)-408(the)]TJ 0 -13.549 Td[(common)-389(Wages)-195(of)-194(uncommon)-195(Fidelity;)-213(at)-195(least,)-205(for)-195(a)-195(Restitution)]TJ/F16 7.97 Tf -72.756 0 Td[([041])]TJ/F16 10.909 Tf 72.756 -13.55 Td[(of)-250(what)-250(had)-250(been)-250(their)-250(own,)-250(through)-250(Ages)-250(immemorial.)]TJ 11.955 -15.185 Td[(Will)-527(late)-527(Posterity)]TJ/F28 10.909 Tf 91.189 0 Td[(believe)]TJ/F16 10.909 Tf 30.895 0 Td[(,)-596(that,)-597(in)-527(Favour)-527(of)-527(mercenary)]TJ -134.039 -13.549 Td[(Adventurers,)-399(who)-369(advanced)-369(Money)-369(to)-369(provide)-369(for)-369(a)-369(desperate)]TJ 0 -13.55 Td[(regicide)-396(Army;)-469(in)-397(Favour)-396(of)-396(the)-396(Officers)-396(of)-396(this)-396(same)-397(Army,)]TJ 0 -13.549 Td[(whom)-229(their)-230(Ringleader)]TJ/F28 10.909 Tf 102.646 0 Td[(Cromwell)]TJ/F16 10.909 Tf 43.037 0 Td[(,)-233(se)-1(ared)-229(as)-229(his)-230(Conscience)-229(was,)]TJ -145.683 -13.549 Td[(indulged)-439(with)-439(no)-439(more)-438(than)]TJ/F28 10.909 Tf 133.627 0 Td[(temporary)]TJ/F16 10.909 Tf 50.234 0 Td[(Grants)-439(of)-439(the)-439(Estates)]TJ -183.861 -13.549 Td[(belonging)-292(to)-292(the)-293(King's)-292(most)-292(faithful)-292(Subjects:)-335(Will)-292(Posterity,)-303(I)]TJ 0 -13.549 Td[(say,)-251(believe,)-250(that,)-251(in)-250(special)-251(Favour)-250(of)-251(such)-250(Men,)-251(those)]TJ/F28 10.909 Tf 242.448 0 Td[(identical)]TJ -242.448 -13.55 Td[(Subjects)]TJ/F16 10.909 Tf 36.36 0 Td[(,)-255(the)-253(bravest)-254(Advocates,)-255(as)-254(well)-253(as)-254(the)-254(most)-254(affectionate)]TJ -36.36 -13.549 Td[(undeviating)-261(Friends)-260(of)-261(the)-260(Monarchy)-261(and)-261(Constitution,)-263(were)]TJ/F28 10.909 Tf 267.899 0 Td[(for)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
168 0 obj <<
/Type /Page
/Contents 169 0 R
/Resources 167 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 149 0 R
>> endobj
170 0 obj <<
/D [168 0 R /XYZ 133.848 203.271 null]
>> endobj
167 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
173 0 obj <<
/Length 5631
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(33)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F28 10.909 Tf 46.771 518.175 Td[(ever)]TJ/F16 10.909 Tf 23.767 0 Td[(deprived)-435(of)-434(their)-435(Properties!)-804(To)-435(remunerate)-434(the)]TJ/F28 10.909 Tf 226.863 0 Td[(others)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ -277.903 -13.549 Td[(the)-251(most)]TJ/F28 10.909 Tf 40.019 0 Td[(inveterate)]TJ/F16 10.909 Tf 46.36 0 Td[(and)]TJ/F28 10.909 Tf 18.487 0 Td[(implacable)]TJ/F16 10.909 Tf 51.215 0 Td[(Enemies)-251(of)-250(EITHER!)]TJ/F28 10.909 Tf 97.277 0 Td[(Doing)]TJ -253.358 -13.549 Td[(Good)-270(for)-270(Evil)]TJ/F16 10.909 Tf 63.397 0 Td[(is)-270(a)-270(Divine)-270(Precept,)-276(and)-270(certainly)-270(includes)-270(a)-270(most)]TJ -63.397 -13.549 Td[(sublime)-279(Moral;)-293(but)]TJ/F28 10.909 Tf 87.463 0 Td[(rendering)-279(Evil)-278(for)-279(Good)]TJ/F16 10.909 Tf 106.692 0 Td[(,)-286(is)-279(such)-278(a)-279(Principle)]TJ -194.155 -13.55 Td[(as)-250(must)-250(carry)-250(Horror)-250(with)-250(it,)-250(among)-250(savage)-250(Nations!)]TJ 11.956 -14.139 Td[(The)-376(King)-377(of)]TJ/F28 10.909 Tf 60.186 0 Td[(France)]TJ/F16 10.909 Tf 31.506 0 Td[('s)-376(immediate)-377(Letter,)-408(on)-376(this)-376(Subject,)-408(to)]TJ -103.648 -13.549 Td[(King)]TJ/F28 10.909 Tf 25.172 0 Td[(Charles)]TJ/F16 10.909 Tf 37.903 0 Td[(the)-307(Second,)-322(as)-308(it)-307(reflects)-307(Honour)-308(on)-307(the)-308(Memory)]TJ -63.075 -13.55 Td[(of)-232(those)-232(illustrious)-232(Sufferers,)-236(I)-232(therefore)-232(take)-232(Leave)-232(to)-233(transcribe)]TJ 0 -13.549 Td[(in)-250(this)-250(Place.)]TJ 120.433 -17.325 Td[(*)-286(*)-287(*)-286(*)-286(*)]TJ/F28 10.909 Tf -108.477 -17.325 Td[(His)-472(Most)-472(Christian)-472(Majesty's)-471(Letter)-472(to)-472(the)-472(King)-472(of)-472(Great)]TJ -11.956 -13.549 Td[(Britain,)-250(in)-250(Favour)-250(of)-250(the)-250(Roman)-250(Catholicks)-250(of)-250(Ireland.)]TJ/F31 9.863 Tf 19.637 -25.592 Td[(\034)]TJ/F16 9.863 Tf 4.379 0 Td[(Most)-415(High,)-456(Most)-415(Excellent,)-457(and)-415(Most)-415(Potent)-415(Prince,)-456(our)]TJ -4.379 -12.822 Td[(dear)-224(and)-223(well-beloved)-224(Brother)-224(and)-224(Cousin!)-241(At)-224(the)-223(same)-224(Time)]TJ 0 -12.821 Td[(that)-453(we)-452(have)-453(been)-452(told)-453(of)-452(your)-453(Majesty's)-452(great)-453(Goodness)]TJ 0 -12.822 Td[(towards)-397(your)-398(Subjects,)-434(and)-398(the)-397(Precedent)-795(you)-398(have)-397(given)]TJ/F16 7.97 Tf 271.387 0 Td[([042])]TJ/F16 9.863 Tf -271.387 -12.822 Td[(of)-264(an)-264(extraordinary)-264(Clemency,)-267(in)-264(granting)-264(them)-264(your)-264(general)]TJ 0 -12.822 Td[(Amnesty)-247(\050some)-247(few)-247(only)-247(excepted,)-248(of)-247(those)-247(whom)-247(the)-247(Blood)]TJ 0 -12.822 Td[(of)-261(their)-262(King,)-264(and)-261(that)-262(of)-261(his)-261(People,)-265(cry)-261(aloud)-261(to)-262(Heaven)-261(for)]TJ 0 -12.821 Td[(Revenge)-306(against\051.)-417(We)-306(could)-305(not)-306(but)-306(let)-306(your)-305(Majesty)-306(know,)]TJ 0 -12.822 Td[(that)-265(we)-266(were)-265(extremely)-266(surprized)-265(to)-266(hear,)-269(that)-266(the)]TJ/F28 9.863 Tf 199.163 0 Td[(Catholicks)]TJ/F16 9.863 Tf -199.163 -12.822 Td[(of)]TJ/F28 9.863 Tf 12.493 0 Td[(Ireland)]TJ/F16 9.863 Tf 33.314 0 Td[(were)]TJ/F28 9.863 Tf 23.441 0 Td[(excluded)]TJ/F16 9.863 Tf 39.597 0 Td[(from)-434(that)-433(Act)-434(of)-434(Oblivion,)-479(and,)]TJ -108.845 -12.822 Td[(by)-402(that)-401(Means,)-440(put)-402(into)-401(the)-402(Number)-402(of)-402(the)]TJ/F28 9.863 Tf 182.044 0 Td[(most)-402(criminal)]TJ/F16 9.863 Tf 56.028 0 Td[(!)]TJ -238.072 -12.822 Td[(This)-392(News)-392(has)-392(so)-392(much)-393(the)-392(more)-392(excited)-392(our)-392(Compassion)]TJ 0 -12.822 Td[(towards)-379(them,)-412(that)-380(we)-379(have)-379(been)-380(informed,)-411(that,)-412(in)]TJ/F28 9.863 Tf 215.147 0 Td[(all)-379(the)]TJ -215.147 -12.821 Td[(Changes)]TJ/F16 9.863 Tf 37.888 0 Td[(which)-341(have)-342(hitherto)-341(happened)-342(in)-341(your)-342(Dominions,)]TJ -37.888 -12.822 Td[(and)-352(in)-351(the)-352(almost)-351(general)]TJ/F28 9.863 Tf 106.634 0 Td[(Defection)-352(of)]TJ/F16 9.863 Tf 54.395 0 Td[(your)-351(Subjects,)]TJ/F28 9.863 Tf 61.154 0 Td[(none)]TJ/F16 9.863 Tf -222.183 -12.822 Td[(stood)]TJ/F28 9.863 Tf 25.153 0 Td[(more)-383(constant)]TJ/F16 9.863 Tf 61.433 0 Td[(to)-383(their)-384(lawful)-383(Sovereign,)-417(ev)1(en)-384(in)-383(the)]TJ -86.586 -12.822 Td[(greatest)-388(Streights,)-422(than)-387(the)]TJ/F28 9.863 Tf 112.88 0 Td[(Catholicks)]TJ/F16 9.863 Tf 42.194 0 Td[(:)-525(So)-388(that,)-422(if)-388(they)-387(are)]TJ -155.074 -12.822 Td[(now)-464(branded)-465(for)-464(their)-465(Religion,)-518(it)-464(may)-465(be)-464(said,)-519(for)-464(their)]TJ 0 -12.822 Td[(Honour,)-425(that,)-426(in)-390(Times)-390(past,)-425(none)-390(could)-391(be)-390(found)]TJ/F28 9.863 Tf 209.628 0 Td[(readier)]TJ/F16 9.863 Tf 29.263 0 Td[(,)]TJ -238.891 -12.821 Td[(or)-399(more)]TJ/F28 9.863 Tf 36.364 0 Td[(cheerfully)-399(disposed)]TJ/F16 9.863 Tf 78.169 0 Td[(,)-437(than)]TJ/F28 9.863 Tf 27.698 0 Td[(they)]TJ/F16 9.863 Tf 16.432 0 Td[(,)-437(to)-399(serve)-400(and)-399(assist)]TJ -158.663 -12.822 Td[(their)-362(Prince;)-417(and)-362(that)-361(with)-362(so)-362(much)]TJ/F28 9.863 Tf 148.795 0 Td[(Ardour)]TJ/F16 9.863 Tf 28.721 0 Td[(,)-390(that)-361(their)-362(Zeal)]TJ -177.516 -12.822 Td[(then)-375(for)-376(the)-375(Royal)-376(Family)-375(was)-375(reckoned)-376(a)-375(certain)-376(Mark)-375(of)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
172 0 obj <<
/Type /Page
/Contents 173 0 R
/Resources 171 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
174 0 obj <<
/D [172 0 R /XYZ 240.673 296.935 null]
>> endobj
171 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
178 0 obj <<
/Length 6319
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(34)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 9.863 Tf 113.18 518.175 Td[(their)-269(true)-270(Religion.)-308(It)-269(is)-270(for)-269(that)-269(Reason)-270(that)-269(we)-270(now)-269(become)]TJ 0 -12.822 Td[(their)-348(Intercessors)-348(to)-348(you:)-446(For,)-373(otherwise,)-373(had)-348(they)]TJ/F28 9.863 Tf 207.516 0 Td[(failed)]TJ/F16 9.863 Tf 26.167 0 Td[(in)]TJ -233.683 -12.822 Td[(the)-376(Fidelity)-377(they)-376(owe)-376(you,)-408(instead)-376(of)-376(interceding)-377(for)-376(them,)]TJ 0 -12.821 Td[(we)-380(would)-381(join)-380(with)-381(you)-380(in)-380(using)-381(them)-380(with)-381(all)-380(imaginable)]TJ 0 -12.822 Td[(Rigour;)-210(and)-190(it)-189(would)-190(never)-190(come)-190(into)-190(our)-189(Thoughts)-190(to)-190(concern)]TJ 0 -12.822 Td[(ourselves,)-431(as)-394(we)-395(do,)-431(for)-394(the)]TJ/F28 9.863 Tf 119.38 0 Td[(Catholicks)]TJ/F16 9.863 Tf 46.086 0 Td[(of)]TJ/F28 9.863 Tf 12.108 0 Td[(Ireland)]TJ/F16 9.863 Tf 29.036 0 Td[(;)-467(though)]TJ -206.61 -12.822 Td[(we)]TJ/F28 9.863 Tf 14.311 0 Td[(were)-285(obliged)-285(to)-285(it)]TJ/F16 9.863 Tf 70.531 0 Td[(,)-294(by)-285(the)-285(last)-285(Treaty)-285(of)-285(Peace)-285(made)-285(with)]TJ -84.842 -12.822 Td[(the)-385(Marquess)-386(of)]TJ/F28 9.863 Tf 70.021 0 Td[(Ormond)]TJ/F16 9.863 Tf 32.873 0 Td[(,)-419(and)-386(which)-385(was)-386(granted)-385(them)-386(by)]TJ -102.894 -12.822 Td[(our)-310(Mediation.)-429(And,)-325(as)-310(we)-309(are)-310(well)-310(assured,)-649(that,)-325(since)-310(the)]TJ/F16 7.97 Tf -92.392 0 Td[([043])]TJ/F16 9.863 Tf 92.392 -12.821 Td[(Conclusion)-259(of)-260(that)-259(Peace,)-261(they)-260(have)-259(done)-259(Nothing)-260(which)-259(can)]TJ 0 -12.822 Td[(be)-366(called)-367(a)]TJ/F28 9.863 Tf 48.08 0 Td[(Failure)-366(of)-367(their)-366(Duty)-366(to)-366(you)]TJ/F16 9.863 Tf 115.045 0 Td[(,)-395(we)-367(find)-366(ourselves)]TJ -163.125 -12.822 Td[(under)-233(so)-234(much)-233(the)-233(greater)-233(Obligation)-234(to)-233(conjure)-233(you,)-237(to)-233(make)]TJ 0 -12.822 Td[(good)-288(that)-288(Treaty)-288(to)-288(them,)-297(in)-288(that)-288(they)]TJ/F28 9.863 Tf 152.394 0 Td[(religiously)]TJ/F16 9.863 Tf 45.034 0 Td[(observed)-288(it)]TJ -197.428 -12.822 Td[(on)]TJ/F28 9.863 Tf 11.909 0 Td[(their)]TJ/F16 9.863 Tf 20.905 0 Td[(Side,)-216(in)-207(all)-208(its)-207(Parts:)-229(And)-208(to)-207(beseech)-208(you)-207(not)-208(to)-207(suffer,)]TJ -32.814 -12.821 Td[(that)-216(either)-215(the)-216(Hatred,)-223(which)-215(an)-216(immoderate)-216(Zeal)-215(swells)-216(some)]TJ 0 -12.822 Td[(bigotted)-283(Sectaries)-283(with,)-291(nor)-284(the)-283(unlucky)-283(Spoils)-283(of)-283(these)-283(poor)]TJ 0 -12.822 Td[(People,)-248(render)-246(criminal)-247(or)-247(miserable)-247(the)]TJ/F28 9.863 Tf 160.611 0 Td[(most)-247(faithful)]TJ/F16 9.863 Tf 52.016 0 Td[(of)-247(your)]TJ -212.627 -12.822 Td[(Subjects;)-215(to)-199(whom)-198(their)-198(lawful)-199(K)1(ing,)-209(as)-198(you)-199(are,)-208(is)-198(not)]TJ/F28 9.863 Tf 212.555 0 Td[(the)-198(less)]TJ -212.555 -12.822 Td[(dear)]TJ/F16 9.863 Tf 18.306 0 Td[(,)-371(nor)]TJ/F28 9.863 Tf 22.691 0 Td[(less)-347(respected)]TJ/F16 9.863 Tf 56.275 0 Td[(,)-371(because)-347(of)-346(a)]TJ/F28 9.863 Tf 60.196 0 Td[(different)-347(Belief)]TJ/F16 9.863 Tf 64.715 0 Td[(from)]TJ/F28 9.863 Tf -222.183 -12.822 Td[(theirs)]TJ/F16 9.863 Tf 22.468 0 Td[(.)-366(We)-288(propose)-289(Nothing)-289(to)-288(ourselves)-289(in)-288(this,)-299(nor)-288(ask)-289(any)]TJ -22.468 -12.821 Td[(Thing,)-218(but)-211(what)-210(we)-211(daily)]TJ/F28 9.863 Tf 99.492 0 Td[(practise)]TJ/F16 9.863 Tf 33.855 0 Td[(\050as)-211(you)-210(may)-211(know\051)-210(towards)]TJ -133.347 -12.822 Td[(those)-252(of)-253(our)-252(Subjects)-253(who)-252(are)-253(of)-253(th)1(e)]TJ/F28 9.863 Tf 144.828 0 Td[(reformed)-252(Religion)]TJ/F16 9.863 Tf 72.073 0 Td[(.)-258(And,)]TJ -216.901 -12.822 Td[(as)-392(we)-393(have)-392(commanded)-392(the)-393(Sieur)-392(Marquis)]TJ/F28 9.863 Tf 179.381 0 Td[(de)-392(Rouvigny)]TJ/F16 9.863 Tf 54.303 0 Td[(to)]TJ -233.684 -12.822 Td[(explain)-227(our)-227(Sentiments)-228(more)-227(amply)-227(on)-227(this)-228(Subject)-227(to)-227(you,)-232(be)]TJ 0 -12.822 Td[(pleased)-345(to)-345(give)-346(him)-345(a)-345(favourable)-345(Audience:)-441(And,)-369(above)-345(all)]TJ 0 -12.822 Td[(Things,)-392(be)-364(perswaded,)-393(that,)-392(in)-364(this)-364(Affair,)-392(we)-364(have)-364(no)-364(less)]TJ 0 -12.821 Td[(your)-383(own)]TJ/F28 9.863 Tf 42.624 0 Td[(true)-383(Interest)]TJ/F16 9.863 Tf 53.759 0 Td[(in)-383(View,)-417(than)-383(what)]TJ/F28 9.863 Tf 83.111 0 Td[(natural)-383(Reason)]TJ/F16 9.863 Tf -179.494 -12.822 Td[(and)]TJ/F28 9.863 Tf 16.399 0 Td[(Equity)]TJ/F16 9.863 Tf 27.909 0 Td[(requires;)-229(and)-219(that)-218(our)-219(sincere)-219(Friendship)-218(for)-219(you)-219(is)]TJ -44.308 -12.822 Td[(the)-293(principal)-293(Motive)-293(of)-293(this)-294(Reque)1(st.)-380(Dated)-293(at)]TJ/F28 9.863 Tf 186.973 0 Td[(Paris)]TJ/F16 9.863 Tf 21.373 0 Td[(,)-304(the)-293(7th)]TJ -208.346 -12.822 Td[(of)]TJ/F28 9.863 Tf 10.682 0 Td[(September)]TJ/F16 9.863 Tf 41.631 0 Td[(,)-250(1660.)]TJ/F31 9.863 Tf 27.123 0 Td[(\035)]TJ/F16 10.909 Tf -87.117 -26.003 Td[(The)]TJ/F28 10.909 Tf 25.196 0 Td[(good)]TJ/F16 10.909 Tf 30.345 0 Td[(King)]TJ/F28 10.909 Tf 30.05 0 Td[(Charles)]TJ/F16 10.909 Tf 34.549 0 Td[(,)-881(regardless)-754(of)-755(this)-755(important)]TJ -132.095 -13.55 Td[(Solicitation,)-528(unattentive)-473(to)-472(the)-473(plain)-472(Suggestions)-473(of)]TJ/F28 10.909 Tf 243.669 0 Td[(common)]TJ -243.669 -13.549 Td[(Right)]TJ/F16 10.909 Tf 23.64 0 Td[(,)-667(and)-584(unaccountably)-584(forgetful)-584(of)-584(all)-584(their)]TJ/F28 10.909 Tf 205.762 0 Td[(past)-584(signal)]TJ -229.402 -13.549 Td[(Services)]TJ/F16 10.909 Tf 39.798 0 Td[(and)-316(inviolate)-316(Zeal;)-350(observed)-316(indeed)-316(that)-316(those)-316(faithful)]TJ/F28 10.909 Tf -39.798 -13.549 Td[(Irish)]TJ/F16 10.909 Tf 25.058 0 Td[(Subjects)-408(had)-408(no)-408(Stock;)-487(consequently,)-448(that)-408(dispossessing)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
177 0 obj <<
/Type /Page
/Contents 178 0 R
/Resources 176 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
179 0 obj <<
/D [177 0 R /XYZ 295.495 415.601 null]
>> endobj
176 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
182 0 obj <<
/Length 5732
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(35)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(the)-359(Adherents)-360(of)]TJ/F28 10.909 Tf 79.014 0 Td[(Oliver)]TJ/F16 10.909 Tf 27.873 0 Td[(,)-387(who,)-386(with)-719(the)-359(Land,)-387(had)-359(pirated)-360(the)]TJ/F16 7.97 Tf 184.137 0 Td[([044])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(national)-237(Stock,)-239(would)-237(cause)-237(much)-237(Confusion.)-246(As)-237(for)-237(the)]TJ/F28 10.909 Tf 248.207 0 Td[(former)]TJ/F16 10.909 Tf 29.695 0 Td[(,)]TJ -277.902 -13.549 Td[(he)-400(hoped)-401(some)-400(Settlement)-400(might)-401(in)-400(Time)-400(be)-401(found)-400(for)-401(them;)]TJ 0 -13.549 Td[(\050in)-309(Truth,)-323(I)-309(believe,)-324(for)-308(aught)-309(his)-309(Majesty)-309(in)-309(Reality)-308(conc)-1(erned)]TJ 0 -13.55 Td[(himself,)-528(this)-473(might)-472(have)-473(been)-472(in)]TJ/F28 10.909 Tf 157.892 0 Td[(Terra)-472(Australis)-473(Incognita)]TJ/F16 10.909 Tf 116.377 0 Td[(\051.)]TJ -274.269 -13.549 Td[(Their)-338(Want)-339(of)-338(Stock)-339(is)-338(the)-338(less)-339(to)-338(be)-339(admired)-338(at,)-361(it)-338(being)-339(well)]TJ 0 -13.549 Td[(known,)-265(that,)-265(with)-262(their)-262(Pay)-262(in)-262(foreign)-262(Service,)-265(chiefly)-262(expe)-1(nded)]TJ 0 -13.549 Td[(to)-305(contribute)-304(all)-305(in)-305(their)-305(Power)-304(to)-305(the)]TJ/F28 10.909 Tf 168.399 0 Td[(Royal)-305(Support)]TJ/F16 10.909 Tf 63.324 0 Td[(,)-318(they)-305(even)]TJ -231.723 -13.549 Td[(went)-398(so)-398(far)-398(as)-397(to)-398(sell)-398(their)-398(Plate,)-435(and)-398(valuable)-398(Moveables,)-435(to)]TJ 0 -13.55 Td[(answer)-416(the)-416(same)]TJ/F28 10.909 Tf 80.254 0 Td[(generous)-416(Purpose)]TJ/F16 10.909 Tf 80.889 0 Td[(:)-582(But,)-457(when)-416(every)-416(known)]TJ -161.143 -13.549 Td[(Acre)-462(in)-462(the)-462(Kingdom,)-516(that)-462(could)-462(be)-462(disposed)-462(of,)-515(was)-463(given)]TJ 0 -13.549 Td[(away)-220(by)-220(Wholesale)-220(to)-220(the)-220(Duke)-220(of)]TJ/F28 10.909 Tf 151.304 0 Td[(York)]TJ/F16 10.909 Tf 20.608 0 Td[(,)-226(the)-220(Heir-apparent)-220(of)-220(the)]TJ -171.912 -13.549 Td[(Crown,)-210(\050partial)-199(Distribution!\051)-233(to)-200(new-fangled)-199(Favourites,)-210(and)-200(the)]TJ 0 -13.549 Td[(staunch)-303(old)-304(Enemies)-303(of)-304(Church)-303(and)-303(Crown;)-330(it)-304(was)-303(hoped)-304(some)]TJ 0 -13.55 Td[(Lands)-285(might)-284(be)]TJ/F28 10.909 Tf 71.74 0 Td[(yet)]TJ/F16 10.909 Tf 16.023 0 Td[(discovered,)-293(to)-285(satisfy)-285(and)-285(compensate)-285(those)]TJ/F28 10.909 Tf -87.763 -13.549 Td[(Irish)]TJ/F16 10.909 Tf 24.392 0 Td[(Worthies,)-371(who)-347(had)-347(Nothing)-347(left)-347(for)-347(their)-347(Support,)-372(beside)]TJ -24.392 -13.549 Td[(an)-275(inalienable)-275(Sense)-276(of)-275(Honour)-275(and)-275(Loyalty,)-282(and)-275(a)-275(Character)-276(of)]TJ 0 -13.549 Td[(invincible)-330(Fidelity)-330(\050which)-330(all)-330(Nations)-330(admired)-330(and)-330(appla)-1(uded\051.)]TJ 0 -13.549 Td[(No)-284(such)-285(Discovery,)-293(however,)-293(was)-284(made,)-293(nor)-284(any)-285(relative)-284(to)-285(the)]TJ/F28 10.909 Tf 0 -13.55 Td[(Irish)]TJ/F16 10.909 Tf 20.607 0 Td[(,)-430(under)-395(that)-394(Administration,)-430(but)-395(what)-394(tended)-394(to)-395(convince)]TJ -20.607 -13.549 Td[(them,)-259(by)-257(the)-257(famous)-257(Act)-258(of)-257(Settlement,)]TJ/F28 10.909 Tf 174.814 0 Td[(&c.)]TJ/F16 10.909 Tf 19.019 0 Td[(of)-257(the)-257(extraordinary)]TJ -193.833 -13.549 Td[(severe)-275(Peculiarity)-276(of)-275(their)-275(Fate!)-326(Yet,)-282(ordained)-275(to)-275(shew)-276(Posterity)]TJ 0 -13.549 Td[(unprecedented)-187(Specimens)-187(of)-187(Loyalty)-186(and)-187(Zeal,)-200(they)-187(still)-187(adhered,)]TJ 0 -13.549 Td[(with)-395(inflexible)-394(Constancy,)-431(to)-395(the)-394(Fortunes)-395(of)-394(King)]TJ/F28 10.909 Tf 235.732 0 Td[(James)]TJ/F16 10.909 Tf 31.566 0 Td[(the)]TJ -267.298 -13.55 Td[(Second,)-396(not)-367(mindful)-367(of)-366(their)-367(Injuries)-367(by)]TJ/F28 10.909 Tf 184.983 0 Td[(James)]TJ/F16 10.909 Tf 31.263 0 Td[(the)-367(First,)-396(their)]TJ -216.246 -13.549 Td[(unexampled)-223(Sufferings)-223(by)-224(the)-223(excessive)-223(harsh)-223(Measures)-223(of)-224(King)]TJ/F28 10.909 Tf 0 -13.549 Td[(Charles)]TJ/F16 10.909 Tf 36.632 0 Td[(the)-191(First,)-203(his)-191(Ministers,)-203(and)-191(Deputies,)-203(or)-191(their)-191(unheard-of)]TJ -36.632 -13.549 Td[(Treatment)-324(\050I)-324(won't)-324(say)]TJ/F28 10.909 Tf 104.569 0 Td[(Wrongs)]TJ/F16 10.909 Tf 33.938 0 Td[(,)-343(it)-648(being)-324(a)-324(Maxim)-325(the)-324(King)-324(of)]TJ/F16 7.97 Tf 152.516 0 Td[([045])]TJ/F28 10.909 Tf -291.023 -13.549 Td[(England)]TJ/F16 10.909 Tf 41.832 0 Td[(can)-446(do)-445(none\051)-446(by)-446(King)]TJ/F28 10.909 Tf 107.926 0 Td[(Charles)]TJ/F16 10.909 Tf 39.411 0 Td[(II.)-446(Little)-445(Wonder,)-495(a)]TJ -189.169 -13.549 Td[(House,)-289(constantly)-281(sapping)-281(it's)-281(own)-281(best)-281(Pillars,)-289(should)-281(at)-281(length)]TJ 0 -13.55 Td[(fall.)]TJ 11.955 -18.458 Td[(King)]TJ/F28 10.909 Tf 25.713 0 Td[(James)]TJ/F16 10.909 Tf 31.158 0 Td[(the)-357(Second,)-384(constrained)-357(to)-357(abdicate)-357(the)-357(Throne)]TJ -68.826 -13.55 Td[(of)]TJ/F28 10.909 Tf 12.739 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-356(endeavoured)-335(the)-335(Preservation)-334(of)-335(this)-335(his)-335(Kingdom)]TJ -49.71 -13.549 Td[(of)]TJ/F28 10.909 Tf 15.043 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-620(where)-546(his)-546(faithful)-546(Subjects,)-620(\050a)-546(Remnant)-546(of)-546(the)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
181 0 obj <<
/Type /Page
/Contents 182 0 R
/Resources 180 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
183 0 obj <<
/D [181 0 R /XYZ 209.65 518.175 null]
>> endobj
184 0 obj <<
/D [181 0 R /XYZ 201.347 152.347 null]
>> endobj
180 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
187 0 obj <<
/Length 7855
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(36)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(various)-334(and)-334(manifold)-335(Wastes)-334(of)-334(foregoing)-334(Reigns\051)-335(considering)]TJ 0 -13.549 Td[(the)-466(thousand)-465(Disadvantages)-466(they)-465(laboured)-466(under,)-519(made)]TJ/F28 10.909 Tf 260.634 0 Td[(such)]TJ -260.634 -13.549 Td[(a)-404(Stand)]TJ/F16 10.909 Tf 39.417 0 Td[(as)-404(later)-404(Ages)-404(will)-404(lo)-1(ok)-404(up)-404(to)-404(with)-404(Astonishment!)-712(A)]TJ -39.417 -13.549 Td[(Parcel)-272(of)-271(Men,)-277(congre)-1(gated)-271(in)-272(the)-272(utmost)-271(Hurry)-272(and)-272(Confusion,)]TJ 0 -13.55 Td[(undisciplin'd,)-354(unarm'd,)-354(uncloathed,)-354(unpaid!)-500(Yet)-333(did)-333(those)-334(very)]TJ 0 -13.549 Td[(Men,)-540(animated)-482(by)-482(the)-481(Example)-482(of)-482(their)-482(heroick)-482(Leaders,)-540(\050I)]TJ 0 -13.549 Td[(mean)-322(their)-321(immediate)-322(Lords)-321(and)-322(Countrymen\051)-321(on)-322(the)-321(Plains)-322(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Aughrim)]TJ/F16 10.909 Tf 38.182 0 Td[(,)-367(convince)-344(the)-344(best)-344(veteran)-343(Army)-344(that)-344(Day)-344(in)]TJ/F28 10.909 Tf 207.605 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(,)]TJ -277.903 -13.549 Td[(superior)-278(in)-278(Numbers,)-284(excellently)-278(provided)-278(for)-278(in)-278(every)-278(Respect,)]TJ 0 -13.55 Td[(and)-286(conducted)-286(by)-286(a)-286(Prince)-286(of)-286(singular)-286(Valour)-286(and)-286(Address,)-295(that)]TJ/F28 10.909 Tf 0 -13.549 Td[(Irishmen)]TJ/F16 10.909 Tf 41.509 0 Td[(were)-250(deserving)-250(of)-250(more)-250(auspicious)-250(Stars.)]TJ -29.553 -15.186 Td[(Never)-532(was)-532(a)-532(more)-532(gallant)-532(Defence)-531(than)-532(they,)-603(after)-532(this,)]TJ -11.956 -13.549 Td[(made)-410(in)]TJ/F28 10.909 Tf 41.051 0 Td[(Limerick)]TJ/F16 10.909 Tf 38.781 0 Td[(;)-489(where,)-450(although)-409(abandoned)-410(by)-409(the)-410(Prince,)]TJ -79.832 -13.549 Td[(\050whose)-180(Cause)-180(they)-180(had)-179(so)-180(remarkably)-180(espoused\051)-180(and)-180(his)-180(auxiliary)]TJ/F28 10.909 Tf 0 -13.549 Td[(French)]TJ/F16 10.909 Tf 31.506 0 Td[(,)-360(they)-337(obtained)-338(an)-338(honourable)-338(C)]TJ/F16 7.97 Tf 144.399 0 Td[(APITULATION)]TJ/F16 10.909 Tf 56.804 0 Td[(from)-338(those)]TJ -232.709 -13.549 Td[(in)-516(Commission)-517(under)-516(King)]TJ/F28 10.909 Tf 132.839 0 Td[(William)]TJ/F16 10.909 Tf 40.181 0 Td[(the)-516(Third,)-583(whose)-516(strict)]TJ/F28 10.909 Tf -173.02 -13.55 Td[(Observance)]TJ/F16 10.909 Tf 56.688 0 Td[(thereof,)-463(to)-420(the)-421(End)-420(of)-420(his)-421(glorious)-420(Life,)-463(reflects,)]TJ -56.688 -13.549 Td[(among)-212(many)-211(o)-1(ther)-211(his)-212(great)-212(Atchievements,)-219(deserved)-212(Honour)-212(on)]TJ 0 -13.549 Td[(his)-250(Memory.)]TJ 11.955 -15.186 Td[(The)-606(distinguished)-606(Figure)-606(made)-606(by)-606(those)-606(Noblemen)-606(and)]TJ -11.955 -13.549 Td[(Gentlemen,)-374(who,)-374(regardless)-349(of)]TJ/F28 10.909 Tf 141.203 0 Td[(Property)]TJ/F16 10.909 Tf 42.592 0 Td[(or)]TJ/F28 10.909 Tf 12.897 0 Td[(Ease)]TJ/F16 10.909 Tf 21.207 0 Td[(,)-374(followed)-349(the)]TJ -217.899 -13.549 Td[(Destiny)-482(of)-482(that)-481(hard-fated)-482(Prince,)-540(King)]TJ/F28 10.909 Tf 188.796 0 Td[(James)]TJ/F16 10.909 Tf 32.517 0 Td[(the)-482(Second,)]TJ/F16 7.97 Tf -294.069 0 Td[([046])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(\050namely,)-273(the)-269(Lords)]TJ/F28 10.909 Tf 86.096 0 Td[(Mount-Cashel)]TJ/F16 10.909 Tf 62.422 0 Td[(,)]TJ/F28 10.909 Tf 5.707 0 Td[(Tyrconnel)]TJ/F16 10.909 Tf 44.236 0 Td[(,)]TJ/F28 10.909 Tf 5.707 0 Td[(Clare)]TJ/F16 10.909 Tf 27.78 0 Td[(and)]TJ/F28 10.909 Tf 18.682 0 Td[(Lucan)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ -277.903 -13.549 Td[(the)]TJ/F28 10.909 Tf 15.645 0 Td[(Dillons)]TJ/F16 10.909 Tf 32.128 0 Td[(,)]TJ/F28 10.909 Tf 5.124 0 Td[(Nugents)]TJ/F16 10.909 Tf 35.76 0 Td[(,)]TJ/F28 10.909 Tf 5.124 0 Td[(Rooths)]TJ/F16 10.909 Tf 30.305 0 Td[(,)]TJ/F28 10.909 Tf 5.124 0 Td[(Burkes)]TJ/F16 10.909 Tf 30.295 0 Td[(,)]TJ/F28 10.909 Tf 5.124 0 Td[(Lees)]TJ/F16 10.909 Tf 19.996 0 Td[(,)]TJ/F28 10.909 Tf 5.125 0 Td[(Fitz-Geralds)]TJ/F16 10.909 Tf 55.756 0 Td[(,)]TJ/F28 10.909 Tf 5.124 0 Td[(Cooks)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.55 Td[(Lacys)]TJ/F16 10.909 Tf 25.451 0 Td[(,)]TJ/F28 10.909 Tf 5.005 0 Td[(Browns)]TJ/F16 10.909 Tf 33.338 0 Td[(,)]TJ/F28 10.909 Tf 5.004 0 Td[(Wogans)]TJ/F16 10.909 Tf 35.149 0 Td[(,)]TJ/F28 10.909 Tf 5.005 0 Td[(Baggots)]TJ/F16 10.909 Tf 35.759 0 Td[(,)]TJ/F28 10.909 Tf 5.005 0 Td[(Sheridans)]TJ/F16 10.909 Tf 43.636 0 Td[(,)]TJ/F28 10.909 Tf 5.005 0 Td[(Creaghs)]TJ/F16 10.909 Tf 36.97 0 Td[(,)]TJ/F28 10.909 Tf 5.005 0 Td[(Plunkets)]TJ/F16 10.909 Tf 37.571 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Barnewals)]TJ/F16 10.909 Tf 46.669 0 Td[(,)]TJ/F28 10.909 Tf 7.022 0 Td[(Neagles)]TJ/F16 10.909 Tf 35.15 0 Td[(,)]TJ/F28 10.909 Tf 7.022 0 Td[(Lallys)]TJ/F16 10.909 Tf 26.672 0 Td[(,)]TJ/F28 10.909 Tf 7.023 0 Td[(Mac)-365(Carthys)]TJ/F16 10.909 Tf 57.915 0 Td[(,)]TJ/F28 10.909 Tf 7.023 0 Td[(Mac)-365(Donnels)]TJ/F16 10.909 Tf 59.726 0 Td[(,)]TJ/F28 10.909 Tf 7.023 0 Td[(Mac)]TJ -261.245 -13.549 Td[(Guires)]TJ/F16 10.909 Tf 29.695 0 Td[(,)]TJ/F28 10.909 Tf 6.863 0 Td[(Mac)-353(Namarras)]TJ/F16 10.909 Tf 67.486 0 Td[(,)]TJ/F28 10.909 Tf 6.863 0 Td[(Mac)-353(Mahons)]TJ/F16 10.909 Tf 58.389 0 Td[(,)]TJ/F28 10.909 Tf 6.863 0 Td[(Mac)-353(Gennis's)]TJ/F16 10.909 Tf 60.723 0 Td[(,)]TJ/F28 10.909 Tf 6.863 0 Td[(O)-353(Neils)]TJ/F16 10.909 Tf 34.158 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(O)-356(Connors)]TJ/F16 10.909 Tf 49.341 0 Td[(,)]TJ/F28 10.909 Tf 6.9 0 Td[(O)-356(Donnels)]TJ/F16 10.909 Tf 48.118 0 Td[(,)]TJ/F28 10.909 Tf 6.9 0 Td[(O)-356(Briens)]TJ/F16 10.909 Tf 40.243 0 Td[(,)]TJ/F28 10.909 Tf 6.9 0 Td[(O)-356(Dwyers)]TJ/F16 10.909 Tf 45.086 0 Td[(,)]TJ/F28 10.909 Tf 6.9 0 Td[(O)-356(Shaghnussys)]TJ/F16 10.909 Tf 67.515 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(O)-411(Mahonys)]TJ/F16 10.909 Tf 52.35 0 Td[(,)]TJ/F28 10.909 Tf 7.649 0 Td[(O)-411(Sullivans)]TJ/F16 10.909 Tf 52.361 0 Td[(,)]TJ/F28 10.909 Tf 7.649 0 Td[(O)-411(Kellys)]TJ/F16 10.909 Tf 39.629 0 Td[(,)]TJ/F28 10.909 Tf 7.649 0 Td[(O)-411(Ferralls)]TJ/F16 10.909 Tf 48.117 0 Td[(,)]TJ/F28 10.909 Tf 7.649 0 Td[(O)-411(Reillys)]TJ/F16 10.909 Tf 42.052 0 Td[(,)]TJ/F28 10.909 Tf 7.649 0 Td[(O)]TJ -272.754 -13.55 Td[(Haras)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ/F28 10.909 Tf 5.879 0 Td[(O)-281(Hogans)]TJ/F16 10.909 Tf 44.881 0 Td[(,)]TJ/F28 10.909 Tf 5.879 0 Td[(O)-281(Byrnes)]TJ/F16 10.909 Tf 41.238 0 Td[(,)]TJ/F28 10.909 Tf 5.879 0 Td[(O)-281(Daes)]TJ/F16 10.909 Tf 33.361 0 Td[(,)-289(&c.)-343(&c.)-344(&c.)-343(the)-281(military)]TJ -164.39 -13.549 Td[(Annals)-251(of)]TJ/F28 10.909 Tf 45.46 0 Td[(Germany)]TJ/F16 10.909 Tf 40.593 0 Td[(,)]TJ/F28 10.909 Tf 5.462 0 Td[(France)]TJ/F16 10.909 Tf 31.505 0 Td[(,)]TJ/F28 10.909 Tf 5.463 0 Td[(Spain)]TJ/F16 10.909 Tf 24.851 0 Td[(,)]TJ/F28 10.909 Tf 5.462 0 Td[(Flanders)]TJ/F16 10.909 Tf 39.393 0 Td[(,)]TJ/F28 10.909 Tf 5.462 0 Td[(Italy)]TJ/F16 10.909 Tf 19.996 0 Td[(,)]TJ/F28 10.909 Tf 5.463 0 Td[(Naples)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-251(and)]TJ/F28 10.909 Tf -259.415 -13.549 Td[(Russia)]TJ/F16 10.909 Tf 29.095 0 Td[(\051,)-313(must)-300(bear)-300(ample)-301(and)-300(authentic)-300(Testimony)-300(of,)-313(to)-301(future)]TJ -29.095 -13.549 Td[(Ages.)]TJ 11.956 -15.186 Td[(Those)-483(were)-483(they,)-541(of)-483(whom)-483(Dr.)]TJ/F28 10.909 Tf 157.302 0 Td[(Mac)-483(en)-483(Crow)]TJ/F16 10.909 Tf 69.743 0 Td[(gives)-483(the)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
186 0 obj <<
/Type /Page
/Contents 187 0 R
/Resources 185 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
188 0 obj <<
/D [186 0 R /XYZ 374.173 230.369 null]
>> endobj
185 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
191 0 obj <<
/Length 5966
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(37)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(following)-250(concise,)-250(but)-250(just)-250(and)-250(happy)-250(Character.)]TJ/F28 9.863 Tf 19.637 -22.779 Td[(Genus)-265(acre)-265(Bello,)-269(Studiis)-266(Genus)-265(acre)-265(Minerv\346,)-269(Devotumque)]TJ 0 -12.821 Td[(mori)-250(pro)-250(Rege,)-250(Fid\352que)-250(tuendis.)]TJ/F16 10.909 Tf -7.681 -23.506 Td[(Among)-523(those)-524(who)-523(followed)-523(the)-524(Fortunes)-523(of)-523(King)]TJ/F28 10.909 Tf 241.412 0 Td[(James)]TJ/F16 10.909 Tf -253.368 -13.549 Td[(the)-473(Second,)-529(were)-473(Sir)]TJ/F28 10.909 Tf 103.356 0 Td[(Richard)-473(Neagle)]TJ/F16 10.909 Tf 71.216 0 Td[(,)-529(his)-473(Attorney-General,)]TJ -174.572 -13.55 Td[(and)-613(Dr.)]TJ/F28 10.909 Tf 51.288 0 Td[(Moore)]TJ/F16 10.909 Tf 29.084 0 Td[(,)-704(Provost)-613(of)]TJ/F28 10.909 Tf 66.208 0 Td[(Trinity-college)]TJ/F16 10.909 Tf 64.843 0 Td[(,)-704(near)]TJ/F28 10.909 Tf 35.869 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.305 0 Td[(;)]TJ -277.597 -13.549 Td[(two)-548(Gentlemen)-548(very)-549(justly)-548(distinguished)-548(in)-548(their)-549(respective)]TJ 0 -13.549 Td[(Spheres;)-501(the)-418(former,)-459(a)-418(Gentleman)-417(of)-418(unshaken)-417(Integrity,)-460(and)]TJ 0 -13.549 Td[(great)-491(Capacity)-491(in)-491(the)-491(Profession)-491(of)-490(the)-491(Laws;)-612(the)-490(latter,)-552(of)]TJ 0 -13.549 Td[(exemplary)-197(Piety,)-207(universal)-196(Learning,)-208(and)-196(fine)-197(Accomplishments.)]TJ/F28 10.909 Tf 0 -13.55 Td[(Louis)]TJ/F16 10.909 Tf 29.765 0 Td[(the)-506(Fourteenth,)-569(then)-505(King)-506(of)]TJ/F28 10.909 Tf 141.286 0 Td[(France)]TJ/F16 10.909 Tf 31.505 0 Td[(,)-569(protected)-506(those)]TJ -202.556 -13.549 Td[(worthy)-266(deserving)-266(Men,)-270(with)-266(singular)-266(Tenderness)-267(and)-266(Attention;)]TJ 0 -13.549 Td[(and)-455(was)-454(instructed)-455(and)-454(guided)-455(solely)-454(by)-455(Dr.)]TJ/F28 10.909 Tf 216.526 0 Td[(Moore)]TJ/F16 10.909 Tf 29.084 0 Td[(,)-506(in)-454(the)]TJ -245.61 -13.549 Td[(restoring,)-408(establishing,)-408(and)-376(modelling)-377(the)-376(University)-376(of)]TJ/F28 10.909 Tf 254.263 0 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(,)]TJ -277.903 -13.549 Td[(at)-288(that)-289(gloomy)-288(Period!)-365(quite)-288(buried)-288(in)-289(perplexed,)-298(unintelligible,)]TJ 0 -13.55 Td[(peripatetic)-647(Philosophy,)-342(and)-323(disfigured)-324(with)-323(romantic)-324(Legends,)]TJ/F16 7.97 Tf 291.024 0 Td[([047])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(and)-395(Gothic)-395(Jingle!)-684(But,)-431(at)-395(the)-395(Doctor's)-395(Appearance,)-431(Entities,)]TJ 0 -13.549 Td[(Quiddities,)-192(Sympathies,)-192(Antipathies,)-193(occult)-177(Qualities,)-193(substantial)]TJ 0 -13.549 Td[(Forms,)-412(metaphysical)-380(Degrees,)-412(Categories,)-412(and)-380(all)-380(this)-380(unideal)]TJ 0 -13.549 Td[(wordy)-320(Stu)-1(ff,)-338(vanished;)-355(and)-321(were)-320(succeeded)-321(by)-320(a)-321(clear,)-338(concise)]TJ 0 -13.55 Td[(Method)-523(of)-523(Reasoning,)-592(and)-523(sound,)-591(useful,)-591(and)-524(experimental)]TJ 0 -13.549 Td[(Philosophy.)]TJ/F28 10.909 Tf 54.663 0 Td[(Greek)]TJ/F16 10.909 Tf 26.651 0 Td[(,)]TJ/F28 10.909 Tf 5.499 0 Td[(Hebrew)]TJ/F16 10.909 Tf 34.538 0 Td[(,)]TJ/F28 10.909 Tf 5.499 0 Td[(Syriac)]TJ/F16 10.909 Tf 27.873 0 Td[(,)]TJ/F28 10.909 Tf 5.499 0 Td[(Chaldaic)]TJ/F16 10.909 Tf 40.004 0 Td[(,)-254(and)]TJ/F28 10.909 Tf 24.014 0 Td[(Arabic)]TJ/F16 10.909 Tf 29.695 0 Td[(,)-254(were)]TJ -253.935 -13.549 Td[(Languages)]TJ/F28 10.909 Tf 49.543 0 Td[(untaught)]TJ/F16 10.909 Tf 38.792 0 Td[(,)]TJ/F28 10.909 Tf 5.1 0 Td[(unknown)]TJ/F16 10.909 Tf 39.393 0 Td[(,)-218(in)-209(the)-209(University)-210(of)]TJ/F28 10.909 Tf 91.2 0 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(,)-218(before)]TJ -247.668 -13.549 Td[(Dr.)]TJ/F28 10.909 Tf 16.774 0 Td[(Moore)]TJ/F16 10.909 Tf 29.083 0 Td[(;)-215(for)-198(whom)-198(particularly,)]TJ/F28 10.909 Tf 104.976 0 Td[(Louis)]TJ/F16 10.909 Tf 26.407 0 Td[(the)-198(Fourteenth)-197(founded,)]TJ -177.24 -13.549 Td[(established,)-227(and)-222(endowed)-221(the)-222(Royal)-221(College,)-228(now)-221(called)]TJ/F28 10.909 Tf 246.692 0 Td[(College)]TJ -246.692 -13.55 Td[(du)-507(Cambray)]TJ/F16 10.909 Tf 57.043 0 Td[(:)-764(And)-507(how)-507(well)-507(our)-507(Doctor)-507(succeeded)-507(therein,)]TJ -57.043 -13.549 Td[(may)-340(be)-339(inferred)-340(from)-339(the)-340(Character)-339(and)-340(Writings)-339(of)-340(his)-340(Pupils)]TJ 0 -13.549 Td[(and)-374(Hearers,)]TJ/F28 10.909 Tf 60.883 0 Td[(Boileau)]TJ/F16 10.909 Tf 33.938 0 Td[(,)]TJ/F28 10.909 Tf 7.139 0 Td[(Fontinelle)]TJ/F16 10.909 Tf 44.847 0 Td[(,)]TJ/F28 10.909 Tf 7.139 0 Td[(Por\351c)]TJ/F16 10.909 Tf 26.05 0 Td[(,)]TJ/F28 10.909 Tf 7.139 0 Td[(Montesquieu)]TJ/F16 10.909 Tf 56.356 0 Td[(,)]TJ/F28 10.909 Tf 7.139 0 Td[(Fleuri)]TJ/F16 10.909 Tf 27.273 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Lauguet)]TJ/F16 10.909 Tf 35.76 0 Td[(,)-198(with)-184(many)-184(others,)-198(and)]TJ/F28 10.909 Tf 101.847 0 Td[(Rollin)]TJ/F16 10.909 Tf 26.673 0 Td[(,)-197(his)-185(peculiar)-184(Favourite)-184(and)]TJ -164.28 -13.549 Td[(immediate)-249(Successor,)]TJ/F28 10.909 Tf 97.846 0 Td[(all)]TJ/F16 10.909 Tf 14.236 0 Td[(great)-249(Genius's,)-249(applauded)-249(Writers,)-249(and)]TJ -112.082 -13.549 Td[(celebrated)-248(Wits.)-249(So)-248(that,)-248(as)]TJ/F28 10.909 Tf 121.388 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.818 0 Td[(had)-248(the)-247(Honour)-248(of)-248(founding,)]TJ -156.206 -13.55 Td[(it)-288(had)-289(also)-288(that)-289(of)-288(restoring)-289(and)-288(reviving)-288(the)-289(great)-288(University)-289(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(,)-250(in)-250(the)-250(Persons)-250(of)-250(two)-250(of)-250(its)-250(learned)-250(Natives.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
190 0 obj <<
/Type /Page
/Contents 191 0 R
/Resources 189 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
192 0 obj <<
/D [190 0 R /XYZ 96.347 296.478 null]
>> endobj
189 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
195 0 obj <<
/Length 5090
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(38)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(The)-255(Reign)-255(of)-255(her)-255(Majesty)-255(Queen)]TJ/F28 10.909 Tf 146.353 0 Td[(Anne)]TJ/F16 10.909 Tf 25.199 0 Td[(\050glorious)-255(to)-255(her)-255(Arms,)]TJ -183.508 -13.549 Td[(under)-482(the)-481(Conduct)-482(of)]TJ/F28 10.909 Tf 105.246 0 Td[(John)]TJ/F16 10.909 Tf 21.207 0 Td[(,)-540(Duke)-481(of)]TJ/F28 10.909 Tf 51.837 0 Td[(Marlborough)]TJ/F16 10.909 Tf 58.789 0 Td[(,)-540(and)-481(her)]TJ -237.079 -13.549 Td[(other)-281(Generals,)-288(and)-281(justly)-280(distinguished)-281(by)-281(the)-280(Number)-281(of)-281(great)]TJ 0 -13.549 Td[(Genius's)-453(and)-453(Wits,)-504(who)-454(enlightened)-453(that)-453(Period\051)-453(was)-453(in)-454(this)]TJ 0 -13.55 Td[(Kingdom)-216(chiefly)-215(employed)-216(in)]TJ/F28 10.909 Tf 132.433 0 Td[(additional)]TJ/F16 10.909 Tf 47.222 0 Td[(Acts)-216(against)-215(the)-216(further)]TJ -179.655 -13.549 Td[(Growth)-406(of)-406(Popery)-1(:)-562(And)-406(many)-406(there)-407(were,)-445(who)-406(deemed)-406(it)-407(an)]TJ 0 -13.549 Td[(unparallel'd)-252(Severity)-252(in)-252(her)-252(Majesty,)-252(to)-252(give)-252(her)-252(Royal)-252(Assent)-252(to)]TJ 0 -13.549 Td[(them)-209(particular)-209(Laws;)-223(by)-209(which)-209(the)]TJ/F28 10.909 Tf 155.013 0 Td[(Roman)-209(Catholicks)]TJ/F16 10.909 Tf 82.134 0 Td[(of)]TJ/F28 10.909 Tf 11.367 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.514 -13.549 Td[(\050already)-470(ruined)-470(by)-470(their)-469(inimitable)-470(Allegiance)-470(to)-470(her)-940(Royal)]TJ/F16 7.97 Tf -72.755 0 Td[([048])]TJ/F16 10.909 Tf 72.755 -13.55 Td[(Father,)-381(Uncle,)-382(and)-355(Grandfather\051)-355(were)]TJ/F28 10.909 Tf 172.606 0 Td[(precluded)]TJ/F16 10.909 Tf 47.794 0 Td[(from)-355(availing)]TJ -220.4 -13.549 Td[(themselves,)-351(by)-330(a)-331(tolerable)-330(easy)-331(Lease,)-350(of)-331(any)-330(Part)-331(or)-330(Parcel)-331(of)]TJ 0 -13.549 Td[(these)-220(Estates,)-226(forfeited)-220(by)-219(their)-220(Ancestors,)-226(thro')-220(their)-220(unremitting)]TJ 0 -13.549 Td[(Endeavours,)-213(to)-205(support)-204(and)-204(maintain)-204(that)-205(Stem,)-213(of)-204(which)-204(she)-205(was)]TJ 0 -13.549 Td[(herself)-250(an)-250(immediate)-250(Branch.)]TJ 11.956 -13.575 Td[(So)-406(late)-407(even)-406(as)-406(this)-407(Reign,)-445(the)-407(whole)-406(Kingdom)-406(of)]TJ/F28 10.909 Tf 236.558 0 Td[(Ireland)]TJ/F16 10.909 Tf -248.514 -13.549 Td[(was)-297(a)-297(desolate)-297(diffusive)-297(Scene)-297(of)-297(total)-297(Decay!)-391(covered)-298(with)-297(all)]TJ 0 -13.549 Td[(the)-270(ghastly)-270(Symptoms)-270(of)-270(the)-269(Consumption)-270(of)-270(Centuries!)-310(But,)-275(at)]TJ 0 -13.549 Td[(length,)-362(on)-340(the)-340(happy)-340(Accession)-340(of)-340(his)-340(late)-340(Majesty)-340(of)-340(glorious)]TJ 0 -13.55 Td[(Memory,)-541(the)-483(blissful)-483(Morning)-483(of)-483(Peace)-484(and)-483(Concord)-483(began)]TJ 0 -13.549 Td[(its)-377(auspicious)-377(Dawn!)-630(Yet,)-409(as)-377(Time,)-408(publick)-377(Spirit,)-409(Patriotism)]TJ 0 -13.549 Td[(\050in)-389(its)-389(highest)-389(Conception\051)-388(and)-389(unwearied)-389(Diligence,)-424(were)-389(all)]TJ 0 -13.549 Td[(collectively)-256(essential)-256(to)-256(the)-256(giving)-257(Life,)-257(Vigour,)-258(and)-256(Activity,)-258(to)]TJ 0 -13.549 Td[(national)-194(Industry)-194(and)-193(Improveme)-1(nt,)-205(so)-193(very)-194(long)-194(in)-194(a)-194(melancholy)]TJ 0 -13.55 Td[(State)-342(of)-343(Languor)-342(and)-342(Oppression:)-435(Not)-343(before)-342(the)-342(present)-343(truly)]TJ 0 -13.549 Td[(glorious)-458(Reign,)-510(did)]TJ/F28 10.909 Tf 94.049 0 Td[(Hibernia)]TJ/F16 10.909 Tf 44.39 0 Td[(tune)-458(her)-458(old)-458(Harp,)-510(now)-458(newly)]TJ -138.439 -13.549 Td[(strung)-341(to)-341(universal)-341(Harmony)-341(and)-341(Elegance,)-364(and)-341(rear)-341(he)-1(r)-341(awful)]TJ 0 -13.549 Td[(Head)-341(from)-340(the)-341(stupid)-341(dismal)-340(Dozes)-341(of)-340(Ages;)-386(where)-341(comes)-341(the)]TJ 0 -13.549 Td[(literal)-250(Application)-250(of)-250(my)-250(third)-250(Motto,)-250(R)]TJ/F16 7.97 Tf 173.64 0 Td[(ENASCIMUR)]TJ/F16 10.909 Tf 46.936 0 Td[(.)]TJ/F28 9.863 Tf -200.939 -22.766 Td[(Hinc)-399(prisc\346)-400(redeunt)-399(Artes,)-437(felicibus)-399(inde)-400(Ingeniis)-399(aperitur)]TJ 0 -12.822 Td[(iter,)-250(despectaque)-250(Mus\346)-250(Colla)-250(levant.)]TJ/F39 9.863 Tf 146.839 0 Td[(\024\024)]TJ/F16 10.909 Tf -154.52 -23.493 Td[(Having)-559(travelled)-559(through)-560(a)-559(tedious)-559(Night,)-636(thick-set)-560(with)]TJ -11.956 -13.55 Td[(Horrors)-282(of)-283(various)-282(Hues!)-347(and)-282(thus)-282(come)-282(to)-283(the)-282(End)-282(of)-282(a)-283(painful)]TJ 0 -13.549 Td[(Journey;)-447(give)-381(me)-381(Leave,)-414(kind)-381(Reader,)-414(to)-381(indulge)-381(awhile)-382(with)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
194 0 obj <<
/Type /Page
/Contents 195 0 R
/Resources 193 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 175 0 R
>> endobj
196 0 obj <<
/D [194 0 R /XYZ 342.986 409.782 null]
>> endobj
193 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F39 135 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
199 0 obj <<
/Length 5124
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(39)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(admiring)-308(the)-308(beautiful)-308(Variety)-308(of)-308(Objects,)-323(which)-308(now)-308(surround)]TJ 0 -13.549 Td[(me,)-260(to)-258(the)-258(serene)-258(Delight)-515(of)-258(the)-258(Mind,)-260(and)-258(refined)-258(Gratification)]TJ/F16 7.97 Tf 291.024 0 Td[([049])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(of)-291(Sense;)-310(before)-291(I)-290(attempt)-291(that)-290(Display)-291(of)-291(them)-290(to)-291(which)-290(I)-291(have)]TJ 0 -13.549 Td[(no)-250(Occasion)-250(of)-250(professing)-250(my)-250(Inequality.)]TJ 11.956 -14.532 Td[(In)-214(this)-214(Reign,)-221(and)-214(not)-214(before,)-221(our)-214(Linen)-214(Manufacture,)-221(in)-214(many)]TJ -11.956 -13.549 Td[(Respects)-414(one)-415(of)-414(the)-414(most)-414(profitable)-415(Branches)-414(of)-414(our)-415(national)]TJ 0 -13.549 Td[(Commerce,)-241(received)-239(all)-239(the)-238(Encouragement)-239(from)-239(Royal)-239(Bounty,)]TJ 0 -13.549 Td[(and)-250(Parliamentary)-250(Sanction,)-250(that)-250(could)-250(be)-250(reasonably)-250(hoped)-250(for.)]TJ 11.956 -14.531 Td[(Persons)-497(of)-496(the)-497(highest)-497(Rank,)-558(Dignity,)-559(and)-496(Fortune,)-559(were)]TJ -11.956 -13.549 Td[(appointed)]TJ/F28 10.909 Tf 48.187 0 Td[(Trustees)]TJ/F16 10.909 Tf 42.133 0 Td[(for)-473(the)-473(Propagation,)-529(Encouragement,)-529(and)]TJ -90.32 -13.55 Td[(Diffusion,)-487(of)-440(this)-440(beneficial)-440(Trade,)-487(throughout)-440(the)-440(respective)]TJ 0 -13.549 Td[(Provinces.)]TJ 11.956 -14.531 Td[(The)]TJ/F28 10.909 Tf 19.98 0 Td[(Linen-Hall)]TJ/F16 10.909 Tf 50.896 0 Td[(was)-276(erected)-277(in)]TJ/F28 10.909 Tf 65.994 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-283(under)-277(as)-276(just)-277(and)-276(nice)]TJ -179.131 -13.549 Td[(Regulations)-250(as)-250(any)-250(commercial)-250(House)-250(in)]TJ/F28 10.909 Tf 181.189 0 Td[(Europe)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ -201.35 -14.531 Td[(The)-313(North)-314(of)]TJ/F28 10.909 Tf 61.76 0 Td[(Ireland)]TJ/F16 10.909 Tf 35.536 0 Td[(began)-313(to)-314(wear)-313(an)-314(Aspect)-313(entirely)-314(new;)]TJ -109.251 -13.549 Td[(and,)-171(from)-152(being)-151(\050through)-152(Want)-151(of)-152(Industry,)-171(Business,)-171(and)-152(Tillage\051)]TJ 0 -13.55 Td[(the)-247(almost)-247(exhausted)-247(Nursery)-247(of)-248(our)]TJ/F28 10.909 Tf 160.992 0 Td[(American)]TJ/F16 10.909 Tf 45.11 0 Td[(Plantations,)-248(soon)]TJ -206.102 -13.549 Td[(became)-261(a)-260(populous)-261(Scene)-260(of)-261(Improvement,)-263(Traffic,)-263(Wealth,)-264(and)]TJ 0 -13.549 Td[(Plenty;)-316(and)-294(is,)-304(at)-294(this)-294(Day,)-305(a)-294(well-planted)-294(District,)-304(consid)-1(erable)]TJ 0 -13.549 Td[(for)-250(Numbers)-250(of)-250(well-affected,)-250(useful,)-250(and)-250(industrious)-250(Subjects.)]TJ 11.955 -14.531 Td[(Now)-421(arose,)-465(now)-421(shone)-422(forth,)-464(the)-422(ever)-421(Honourable)-422(D)]TJ/F16 7.97 Tf 244.326 0 Td[(UBLIN)]TJ/F16 10.909 Tf -256.281 -13.55 Td[(S)]TJ/F16 7.97 Tf 6.065 0 Td[(OCIETY)]TJ/F16 10.909 Tf 29.218 0 Td[(;)-553(a)-554(Society)-553(equalled)-553(by)-554(none.)-1160(It)-553(is)-554(true,)-629(we)-553(read)]TJ -35.283 -13.549 Td[(of)-450(Patriarchs,)-500(Philosophers,)-500(Warriors,)-500(Orators,)-500(and)-450(Poets;)-551(of)]TJ 0 -13.549 Td[(Senates,)-247(Parliaments,)-248(Councils,)]TJ/F28 10.909 Tf 139.909 0 Td[(&c.)]TJ/F16 10.909 Tf 18.774 0 Td[(but)-247(we)-246(no)-247(where,)-247(abstracted)]TJ -158.683 -13.549 Td[(from)-311(our)-310(own)-311(Country,)-326(meet)-311(a)-311(Set)-310(of)-311(pious)-311(Patriots,)-326(from)-311(their)]TJ/F28 10.909 Tf 0 -13.549 Td[(private)-177(Funds)]TJ/F16 10.909 Tf 60.104 0 Td[(,)-191(adorning)-177(their)-176(Country)-177(in)-177(general,)-191(in)-176(every)-177(Degree)]TJ -60.104 -13.55 Td[(and)-380(Branch)-381(of)-380(Industry,)-413(and)-380(Improvement;)-445(and,)-413(inspired)-381(with)]TJ 0 -13.549 Td[(Sentiments)-266(truly)-266(public)-266(and)-266(social,)-270(munificently)-266(rewarding)-266(their)]TJ 3.663 -13.549 Td[(Countrymen,)-357(of)-336(whatsoever)-336(Denomination,)-357(without)-336(Favour)-336(or)]TJ/F16 7.97 Tf 287.36 0 Td[([050])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(Distinction;)-399(for)-350(meliorating)-350(their)-349(proper)-350(Estates,)-374(or)-350(Farms;)-400(for)]TJ 0 -13.549 Td[(excelling)-221(in)-222(any)-221(Production)-222(of)-221(Nature,)-227(or)-222(Art;)-231(for)-221(any)-222(Discovery,)]TJ 0 -13.549 Td[(or)-265(Invention,)-268(useful)-265(to)-265(Mankind:)-280(A)-264(Set)-265(of)]TJ/F28 10.909 Tf 185.422 0 Td[(truly)-265(honourable)]TJ/F16 10.909 Tf 73.798 0 Td[(,)-269(and)]TJ/F28 10.909 Tf -259.22 -13.55 Td[(generous)]TJ/F16 10.909 Tf 43.989 0 Td[(Personages,)-396(instructing)-366(their)-366(Countrymen)-367(with)-366(clear,)]TJ -43.989 -13.549 Td[(yet)-270(philosophical)-270(Precepts,)-275(encouraging)-270(them)-270(by)-270(their)-270(Example,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
198 0 obj <<
/Type /Page
/Contents 199 0 R
/Resources 197 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
200 0 obj <<
/D [198 0 R /XYZ 159.323 504.626 null]
>> endobj
201 0 obj <<
/D [198 0 R /XYZ 46.771 133.888 null]
>> endobj
197 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
205 0 obj <<
/Length 5345
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(40)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(and)-270(rewarding)-269(them)-270(from)-269(their)-270(inexhaustible)-269(Bounty!)]TJ/F28 10.909 Tf 237.949 0 Td[(Such)]TJ/F16 10.909 Tf 21.207 0 Td[(,)-274(and)]TJ/F28 10.909 Tf -259.156 -13.549 Td[(such)-286(unrivalled)]TJ/F16 10.909 Tf 67.961 0 Td[(,)-295(is)-285(the)-286(I)]TJ/F16 7.97 Tf 36.414 0 Td[(LLUSTRIOUS)]TJ/F16 10.909 Tf 51.822 0 Td[(D)]TJ/F16 7.97 Tf 7.876 0 Td[(UBLIN)]TJ/F16 10.909 Tf 27.465 0 Td[(S)]TJ/F16 7.97 Tf 6.066 0 Td[(OCIETY)]TJ/F16 10.909 Tf 29.218 0 Td[(!)-286(What)-285(Pity,)]TJ -226.822 -13.549 Td[(the)-274(ample)-274(Distributions,)-280(and)-274(instructive)-274(Writings)-274(of)-275(this)-274(learned)]TJ 0 -13.549 Td[(and)-502(munificent)-502(Body,)-565(are)-502(not)-502(regularly)-502(published,)-566(in)]TJ/F28 10.909 Tf 254.863 0 Td[(Latin)]TJ/F16 10.909 Tf 23.04 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.55 Td[(English)]TJ/F16 10.909 Tf 33.338 0 Td[(,)-273(and)]TJ/F28 10.909 Tf 24.393 0 Td[(French)]TJ/F16 10.909 Tf 31.505 0 Td[(,)-273(for)-269(the)-269(peculiar)-268(Honour)-269(of)-269(this)-268(Nation,)-274(the)]TJ -89.236 -13.549 Td[(Edification)-220(of)-219(Posterity,)-226(and)-219(as)-220(a)-219(bright)-220(Pattern)-219(of)-220(Imitation)-219(to)-220(all)]TJ 0 -13.549 Td[(other)-250(civiliz'd)-250(Countries!)]TJ 11.955 -15.659 Td[(Now)-264(likewise)-264(appeared)-264(the)]TJ/F28 10.909 Tf 121.793 0 Td[(Philharmonic)-264(Society)]TJ/F16 10.909 Tf 94.386 0 Td[(,)-268(that,)-267(\050from)]TJ -228.134 -13.549 Td[(a)-383(few)-383(Gentlemen,)-416(who)-383(used)]TJ/F28 10.909 Tf 131.823 0 Td[(occasionally)]TJ/F16 10.909 Tf 59.322 0 Td[(to)-383(meet,)-416(in)-383(order)-383(to)]TJ -191.145 -13.55 Td[(while)-411(away)-411(an)-410(Hour)-411(with)-411(a)-410(gentle)-411(Tune,)-451(and)-411(chearful)-411(Glass\051)]TJ 0 -13.549 Td[(grew)-317(into)-316(an)-317(harmonious)-317(Body,)-333(not)-317(alone)-316(for)-317(the)-317(Improvement)]TJ 0 -13.549 Td[(of)-245(the)-245(charming)-246(Art)-245(of)-245(Music,)-246(but)-246(for)-245(the)]TJ/F28 10.909 Tf 181.329 0 Td[(effectual)-245(Relief)]TJ/F16 10.909 Tf 69.964 0 Td[(also)-245(of)]TJ -251.293 -13.549 Td[(successive)-280(Thousands,)-287(from)-279(Misery,)-287(Famine,)-287(and)-280(Confinement:)]TJ/F28 10.909 Tf 0 -13.549 Td[(Concordi\342)-322(res)-323(parv\346)-322(crescunt)]TJ/F16 10.909 Tf 134.784 0 Td[(.)-467(O)]TJ/F16 7.97 Tf 15.7 0 Td[(RPHEUS)]TJ/F16 10.909 Tf 30.557 0 Td[(,)-322(we)-323(are)-322(told,)-341(built)-322(the)]TJ -181.041 -13.549 Td[(Walls)-263(of)]TJ/F28 10.909 Tf 40.271 0 Td[(Thebes)]TJ/F16 10.909 Tf 30.906 0 Td[(,)-266(by)-263(the)-262(irresistible)-263(Powers)-263(of)-263(Harmony:)-275(Be)-263(this)]TJ -71.177 -13.55 Td[(true)-309(or)-308(fabulous;)-338(how)-309(many)-309(Iron)-308(Gates)-309(have)-309(we)-308(not)-309(seen)-309(open,)]TJ 0 -13.549 Td[(to)-364(the)-364(persuasive)-364(Charities)-364(of)-364(this)-364(tuneful)-364(Society!)-593(how)-364(many)]TJ 0 -13.549 Td[(gloomy)-260(Cells)-261(vacated)-260(by)-260(their)-260(Charms!)-281(This)-260(elegant)-261(Society,)-263(by)]TJ 0 -13.549 Td[(moderate)-344(Loans,)-366(In)-1(terest-free)-343(to)-344(the)-343(industrious)-344(Poor,)-367(prevents)]TJ 0 -13.549 Td[(many)-219(such)-219(from)-219(getting)-220(into)-219(the)-219(Distress)-219(of)-219(Prisons,)-225(or)-220(following)]TJ 0 -13.55 Td[(offensive)-346(Courses;)-394(and,)-370(by)-346(enabling)-346(them)-346(to)-346(obtain)-693(an)-346(honest)]TJ/F16 7.97 Tf -72.756 0 Td[([051])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(Livelihood,)-299(rendereth)-288(them)-289(useful)-289(Members)-289(to)-289(the)-289(Community:)]TJ 0 -13.549 Td[(So)-250(that,)-250(of)-250(this)-250(Society,)-250(it)-250(might)-250(have)-250(been)-250(justly)-250(said,)]TJ/F28 10.909 Tf 0 -27.443 Td[(Omne)-250(tulit)-250(Punctum)-250(qu\346)-250(miscuit)-250(utile)-250(dulci.)]TJ/F16 10.909 Tf 11.955 -29.553 Td[(In)-391(this)-390(happy)-391(Reign)-391(was)-390(incorporated,)-426(under)-391(the)-391(protective)]TJ -11.955 -13.55 Td[(Sanction)-421(of)-422(Royal)-421(Bounty,)-464(a)-421(Society,)-464(truly)-421(Christian,)-464(for)-422(the)]TJ 0 -13.549 Td[(pious)-220(Establishment)-220(of)]TJ/F28 10.909 Tf 101.754 0 Td[(Protestant)]TJ/F16 10.909 Tf 47.859 0 Td[(C)]TJ/F16 7.97 Tf 7.277 0 Td[(HARTER)]TJ/F16 10.909 Tf 31.88 0 Td[(-S)]TJ/F16 7.97 Tf 9.698 0 Td[(CHOOLS)]TJ/F16 10.909 Tf 34.282 0 Td[(throughout)]TJ -232.75 -13.549 Td[(the)-430(Kingdom:)-609(An)-429(Institution)-430(far)-429(more)-430(productive)-429(of)-430(national)]TJ 0 -13.549 Td[(Morality,)-428(and)-392(Reformation,)-428(than)-392(excommunicative)-393(Discipline,)]TJ 0 -13.549 Td[(or)-257(restrictive)-258(penal)-257(Statutes;)-261(since)-257(Persuasio)-1(n)-257(and)-257(Rewards)-258(have)]TJ 0 -13.55 Td[(ever)-206(been,)-215(and)-206(must)-206(ever)-206(continue)-206(to)-206(be,)-215(more)-206(consistent)-206(with)-207(the)]TJ 0 -13.549 Td[(meek)-180(and)-180(benevolent)-179(Temper)-180(of)-180(true)-180(Christianity,)-194(more)-180(effectual,)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
204 0 obj <<
/Type /Page
/Contents 205 0 R
/Resources 203 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
206 0 obj <<
/D [204 0 R /XYZ 327.841 245.081 null]
>> endobj
203 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
209 0 obj <<
/Length 5377
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(41)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(Apostolic,)-618(and)-544(Catholic,)-618(than)]TJ/F28 10.909 Tf 144.741 0 Td[(Punishments)]TJ/F16 10.909 Tf 55.756 0 Td[(,)]TJ/F28 10.909 Tf 9.467 0 Td[(Persecution)]TJ/F16 10.909 Tf 52.113 0 Td[(,)-618(or)]TJ/F28 10.909 Tf -262.077 -13.549 Td[(Sequestrations)]TJ/F16 10.909 Tf 64.244 0 Td[(.)]TJ -52.288 -14.178 Td[(In)-500(this)-501(Reign)-500(shines)-500(out)-501(a)-500(Christian)-500(Divine,)-563(who,)-563(in)-501(the)]TJ -11.956 -13.55 Td[(inestimable)-428(individual)-427(Dr.)]TJ/F28 10.909 Tf 126.659 0 Td[(Madden)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-472(collects)]TJ/F28 10.909 Tf 45.87 0 Td[(a)-428(whole)-427(Society)]TJ -208.277 -13.549 Td[(of)-568(Patriots)]TJ/F16 10.909 Tf 49.846 0 Td[(;)-727(a)-569(venerable)-568(Man,)-648(not)-568(alone)-568(the)-569(Guide)-568(of)-568(his)]TJ -49.846 -13.549 Td[(particular)-289(Congregation,)-298(but)-289(a)-288(pure,)-299(also)-288(clear)-289(and)-289(lasting)-289(Light)]TJ 0 -13.549 Td[(of)-225(Perfection,)-229(and)-225(noble)-225(Imitation,)-230(to)-224(his)-225(Countrymen)-225(in)-224(g)-1(eneral.)]TJ 0 -21.52 Td[(On)]TJ/F28 10.909 Tf 16.058 0 Td[(Madden)]TJ/F16 10.909 Tf 35.749 0 Td[(,)-250(kindred)-250(Angels)-250(smile!)]TJ -51.807 -13.55 Td[(Bright)-250(Mirrour)-250(to)-250(his)-250(native)-250(Isle!)]TJ 0 -13.549 Td[(To)-250(whom)-250(old)-250(Age)-250(shall)-250(say,)-250(and)-250(Youth,)]TJ 0 -13.549 Td[(With)-250(grateful)-250(and)-250(prophetic)-250(Truth,)]TJ/F28 10.909 Tf 11.955 -22.15 Td[(Semper)-250(Honos,)-250(Nomenq;)-250(tuum,)-250(Laudesq;)-250(manebunt.)]TJ/F16 10.909 Tf 0 -14.178 Td[(St.)]TJ/F28 10.909 Tf 19.963 0 Td[(Patrick's)]TJ/F16 10.909 Tf 43.225 0 Td[(Hospital,)-457(for)-415(the)-415(Reception)-416(of)-415(Lunaticks)-415(and)]TJ -75.143 -13.549 Td[(Ideots,)-337(a)-320(lasting)-320(Monument)-320(of)-320(the)-320(late)-320(Dean)]TJ/F28 10.909 Tf 200.509 0 Td[(Swift's)]TJ/F16 10.909 Tf 31.898 0 Td[(Charity,)-337(as)]TJ -232.407 -13.549 Td[(are)-274(his)-274(various)-547(Writings,)-280(of)-274(his)-274(great)-274(Genius)-274(and)-274(Wit:)]TJ/F28 10.909 Tf 241.946 0 Td[(Mercer's)]TJ/F16 7.97 Tf 49.077 0 Td[([052])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(charitable)-324(Hospitable)-323(in)]TJ/F28 10.909 Tf 109.363 0 Td[(Stephen-street)]TJ/F16 10.909 Tf 62.411 0 Td[(:)-397(The)-324(noble)-324(Hospital)-323(for)]TJ -171.774 -13.55 Td[(the)-365(Relief)-364(of)-365(poor)-365(Lying-inn-Women,)-393(of)-365(the)-365(Projection)-365(of)-365(our)]TJ 0 -13.549 Td[(late)-322(excellent)-321(Countryman,)-340(Dr.)]TJ/F28 10.909 Tf 142.443 0 Td[(Bartholomew)-322(Mosse)]TJ/F16 10.909 Tf 90.172 0 Td[(;)-358(by)-321(which)]TJ -232.615 -13.549 Td[(a)-445(great)-446(Number)-445(of)-446(Women)-445(and)-446(Children)-445(a)-1(re)-445(preserved)-446(from)]TJ 0 -13.549 Td[(miserable)-318(and)-319(untimely)-318(Ends:)-386(The)]TJ/F28 10.909 Tf 156.879 0 Td[(Charitable)-318(Infirmary)]TJ/F16 10.909 Tf 96.038 0 Td[(on)-318(the)]TJ/F28 10.909 Tf -252.917 -13.549 Td[(Inns-Quay)]TJ/F16 10.909 Tf 46.047 0 Td[(:)-469(The)-359(New)-360(Hospital)-359(for)]TJ/F28 10.909 Tf 111.08 0 Td[(Incurables)]TJ/F16 10.909 Tf 46.658 0 Td[(,)-387(on)]TJ/F28 10.909 Tf 21.775 0 Td[(Lazer's-Hill)]TJ/F16 10.909 Tf 52.037 0 Td[(:)]TJ -277.597 -13.55 Td[(St.)]TJ/F28 10.909 Tf 14.323 0 Td[(Nicholas's)]TJ/F16 10.909 Tf 47.408 0 Td[(Hospital,)-199(in)]TJ/F28 10.909 Tf 52.399 0 Td[(Francis-street)]TJ/F16 10.909 Tf 61.811 0 Td[(:)-218(The)]TJ/F28 10.909 Tf 24.417 0 Td[(Meath)]TJ/F16 10.909 Tf 29.91 0 Td[(Hospital,)-199(in)]TJ/F28 10.909 Tf -230.268 -13.549 Td[(Skinner's)-183(Alley)]TJ/F16 10.909 Tf 64.317 0 Td[(:)-216(The)]TJ/F28 10.909 Tf 24.35 0 Td[(Lock)]TJ/F16 10.909 Tf 23.201 0 Td[(Hospital,)-196(in)]TJ/F28 10.909 Tf 52.319 0 Td[(George's-Lane)]TJ/F16 10.909 Tf 64.745 0 Td[(,)-196(for)-183(hapless)]TJ -228.932 -13.549 Td[(Women)-296(and)-296(Children,)-307(tainted)-296(with)-295(the)-296(Venereal)-296(Infection:)-342(And)]TJ 0 -13.549 Td[(the)-355(Charitable)-355(Hospital)-355(in)]TJ/F28 10.909 Tf 119.732 0 Td[(King-street,)-381(Oxmantown)]TJ/F16 10.909 Tf 108.702 0 Td[(,)-381(are)-355(all)-356(the)]TJ -228.434 -13.549 Td[(humane)-250(and)-250(pious)-250(Growth)-250(of)-250(this)-250(transcendent)-250(Reign.)]TJ 11.955 -14.179 Td[(Those)-282(Hospitals)-283(are)-282(duly)-282(and)-282(regularly)-283(attended,)-290(by)-282(the)-283(most)]TJ -11.955 -13.549 Td[(eminent)-155(Physicians,)-175(and)-155(skilful)-156(Surgeons,)-174(without)-156(Fee)-155(or)-156(Reward:)]TJ 0 -13.549 Td[(So)-277(that,)-283(from)-277(this)-277(obvious)-277(Consideration,)-283(the)-277(frequent)-277(and)-277(large)]TJ 0 -13.549 Td[(Collections)-362(in)-361(our)-362(Churches,)-390(for)-361(the)-362(comfortable)-362(Support,)-390(and)]TJ 0 -13.549 Td[(Christian)-209(Education,)-218(of)-209(indigent)-210(Boys;)-222(the)-210(stated)-209(Distributions)-210(of)]TJ 0 -13.55 Td[(our)-253(Chief)-253(Magistrates,)-254(to)-253(the)-253(Helpless)-253(and)-253(Needy;)-255(and,)-253(in)-254(Truth,)]TJ 0 -13.549 Td[(from)-280(the)-279(general)-280(Disposition)-280(of)-280(its)-279(worthy)-280(Inhabitants;)-295(we)-280(may,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
208 0 obj <<
/Type /Page
/Contents 209 0 R
/Resources 207 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
210 0 obj <<
/D [208 0 R /XYZ 113.902 310.657 null]
>> endobj
207 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
213 0 obj <<
/Length 4577
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(42)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(without)-281(any)-282(Risque)-281(of)-282(incurring)-281(the)-281(least)-282(Censure)-281(of)-282(Adulation,)]TJ 0 -13.549 Td[(or)-316(Vanity,)-332(pronounce)-316(D)]TJ/F16 7.97 Tf 105.947 0 Td[(UBLIN)]TJ/F16 10.909 Tf 27.793 0 Td[(as)-316(charitable)-316(a)-315(Metropolis)-316(as)-316(any)]TJ -133.74 -13.549 Td[(in)-479(the)-479(known)-479(World.)-937(In)-479(the)-479(beautiful)-479(new)-479(Garden,)-537(plann'd)]TJ 0 -13.549 Td[(by)-455(Dr.)]TJ/F28 10.909 Tf 39.532 0 Td[(Mosse)]TJ/F16 10.909 Tf 27.873 0 Td[(,)-506(breathing)-455(in)-454(all)-455(the)-455(natural)-454(Fragrance)-455(of)-455(the)]TJ -67.405 -13.55 Td[(Spring,)-310(adorned)-298(with)-299(all)-298(the)-298(Elegancies)-298(of)-298(Art,)-310(all)-298(the)-299(Splendor)]TJ 0 -13.549 Td[(of)-298(Illumination,)-311(and)-298(inspired)-298(with)-298(the)-299(most)-298(soothing)-298(Charms)-299(of)]TJ 0 -13.549 Td[(delightful)-319(Harmony;)-353(to)-319(behold)-319(Crowds)-318(of)-319(young)-319(Ladies,)-336(in)-319(the)]TJ 0 -13.549 Td[(full)-311(Glow)-310(of)-311(Beauty,)-325(and)-311(Bloom)-310(of)-311(Youth,)-326(finely)-310(habited,)-652(and)]TJ/F16 7.97 Tf -72.756 0 Td[([053])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(elegantly)-407(decorated)-407(in)-408(the)-407(Manufactures)-407(of)-407(our)-407(own)-408(Country,)]TJ 0 -13.55 Td[(\050and)-270(finished)-269(in)-269(the)-270(most)-269(exquisite)-270(Taste,)-274(by)-270(our)-269(own)-270(Artizans\051;)]TJ 0 -13.549 Td[(to)-382(behold)-382(them,)-416(I)-382(say,)-415(converting)-382(their)-382(very)-382(Amusements)-383(and)]TJ 0 -13.549 Td[(Recreations)-220(to)-219(the)-220(heavenly)-219(Purposes)-220(of)-219(relieving)-220(the)-220(Distressed,)]TJ 0 -13.549 Td[(must,)-297(to)-288(every)-287(thinking)]TJ/F28 10.909 Tf 105.684 0 Td[(Irish)]TJ/F16 10.909 Tf 23.744 0 Td[(Spectator,)-297(afford)-288(a)-287(Prospect)-288(of)-287(the)]TJ -129.428 -13.549 Td[(utmost)-250(rational)-250(Joy!)]TJ 11.956 -14.236 Td[(As)-299(all)-300(Men,)-312(who)-299(render)-300(their)-300(Country)-299(distinguished)-300(Honour,)]TJ -11.956 -13.549 Td[(or)-409(singular)-408(Service,)-449(deserve,)-448(therefore,)-448(lasting)-409(Monuments)-409(of)]TJ 0 -13.549 Td[(public)-296(grateful)-297(Acknowledgment)-296(to)-296(their)-297(Memories;)-319(it)-296(is)-297(hoped)]TJ 0 -13.549 Td[(that,)-358(in)-337(this)-337(Respect,)-358(Dr.)]TJ/F28 10.909 Tf 115.574 0 Td[(Mosse)]TJ/F16 10.909 Tf 31.545 0 Td[(will)-337(not)-336(be)-337(forgotten)-337(by)-337(those)]TJ -147.119 -13.55 Td[(who)-432(are)-431(evidently)-432(fond)-431(of)-432(encouraging)-431(and)-432(rewarding)-432(public)]TJ 0 -13.549 Td[(Zeal:)]TJ 0 -21.749 Td[(Eternal)-250(Joys)-250(to)]TJ/F28 10.909 Tf 67.571 0 Td[(Mosse)]TJ/F16 10.909 Tf 30.6 0 Td[(kind)-250(Heaven)-250(give,)]TJ -98.171 -13.549 Td[(By)-250(whom,)-250(on)-250(Earth,)-250(so)-250(many)-250(Thousands)-250(live!)]TJ 11.955 -22.436 Td[(The)]TJ/F28 10.909 Tf 19.322 0 Td[(Marine)-216(Society)]TJ/F16 10.909 Tf 65.979 0 Td[(,)-223(of)-216(recent)-216(Institution)-216(also,)-223(disposeth)-216(many)]TJ -97.256 -13.549 Td[(poor)-367(young)-367(Men)-367(into)-367(a)-367(Condition)-367(of)-367(acquiring)-366(an)-367(honest,)-397(and)]TJ 0 -13.549 Td[(praise-worthy)-320(Livelihood,)-337(and)-320(of)-320(becoming)-320(useful)-320(Members)-320(of)]TJ 0 -13.549 Td[(the)-307(Community;)-336(by)-307(serving)-307(on)-307(Board)-307(of)-307(his)-307(Majesty's)-307(Fleets)-308(in)]TJ 0 -13.549 Td[(War-time,)-383(and)-356(serving)-356(our)-356(Merchants)-357(in)-356(Times)-356(of)-356(Peace;)-410(and,)]TJ 0 -13.55 Td[(in)-341(this)-341(double)-340(Capacity,)-364(of)-341(contributing)-340(to)-341(the)-341(general)-341(Welfare)]TJ 0 -13.549 Td[(of)-329(their)-329(Mother-Country,)-348(to)-329(which)-329(they)-328(may)-329(otherwise)-329(prove)-329(a)]TJ 0 -13.549 Td[(Burden.)]TJ 11.955 -14.235 Td[(Our)-492(publick)-491(Entertainments)-492(of)-492(various)-491(Kinds)-492(are,)-552(for)-492(the)]TJ -11.955 -13.55 Td[(most)-342(Part,)-365(conducted)-342(with)-342(strict)-342(Propriety,)-365(and)-342(real)-342(Politeness;)]TJ 0 -13.549 Td[(those)-432(especially)-432(of)-432(the)-432(Theatre,)-477(which)-432(should,)-478(by)-432(no)-432(Means,)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
212 0 obj <<
/Type /Page
/Contents 213 0 R
/Resources 211 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
214 0 obj <<
/D [212 0 R /XYZ 354.868 423.331 null]
>> endobj
211 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
217 0 obj <<
/Length 5913
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(43)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(pass)-447(for)-446(Matter)-446(of)-447(slight)-446(or)-447(casual)-446(Consideration;)-545(seeing)-447(the)]TJ/F28 10.909 Tf 0 -13.549 Td[(Romans)]TJ/F16 10.909 Tf 35.15 0 Td[(,)-255(the)-253(greatest)-254(of)-254(all)-254(People,)-254(esteemed)-254(the)-254(Theatre)-253(worthy)]TJ -35.15 -13.549 Td[(the)-443(Attention)-444(of)-443(particular)-443(Laws,)]TJ/F28 10.909 Tf 156.503 0 Td[(Roscia)-443(Lex)-444(Theatralis)]TJ/F16 10.909 Tf 99.978 0 Td[(,)-492(&c.)]TJ -256.481 -13.549 Td[(Mr.)]TJ/F28 10.909 Tf 31.55 0 Td[(Sheridan)]TJ/F16 10.909 Tf 39.393 0 Td[('s)-403(general)-404(Merit)-403(as)-403(a)]TJ/F28 10.909 Tf 98.484 0 Td[(Player)]TJ/F16 10.909 Tf 33.483 0 Td[(stands)-403(confessed;)]TJ/F16 7.97 Tf 88.114 0 Td[([054])]TJ/F16 10.909 Tf -291.024 -13.55 Td[(but)-468(as)-468(a)]TJ/F28 10.909 Tf 43.189 0 Td[(Manager)]TJ/F16 10.909 Tf 39.993 0 Td[(,)-522(that)-468(Gentlem)-1(an's)-468(falling)-468(frequently)-468(under)]TJ -83.182 -13.549 Td[(the)-317(heavy)-317(Displeasure)-317(of)-317(the)-316(Public,)-334(\050whether)-317(from)-317(an)-317(haughty)]TJ 0 -13.549 Td[(Distaste)-402(to)-403(his)-402(Profession,)-440(or)-403(indulged)-402(Arrogance)-402(of)-403(Temper\051)]TJ 0 -13.549 Td[(with)-313(his)-313(violent)-314(Introduction)-313(of)-313(anti-dramatick)-313(Rope)-313(and)-314(Wire-)]TJ 0 -13.549 Td[(dancing,)-206(Tumbling,)-205(and)-194(Fire-ea)-1(ting,)-205(to)-194(the)-195(visible)-194(Degradation)-195(of)]TJ 0 -13.55 Td[(a)-276(liberal)-276(Stage,)-283(whereon)-276(nothing)-276(mean,)-282(shocking,)-283(or)-276(monstrous,)]TJ 0 -13.549 Td[(should)-376(ever)-376(appear;)-439(he)-376(hath)-376(not)-376(succeeded)-375(so)-376(well:)-502(Then,)-408(his)]TJ 0 -13.549 Td[(Scheme)-269(of)-269(uniting)-269(an)-269(Academy,)-273(for)-269(the)-269(sober)-269(regular)-269(Education)]TJ 0 -13.549 Td[(of)-418(Youth,)-459(with)-418(a)-417(publick)-418(Theatre,)-459(seemed)-418(rather)-417(the)-418(feverish)]TJ 0 -13.549 Td[(Delusion)-323(of)-322(a)-323(distempered)-323(Brain,)-340(and)-323(heated)-323(Imagination,)-341(than)]TJ 0 -13.55 Td[(the)-466(cool)-467(deliberate)-466(Result)-466(of)-467(rational)-466(Judgment;)-574(from)-467(which)]TJ 0 -13.549 Td[(fermented)-535(Source,)-607(also)-536(seem'd)-535(directly)-535(to)-536(flow)-535(his)-536(avowed)]TJ 0 -13.549 Td[(Concern)-389(for)-389(the)]TJ/F28 10.909 Tf 75.749 0 Td[(long)-389(lost)-389(Art)-390(of)-389(Oratory)]TJ/F16 10.909 Tf 113.967 0 Td[(among)-389(us:)-529(Had)-389(Mr.)]TJ/F28 10.909 Tf -189.716 -13.549 Td[(Sheridan)]TJ/F16 10.909 Tf 41.156 0 Td[(attended)-162(to)-161(the)-162(Debates)-162(of)-161(our)-162(High)-162(Court)-161(of)-162(Parliament;)]TJ -41.156 -13.549 Td[(been)-481(frequent)-481(in)-482(our)-481(different)-481(Churches,)-539(and)-481(at)-481(the)-481(Bars)-482(of)]TJ 0 -13.55 Td[(our)-533(Courts)-534(of)-533(Judicature;)-675(and)-533(had,)-604(in)-534(this)-533(Case,)-604(formed)-534(a)]TJ 0 -13.549 Td[(comparative)-158(Judgment,)-177(from)-158(the)-158(Writings)-159(of)]TJ/F28 10.909 Tf 191.442 0 Td[(Demosthenes)]TJ/F16 10.909 Tf 58.167 0 Td[(,)]TJ/F28 10.909 Tf 4.654 0 Td[(Plato)]TJ/F16 10.909 Tf 23.64 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Isocrates)]TJ/F16 10.909 Tf 39.993 0 Td[(,)]TJ/F28 10.909 Tf 7.015 0 Td[(Cicero)]TJ/F16 10.909 Tf 29.695 0 Td[(,)-393(and)]TJ/F28 10.909 Tf 26.743 0 Td[(Pliny)]TJ/F16 10.909 Tf 27.005 0 Td[(the)-364(Younger;)-422(from)-365(the)-364(Rules)-365(and)]TJ -130.451 -13.549 Td[(Precepts)-350(of)]TJ/F28 10.909 Tf 53.676 0 Td[(Aristotle)]TJ/F16 10.909 Tf 37.582 0 Td[(,)]TJ/F28 10.909 Tf 6.813 0 Td[(Longinus)]TJ/F16 10.909 Tf 40.614 0 Td[(,)]TJ/F28 10.909 Tf 6.814 0 Td[(Horace)]TJ/F16 10.909 Tf 32.716 0 Td[(,)]TJ/F28 10.909 Tf 6.813 0 Td[(Quinctilian)]TJ/F16 10.909 Tf 49.702 0 Td[(,)]TJ/F28 10.909 Tf 6.813 0 Td[(Scaliger)]TJ/F16 10.909 Tf 36.36 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Rapin)]TJ/F16 10.909 Tf 26.062 0 Td[(,)]TJ/F28 10.909 Tf 8.455 0 Td[(Por\351e)]TJ/F16 10.909 Tf 26.051 0 Td[(,)-525(and)]TJ/F28 10.909 Tf 29.336 0 Td[(Rollin)]TJ/F16 10.909 Tf 26.672 0 Td[(;)-580(he)-470(had)-470(been)]TJ/F28 10.909 Tf 71.392 0 Td[(then)]TJ/F16 10.909 Tf 23.913 0 Td[(convinced)-470(how)]TJ -211.881 -13.55 Td[(little)-374(Occasion)-375(there)-374(was)-374(for)-374(his)]TJ/F28 10.909 Tf 149.316 0 Td[(lamenting)]TJ/F16 10.909 Tf 47.719 0 Td[(the)]TJ/F28 10.909 Tf 17.413 0 Td[(Loss)]TJ/F16 10.909 Tf 24.09 0 Td[(of)-374(an)-374(Art)]TJ -238.538 -13.549 Td[(in)-416(this)-415(Kingdom,)-458(which)-415(breathes)-416(there)-416(in)-415(full)-416(Maturity)-416(of)-416(all)]TJ 0 -13.549 Td[(it's)-424(persuasive)-424(Charms.)-772(This)-424(his)-424(dogmatical)-424(Assertion)-425(of)-424(the)]TJ/F28 10.909 Tf 0 -13.549 Td[(long-lost)-453(Art)-453(of)-452(Oratory)]TJ/F16 10.909 Tf 111.189 0 Td[(,)-503(his)-453(wild)]TJ/F28 10.909 Tf 50.225 0 Td[(Academical)]TJ/F16 10.909 Tf 56.451 0 Td[(Projects,)-503(w)-1(ith)]TJ -217.865 -13.549 Td[(the)-381(foregoing)-381(theatrical)-381(Inconsistencies,)-414(too)-381(much)-381(subject)-382(that)]TJ 0 -13.549 Td[(Gentleman)-304(to)-303(the)-303(Character)-304(given,)-317(by)-303(the)]TJ/F28 10.909 Tf 186.618 0 Td[(Roman)]TJ/F16 10.909 Tf 34.216 0 Td[(Satirist,)-317(of)-303(an)]TJ -220.834 -13.55 Td[(assuming)-250(sharp-set)]TJ/F28 10.909 Tf 86.051 0 Td[(Greekling)]TJ/F16 10.909 Tf 43.625 0 Td[(:)]TJ/F16 7.97 Tf 161.348 0 Td[([055])]TJ/F28 9.863 Tf -271.387 -32.735 Td[(Gramaticus,)-683(Rhetor,)-684(Geometres,)-683(Pictor,)-684(Aliptes,)-683(Augur,)]TJ 0 -12.822 Td[(Sc)]TJ/F37 9.863 Tf 9.31 0 Td[(S)]TJ/F28 9.863 Tf 6.579 0 Td[(nobates,)-250(Medicus,)-250(Magus,)-250(omnia)-250(novit.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
216 0 obj <<
/Type /Page
/Contents 217 0 R
/Resources 215 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
218 0 obj <<
/D [216 0 R /XYZ 70.575 477.528 null]
>> endobj
219 0 obj <<
/D [216 0 R /XYZ 46.771 109.321 null]
>> endobj
215 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F37 50 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
222 0 obj <<
/Length 6132
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(44)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(Upon)-263(the)-263(Whole,)-266(I)-263(will)-263(readily)-263(grant)-263(Mr.)]TJ/F28 10.909 Tf 182.034 0 Td[(Sheridan)]TJ/F16 10.909 Tf 42.262 0 Td[(a)]TJ/F28 10.909 Tf 7.713 0 Td[(Roscius)]TJ/F16 10.909 Tf 33.938 0 Td[(,)]TJ -277.903 -13.549 Td[(if)-203(the)-203(Name)-203(can)-203(sooth)-203(him;)-218(a)]TJ/F28 10.909 Tf 125.348 0 Td[(Critic)]TJ/F16 10.909 Tf 25.462 0 Td[(;)-219(nay,)-212(an)]TJ/F28 10.909 Tf 38.726 0 Td[(Orator)]TJ/F16 10.909 Tf 30.556 0 Td[(;)-219(but)-203(I)-202(shall)-203(be)]TJ -220.092 -13.549 Td[(bold)-281(to)-281(assert,)-289(that)-281(we)-281(have)-281(many,)-289(very)-281(many,)-289(in)-281(this)-282(Kingdom,)]TJ 0 -13.549 Td[(of)-281(far)-280(greater)-281(Powers)-281(than)-280(that)-281(Gentleman,)-289(whereof)-280(some)-281(of)-281(his)]TJ 0 -13.55 Td[(Orations,)]TJ/F28 10.909 Tf 43.026 0 Td[(so)-250(called)]TJ/F16 10.909 Tf 39.087 0 Td[(,)-250(are)-250(incontrovertible)-250(Testimonies.)]TJ -70.157 -16.004 Td[(This)-206(Kingdom)-206(hath)-206(of)-206(late)-206(Years)-206(exhibited)-206(as)-207(justly)-206(celebrated)]TJ -11.956 -13.549 Td[(Male)-207(and)-207(Female)-207(Players,)-215(as)-207(any)-207(other;)-221(evinced)-207(in)-207(the)-207(Characters)]TJ 0 -13.549 Td[(of)-443(Messieurs)]TJ/F28 10.909 Tf 62.979 0 Td[(Quin)]TJ/F16 10.909 Tf 21.818 0 Td[(,)]TJ/F28 10.909 Tf 8.081 0 Td[(Ryan)]TJ/F16 10.909 Tf 22.418 0 Td[(,)]TJ/F28 10.909 Tf 8.08 0 Td[(Delane)]TJ/F16 10.909 Tf 31.505 0 Td[(,)]TJ/F28 10.909 Tf 8.08 0 Td[(Sheridan)]TJ/F16 10.909 Tf 39.393 0 Td[(,)]TJ/F28 10.909 Tf 8.08 0 Td[(Barry)]TJ/F16 10.909 Tf 25.451 0 Td[(,)]TJ/F28 10.909 Tf 8.08 0 Td[(Mossop)]TJ/F16 10.909 Tf 33.938 0 Td[(,)]TJ/F28 10.909 Tf -277.903 -13.549 Td[(Dexter)]TJ/F16 10.909 Tf 29.684 0 Td[(,)]TJ/F28 10.909 Tf 8.295 0 Td[(Sparks)]TJ/F16 10.909 Tf 29.694 0 Td[(,)-510(Mrs.)]TJ/F28 10.909 Tf 38.141 0 Td[(Woffington)]TJ/F16 10.909 Tf 48.491 0 Td[(,)-510(the)-459(inimitable)-458(Mrs.)]TJ/F28 10.909 Tf 105.718 0 Td[(Fitz-)]TJ -260.023 -13.549 Td[(Henry)]TJ/F16 10.909 Tf 27.262 0 Td[(,)-250(and)-250(several)-250(others,)-250(of)-250(either)-250(Sex.)]TJ -15.306 -16.004 Td[(Mr.)]TJ/F28 10.909 Tf 31.068 0 Td[(Barry)]TJ/F16 10.909 Tf 25.451 0 Td[('s)-625(Capacity,)-720(as)-625(a)-625(Manager,)-719(appeareth)-626(equal)]TJ -68.475 -13.55 Td[(to)-511(his)-512(eminently-affecting)-511(Powers)-512(in)-511(Tragedy,)-577(\050so)-512(generally)]TJ 0 -13.549 Td[(known,)-231(and)-227(so)-226(unexceptionably)-227(confessed\051)-226(from)-227(the)-227(magnificent)]TJ 0 -13.549 Td[(Theatre,)-390(erected)-362(by)-362(that)-362(Gentleman,)-390(with)-362(am)-1(azing)-362(Expedition,)]TJ 0 -13.549 Td[(in)-369(Grandeur,)-398(Convenience,)-398(and)-369(Elegance,)-398(preferable)-368(to)-369(any)-369(in)]TJ/F28 10.909 Tf 0 -13.549 Td[(London)]TJ/F16 10.909 Tf 33.339 0 Td[(,)-472(or)]TJ/F28 10.909 Tf 21.63 0 Td[(Paris)]TJ/F16 10.909 Tf 23.64 0 Td[(:)-605(From)-428(the)-428(obliging)-427(Decency)-428(the)-428(respective)]TJ -78.609 -13.55 Td[(Performances)-412(thereof)-412(are)-412(conducte)-1(d)-412(with,)-452(and)-412(evidently)-413(from)]TJ 0 -13.549 Td[(the)-414(surpassing)-414(theatrical)-414(Abilities)-413(of)-414(the)-414(Company,)-455(that,)-455(with)]TJ 0 -13.549 Td[(the)-240(most)-240(engaging)-239(Variety,)-242(entertains)-240(the)-240(Publick)-240(in)]TJ/F28 10.909 Tf 228.507 0 Td[(Crow-street)]TJ/F16 10.909 Tf -228.507 -13.549 Td[(Play-house.)-822(I)-441(have)-441(sometimes)-441(seen,)-488(and)-441(have)-441(been)-441(as)-441(often)]TJ 0 -13.549 Td[(delighted,)-313(with)-301(Performances)-300(of)-301(the)-300(Gentlemen)-301(just)-301(mentioned,)]TJ 0 -13.55 Td[(as)-468(with)-468(those)-469(of)-468(the)-468(admired)-468(Mr.)]TJ/F28 10.909 Tf 166.248 0 Td[(Garrick)]TJ/F16 10.909 Tf 34.539 0 Td[(,)-523(and)-468(the)-468(famous)]TJ -200.787 -13.549 Td[(Messieurs)]TJ/F28 10.909 Tf 48.211 0 Td[(Dufr\351sne)]TJ/F16 10.909 Tf 39.993 0 Td[(,)]TJ/F28 10.909 Tf 7.013 0 Td[(Gossin)]TJ/F16 10.909 Tf 30.305 0 Td[(,)-393(and)]TJ/F28 10.909 Tf 26.74 0 Td[(Quinault)]TJ/F16 10.909 Tf 38.793 0 Td[(;)-421(and,)-393(if)-365(I)-364(may)-364(take)]TJ -191.055 -13.549 Td[(Leave)-228(to)-229(declare)-228(my)-229(Opinion,)-232(am)-229(therein)-228(clear)-229(that)-228(Mr.)]TJ/F28 10.909 Tf 241.426 0 Td[(Barry)]TJ/F16 10.909 Tf 25.451 0 Td[(,)-233(in)]TJ -266.877 -13.549 Td[(the)-317(exquisitely)-633(pathetick)-317(Strokes)-317(of)-317(deep)-316(Tragedy,)-334(touches)-317(the)]TJ/F16 7.97 Tf -72.755 0 Td[([056])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(Soul)-306(with)-306(as)-306(much)-306(delicate)-306(Sensibility,)-320(and,)-320(in)-307(the)-306(irrefrainable)]TJ 0 -13.549 Td[(Sallies)-292(of)-293(the)-292(more)-293(boisterous)-292(Passions,)-303(soars)-293(with)-292(as)-293(majestick)]TJ 0 -13.55 Td[(Wings,)-416(as)-382(any)-383(one)-382(of)-383(them,)-415(I)-383(will)-382(not)-383(say)-382(higher.)-648(To)-383(behold)]TJ 0 -13.549 Td[(Mr.)]TJ/F28 10.909 Tf 21.479 0 Td[(Barry)]TJ/F16 10.909 Tf 25.451 0 Td[(,)-353(sublimely)-332(struggling)-333(in)-332(a)-332(Storm)-332(of)-333(Adversity,)-353(with)]TJ -46.93 -13.549 Td[(the)-454(sudden)-453(Shocks,)-505(and)-454(unexpected)-454(Blows)-453(of)-454(Fortune;)]TJ/F28 10.909 Tf 259.117 0 Td[(then)]TJ/F16 10.909 Tf 18.786 0 Td[(,)]TJ -277.903 -13.549 Td[(\050when)-480(all)-480(human)-479(Effor)-1(ts)-479(must)-480(yield)-480(to)-480(inevitable)-480(Necessity\051)]TJ 0 -13.549 Td[(sinking)-421(in)-420(the)-421(irretrievable)-421(Plunge)-421(of)-420(Sorrow)-421(and)-421(Calamities,)]TJ 0 -13.55 Td[(with)-235(that)-234(calm)-234(Resignatio)-1(n)-234(ever)-234(attendant)-235(on)-234(true)-235(Heroism;)-240(must)]TJ 0 -13.549 Td[(convince)-269(any)-270(judicious)-269(Spectator)-269(of)-269(his)-270(being)-269(born)-269(a)-270(Tragedian.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
221 0 obj <<
/Type /Page
/Contents 222 0 R
/Resources 220 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 202 0 R
>> endobj
223 0 obj <<
/D [221 0 R /XYZ 161.665 188.085 null]
>> endobj
220 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
226 0 obj <<
/Length 4711
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(45)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(I)-335(must)-334(here)-335(declare,)-356(that)-335(what)-334(I)-335(have)-335(advanced)-334(on)-335(this)-335(Subject)]TJ 0 -13.549 Td[(neither)-449(ariseth)-450(from)-449(Prepossession)-449(on)-450(one)-449(Side,)-499(or)-450(Prejudice)]TJ 0 -13.549 Td[(on)-367(the)-366(other;)-425(having)-367(no)-367(Manner)-367(of)-366(Connection,)-396(nay,)-396(not)-367(even)]TJ 0 -13.549 Td[(a)-395(personal)-396(Acquaintance,)-431(with)-396(Mr.)]TJ/F28 10.909 Tf 165.096 0 Td[(Barry)]TJ/F16 10.909 Tf 25.45 0 Td[(;)-468(nor)-395(any)-396(Objection)]TJ -190.546 -13.55 Td[(to)-450(Mr.)]TJ/F28 10.909 Tf 38.719 0 Td[(Sheridan)]TJ/F16 10.909 Tf 39.392 0 Td[(,)-500(but)-450(such)-449(as)-450(must)-450(naturally)-450(issue)-450(from)-449(my)]TJ -78.111 -13.549 Td[(just)-446(Resentment)-446(against)-446(any)-446(Individual,)-495(of)-447(whatsoever)-446(Rank,)]TJ 0 -13.549 Td[(Character,)-279(or)-273(Denomination,)-278(who)-273(should)-273(prove)-273(so)-273(ignorant,)-279(and)]TJ 0 -13.549 Td[(yet)-285(so)-285(hardy,)-294(as)-285(to)-285(declare)]TJ/F28 10.909 Tf 118.414 0 Td[(Elocution)-285(lost)]TJ/F16 10.909 Tf 64.406 0 Td[(in)-285(our)-285(native)-285(Country;)]TJ -182.82 -13.549 Td[(an)-262(illiberal)-263(Censure,)-265(which,)-265(if)-262(true,)-266(had)-262(necessarily)-262(wrapped)-263(our)]TJ 0 -13.55 Td[(High)-367(Court)-367(of)-366(Parliamen)-1(t,)-396(the)-366(whole)-367(Body)-367(of)-367(our)-367(Clergy,)-396(our)]TJ 0 -13.549 Td[(University,)-218(Bench)-210(and)-210(Bar,)-218(in)-209(Shades)-210(that,)-218(I)-210(am)-210(certain,)-218(had)-210(been)]TJ 0 -13.549 Td[(never)-218(dispell'd)-218(by)-218(the)-218(Approach)-218(of)-218(Light,)-224(so)-218(dim)-218(and)-218(glimmering)]TJ 0 -13.549 Td[(as)-250(that)-250(Gentleman's.)]TJ 11.956 -16.004 Td[(Let)-196(us)-197(now)-196(take)-197(a)-196(summary)-196(V)-1(iew)-196(of)-196(the)-197(Inhabitants)-196(of)]TJ/F28 10.909 Tf 233.831 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)]TJ -277.903 -13.549 Td[(in)-261(their)-261(respective)-261(Ranks:)-273(And)-261(to)-261(begin)-261(with)-261(the)-261(Peers:)-272(Are)-262(they)]TJ 0 -13.55 Td[(not)-463(such)-464(Personages,)-517(as,)-516(by)-464(their)-463(Munificence,)-517(Affability)-464(of)]TJ 0 -13.549 Td[(Manners,)-406(Easiness)-375(of)-375(Comportment,)-407(Propriety)-375(of)-375(Appearance,)]TJ 0 -13.549 Td[(and)-271(Generosity)-270(in)-271(dealing,)-275(reflect)-271(true)-271(Honour)-270(on)-271(Nobility;)-281(and,)]TJ 5.555 -13.549 Td[(Reality,)-509(derive)-457(their)-458(superior)-457(Rank,)-509(as)-457(much)-458(from)-457(the)-457(Pre-)]TJ/F16 7.97 Tf 285.469 0 Td[([057])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(eminence)-299(of)-298(their)-299(Virtues,)-311(as)-298(from)-299(the)-298(constitutional)-299(Dignity)-299(of)]TJ 0 -13.55 Td[(their)-250(Titles?)]TJ 11.956 -16.004 Td[(The)-407(Encrease)-407(of)-407(our)-407(People,)-447(Wealth,)-446(Commerce,)-447(Industry,)]TJ -11.956 -13.549 Td[(Arts,)-429(Inventions;)-464(the)-393(extraordinary)-393(additional)-393(Number,)-429(in)-393(this)]TJ 0 -13.549 Td[(happy)-503(Reign,)-565(of)-503(our)-503(beautiful)-502(Seats,)-566(elegant)-503(Improvements,)]TJ 0 -13.549 Td[(useful)-870(and)-870(ornamental)-870(Plantations,)-1025(extensive)-871(Inclosures,)]TJ 0 -13.549 Td[(excellent)-425(high)-425(Roads,)-468(\050formerly)-425(almost)-424(impassable,\051)-469(with)-425(the)]TJ 0 -13.549 Td[(visible)-336(Reformation)-336(in)-335(national)-336(Harmony,)-358(and)-335(Allegiance,)-358(will)]TJ 0 -13.55 Td[(best)-295(suggest)-295(an)-295(Idea)-295(of)-295(the)-295(Honourable)-295(the)-295(House)-296(of)-295(Commons)]TJ 0 -13.549 Td[(of)]TJ/F28 10.909 Tf 14.183 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-521(composed)-467(of)-468(such)-467(candid)-467(Spirits,)-521(as,)-521(neither)-467(the)]TJ -46.299 -13.549 Td[(Smiles)-525(or)-526(Frowns)-525(of)-525(superior)-525(Influence,)-594(popular)-526(Views,)-594(or)]TJ 0 -13.549 Td[(private)-274(Connections,)-281(can)-274(bend)-274(from)-275(the)-274(various)-274(essential)-275(Duties)]TJ 0 -13.549 Td[(due)-403(to)-403(their)-403(K)-1(ing,)-441(their)-403(Country,)-442(and)-403(themselves;)-479(constant)-404(in)]TJ 0 -13.55 Td[(their)-248(Attendance;)-248(careful)-248(in)-247(their)-248(Protection;)-248(and)-248(zealous)-247(in)-248(their)]TJ 0 -13.549 Td[(Promotion)-265(of)-265(publick)-265(Felicity;)-272(not)-265(more)-265(extensive)-265(in)-265(their)-265(noble)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
225 0 obj <<
/Type /Page
/Contents 226 0 R
/Resources 224 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
227 0 obj <<
/D [225 0 R /XYZ 46.771 271.835 null]
>> endobj
224 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
231 0 obj <<
/Length 5813
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(46)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Projects,)-504(for)-453(this)-454(great)-453(Purpose,)-504(than)-453(expeditious)-453(in)-454(carrying)]TJ 0 -13.549 Td[(those)-250(into)-250(Execution.)]TJ 11.956 -14.589 Td[(Our)-723(Constitution,)-841(partly)-722(of)]TJ/F28 10.909 Tf 141.012 0 Td[(Gothic)]TJ/F16 10.909 Tf 29.694 0 Td[(,)-841(partly)-723(of)]TJ/F28 10.909 Tf 62.208 0 Td[(Norman)]TJ/F16 10.909 Tf -244.87 -13.549 Td[(Institution,)-438(\050the)-401(first)-400(High)-401(Court)-400(of)-401(Parliament)-400(on)-401(the)-401(present)]TJ 0 -13.55 Td[(Establishment,)-550(having)-489(been)-490(ordained)-490(in)-489(the)-490(Reign)-490(of)]TJ/F28 10.909 Tf 253.368 0 Td[(Henry)]TJ/F16 10.909 Tf -253.368 -13.549 Td[(the)-304(First,)-319(Son)-304(of)]TJ/F28 10.909 Tf 75.56 0 Td[(William)]TJ/F16 10.909 Tf 37.87 0 Td[(the)-304(Conquerer\051)-305(avoiding)-304(the)-305(turbulent)]TJ -113.43 -13.549 Td[(Licentiousness)-153(of)-153(a)]TJ/F28 10.909 Tf 83.787 0 Td[(Democracy)]TJ/F16 10.909 Tf 50.28 0 Td[(,)-173(the)-153(factious)-153(domineering)-153(Temper)]TJ -134.067 -13.549 Td[(of)]TJ/F28 10.909 Tf 13.109 0 Td[(Aristocracy)]TJ/F16 10.909 Tf 50.901 0 Td[(,)-398(and)-369(the)-369(variable)-368(oppressive)-369(Sway)-368(of)]TJ/F28 10.909 Tf 175.406 0 Td[(Arbitrary)]TJ -239.416 -13.549 Td[(Monarchy)]TJ/F16 10.909 Tf 44.837 0 Td[(;)-485(but)-407(including,)-446(by)-407(an)-407(harmonious)-406(Assemblage)-1(,)-446(the)]TJ -44.837 -13.55 Td[(essential)-349(Virtues)-348(of)-349(those)-349(different)-348(Systems)-349(of)-349(Government;)-398(is)]TJ 0 -13.549 Td[(unquestionably)-218(the)]TJ/F28 10.909 Tf 84.744 0 Td[(best)-218(digested)]TJ/F16 10.909 Tf 58.977 0 Td[(and)]TJ/F28 10.909 Tf 18.127 0 Td[(wisest)]TJ/F16 10.909 Tf 29.242 0 Td[(in)-218(the)-217(known)-218(World:)]TJ -191.09 -13.549 Td[(Under)-191(which,)-203(the)-192(King)-191(and)-191(the)-192(Nobles,)-203(with)-191(the)-192(Commons,)]TJ/F28 10.909 Tf 256.085 0 Td[(unite)]TJ/F16 10.909 Tf 21.818 0 Td[(,)]TJ -277.903 -13.549 Td[(to)-368(extend)-367(the)-368(Commerce,)-793(promote)-368(the)-367(Happiness,)-397(guard)-368(over)]TJ/F16 7.97 Tf -72.756 0 Td[([058])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(the)-381(Safety,)-414(preserve)-381(the)-381(Lives,)-414(defend)-381(the)-382(Characters,)-414(support)]TJ 0 -13.55 Td[(the)-400(Liberties,)-437(and)-400(protect)-400(the)-400(Property)-400(of)-400(the)-400(People.)-700(Bless'd)]TJ 0 -13.549 Td[(Constitution!)-616(O!)-373(may)-372(it)-372(ever)-372(flourish!)-616(under)-372(whose)-372(mild)-373(and)]TJ 0 -13.549 Td[(preservative)-212(Influence,)-219(a)-212(few)-212(only)-212(feel)-211(Restraint;)-225(except)-212(from)-212(the)]TJ 0 -13.549 Td[(Commission)-250(of)-250(private)-250(Evil,)-250(or)-250(social)-250(Injury.)]TJ 11.956 -14.589 Td[(I)-382(have)-383(said)-382(a)]TJ/F28 10.909 Tf 63.336 0 Td[(Few)-382(only)]TJ/F16 10.909 Tf 41.743 0 Td[(;)-449(because)-382(there)-383(are)-382(some)-383(among)-382(us,)]TJ -117.035 -13.55 Td[(who,)-459(on)-418(the)-417(Score)-418(of)-417(Religion,)-459(are)-418(secluded)-417(from)-418(permanent)]TJ 0 -13.549 Td[(Property:)-499(And)-374(even)-374(Those,)-406(it)-374(is)-374(hoped,)-406(will,)-405(in)-375(Consideration)]TJ 0 -13.549 Td[(of)-424(the)-423(invariable)-424(Tenor)-423(of)-424(their)-424(humble)-423(and)-424(pacific)-424(Conduct,)]TJ 0 -13.549 Td[(from)-351(the)-351(Capitulation)-352(of)]TJ/F28 10.909 Tf 112.894 0 Td[(Limerick)]TJ/F16 10.909 Tf 38.782 0 Td[(,)-376(to)-352(this)-351(Day;)-402(and)-351(from)-351(their)]TJ -151.676 -13.549 Td[(unanimous)-196(and)-196(chearful)-196(Obedience)-195(to)-196(our)-196(Civil)-196(Government,)-207(e're)]TJ 0 -13.55 Td[(long)-209(obtain)-209(some)-209(Mitigation)-209(of)-208(their)-209(Affairs;)-223(such)-209(the)-209(benevolent)]TJ 0 -13.549 Td[(Temper)-493(and)-493(Disposition)-493(of)-493(the)-493(present)-493(incomparable)-493(Reign!)]TJ 0 -13.549 Td[(Some)-543(late)-543(excellent)]TJ/F16 7.97 Tf 91.834 3.959 Td[(3)]TJ/F16 10.909 Tf 10.407 -3.959 Td[(Pamphlets,)-616(wherein)-543(these)-543(Gentlemen's)]TJ -102.241 -13.549 Td[(political)-510(Principles)-510(are)-510(fully)-510(and)-510(clearly)-510(explained,)-576(shew)-510(of)]TJ 0 -13.549 Td[(what)-404(signal)-404(Advantage)-403(it)-404(had)-404(been)-404(to)-404(the)-403(Numbers,)-443(Industry,)]TJ 0 -13.549 Td[(Health,)-386(Wealth,)-386(and)-358(Beauty)-359(of)-359(this)-358(Kingdom,)-386(to)-359(indulge)-359(them)]TJ 0 -13.55 Td[(a)-300(Property,)-312(even)-300(in)-300(our)-300(uncultivated)-299(Mountains,)-313(dreary)-300(Wastes,)]TJ
ET
1 0 0 1 93.543 95.892 cm
0 g 0 G
1 0 0 1 0 2.59 cm
q
[]0 d
0 J
0.398 w
0 0.199 m
112.25 0.199 l
S
Q
1 0 0 1 -93.543 -98.482 cm
BT
/F16 5.978 Tf 99.77 91.869 Td[(3)]TJ/F28 8.966 Tf 5.729 -3.809 Td[(Seasonable)-410(Though)-1(ts)]TJ/F16 8.966 Tf 77.901 0 Td[(,)-450(&c.)-731(published)-411(by)]TJ/F28 8.966 Tf 77.223 0 Td[(George)-410(Faulkner)]TJ/F16 8.966 Tf 63.439 0 Td[(;)]TJ/F28 8.966 Tf 6.889 0 Td[(the)-410(Case)-411(of)]TJ -237.408 -10.959 Td[(the)-278(Roma)-1(n)-278(Catholics)]TJ/F16 8.966 Tf 75.727 0 Td[(,)-285(and)]TJ/F28 8.966 Tf 20.244 0 Td[(the)-278(Principles)-279(of)-278(the)-279(Roman)-278(Catholics)]TJ/F16 8.966 Tf 138.007 0 Td[(,)-285(the)-279(two)-278(last)]TJ -233.978 -10.959 Td[(published)-250(by)]TJ/F28 8.966 Tf 48.32 0 Td[(P.)-250(Lord)]TJ/F16 8.966 Tf 27.401 0 Td[(,)-250(in)]TJ/F28 8.966 Tf 13.701 0 Td[(Cook-street,)-250(Dublin)]TJ/F16 8.966 Tf 71.229 0 Td[(.)]TJ
ET
1 0 0 1 93.543 62.854 cm
0 g 0 G
1 0 0 1 0 -24.072 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
230 0 obj <<
/Type /Page
/Contents 231 0 R
/Resources 229 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
232 0 obj <<
/D [230 0 R /XYZ 211.397 354.545 null]
>> endobj
229 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
235 0 obj <<
/Length 5291
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(47)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(and)-419(noxious)-418(Marshes:)-588(Which)-418(Measure,)-461(should)-419(it)-418(appear)-419(in)-419(a)]TJ 0 -13.549 Td[(true)-481(Light)-481(to)-481(our)-481(worthy)-481(Representatives,)-539(we)-481(may)-481(in)-481(a)-481(few)]TJ 0 -13.549 Td[(Years)-484(more,)-542(hope)-484(to)-483(see)]TJ/F28 10.909 Tf 121.232 0 Td[(Ireland)]TJ/F16 10.909 Tf 37.393 0 Td[(one)-484(of)-483(the)-484(most)-484(beautiful,)]TJ -158.625 -13.549 Td[(best-improved,)-445(best-conditioned)-405(Islands)-406(in)-405(the)-406(Universe.)-717(Our)]TJ 0 -13.55 Td[(Bench)-274(is)-274(adorned)-274(with)-274(Honourable)-274(Personages,)-280(conspicuous)-274(for)]TJ 0 -13.549 Td[(Learning,)-417(Integrity,)-417(Humanity,)-418(and)-383(Impartiality;)-902(of)-383(whom,)-418(it)]TJ/F16 7.97 Tf 291.024 0 Td[([059])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(may)-351(be)-351(boldly)-351(affirmed,)-376(and)-351(with)-351(the)-351(strictest)-351(Truth,)-377(that)-351(they)]TJ 0 -13.549 Td[(are)-281(not)-280(Favourers)-281(of)-281(Persons.)-342(The)-281(present)-280(Lord)-281(Chief)-281(Justice)-281(of)]TJ 0 -13.549 Td[(the)]TJ/F28 10.909 Tf 16.527 0 Td[(King-Bench)]TJ/F16 10.909 Tf 52.112 0 Td[(,)-304(the)-293(late)-292(Master)-293(of)-293(the)-293(Rolls,)-304(and)-293(Chancellor)-293(of)]TJ -68.639 -13.55 Td[(the)-247(Exchequer,)-248(Natives)-248(of)]TJ/F28 10.909 Tf 115.92 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-248(formed)-247(a)-248(Triumvirate,)-248(whose)]TJ -148.036 -13.549 Td[(Learning,)-237(Worth,)-237(and)-233(distinguished)-234(Abilities,)-237(had)-233(rendered)-234(them)]TJ 0 -13.549 Td[(eminently)-251(respectable)-250(in)-251(the)-251(brightest)-251(\306ras,)-250(either)-251(of)-251(the)]TJ/F28 10.909 Tf 249.725 0 Td[(Roman)]TJ/F16 10.909 Tf -249.725 -13.549 Td[(Commonwealth,)-250(or)-250(Empire.)]TJ 11.956 -16.004 Td[(Our)-428(Attorney)-428(and)-427(Solicitor)-428(General,)-472(our)-428(Serjeants)-428(at)-428(Law,)]TJ -11.956 -13.549 Td[(and)-410(King's)-410(Council,)-450(with)-409(many)-410(eminent)-410(Barristers,)-450(and)-410(a)-410(Set)]TJ 0 -13.55 Td[(of)-321(learned)-322(eloquent)-321(young)-321(Gentlemen,)-340(all)-321(shining)-321(out)-322(together;)]TJ 0 -13.549 Td[(such)-296(as)]TJ/F28 10.909 Tf 35.544 0 Td[(Tully)]TJ/F16 10.909 Tf 22.429 0 Td[(,)]TJ/F28 10.909 Tf 6.083 0 Td[(Hortensius)]TJ/F16 10.909 Tf 47.88 0 Td[(,)-308(and)]TJ/F28 10.909 Tf 25.066 0 Td[(Pliny)]TJ/F16 10.909 Tf 23.029 0 Td[(,)-308(had)-296(with)-296(fond)-296(Tenderness)]TJ -160.031 -13.549 Td[(cherished)-238(and)-237(with)-238(pleasing)-237(Pride,)-240(avowed)-238(for)-237(their)-238(Pupils;)-242(form)]TJ 0 -13.549 Td[(as)-264(distinguished)-264(a)-265(Body)-264(of)-264(Advocates)-264(and)-264(Orators,)-268(as)-264(adorn)-265(any)]TJ 0 -13.549 Td[(Courts)-250(of)-250(Judicature)-250(in)]TJ/F28 10.909 Tf 102.415 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(.)]TJ -122.575 -16.004 Td[(In)-249(the)-250(Diocese)-249(of)]TJ/F28 10.909 Tf 77.523 0 Td[(Dublin)]TJ/F16 10.909 Tf 33.025 0 Td[(existeth)-249(a)-250(truly)-249(pious)-249(Society)-250(for)-249(the)]TJ -122.504 -13.549 Td[(Relief)-328(and)-329(Support)-328(of)-328(the)-329(Widows)-328(and)-329(Children)-328(of)-328(the)-329(inferior)]TJ 0 -13.55 Td[(Clergy)-428(thereof.)-783(It)-428(is,)-472(indeed,)-472(surprizing)-428(in)-428(a)-427(Kingdom,)-473(such)]TJ 0 -13.549 Td[(\050thank)-259(Heaven\051)-259(as)]TJ/F28 10.909 Tf 82.38 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.94 0 Td[(is,)-261(that)-259(the)-259(Example)-259(of)-258(this)-259(charitable)]TJ -117.32 -13.549 Td[(Society,)-199(hath)-186(not)-186(been)]TJ/F28 10.909 Tf 97.034 0 Td[(universally)]TJ/F16 10.909 Tf 50.509 0 Td[(followed.)-229(It)-186(hath)-186(often)-186(affected)]TJ -147.543 -13.549 Td[(me)-317(to)-318(the)-317(Quick,)-334(to)-317(have)-318(seen)-317(a)-317(learned)-318(Divine,)-334(after)-317(a)-318(tedious)]TJ 0 -13.549 Td[(and)-415(painful)-415(Free-School)-416(Institution,)-456(and)-415(expensive)-416(University)]TJ 0 -13.55 Td[(Education,)-379(struggling,)-378(upon)-353(a)-353(poor)-352(Pension)-353(or)-353(Salary)-353(of)]TJ/F28 10.909 Tf 256.39 0 Td[(Forty)]TJ/F16 10.909 Tf -256.39 -13.549 Td[(Pounds)-332(a)-333(Year,)-352(to)-333(maintain)-332(an)-332(honest)-333(Gentlewoman,)-353(Children,)]TJ 0 -13.549 Td[(and)-436(Servants,)-483(\050and)-436(really)-436(with)-436(some)-436(Decency)-436(of)-436(Hospitality\051)]TJ 0 -13.549 Td[(sedulously)-355(discharging,)-382(at)-355(the)-355(same)-356(Time,)-381(the)-355(different)-356(Duties)]TJ 0 -13.549 Td[(of)-328(the)-327(pastoral)-328(Function;)-367(when)-327(a)]TJ/F28 10.909 Tf 149.125 0 Td[(foreign)-328(Fidler)]TJ/F16 10.909 Tf 66.189 0 Td[(shall)-328(run)-327(away)]TJ -215.314 -13.55 Td[(with)-296(tripple)-296(that)-296(Sum,)-308(or)-296(more,)-308(for)-296(one)-296(Night's)-296(Performance.)-777(I)]TJ/F16 7.97 Tf 291.024 0 Td[([060])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(would)-317(by)-318(no)-317(Means)-317(be)-317(understood)-318(to)-317(derogate)-317(from)-317(the)-318(Merits)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
234 0 obj <<
/Type /Page
/Contents 235 0 R
/Resources 233 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
236 0 obj <<
/D [234 0 R /XYZ 268.595 450.429 null]
>> endobj
237 0 obj <<
/D [234 0 R /XYZ 319.533 79.691 null]
>> endobj
233 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
240 0 obj <<
/Length 4986
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(48)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(of)-237(fine)-236(Performers)-237(in)-237(the)-236(different)-237(Parts)-237(of)-237(Musick,)-239(or)-237(endeavour)]TJ 0 -13.549 Td[(to)-315(diminish)-314(their)-315(reasonable)-315(Perquisites:)-379(But,)-331(surely,)-331(such)-315(Men)]TJ 0 -13.549 Td[(and)-339(such)-339(Things)-339(are)-340(not)-339(to)-339(be)-339(thought)-339(of,)-361(in)-339(Competition)-340(with)]TJ 0 -13.549 Td[(those,)-569(who,)-568(by)-505(Teaching)-505(and)-504(Preaching,)-569(refine)-505(our)-505(Morals,)]TJ 0 -13.55 Td[(instruct)-229(our)-229(Understandings,)-233(inform)-228(our)-229(Lives,)-233(and)-229(enlighten)-229(our)]TJ 0 -13.549 Td[(Souls)-250(with)-251(the)-250(celestial)-250(Spirit)-250(of)-250(the)-251(Christian)-250(Faith;)-250(and)-251(thereby)]TJ 0 -13.549 Td[(happily)-359(lead)-358(us,)-386(through)-359(this)-359(transient)-358(and)-359(precarious)-359(State,)-386(to)]TJ 0 -13.549 Td[(eternal)-457(Tranquilly)-457(and)-457(Bliss.)-872(I)-457(am)-457(not)-457(a)-457(Preacher;)-560(but)-458(thus)]TJ 0 -13.549 Td[(far)-362(shall)-361(venture:)-473(As)-362(the)-362(Fear)-361(of)-362(the)-361(Lord)-362(is)-361(the)-362(Beginning)-362(of)]TJ 0 -13.55 Td[(Wisdom,)-322(our)-308(generally)-308(following)-308(the)-308(heavenly)-308(Example)-308(of)-308(this)]TJ 0 -13.549 Td[(venerable)-244(Society,)-245(must)-244(be)-244(a)-244(great)-244(Test)-244(as)-244(well)-244(of)-244(the)-244(one,)-246(as)-244(the)]TJ 0 -13.549 Td[(other.)-285(If)-262(the)-261(Bishops,)-265(the)-261(temporal)-262(Lords,)-265(and)-261(great)-262(estated)-262(Men)]TJ 0 -13.549 Td[(of)-369(each)-369(Diocese,)-399(would)-368(but)-369(graciously)-369(lead)-369(the)-369(Way,)-399(it)-369(is)-369(not)]TJ 0 -13.549 Td[(unlikely)-198(they)-198(had)-199(been)-198(attended)-198(by)-198(Crowds)-198(of)-198(zealous)-199(Followers:)]TJ 0 -13.55 Td[(And,)-345(in)-326(Fact,)-345(a)]TJ/F28 10.909 Tf 70.994 0 Td[(small)]TJ/F16 10.909 Tf 27.207 0 Td[(Matter)]TJ/F28 10.909 Tf 32.639 0 Td[(annually)-326(set)-326(apart)]TJ/F16 10.909 Tf 81.054 0 Td[(,)-345(from)-326(even)-326(the)]TJ -211.894 -13.549 Td[(superfluous)-281(Outgoings)-281(of)-281(the)-281(Wealthy)-282(and)-281(Opulent,)-288(of)-282(different)]TJ 0 -13.549 Td[(Ranks,)-401(would)-371(very)-371(happily)-371(answer)-370(the)-371(generous)-371(noble)-371(End)-371(of)]TJ 0 -13.549 Td[(preserving,)-534(from)-477(an)-478(anxious)-477(State)-477(of)-477(particular)-478(Dependance,)]TJ 0 -13.549 Td[(Numbers)-473(of)-474(virtuous,)-529(well-educated)-473(Gentlewomen,)-529(and)-474(their)]TJ 0 -13.55 Td[(Children,)-332(from)-316(the)-316(various)-316(Miseries,)-333(which)-316(the)-316(untimely)-316(Death)]TJ 0 -13.549 Td[(of)-196(a)-196(Father,)-207(and)-196(narrow)-196(Circumstances,)-207(but)-196(too)-196(frequently)-196(expose)]TJ 0 -13.549 Td[(them)-197(to;)-215(an)-198(End)-197(so)-198(every)-197(Way)-197(worthy)-198(the)-197(natural)-198(Disposition,)-208(the)]TJ 0 -13.549 Td[(benevolent)-221(Temp)-1(er,)-227(the)-221(inherent)-222(Hospitality,)-227(and)-221(the)-222(essentially-)]TJ 0 -13.549 Td[(charitable)-250(Character)-250(of)]TJ/F28 10.909 Tf 102.687 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(.)]TJ -122.848 -18.459 Td[(Our)]TJ/F28 10.909 Tf 21.642 0 Td[(Protestant)]TJ/F16 10.909 Tf 50.137 0 Td[(Brethren,)-474(the)]TJ/F28 10.909 Tf 64.074 0 Td[(Dissenters)]TJ/F16 10.909 Tf 46.058 0 Td[(,)-474(by)-429(a)-428(prudent)-429(and)]TJ -193.867 -13.549 Td[(pious)-281(Regulation)-281(of)-281(secreting)-281(one)-280(Pound)-281(a)-281(Year,)-289(each)-281(parochial)]TJ 0 -13.549 Td[(Minister,)-332(for)-316(this)-632(religiously)-316(humane)-315(Purpose,)-333(have)-316(constantly)]TJ/F16 7.97 Tf -72.755 0 Td[([061])]TJ/F16 10.909 Tf 72.755 -13.55 Td[(a)-301(Fund)-300(sufficient)-301(to)-300(allow)-301(the)-300(Relict)-301(of)-300(each)-301(Clergyman)-301(twenty)]TJ 0 -13.549 Td[(Pounds)-270(a)-270(Year,)-275(\050which)-269(preserves)-270(her)-270(from)-270(the)-270(Miseries)-270(of)-270(Want)]TJ 0 -13.549 Td[(and)-318(Dependance\051)-318(and)-319(have,)-335(at)-318(some)-318(Periods,)-335(where-with)-318(to)-319(set)]TJ 0 -13.549 Td[(their)-269(Children)-270(up,)-274(in)-269(an)-269(honest)-270(and)-269(creditable)-269(Way)-269(of)-270(living.)-308(As)]TJ 0 -13.549 Td[(we)-317(are)-318(emulously)-317(fond)-317(of)-317(adopting)-318(the)-317(Wisdom)-317(and)-317(Virtues)-318(of)]TJ 0 -13.55 Td[(each)-378(Christian)-378(Sect)-378(and)-377(Society,)-410(it)-378(is)-378(fervently)-378(hoped)-378(we)-378(will)]TJ 0 -13.549 Td[(also)-283(this)-283(tender)-282(and)-283(pious)-283(Scheme;)-299(a)-283(Scheme)-283(so)-283(comprehensive)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
239 0 obj <<
/Type /Page
/Contents 240 0 R
/Resources 238 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
241 0 obj <<
/D [239 0 R /XYZ 172.24 160.986 null]
>> endobj
238 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
244 0 obj <<
/Length 4432
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(49)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(of)-324(true)-324(Charity,)-342(and)-324(so)-324(productive)-324(of)-324(social)-324(and)-324(happy)-324(Effects!)]TJ 0 -13.549 Td[(How)-404(difficult)-404(is)-404(it)-404(for)-404(Minds,)-442(crowded)-404(with)-404(Cares,)-443(and)-404(beset)]TJ 0 -13.549 Td[(with)-355(the)-355(pressing)-355(Calls)-355(of)-355(Family-preservation,)-381(to)-355(attend,)-382(with)]TJ 0 -13.549 Td[(due)-480(Composure)-481(and)-480(Inclination,)-538(to)-481(the)-480(various)-481(indispensible)]TJ 0 -13.55 Td[(Duties)-324(of)-324(the)-324(pastoral)-324(Office?)-471(But)-324(how)-324(chearfully)-324(would)-324(those)]TJ 0 -13.549 Td[(Reverend)-290(Gentlemen)-290(proceed)-290(in)-290(their)-290(divine)-290(Mission,)-300(when,)-300(by)]TJ 0 -13.549 Td[(some)-390(visible)-389(Provision)-390(for)-389(the)-390(proper)-389(Objects)-390(of)-389(their)-390(present)]TJ 0 -13.549 Td[(Cares)-341(and)-341(future)-342(Concern,)-364(they)-341(should,)-364(in)-341(a)-341(great)-342(Measure,)-364(be)]TJ 0 -13.549 Td[(released)-278(from)-277(domestick)-278(Anxiety,)-284(from)-278(gloomy)-278(Apprehensions,)]TJ 0 -13.55 Td[(and)-300(alarming)-300(Prospects,)-313(into)-300(the)-300(temporal)-301(Futurity)-300(of)-300(those,)-313(for)]TJ 0 -13.549 Td[(whom)-390(they)-389(must)-390(be)-390(necessarily)-389(affected)-390(with)-389(the)-390(most)-390(tender)]TJ 0 -13.549 Td[(Feelings!)]TJ 11.956 -16.004 Td[(The)-574(most)-574(convincing)-575(and)-574(decisive)-574(Method)-574(of)-575(adjudging)]TJ -11.956 -13.549 Td[(Causes,)-191(being)-176(by)-176(a)-176(comprehensive)-176(View)-176(and)-176(critical)-177(Examination)]TJ 0 -13.549 Td[(of)-248(their)-248(Effects;)-248(of)-248(Streams,)-248(by)-248(a)-247(nice)-248(Scrutiny)-248(and)-248(Investigation)]TJ 0 -13.55 Td[(of)-379(their)-379(Sources;)-443(hence)-379(may)-379(we,)-412(from)-379(the)-379(shining)-379(Characters,)]TJ 0 -13.549 Td[(and)-377(extensive)-377(Abilities)-377(of)-377(our)-376(Divines)-377(and)-377(Barristers,)-409(frame)-377(a)]TJ 0 -13.549 Td[(just)-340(Idea)-341(of)-340(the)-341(University)-340(of)]TJ/F28 10.909 Tf 134.384 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.306 0 Td[(,)-363(which,)-363(for)-340(Compass)-341(and)]TJ -164.69 -13.549 Td[(Extent)-251(of)-250(the)-251(Sciences,)-251(Variety)-251(of)-250(elegant)-251(Arts,)-251(found)-251(Erudition,)]TJ 0 -13.549 Td[(and)-473(polite)-473(Literature)-473(therein)-473(taught,)-528(in)-473(the)-473(most)-473(regular)-473(and)]TJ 0 -13.55 Td[(perspicuous)-500(Methods,)-250(is)-250(equalled)-250(by)-250(few,)-250(excelled)-250(by)-250(none.)]TJ/F16 7.97 Tf 291.024 0 Td[([062])]TJ/F16 10.909 Tf -279.068 -16.004 Td[(The)-225(Students)-224(are)-225(carefully)-225(instructed)-225(in)-224(the)-225(more)-225(refined)-225(Parts)]TJ -11.956 -13.549 Td[(of)-310(classical)-310(Learning;)-340(oriental,)-325(antient,)-325(and)-310(modern)-310(Languages;)]TJ 0 -13.549 Td[(Criticism,)-251(sacred)-251(and)-251(profane)-251(History,)-251(Oratory,)-251(Logick,)-251(Ethicks,)]TJ 0 -13.549 Td[(and)-550(Metaphysicks;)-699(in)-550(natural)-550(and)-550(experimental)-550(Philosophy;)]TJ 0 -13.549 Td[(Anatomy,)-324(Botany)-310(and)-309(Chymistry;)-339(the)-310(mathematicks,)-324(in)-310(Theory)]TJ 0 -13.549 Td[(and)-187(Practice;)-207(Civil)-187(and)-187(Canon)-186(Laws;)-208(Theology,)-199(Controversy,)-200(and)]TJ 0 -13.55 Td[(Ecclesiastical)-206(History:)-228(So)-206(that,)-215(with)-206(a)-206(good)-207(Capacity,)-214(and)-207(regular)]TJ 0 -13.549 Td[(Application,)-607(one)-536(may)-536(depart)-536(this)-536(University,)-607(as)-536(completely)]TJ 0 -13.549 Td[(and)-371(happily)-370(instituted)-371(for)-371(the)-371(honorary)-370(Professions)-371(of)-371(Life,)-401(as)]TJ 0 -13.549 Td[(may)-515(be)-515(reasonably)-515(expected)-515(from)-515(any)-515(Nursery)-516(of)-515(Learning)]TJ 0 -13.549 Td[(extant.)-984(The)-495(obtaining)-494(a)-495(Fellowship)-495(in)-494(this)-495(University,)-556(is)-495(a)]TJ 0 -13.55 Td[(demonstrative)-362(Test)-362(of)-362(comprehensive)-362(native)-362(Talents,)-391(thorough)]TJ 0 -13.549 Td[(intellectual)-242(Cultivation,)-243(deep)-241(and)-242(various)-241(learned)-242(Acquirements.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
243 0 obj <<
/Type /Page
/Contents 244 0 R
/Resources 242 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
245 0 obj <<
/D [243 0 R /XYZ 101.611 244.736 null]
>> endobj
242 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
248 0 obj <<
/Length 5937
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(50)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(The)]TJ/F28 10.909 Tf 18.918 0 Td[(Newtonian)]TJ/F16 10.909 Tf 49.236 0 Td[(Philosophy,)-193(the)-180(excellent)]TJ/F28 10.909 Tf 110.561 0 Td[(Boyle)]TJ/F16 10.909 Tf 24.84 0 Td[('s)-179(experimental)]TJ -215.511 -13.549 Td[(Philosophy,)-661(and)-579(Mr.)]TJ/F28 10.909 Tf 110.664 0 Td[(Locke)]TJ/F16 10.909 Tf 26.051 0 Td[('s)-579(Metaphysicks,)-661(prevail)-579(much)]TJ -136.715 -13.549 Td[(in)-493(the)-493(College)-494(of)]TJ/F28 10.909 Tf 86.365 0 Td[(Dublin)]TJ/F16 10.909 Tf 30.306 0 Td[(:)-736(Which,)-554(for)-494(Extent,)-554(Convenience,)]TJ -116.671 -13.549 Td[(Magnificence,)-376(and)-351(a)-351(most)-351(sumptuous)-351(elegant)-351(Library,)-377(exceeds)]TJ 0 -13.55 Td[(any)-377(one)-376(College)-377(in)]TJ/F28 10.909 Tf 90.368 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-630(The)-377(beautiful)-376(Parks)-377(belonging)-377(to)]TJ -122.484 -13.549 Td[(it,)-428(seem)-393(actually,)-429(on)-392(a)-393(serene)-393(Evening,)-428(the)-393(delightful)-393(Vale)-393(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Tempe)]TJ/F16 10.909 Tf 29.084 0 Td[(,)-398(or)-368(enchanting)-368(Recesses)-369(of)]TJ/F28 10.909 Tf 128.563 0 Td[(Parnassus)]TJ/F16 10.909 Tf 45.459 0 Td[(,)-398(inhabited)-368(by)-368(all)]TJ -203.106 -13.549 Td[(the)-250(Muses,)-250(all)-250(the)-250(Graces,)-250(with)-250(their)-250(charming)-250(Train.)]TJ 11.956 -18.459 Td[(The)-411(Trade)-411(of)]TJ/F28 10.909 Tf 64.942 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.117 0 Td[(,)-451(however)-411(in)-411(former)-411(Times)-411(miserably)]TJ -109.015 -13.549 Td[(restrained)-624(and)-625(limited,)-718(hath)-624(in)-624(this)-625(happy)-624(Reign)-625(received)]TJ 0 -13.549 Td[(considerable)-265(Enlargements;)-273(such)-266(as,)-269(the)-265(opening)-265(several)-266(Wooll-)]TJ 0 -13.55 Td[(Ports;)-357(the)-321(Bounty)-322(on)]TJ/F28 10.909 Tf 96.24 0 Td[(Irish)]TJ/F16 10.909 Tf 24.112 0 Td[(Linens,)-339(now)-322(our)-321(staple)-321(Commodity,)]TJ -120.352 -13.549 Td[(imported)-355(into)]TJ/F28 10.909 Tf 64.119 0 Td[(Great-Britain)]TJ/F16 10.909 Tf 60 0 Td[(;)-816(and)-355(the)-355(Immunity)-356(lately)-355(granted)]TJ/F16 7.97 Tf -196.874 0 Td[([063])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(of)-268(importing)-269(thither)-268(Beef,)-273(Butter,)-273(Tallow,)-273(Candles,)-274(Pork,)-273(Hides,)]TJ 0 -13.549 Td[(live)-238(Cattle,)]TJ/F28 10.909 Tf 50.366 0 Td[(&c.)]TJ/F16 10.909 Tf 18.74 0 Td[(a)-238(Privilege)-237(that,)-241(in)-237(its)-238(Consequences,)-240(must)-238(prove)]TJ -69.106 -13.549 Td[(of)-367(signal)-366(Advantage)-367(to)-367(both)-367(Nations;)-425(to)]TJ/F28 10.909 Tf 184.388 0 Td[(this)]TJ/F16 10.909 Tf 19.763 0 Td[(especially,)-396(as)-367(we)]TJ -204.151 -13.55 Td[(shall)-183(hereby)-183(be)-183(enabled,)-196(upon)-183(any)-183(occasional)-183(Exigency,)-197(to)-183(supply)]TJ 0 -13.549 Td[(our)-225(protecting)-226(Friends,)-230(and)-225(proportionably)-225(stint)-226(the)-225(Hands)-225(of)-226(our)]TJ 0 -13.549 Td[(Enemies,)-178(who,)-178(\050by)-160(the)-160(Profusion)-160(of)-160(Wines)-160(and)-161(spirituous)-160(Liquors,)]TJ 0 -13.549 Td[(annually)-317(exported)-317(from)]TJ/F28 10.909 Tf 107.323 0 Td[(France)]TJ/F16 10.909 Tf 34.963 0 Td[(to)-317(Ireland,)-334(in)-317(Exchange)-317(for)-317(our)]TJ -142.286 -13.549 Td[(Beef,)-428(Butter,)]TJ/F28 10.909 Tf 62.66 0 Td[(&c.)]TJ/F16 10.909 Tf 23.444 0 Td[(to)-392(pass)-393(over)-392(the)-392(Gluts)-393(of)-392(Teas)-392(and)-393(Spirits,)]TJ/F28 10.909 Tf -86.104 -13.55 Td[(&c.)]TJ/F16 10.909 Tf 21.258 0 Td[(smuggled)-326(thence)-325(by)-326(the)]TJ/F28 10.909 Tf 109.344 0 Td[(western)]TJ/F16 10.909 Tf 37.489 0 Td[(Runners\051)-326(have)-325(constantly)]TJ -168.091 -13.549 Td[(the)-465(Balance)-466(on)-465(their)-465(Side.)-896(Our)-466(Exports,)-519(with)-465(those)-466(already)]TJ 0 -13.549 Td[(mentioned,)-301(consist)-290(in)-291(a)-290(few)-291(Cheeses,)-301(Salmon)-290(and)-291(Kelp:)-331(But,)-301(as)]TJ 0 -13.549 Td[(our)-400(Linens)-399(are,)-437(without)-400(Question,)-437(become)-400(the)-399(vital)-400(Spring)-400(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Irish)]TJ/F16 10.909 Tf 22.601 0 Td[(Commerce,)-196(it)-183(is)-183(Matter)-182(of)-183(great)-183(Concern)-182(and)-183(equal)-183(Surprize,)]TJ -22.601 -13.549 Td[(that)-291(the)-290(other)-291(Provinces)-291(do)-291(not)-290(more)]TJ/F28 10.909 Tf 164.607 0 Td[(universally)]TJ/F16 10.909 Tf 51.652 0 Td[(and)]TJ/F28 10.909 Tf 18.924 0 Td[(effectually)]TJ/F16 10.909 Tf -235.183 -13.55 Td[(follow)-323(the)-323(lucrative)-323(Example)-323(of)-323(the)]TJ/F28 10.909 Tf 162.323 0 Td[(North)]TJ/F16 10.909 Tf 25.462 0 Td[(!)-469(since,)-341(it)-323(is)-323(evident,)]TJ -187.785 -13.549 Td[(nothing)-201(but)]TJ/F28 10.909 Tf 51.656 0 Td[(equal)-201(Industry)]TJ/F16 10.909 Tf 64.975 0 Td[(can)-201(be)-200(wanting)-201(to)-200(render)-201(them)]TJ/F28 10.909 Tf 131.883 0 Td[(equally)]TJ -248.514 -13.549 Td[(flourishing)]TJ/F16 10.909 Tf 47.891 0 Td[(,)-367(The)-343(Over-growth)-344(of)-343(Graziers)-343(and)-344(Stockmasters,)-367(is)]TJ -47.891 -13.549 Td[(the)-220(strongest)-221(Indication)-220(that)-220(can)-220(be)-221(of)-220(national)-220(Waste)-220(and)-221(Decay,)]TJ 0 -13.549 Td[(in)-424(respect)-424(of)-424(Inhabitants.)-773(What)-424(could)-424(a)-424(Foreigner,)-468(travelling)]TJ 0 -13.55 Td[(among)-303(us,)-315(partic)-1(ularly)-302(in)-303(the)]TJ/F28 10.909 Tf 130.88 0 Td[(western)]TJ/F16 10.909 Tf 37.24 0 Td[(Counties,)-316(some)-302(Summers)]TJ -168.12 -13.549 Td[(past,)-325(judge)-310(of)-309(our)-310(national)-310(Wisdom)-310(and)-309(Oeconomy?)-430(Would)-310(he)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
247 0 obj <<
/Type /Page
/Contents 248 0 R
/Resources 246 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 228 0 R
>> endobj
249 0 obj <<
/D [247 0 R /XYZ 225.144 350.675 null]
>> endobj
246 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
252 0 obj <<
/Length 5159
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(51)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(not)-204(start)-205(even)-204(at)-204(our)-205(Humanity,)-213(on)-204(seeing)-205(the)-204(best)-204(arable)-205(Grounds)]TJ 0 -13.549 Td[(in)-376(the)-376(Kingdom,)-408(in)-376(immense)-376(Tracts,)-408(wantonly)-376(enjoyed)-376(by)-377(the)]TJ 0 -13.549 Td[(Cattle)-192(of)-193(a)-192(few)-192(petulant)-192(Individuals;)-212(and)-192(at)-192(the)-193(same)-192(Juncture,)-204(our)]TJ 0 -13.549 Td[(high)-192(Ways)-192(and)-192(Streets)-192(crowded)-192(with)-192(Shoals)-192(of)-193(mendicant)-192(fellow-)]TJ 0 -13.55 Td[(creatures!)-507(reduced,)-357(through)-335(Want)-336(of)-335(proper)-336(Sustenance,)-357(to)-336(the)]TJ 0 -13.549 Td[(utmost)-351(Distress?)-1106(Would)-351(not)-351(a)]TJ/F28 10.909 Tf 145.562 0 Td[(Frenchman)]TJ/F16 10.909 Tf 54.12 0 Td[(for)-351(Example,)-376(give)]TJ/F16 7.97 Tf 91.342 0 Td[([064])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(a)-285(Shrug)-285(extraordinary,)-293(at)-285(finding,)-294(in)-284(every)-285(little)-285(Inn,)]TJ/F28 10.909 Tf 232.76 0 Td[(Bourdeaux)]TJ/F16 10.909 Tf -232.76 -13.549 Td[(Claret)-230(and)]TJ/F28 10.909 Tf 47.424 0 Td[(Nantz)]TJ/F16 10.909 Tf 27.967 0 Td[(Brandy,)-234(though,)-233(in)-230(all)-230(Likelihood,)-233(not)-230(a)-230(Morsel)]TJ -75.391 -13.549 Td[(of)]TJ/F28 10.909 Tf 11.814 0 Td[(Irish)]TJ/F16 10.909 Tf 23.335 0 Td[(Bread?)]TJ -23.194 -16.004 Td[(It)-223(is)-223(much)-223(to)-223(be)-222(hoped,)-229(That,)-228(when)-223(the)-223(Spirit)-223(of)-223(Tillage)-223(should)]TJ -11.955 -13.55 Td[(become)-423(more)-423(general)-422(and)-423(active,)-466(our)-423(Farmers)-423(more)-423(attentive)]TJ 0 -13.549 Td[(to)-441(the)-440(Growth)-441(of)-441(the)-441(best)-440(Kinds)-441(of)-441(Grain,)-488(and)-441(our)-441(Brewers,)]TJ 0 -13.549 Td[(more)-373(attentive)-372(to)-373(the)-373(Rules)-373(and)-372(Precepts)-373(for)-373(that)-373(Purpose)-373(laid)]TJ 0 -13.549 Td[(down)-436(by)-437(the)-436(Honourable)-437(the)-436(D)]TJ/F16 7.97 Tf 144.996 0 Td[(UBLIN)]TJ/F16 10.909 Tf 29.108 0 Td[(S)]TJ/F16 7.97 Tf 6.066 0 Td[(OCIETY)]TJ/F16 10.909 Tf 29.218 0 Td[(;)-437(we)-436(shall)-436(have)]TJ -209.388 -13.549 Td[(little)-324(or)-325(no)-325(Occasion)-324(for)-325(that)-324(Inundation)-325(of)]TJ/F28 10.909 Tf 194.357 0 Td[(London)-325(Porter)]TJ/F16 10.909 Tf 65.362 0 Td[(;)-362(\050an)]TJ -259.719 -13.55 Td[(heavy,)-359(cloudy,)-359(intoxicating,)-359(ill-flavoured)-337(Liquor\051)-337(that)-338(annually)]TJ 0 -13.549 Td[(overflows)-345(this)-345(City)-345(and)-344(other)-345(Parts)-345(of)-345(the)-345(Kingdom;)-392(as,)-369(in)-345(the)]TJ 0 -13.549 Td[(above)-220(Case,)-226(we)-220(may)-219(have)-220(a)-220(sufficient)-220(Plenty)-220(and)-220(Variety)-220(of)-220(Malt)]TJ 0 -13.549 Td[(Liquors,)-335(our)-318(own)-318(native)-318(Produce,)-335(far)-318(better)-318(than)-318(any)-318(imported;)]TJ 0 -13.549 Td[(and,)-243(in)-241(Case)-241(of)-241(a)-241(Redundancy)-241(of)-241(Grain,)-243(\050a)-241(Matter)-241(not)-241(very)-242(likely)]TJ 0 -13.55 Td[(to)-368(happen\051)-369(may,)-397(with)-369(moderate)-368(Care,)-398(have)-368(Spirituous)-369(Liquors)]TJ 0 -13.549 Td[(of)-347(far)-348(a)-347(more)-348(wholesome)-347(Nature,)-372(exquisite)-347(Taste,)-372(and)-347(de)-1(licate)]TJ 0 -13.549 Td[(Flavour,)-350(than)-330(those)-331(imported)-330(at)-330(an)-330(extraordinary)-330(Expence;)-371(and)]TJ 0 -13.549 Td[(but)-250(too)-250(often)-250(adulterated,)-250(in)-250(the)-250(first)-250(Concoction.)]TJ 11.955 -16.004 Td[(We)-326(have,)-345(in)-326(several)-326(Parts)-326(of)-326(this)-326(Kingdom,)-345(\050in)-327(the)-326(Province)]TJ -11.955 -13.549 Td[(of)]TJ/F28 10.909 Tf 12.472 0 Td[(Munster)]TJ/F16 10.909 Tf 39.745 0 Td[(especially\051)-310(a)-311(recy,)-325(spirituous,)-326(fine-flavoured)-310(Cyder,)]TJ -52.217 -13.549 Td[(very)-340(little,)-362(if)-340(at)-340(all,)-362(inferior)-340(to)-339(the)-340(best)-340(imported)-340(White)-340(Wines;)]TJ 0 -13.55 Td[(and)-342(a)-343(moderate)-342(Plenty)-342(of)-342(grateful)-343(Honey-Liquors,)-365(which,)-366(with)]TJ 0 -13.549 Td[(our)-356(prime)-356(Beef,)-383(Mutton,)-383(Pork,)-383(Veal,)-382(Lamb,)-383(Variety)-356(of)-356(Fo)-1(wls,)]TJ 0 -13.549 Td[(tame)-319(and)-320(wild;)-354(red)-319(and)-320(fallow)-319(Deer;)-354(Hares,)-337(Rabbits,)-336(P)-1(idgeons,)]TJ 0 -13.549 Td[(Pheasants,)-240(Grouse;)-242(and)-238(Partridge;)-242(wild)-238(Duck,)-241(Plover,)-240(Snipe,)]TJ/F28 10.909 Tf 264.571 0 Td[(&c.)]TJ/F16 10.909 Tf -264.571 -13.549 Td[(Lake,)-479(River,)-479(Shell)-434(and)-433(Sea)-433(Fish,)-479(of)-434(all)-433(Kinds;)-1050(the)-433(Pro)-1(duce)]TJ/F16 7.97 Tf 291.023 0 Td[([065])]TJ/F16 10.909 Tf -291.023 -13.55 Td[(of)-509(the)-509(Garden,)-574(\050Horticulture)-509(having)-509(of)-509(late)-509(Years)-509(so)-510(vastly)]TJ 0 -13.549 Td[(improved)-428(among)-427(us,)-472(that)-428(we)-428(now)-427(have)-428(many)-428(curious)-428(Plants,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
251 0 obj <<
/Type /Page
/Contents 252 0 R
/Resources 250 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
253 0 obj <<
/D [251 0 R /XYZ 126.332 450.429 null]
>> endobj
254 0 obj <<
/D [251 0 R /XYZ 267.867 93.24 null]
>> endobj
250 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
258 0 obj <<
/Length 5286
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(52)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Fruits,)-344(and)-325(Flowers,)-345(not)-325(only)-325(not)]TJ/F28 10.909 Tf 150.801 0 Td[(known)]TJ/F16 10.909 Tf 28.484 0 Td[(,)-344(but)-325(never)-326(even)]TJ/F28 10.909 Tf 75.894 0 Td[(heard)]TJ -255.179 -13.549 Td[(of)]TJ/F16 10.909 Tf 8.488 0 Td[(,)-392(in)-364(former)-364(Times\051)-364(and)]TJ/F28 10.909 Tf 107.714 0 Td[(all)]TJ/F16 10.909 Tf 15.5 0 Td[(in)-364(such)-364(Plenty)-364(and)-363(Perfection,)-393(as)]TJ -131.702 -13.549 Td[(demonstrate)]TJ/F28 10.909 Tf 55.632 0 Td[(Ireland)]TJ/F16 10.909 Tf 34.425 0 Td[(happier)-212(than)-211(most)-212(other)-211(Countries,)-220(in)-211(regard)]TJ -90.057 -13.549 Td[(of)-306(the)-307(Necessaries)-306(and)-307(even)-306(of)-306(the)-307(Delicacies)-306(of)-307(Life;)-334(to)-307(which)]TJ 0 -13.55 Td[(may)-330(be)-330(added,)-351(the)-330(great)-330(Number)-330(of)-330(our)-330(beautiful)-330(Lakes,)-351(noble)]TJ 0 -13.549 Td[(Rivers,)-493(pure)-444(Fountains,)-492(limpid)-444(Streams,)-493(and)-444(Health-restoring)]TJ 0 -13.549 Td[(mineral)-230(Wells.)]TJ/F16 7.97 Tf 64.016 3.959 Td[(4)]TJ/F16 10.909 Tf 7.138 -3.959 Td[(In)-230(this)-230(Country)-230(are)-231(bred)-230(valuable)-230(Horses,)-234(for)-230(the)]TJ -71.154 -13.549 Td[(Draught,)-325(Road,)-326(and)-310(Chace;)-341(and)-310(for)-310(the)-311(Course,)-325(as)-311(high-formed)]TJ 0 -13.549 Td[(ones,)-445(as)-405(in)-406(any)-405(Part)-406(of)]TJ/F28 10.909 Tf 109.687 0 Td[(Europe)]TJ/F16 10.909 Tf 32.116 0 Td[(;)-483(and)-406(large)-406(horned)-405(Cattle,)-445(and)]TJ -141.803 -13.55 Td[(Sheep)-250(in)-250(Abundance.)]TJ 11.955 -14.847 Td[(It)-323(must)-324(afford)-323(real)-324(Satisfaction)-323(to)-323(consider)-324(the)-323(universal)-324(and)]TJ -11.955 -13.55 Td[(visible)-195(Reformation)-195(in)-195(the)-195(Lives)-195(and)-195(Morals)-195(even)-195(of)-195(our)-195(common)]TJ 0 -13.549 Td[(People,)-321(clearly)-306(evinced)-307(in)-306(this,)-321(that)-306(\050thank)-307(Heaven\051)-306(fewer)-307(legal)]TJ 0 -13.549 Td[(Punishments)-289(succeed)-288(an)-289(entire)-288(Circuit,)-299(in)-288(our)-289(happy)-288(Days,)-299(than)]TJ 0 -13.549 Td[(did)-202(a)-201(single)-201(Assize)-202(in)-201(former)-202(Reigns:)-226(And,)-211(without)-201(Question,)-212(this)]TJ 0 -13.549 Td[(Reformation)-364(must)-365(still)-364(rise)-364(higher,)-393(in)-365(Proportion)-364(to)-364(the)-365(Lenity)]TJ 0 -13.55 Td[(of)-377(our)-377(worthy)-377(Legislature,)-409(and)-377(wise)-377(Indulgence)-377(of)-377(our)-377(landed)]TJ 0 -13.549 Td[(Men,)-302(who)-291(must)-291(certainly)-292(find)-291(it)-291(more)-292(conducive)-291(to)-291(the)-292(Welfare)]TJ 0 -13.549 Td[(of)-390(the)-390(State,)-425(and)-390(to)-390(their)-390(own)-390(Strength,)-425(Honour,)-426(and)-390(Interest,)]TJ 0 -13.549 Td[(to)-367(have)-368(their)-367(Estates)-368(farmed)-367(and)-368(inhabited)-367(by)-368(a)-367(great)-368(Number)]TJ 0 -13.549 Td[(of)-329(honest,)-350(laborious)-329(improving)-330(Families,)-349(than)-329(wasted)-330(by)-329(a)-330(few)]TJ 0 -13.549 Td[(Purse-proud)-451(Bullock-Brokers,)-502(who)-451(rarely)-451(allow)-451(the)-452(wretched)]TJ 0 -13.55 Td[(Herd)-412(of)-411(an)-412(hundred,)-452(as)-411(much)-412(Ground)-823(for)-412(his)-411(own)-412(and)-412(poor)]TJ/F16 7.97 Tf -72.756 0 Td[([066])]TJ/F16 10.909 Tf 72.756 -13.549 Td[(Family's)-250(Support,)-250(as)-250(is)-250(equal)-250(to)-250(that)-250(of)-250(two)-250(Bullocks.)]TJ 11.955 -14.848 Td[(Suppose)-236(a)-235(Gentleman)-236(was)-235(to)-236(let)-235(two)-236(thousand)-236(Acres)-235(of)-236(arable)]TJ -11.955 -13.549 Td[(Ground)-525(to)-526(farm;)-662(were)-526(it)-525(not)-525(demonstrably)-525(more)-526(conducive)]TJ 0 -13.549 Td[(to)-508(all)-508(the)-507(foregoing)-508(Motives,)-573(to)-507(dispose)-508(of)-508(these)-508(to)-508(twenty)]TJ 0 -13.549 Td[(honest,)-485(industrious)-438(Families,)-485(at)-438(an)-438(hundred)-438(Acres)-438(each,)-485(than)]TJ 0 -13.549 Td[(to)-348(any)-348(one)-348(Beau-Graz)-1(ier)-348(whatever?)-544(From)-348(the)-348(twenty)-349(Tenures,)]TJ 0 -13.55 Td[(the)-359(Landlord)-359(may,)-386(in)-359(any)-359(national)-359(Shock,)-386(raise)-359(a)-359(considerable)]TJ 0 -13.549 Td[(Number)-289(of)-289(effective)-289(Hands,)-299(and)-289(zealous)-289(Hearts,)-299(for)-289(the)-290(Service)]TJ
ET
1 0 0 1 93.543 95.892 cm
0 g 0 G
1 0 0 1 0 2.59 cm
q
[]0 d
0 J
0.398 w
0 0.199 m
112.25 0.199 l
S
Q
1 0 0 1 -93.543 -98.482 cm
BT
/F16 5.978 Tf 99.77 91.869 Td[(4)]TJ/F16 8.966 Tf 5.729 -3.809 Td[(To)-161(all)-161(the)-161(above)-161(Productions)-161(of)]TJ/F28 8.966 Tf 110.268 0 Td[(Ireland)]TJ/F16 8.966 Tf 26.397 0 Td[(,)-179(may)-161(be)-161(justly)-161(added,)-179(our)-161(inestimable)]TJ -148.621 -10.959 Td[(Fisheries,)-492(and)-443(plentiful)-444(Mines,)-491(which,)-492(under)-443(due)-444(national)-443(Encouragement,)]TJ 0 -10.959 Td[(would)-250(raise)-250(immense)-250(Treasure)-1(s.)]TJ
ET
1 0 0 1 93.543 62.854 cm
0 g 0 G
1 0 0 1 0 -24.072 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
257 0 obj <<
/Type /Page
/Contents 258 0 R
/Resources 256 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
259 0 obj <<
/D [257 0 R /XYZ 271.738 218.794 null]
>> endobj
256 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
262 0 obj <<
/Length 5064
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(Essay.)-22142(53)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(of)-288(the)-289(Crown,)-298(or)-288(Defence)-289(of)-288(his)-289(Country;)-307(and)-289(reap)-288(many)-289(signal)]TJ 0 -13.549 Td[(Advantages)-470(to)-469(the)-470(public)-469(and)-470(private)-469(Concernments)-470(of)-470(Life,)]TJ 0 -13.549 Td[(not)-437(possibly)-437(derivable)-438(from)-437(the)-437(anti-social)-437(Monopolizers)-438(and)]TJ 0 -13.549 Td[(Forestallers)-388(of)-388(Farms;)-457(who)-388(ever)-388(fondly)-388(attribute)-388(their)-388(Growth)]TJ 0 -13.55 Td[(to)-473(their)-473(own)-472(Sagacity)-473(and)-473(Cleverness,)-528(without)-473(any)-473(the)-473(least)]TJ 0 -13.549 Td[(Gratitude)-256(or)-256(Obligation)-256(to)-256(the)-256(Land-owner.)-267(These)-256(Sentiments,)-258(it)]TJ 0 -13.549 Td[(is)-225(hoped,)-230(will)-225(every)-225(Day)-225(gain)-225(more)-225(and)-225(more)-226(Consideration)-225(with)]TJ 0 -13.549 Td[(our)-250(wise)-250(and)-250(beneficent)-250(Legislature,)-250(Nobility)-250(and)-250(Gentry.)]TJ 11.956 -16.004 Td[(Many)-255(intelligent)-255(Persons,)-256(of)-255(all)-255(Ranks,)-256(complain)-255(much)-255(of)-255(the)]TJ -11.956 -13.549 Td[(Want)-420(of)-420(some)-420(Establishment)-420(in)-420(the)-420(Way)-420(of)-420(a)-420(national)-420(Bank,)]TJ 0 -13.55 Td[(to)-443(secure)-443(popular)-442(Cre)-1(dit,)-491(and)-442(the)-443(Kingdom)-443(from)-443(the)-443(various)]TJ 0 -13.549 Td[(alarming)-214(Shocks)-215(it)-214(is)-215(so)-214(frequently)-214(incident)-215(to,)-221(on)-215(Account)-214(of)-215(the)]TJ 0 -13.549 Td[(Failure)-250(of)-250(particular)-250(Banks.)]TJ 11.956 -16.004 Td[(The)-233(Nobility)-234(and)-233(Gentry)-233(of)]TJ/F28 10.909 Tf 121.197 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-237(are)-233(Loyalists)-233(and)-234(Patriots)]TJ -165.269 -13.549 Td[(by)-254(Principle)-254(and)-254(Education:)-257(They)-254(are)-254(brave,)-255(without)-254(Arrogance;)]TJ 0 -13.549 Td[(gay,)-579(without)-514(Levity;)-645(polite,)-580(without)-513(Affectation;)-646(charitable,)]TJ 0 -13.55 Td[(without)-646(Ostentation;)-844(religious,)-745(without)-646(Formality;)-844(affable,)]TJ 0 -13.549 Td[(without)-488(Meanness;)-607(generous,)-548(without)-488(View;)-607(and)-489(hospitable,)]TJ 0 -13.549 Td[(without)-276(Reserve:)-303(In)-276(their)-276(Converse,)-283(easy;)-290(in)-276(their)-276(Dealings)-277(just;)]TJ 0 -13.549 Td[(placable)-204(in)-205(their)-204(Resentments,)-213(in)-409(their)-204(Friendship)-205(steady:)]TJ/F31 10.909 Tf 247.303 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(They)]TJ/F16 7.97 Tf 32.812 0 Td[([067])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(have)-631(neither)-632(the)-631(volatile)-631(Airyness)-631(of)-632(the)]TJ/F28 10.909 Tf 206.355 0 Td[(Frenchman)]TJ/F16 10.909 Tf 50.291 0 Td[(,)-727(the)]TJ -256.646 -13.55 Td[(stated)-417(Gravity)-417(of)-417(the)]TJ/F28 10.909 Tf 99.397 0 Td[(Spaniard)]TJ/F16 10.909 Tf 40.004 0 Td[(;)-501(the)-417(supicious)-417(Jealousy)-417(of)-417(the)]TJ/F28 10.909 Tf -139.401 -13.549 Td[(Italian)]TJ/F16 10.909 Tf 29.095 0 Td[(;)-240(the)-236(forbidding)-235(Haughtiness)-236(of)-235(the)]TJ/F28 10.909 Tf 154.24 0 Td[(German)]TJ/F16 10.909 Tf 35.749 0 Td[(;)-240(the)-236(saturnine)]TJ -219.084 -13.549 Td[(Gloominess)-304(of)-305(the)]TJ/F28 10.909 Tf 84.505 0 Td[(Flandrican)]TJ/F16 10.909 Tf 49.091 0 Td[(,)-318(nor)-304(the)-305(sordid)-304(Parsimony)-305(of)-304(the)]TJ/F28 10.909 Tf -133.596 -13.549 Td[(Dutchman)]TJ/F16 10.909 Tf 45.448 0 Td[(:)-244(In)-239(short,)-241(they)-239(are)-239(neither)-238(whimsical,)-241(splenetic,)-241(su)-1(llen)]TJ -45.448 -13.549 Td[(or)-390(capricious:)]TJ/F31 10.909 Tf 61.215 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(And,)-425(as)-391(for)-390(Cunning,)-425(Craft,)-426(or)-390(Dissimulation,)]TJ -72.124 -13.549 Td[(these)-183(are)-182(such)-183(sorry)-182(Guests)-183(as)-183(never)-182(found)-183(Shelter)-182(in)-183(the)-183(generous)]TJ 0 -13.55 Td[(Breast)-336(of)-335(an)]TJ/F28 10.909 Tf 58.244 0 Td[(Irish)]TJ/F16 10.909 Tf 24.269 0 Td[(Noble)-336(or)-335(Gentleman;)-379(so)-335(that,)-358(if)-335(we)-336(consider)]TJ -82.513 -13.549 Td[(this)-440(Country,)-487(with)-440(regard)-439(to)-440(its)-440(military)-439(Fame,)-488(constitutional)]TJ 0 -13.549 Td[(Wisdom,)-174(Learning,)-174(Arts,)-174(Improvements,)-174(and)-155(natural)-156(Advantages;)]TJ 0 -13.549 Td[(and)-271(above)-270(all,)-276(the)-270(benevolent)-271(Temper,)-276(charitable)-270(and)-271(hospitable)]TJ 0 -13.549 Td[(Disposition)-470(of)-470(its)-470(Inhabitants;)-579(it)-470(is)-470(true,)-525(we)-470(may)-470(find)-470(many)]TJ 0 -13.55 Td[(of)-372(more)-372(popular)-372(Bustle)-372(and)-372(Eclat,)-403(more)-372(extensive)-372(Commerce,)]TJ 0 -13.549 Td[(greater)-209(Opulence)-209(and)-209(Pomp;)-222(but)-209(none)-209(of)-209(more)-208(general,)-218(solid,)-217(and)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
261 0 obj <<
/Type /Page
/Contents 262 0 R
/Resources 260 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
263 0 obj <<
/D [261 0 R /XYZ 189.818 255.831 null]
>> endobj
260 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
266 0 obj <<
/Length 1099
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(54)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(intrinsick)-250(Worth,)-250(than)]TJ/F28 10.909 Tf 98.782 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)]TJ -118.942 -13.549 Td[(I)-375(shall)-376(conclude)-375(with)-376(the)-375(following)-376(Proposition)-376(to)-375(any)-376(one,)]TJ -11.956 -13.549 Td[(who)-211(may)-211(arrogate)-211(to)-211(himself)-210(Praise)-211(or)-211(Wit,)-219(by)-211(ridiculing)]TJ/F28 10.909 Tf 245.787 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)]TJ/F28 10.909 Tf -277.903 -19.004 Td[(Si)-250(quid)-250(Novisti)-250(rectius)-250(istis)]TJ/F39 10.909 Tf 116.989 0 Td[(\024)]TJ/F28 10.909 Tf -116.989 -13.549 Td[(Candidus)-250(imperti;)-250(Si)-250(non,)-250(his)-250(utere)-250(mecum.)]TJ/F16 7.97 Tf -72.755 -34.986 Td[([068])]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
265 0 obj <<
/Type /Page
/Contents 266 0 R
/Resources 264 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
267 0 obj <<
/D [265 0 R /XYZ 93.543 423.538 null]
>> endobj
264 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F39 135 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
268 0 obj
<< /S /GoTo /D (index3) >>
endobj
271 0 obj
(The Farmer's Case Of The Roman-Catholics Of Ireland.)
endobj
274 0 obj <<
/Length 3988
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(The)-274(Farmer's)-273(Case)-274(Of)-274(The)]TJ 0 -51.056 Td[(Roman-Catholics)-250(Of)]TJ/F28 18.959 Tf 162.193 0 Td[(Ireland)]TJ/F16 18.959 Tf 55.815 0 Td[(.)]TJ/F16 10.909 Tf -218.008 -34.933 Td[(In)-250(a)-250(L)]TJ/F16 7.97 Tf 26.051 0 Td[(ETTER)]TJ/F16 10.909 Tf 27.523 0 Td[(from)-250(a)-250(M)]TJ/F16 7.97 Tf 41.203 0 Td[(EMBER)]TJ/F16 10.909 Tf 30.184 0 Td[(of)-250(the)-250(P)]TJ/F16 7.97 Tf 33.939 0 Td[(ROTESTANT)]TJ/F16 10.909 Tf 49.217 0 Td[(C)]TJ/F16 7.97 Tf 7.276 0 Td[(HURCH)]TJ/F16 10.909 Tf 27.895 0 Td[(.)]TJ -231.332 -14.052 Td[(D)]TJ/F16 7.97 Tf 7.876 0 Td[(EAR)]TJ/F16 10.909 Tf 18.667 0 Td[(S)]TJ/F16 7.97 Tf 6.066 0 Td[(IR)]TJ/F16 10.909 Tf 7.97 0 Td[(,)]TJ -40.579 -14.051 Td[(I)-324(think)-324(myself)-325(indebted)-324(to)-324(any)-325(Occasion)-324(that)-324(restores)-324(you)-325(to)]TJ -11.956 -13.549 Td[(a)-301(Friend,)-313(whom)-301(I)-301(feared)-301(you)-301(had)-301(long)-300(forgotten.)-403(But)-301(I)-301(confess,)]TJ 0 -13.549 Td[(at)-286(the)-286(same)-287(Time,)-295(that)-286(the)-286(Pleasure)-287(of)-286(hearing)-286(from)-286(you,)-295(after)-287(a)]TJ 0 -13.55 Td[(Silence)-341(of)-341(Several)-341(Years,)-364(is,)-364(in)-341(some)-341(Measure,)-364(damped)-341(by)-342(the)]TJ 0 -13.549 Td[(Censure)-250(that)-250(seems)-250(to)-250(constitute)-250(the)-250(chief)-250(Intent)-250(of)-250(your)-250(Letter.)]TJ/F16 7.97 Tf 291.024 0 Td[([069])]TJ/F16 10.909 Tf -279.068 -14.051 Td[(You)-508(tell)-509(me)-508(that)-509(you)-508(lately)-508(happened)-509(upon)-508(some)-509(Papers)]TJ -11.956 -13.55 Td[(that)-316(were)-316(entitled)-316(The)-315(FARMER's)-316(LETTERS,)]TJ/F28 10.909 Tf 208.386 0 Td[(&c.)]TJ/F16 10.909 Tf 20.941 0 Td[(which)-316(were)]TJ -229.327 -13.549 Td[(imputed)-291(to)-291(me)-291(as)-291(the)-292(Author.)-373(And,)-301(after)-291(some)-291(Compliments)-292(on)]TJ 0 -13.549 Td[(Spirit,)-229(and)-223(Genius,)-228(and)-223(so)-224(forth,)-228(in)-223(order)-224(to)-223(palliate,)-228(as)-223(I)-224(suppose,)]TJ 0 -13.549 Td[(what)-262(you)-263(purpose)-262(to)-262(administer,)-265(you)-263(charge)-262(me,)-265(by)-263(Implication,)]TJ 0 -13.549 Td[(with)-222(Crimes,)-228(whose)-222(smallest)-222(Tendency)-222(I)-222(should)-222(abhor)-222(in)-223(myself,)]TJ 0 -13.549 Td[(as)-250(in)-250(any)-250(Man)-250(breathing.)]TJ 11.956 -14.052 Td[(You)-363(say,)-392(favourably)-364(enough)-363(for)-364(your)-363(own)-364(Disposition,)-392(that)]TJ -11.956 -13.549 Td[(you)-173(have)-174(long)-173(looked)-173(on)-173(the)]TJ/F28 10.909 Tf 121.633 0 Td[(Roman-Catholics)]TJ/F16 10.909 Tf 78.253 0 Td[(of)-173(these)-174(Kingdoms)]TJ -199.886 -13.549 Td[(as)-191(a)-191(discountenanced)-190(and)-191(pitiable)-191(People.)-230(That)-191(you)-191(would)-191(choose)]TJ 0 -13.549 Td[(to)-268(allow)-268(to)-268(others)-269(the)-268(same)-268(Latitude)-268(of)-268(Conscience)-268(that)-268(you)-269(like)]TJ 0 -13.55 Td[(for)-321(yourself.)-462(That)-321(it)-321(is)-320(not)-321(a)-321(Part)-321(of)-320(Hu)-1(manity)-320(to)-321(break)-321(a)-321(Reed)]TJ 0 -13.549 Td[(already)-431(bruised.)-794(That)-432(such)-431(a)-432(Treatment)-431(would)-431(be)-432(blameable)]TJ 0 -13.549 Td[(respecting)-279(any)-279(Individual;)-293(how)-279(much)-279(more)-279(so,)-287(in)-279(Prejudice)-279(of)-279(a)]TJ 0 -13.549 Td[(whole)-258(People.)-272(That)-258(those)-257(Papers)-258(are)-257(pointed)-258(with)-257(a)-258(Keenness)-258(of)]TJ 0 -13.549 Td[(Enmity,)-248(for)-248(which)-248(the)-248(Talents,)-248(which)-248(you)-248(are)-248(pleased)-248(to)-248(ascribe,)]TJ 0 -13.55 Td[(cannot)-366(sufficiently)-367(apologize.)-599(And,)-396(that)-366(you)-366(did)-367(not)-366(think)-367(me)]TJ 0 -13.549 Td[(capable)-266(of)-267(exasperating)-266(Government)-267(and)-266(Power)-266(against)-267(a)-266(Set)-267(of)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
273 0 obj <<
/Type /Page
/Contents 274 0 R
/Resources 272 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
269 0 obj <<
/D [273 0 R /XYZ 46.771 529.134 null]
>> endobj
275 0 obj <<
/D [273 0 R /XYZ 46.771 308.654 null]
>> endobj
272 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
278 0 obj <<
/Length 5007
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(56)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Men)-254(who)-254(were)-255(already)-254(under)-254(the)-254(Displeasure)-254(and)-254(Depression)-255(of)]TJ 0 -13.549 Td[(the)-250(Law.)]TJ 11.956 -14.531 Td[(These,)-503(my)-452(dear)-452(Friend,)-502(are)-452(home)-452(and)-453(heavy)-452(Accusations,)]TJ -11.956 -13.549 Td[(however)-414(tempered)-414(by)-413(Expressions)-414(of)-414(Kindness)-414(and)-414(Affection)]TJ 0 -13.55 Td[(from)-250(the)-250(Man)-250(whom)-250(I)-250(sincerely)-250(love)-250(and)-250(respect.)]TJ 11.956 -14.531 Td[(But,)-430(if)-394(I)-394(know)-394(any-thing)-394(of)-394(myself,)-430(the)-394(Quality,)-430(called)-394(Ill-)]TJ -11.956 -13.549 Td[(nature,)-236(is)-233(not)-232(my)-233(Characteristic.)-244(I)-232(would)-233(not)-232(excha)-1(nge)-232(one)-233(Grain)]TJ 0 -13.549 Td[(of)-451(Good-heart)-451(for)-450(all)-451(the)-451(Wit)-451(of)-450(a)]TJ/F28 10.909 Tf 165.36 0 Td[(C----d)]TJ/F16 10.909 Tf 32.179 0 Td[(or)-451(Comprehension)]TJ -197.539 -13.549 Td[(of)-407(a)]TJ/F28 10.909 Tf 22.808 0 Td[(P--tt)]TJ/F16 10.909 Tf 19.997 0 Td[(,)-446(independent)-407(of)-407(their)-407(Virtue.)-720(And)-407(I)-407(may)-407(say,)-446(with)]TJ -42.805 -13.549 Td[(great)-256(Truth,)-257(that)-255(an)-256(Excess)-511(of)-255(Humanity)-256(hath)-255(occasioned)-256(all)-256(the)]TJ/F16 7.97 Tf -72.755 0 Td[([070])]TJ/F16 10.909 Tf 72.755 -13.55 Td[(Misfortunes)-250(and)-250(Distresses)-250(of)-250(my)-250(Life.)]TJ 11.956 -14.531 Td[(I)-325(most)-325(solemnly)-325(assure)-326(you,)-344(that)-325(when)-325(I)-325(wrote)-325(those)-326(Letters)]TJ -11.956 -13.549 Td[(I)-351(was)-350(in)-351(perfect)-351(Love)-350(and)-351(Charity)-351(with)-350(every)]TJ/F28 10.909 Tf 208.318 0 Td[(Roman)-351(Catholic)]TJ/F16 10.909 Tf -208.318 -13.549 Td[(in)-336(the)-336(Kingdom)-336(of)]TJ/F28 10.909 Tf 86.784 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-508(I)-336(knew)-336(that)-336(they)-336(were)-336(a)-336(depressed)]TJ -118.9 -13.549 Td[(People.)-779(I)-426(had)-426(long)-426(pitied)-427(them)-426(as)-426(such.)-779(I)-426(was)-426(sensible)-427(that)]TJ 0 -13.55 Td[(the)-336(Laws,)-357(under)-335(which)-336(they)-335(suffered,)-357(had)-336(been)-335(enacted)-336(by)-336(our)]TJ 0 -13.549 Td[(Ancestors,)-483(when)-436(the)-436(Impressions)-436(of)-436(Hostility)-436(were)-436(fresh)-436(and)]TJ 0 -13.549 Td[(warm,)-223(and)-216(when)-216(Passion,)-223(if)-216(I)-216(may)-216(venture)-216(to)-216(say)-216(so,)-223(co-operated,)]TJ 0 -13.549 Td[(in)-420(some)-420(Measure,)-463(with)-420(Utility)-420(and)-420(Reason.)-760(I)-420(will)-420(go)-420(a)-421(Step)]TJ 0 -13.549 Td[(further.)-752(I)-417(thought)-417(those)-417(Laws)-418(not)-417(severe)-417(enough)-417(to)-418(suppress)]TJ 0 -13.55 Td[(them)-293(as)-293(Enemies,)-303(nor)-293(yet)-293(sufficiently)-292(favourable)-293(to)-293(attach)-293(them)]TJ 0 -13.549 Td[(to)-375(us)-375(as)-375(Friends.)-625(They)-375(were)-375(not)-374(so)-375(cruel)-375(as,)-406(wholly,)-407(to)-375(serve)]TJ 0 -13.549 Td[(for)-483(quelling;)-600(and)-483(yet)-483(they)-484(had)-483(a)-483(Poignancy)-483(that)-483(might)-484(tend)]TJ 0 -13.549 Td[(to)-336(provoke.)-507(And)-336(all)-335(this)-336(I)-336(imputed)-336(to)-335(the)-336(Resentment)-336(that)-336(was)]TJ 0 -13.549 Td[(blended)-177(with)-178(the)-177(Humanity)-177(of)-178(our)-177(Ancestors.)-226(Their)-177(Humanity)-178(left)]TJ 0 -13.55 Td[(to)-317(Papists)-316(a)-317(Power)-316(of)-317(hurting,)-333(while)-316(their)-317(Resentment)-317(abridged)]TJ 0 -13.549 Td[(the)-250(Inducements)-250(that)-250(might)-250(engage)-250(them)-250(to)-250(serve)-250(us.)]TJ 11.956 -14.531 Td[(Believe)-570(me,)-649(Sir,)-650(I)-569(never)-570(was)-570(of)-569(a)-570(cruel)-570(or)-570(persecuting)]TJ -11.956 -13.549 Td[(Disposition.)-694(I)-397(was)-398(grieved)-398(to)-398(see)-398(the)-398(Discouragements)-398(under)]TJ 0 -13.549 Td[(which)-250(the)]TJ/F28 10.909 Tf 45.456 0 Td[(Roman)-250(Catholics)]TJ/F16 10.909 Tf 78.193 0 Td[(of)-250(this)-251(Kingdom)-250(laboured,)-251(but)-250(these)]TJ -123.649 -13.549 Td[(very)-250(Discouragements)-250(made)-250(me)-250(fear)-250(them)-250(the)-250(more.)]TJ 11.956 -14.531 Td[(Previous)-483(to)-483(the)-484(Letters,)-541(which)-483(you)-484(censure)-483(so)-483(warmly,)-542(a)]TJ -11.956 -13.55 Td[(dangerous)-226(Rebellion)-226(had)-226(broken)-225(out)-226(in)]TJ/F28 10.909 Tf 170.52 0 Td[(Scotland)]TJ/F16 10.909 Tf 38.181 0 Td[(,)-231(in)-226(consequence)]TJ -208.701 -13.549 Td[(of)-290(a)]TJ/F28 10.909 Tf 20.261 0 Td[(French)]TJ/F16 10.909 Tf 34.671 0 Td[(Invasion,)-300(that)-290(was)-290(headed)-291(by)-290(a)-290(Popish)-290(Pretender)-290(to)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
277 0 obj <<
/Type /Page
/Contents 278 0 R
/Resources 276 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
279 0 obj <<
/D [277 0 R /XYZ 213.228 394.269 null]
>> endobj
276 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
282 0 obj <<
/Length 6065
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Farmer's)-250(Case)-250(Of)-250(The)-250(Roman-Catholics)-250(Of)]TJ/F28 10.909 Tf 211.32 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-2159(57)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(the)-282(Throne.)-345(Be)-282(pleased)-282(to)-282(remember,)-290(\050if)-281(it)-282(is)-282(not)-282(too)-282(mortifying)]TJ 0 -13.549 Td[(a)-306(Recollection)-307(for)-306(a)-306(free-born)]TJ/F28 10.909 Tf 134.839 0 Td[(Briton)]TJ/F16 10.909 Tf 27.884 0 Td[(\051)-306(the)-306(Pannic)-307(into)-306(which)-306(all)]TJ/F28 10.909 Tf -162.723 -13.549 Td[(England)]TJ/F16 10.909 Tf 39.516 0 Td[(was)-467(struck)-233(by)-233(a)-233(few)]TJ/F28 10.909 Tf 91 0 Td[(Scotch)]TJ/F16 10.909 Tf 31.628 0 Td[(Vassals,)-237(undisciplined,)-236(and)]TJ/F16 7.97 Tf 128.88 0 Td[([071])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(unactuated)-204(by)-205(any)-204(Motive)-205(of)-204(Liberty)-204(or)-205(Virtue,)-213(save)-205(the)-204(Virtue)-205(of)]TJ 0 -13.55 Td[(being)-203(attached)-202(to)-203(their)]TJ/F28 10.909 Tf 97.918 0 Td[(Laird)]TJ/F16 10.909 Tf 26.462 0 Td[(or)-203(their)]TJ/F28 10.909 Tf 33.506 0 Td[(Leader)]TJ/F16 10.909 Tf 30.905 0 Td[(.)-234(Millions)-203(of)]TJ/F28 10.909 Tf 55.774 0 Td[(English)]TJ/F16 10.909 Tf 33.338 0 Td[(,)]TJ -277.903 -13.549 Td[(at)-317(that)-318(Time,)-334(sunk)-317(in)-317(the)-317(Down)-318(of)-317(a)-317(long)-317(Peace,)-334(and)-318(enervated)]TJ 0 -13.549 Td[(by)-263(ministerial)-262(Corruption)-263(and)-263(Venality,)-266(feared)-262(that)-263(a)-263(Handful)-263(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Highlanders)]TJ/F16 10.909 Tf 56.93 0 Td[(would)-219(win)-218(their)-219(Way)-218(to)]TJ/F28 10.909 Tf 104.64 0 Td[(London)]TJ/F16 10.909 Tf 33.338 0 Td[(,)-225(and,)-225(at)-218(one)-219(Stroke,)]TJ -194.908 -13.549 Td[(put)-268(a)-268(Period)-268(to)-269(the)-268(boasted)-268(Strength)-268(and)-268(Grandeur)-268(of)-268(the)]TJ/F28 10.909 Tf 250.925 0 Td[(British)]TJ/F16 10.909 Tf -250.925 -13.55 Td[(Constitution.)]TJ 11.956 -15.185 Td[(I)-206(was)-206(astonished)-206(at)-206(the)-206(Apprehensions)-206(that)]TJ/F28 10.909 Tf 185.404 0 Td[(England)]TJ/F16 10.909 Tf 39.219 0 Td[(was)-206(under)]TJ -236.578 -13.55 Td[(from)-318(so)-317(contemptible)-318(an)-318(Armament.)-452(But)-318(I)-318(deemed)-317(the)-318(Case)-318(of)]TJ/F28 10.909 Tf 0 -13.549 Td[(Ireland)]TJ/F16 10.909 Tf 36.621 0 Td[(to)-413(be)-413(highly)-413(alarming.)-739(The)]TJ/F28 10.909 Tf 131.223 0 Td[(Roman-Catholics)]TJ/F16 10.909 Tf 76.363 0 Td[(,)-454(at)-413(that)]TJ -244.207 -13.549 Td[(Time,)-468(outnumbered)-424(us)-425(Five)-424(to)-425(One.)-773(They)-424(were)-425(disarmed,)-468(it)]TJ 0 -13.549 Td[(is)-372(true,)-402(but)-372(I)-372(was)-372(not)-372(equally)-372(sure)-372(that)-372(they)-372(had)-372(Reason)-372(to)-373(be)]TJ 0 -13.549 Td[(reconciled.)-487(As)-329(they)-329(were)-329(not)-329(admitted)-329(to)-329(realize)-329(their)-329(Fortune,)]TJ 0 -13.55 Td[(it)-400(consisted)-400(of)-401(ready)-400(Money,)-438(and)-400(that)-400(gave)-401(ready)-400(Power.)-701(As)]TJ 0 -13.549 Td[(they)-310(were)-310(not)-310(permitted)-311(to)-310(purchase,)-325(or)-310(accept)-310(a)-310(Tenure)-310(of)-311(any)]TJ 0 -13.549 Td[(valuable)-349(Length,)-374(Loyalty,)-373(perhaps,)-374(might)-349(induce)-349(them)-349(to)-349(fight)]TJ 0 -13.549 Td[(for)-217(their)-218(King;)-228(but)-218(where)-217(was)-218(the)-217(Stake)-218(to)-217(impel)-218(them)-217(to)-218(fight)-218(for)]TJ 0 -13.549 Td[(a)-233(Country)-233(in)-232(which)-233(they)-233(had)-233(no)]TJ/F28 10.909 Tf 138.977 0 Td[(Inheritance)]TJ/F16 10.909 Tf 50.29 0 Td[(?)-244(Without)-233(an)-233(Interest)]TJ -189.267 -13.549 Td[(in)-210(Lands,)-219(they)-210(had)-211(little)-210(to)-210(lose)-211(by)-210(any)-211(Change)-210(of)-211(Estate.)-237(Without)]TJ 0 -13.55 Td[(a)-312(Loan)-311(lodged)-312(with)-312(Government,)-327(they)-311(had)-312(the)-312(less)-311(to)-312(lose)-312(by)-312(a)]TJ 0 -13.549 Td[(Change)-250(of)-250(Constitution.)]TJ 11.955 -15.186 Td[(I)-586(cannot)-586(conceive)-587(how)]TJ/F28 10.909 Tf 115.855 0 Td[(Religion)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-670(or)-587(mere)-586(Difference)-586(of)]TJ -164.781 -13.549 Td[(Opinion,)-506(should)-455(prove)-455(a)-455(real)-455(Cause)-455(of)-455(Quarrel)-455(among)-455(Men;)]TJ 0 -13.549 Td[(though)-393(it)-394(often)-393(serves)-394(as)-393(a)]TJ/F28 10.909 Tf 125.73 0 Td[(Word)-393(of)-394(War)]TJ/F16 10.909 Tf 60.095 0 Td[(,)-429(or)-394(a)]TJ/F28 10.909 Tf 29.924 0 Td[(Term)]TJ/F16 10.909 Tf 27.32 0 Td[(whereby)]TJ -243.069 -13.549 Td[(to)-336(g)-1(ive)-336(Notice)-337(for)-336(Onset.)-510(On)-336(the)-337(contrary,)-358(I)-336(had)-337(observed)-337(that)]TJ 0 -13.549 Td[(wherever)-395(People)-395(are)-395(united)-395(by)]TJ/F28 10.909 Tf 143.318 0 Td[(Interest)]TJ/F16 10.909 Tf 33.327 0 Td[(,)-431(though)-395(of)-395(a)-395(thousand)]TJ -176.645 -13.55 Td[(opposite)-318(Sects,)-334(Persuasions)-636(and)-318(Professions,)-334(they)-318(never)-318(fail)-318(to)]TJ/F16 7.97 Tf 291.023 0 Td[([072])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(join)-250(in)-250(the)-250(Maintenance)-250(and)-250(Defence)-250(of)]TJ/F28 10.909 Tf 175.407 0 Td[(common)-250(Rights)]TJ/F16 10.909 Tf 67.57 0 Td[(.)]TJ -231.022 -15.185 Td[(I,)-387(therefore,)-421(did)-387(not)-387(fear)-387(the)]TJ/F28 10.909 Tf 132.33 0 Td[(Roman)-387(Catholics)]TJ/F16 10.909 Tf 76.952 0 Td[(,)-421(as)-387(having)-387(a)]TJ -221.237 -13.55 Td[(different)]TJ/F28 10.909 Tf 41.54 0 Td[(Religion)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-394(but)-364(as)-365(having)-365(an)]TJ/F28 10.909 Tf 85.963 0 Td[(Interest)]TJ/F16 10.909 Tf 37.308 0 Td[(that)-365(was)-365(different)]TJ -201.782 -13.549 Td[(from)-186(the)-186(Interest)-186(of)]TJ/F28 10.909 Tf 84.461 0 Td[(Protestants)]TJ/F16 10.909 Tf 49.702 0 Td[(.)-229(Were)-186(they)-186(a)-186(Compound)-186(of)-186(all)-186(the)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
281 0 obj <<
/Type /Page
/Contents 282 0 R
/Resources 280 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
283 0 obj <<
/D [281 0 R /XYZ 105.796 491.077 null]
>> endobj
284 0 obj <<
/D [281 0 R /XYZ 171.594 121.975 null]
>> endobj
280 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
288 0 obj <<
/Length 5250
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(58)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Follies,)-221(Absurdities,)-220(and)-213(Contradictions)-213(that)-213(ever)-213(were)-214(generated)]TJ 0 -13.549 Td[(by)-312(Monster-bearing)-312(Superstition,)-328(had)-312(their)-312(Interest)-312(bound)-312(them)]TJ 0 -13.549 Td[(to)-250(us,)-250(I)-250(should)-250(not)-250(have)-250(feared)-250(their)]TJ/F28 10.909 Tf 157.244 0 Td[(Fealty)]TJ/F16 10.909 Tf 27.872 0 Td[(.)]TJ -173.16 -14.777 Td[(But)-411(this)-412(was)-411(not)-412(the)-411(Case.)-734(The)]TJ/F28 10.909 Tf 151.596 0 Td[(French)]TJ/F16 10.909 Tf 35.994 0 Td[(Invasion)-411(of)]TJ/F28 10.909 Tf 55.633 0 Td[(Great)]TJ -255.179 -13.549 Td[(Britain)]TJ/F16 10.909 Tf 34.371 0 Td[(was)-317(headed)-316(by)-317(a)-316(Person)-317(who)-317(was,)-333(by)-317(Birth,)-333(Education,)]TJ -34.371 -13.549 Td[(Principle,)-452(and)-411(Interest,)-452(an)-411(Enemy)-411(to)-412(the)-411(Freedom)-411(and)-412(Rights)]TJ 0 -13.549 Td[(of)-365(a)-364(Constitution)-365(that)-364(was)-365(established)-364(on)-365(the)-364(Dispossession)-365(of)]TJ 0 -13.55 Td[(his)-503(Ancestors;)-630(and)-504(he)-503(was,)-567(consequently,)-567(an)-503(Enemy)-503(to)-504(the)]TJ 0 -13.549 Td[(general)-401(Change)-401(of)-401(Privilege)-401(and)-400(Property,)-439(that)-401(ensued)-401(on)-401(the)]TJ 0 -13.549 Td[(said)-245(Establishment.)-248(The)-245(said)-245(Change,)-246(as)-245(we)-245(all)-245(know,)-246(was)-245(to)-245(the)]TJ 0 -13.549 Td[(Disadvantage)-267(of)]TJ/F28 10.909 Tf 74.292 0 Td[(Roman)-267(Catholics)]TJ/F16 10.909 Tf 75.643 0 Td[(.)-301(Had)-267(the)-267(Invader)-267(prevailed,)-271(a)]TJ -149.935 -13.549 Td[(Change)-220(would)-220(again)-220(have)-220(ensued,)-226(in)-220(their)-220(Favour.)-241(Men)-220(naturally)]TJ 0 -13.55 Td[(with)-216(Success)-216(to)-217(an)-216(Event)-216(from)-216(whence)-217(they)-216(propose)-216(Benefit;)-228(and)]TJ 0 -13.549 Td[(it)-250(is)-250(as)-250(natural)-250(for)-250(them)-250(to)-250(act)-250(conformable)-250(to)-250(those)-250(Wishes.)]TJ 11.956 -14.776 Td[(Had)]TJ/F28 10.909 Tf 24.008 0 Td[(Roman)-535(Catholics)]TJ/F16 10.909 Tf 84.399 0 Td[(been)-535(possessed)-535(of)-534(an)-535(unrestrained)]TJ -120.363 -13.55 Td[(Property,)-842(along)-724(with)-723(the)-724(other)-724(Liberties,)-842(Blessings,)-842(and)]TJ 0 -13.549 Td[(Enjoyments,)-556(which)-495(they)-495(derived,)-556(in)-495(common)-495(with)-495(us,)-556(from)]TJ 0 -13.549 Td[(the)-436(Establishment)-435(at)-436(the)-435(Revolution,)-482(no)-436(spiritual)-435(or)-436(temporal)]TJ 0 -13.549 Td[(Power)-329(on)-329(Earth)-329(could)-329(have)-329(tempted)-330(them)-329(to)-329(permit,)-349(much)-329(less)]TJ 0 -13.549 Td[(to)-270(wish,)-275(a)-270(Change)-270(of)-270(a)-270(Constitution)-270(whose)-270(Equal)-270(they)-271(could)-270(not)]TJ 0 -13.55 Td[(find)-250(upon)-250(Earth.)]TJ 11.956 -14.776 Td[(But)-395(as)-394(this)-395(was)-395(very)-395(far)-394(from)-395(being)-395(the)-394(Fact,)-431(I)-395(feared)-395(that)]TJ/F28 10.909 Tf -11.956 -13.549 Td[(Interest)]TJ/F16 10.909 Tf 36.235 0 Td[(might)-267(prove)-266(an)-267(Incentive)-533(to)]TJ/F28 10.909 Tf 127.125 0 Td[(Desire)]TJ/F16 10.909 Tf 29.083 0 Td[(;)-275(and)-266(Desire)-267(equally)]TJ/F16 7.97 Tf -265.199 0 Td[([073])]TJ/F16 10.909 Tf 72.756 -13.55 Td[(prove)-277(an)-276(Incentive)-277(to)]TJ/F28 10.909 Tf 96.288 0 Td[(Action)]TJ/F16 10.909 Tf 28.483 0 Td[(;)-290(and,)-283(I)-277(am)-276(not)-277(ashamed)-277(to)-276(confess,)]TJ -124.771 -13.549 Td[(that)-200(my)-200(Expectation)-1(s)-200(were)-200(greatly,)-210(though)-200(happily,)-211(disappointed,)]TJ 0 -13.549 Td[(by)-262(the)-262(Steadiness)-262(of)-261(their)-262(peaceful)-262(and)-262(loyal)-262(Demeanour)-262(on)-262(that)]TJ 0 -13.549 Td[(trying)-250(Occasion.)]TJ 11.955 -14.777 Td[(Believe)-252(me,)-252(my)-252(Friend,)-252(at)-252(the)-252(Time)-252(that)-251(I)-252(wrote)-252(those)-252(Papers,)]TJ -11.955 -13.549 Td[(which)-476(have)-475(given)-476(you)-476(so)-475(much)-476(Offence,)-532(I)-475(looked)-476(upon)-476(the)]TJ/F28 10.909 Tf 0 -13.549 Td[(Papists)]TJ/F16 10.909 Tf 34.918 0 Td[(of)-256(this)-256(Kingdom,)-257(by)-256(the)-255(Patro)-1(nage)-255(of)]TJ/F28 10.909 Tf 165.295 0 Td[(France)]TJ/F16 10.909 Tf 34.296 0 Td[(and)]TJ/F28 10.909 Tf 18.543 0 Td[(Spain)]TJ/F16 10.909 Tf 24.851 0 Td[(,)]TJ -277.903 -13.549 Td[(by)-436(their)-435(Numbers,)-482(by)-436(their)-436(Wealth,)-482(and)-436(by)-435(their)-436(Union)-436(with)]TJ 0 -13.549 Td[(each)-309(other,)-323(to)-309(be)-308(vastly)-309(superior)-308(to)]TJ/F28 10.909 Tf 157.941 0 Td[(Irish)-309(Protestants)]TJ/F16 10.909 Tf 73.676 0 Td[(,)-323(in)-309(Power;)]TJ -231.617 -13.55 Td[(and)-354(my)-354(Spirit)-354(of)-354(Opposition)-354(rose,)-380(in)-354(Proportion)-354(to)-354(my)-354(Idea)-354(of)]TJ 0 -13.549 Td[(their)-434(Ability.)-800(But)-434(neither)-433(then,)-479(before,)-480(nor)-433(since,)-480(did)-433(I)-434(ever)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
287 0 obj <<
/Type /Page
/Contents 288 0 R
/Resources 286 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
289 0 obj <<
/D [287 0 R /XYZ 242.6 216.411 null]
>> endobj
286 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
292 0 obj <<
/Length 5409
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Farmer's)-250(Case)-250(Of)-250(The)-250(Roman-Catholics)-250(Of)]TJ/F28 10.909 Tf 211.32 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-2159(59)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(mean)-235(to)-234(excite)-235(any)-235(Action,)-237(or)-235(Intention,)-238(against)-235(the)-234(Weak,)-238(or)-235(the)]TJ 0 -13.549 Td[(Oppressed,)-250(the)-250(Fallen,)-250(or)-250(the)-250(Afflicted.)]TJ 11.956 -15.186 Td[(When)]TJ/F28 10.909 Tf 31.278 0 Td[(Brutus)]TJ/F16 10.909 Tf 34.323 0 Td[(unsheathed)-479(the)-479(reluctant)-480(Sword)-479(of)-479(Freedom)]TJ -77.557 -13.549 Td[(against)-590(his)-591(Friend,)-675(Humanity)-591(must)-590(suppose)-591(that)-590(his)-591(Heart)]TJ 0 -13.549 Td[(was)-321(wrung)-321(with)-321(Compunction,)-339(while)-321(his)-321(Country)-321(enjoine)-1(d)-321(and)]TJ 0 -13.549 Td[(impelled)-250(the)-250(Blow.)]TJ 11.956 -15.186 Td[(But)-385(further,)-418(Sir,)-418(there)-385(is)-384(a)-385(very)-385(wide)-384(Difference)-385(between)-385(a)]TJ/F28 10.909 Tf -11.956 -13.549 Td[(Popish)-417(Regency)]TJ/F16 10.909 Tf 76.36 0 Td[(and)-417(a)]TJ/F28 10.909 Tf 29.701 0 Td[(Popish)-417(People)]TJ/F16 10.909 Tf 65.153 0 Td[(.)-752(The)-417(whole)-418(Intent)-417(and)]TJ -171.214 -13.549 Td[(Virulence,)-345(as)-326(you)-326(call)-327(it,)-345(of)-326(my)-326(Papers,)-345(is)-326(pointed)-326(and)-327(levelled)]TJ 0 -13.55 Td[(against)-381(the)]TJ/F28 10.909 Tf 52.546 0 Td[(One)]TJ/F16 10.909 Tf 18.174 0 Td[(,)-414(but)-380(not)-381(a)-381(Syllable)-381(uttered,)-413(from)-381(End)-381(to)-381(End,)]TJ -70.72 -13.549 Td[(against)-319(the)]TJ/F28 10.909 Tf 51.186 0 Td[(Other)]TJ/F16 10.909 Tf 25.451 0 Td[(.)-456(A)]TJ/F28 10.909 Tf 19.048 0 Td[(Popish)-319(Regency)]TJ/F16 10.909 Tf 70.73 0 Td[(,)-336(in)-318(Temporals)-319(alike)-318(as)-319(in)]TJ -166.415 -13.549 Td[(Spirituals,)-267(I)-263(held)-264(to)-263(be,)-267(by)-263(Principle,)-267(an)-264(arbitrary)-263(and)-264(oppressive)]TJ 0 -13.549 Td[(Government;)-264(but)-258(I)-259(held)-259(a)]TJ/F28 10.909 Tf 112.945 0 Td[(Popish)-259(People)]TJ/F16 10.909 Tf 66.25 0 Td[(to)-259(be,)-261(of)-259(all)-259(People,)-261(the)]TJ -179.195 -13.549 Td[(most)-281(amenable)-280(and)-281(submissive)-280(to)-281(Rulers,)-288(whatever)-281(the)-280(Form)-281(or)]TJ 0 -13.55 Td[(Nature)-234(of)-234(that)-234(State)-234(ma)-1(y)-234(be,)-237(under)-234(which)-234(they)-234(shall)-234(happen)-234(to)-235(be)]TJ 0 -13.549 Td[(subjected.)-332(And,)-284(on)-277(this)-277(very)-278(Account,)-284(I)-277(dreaded)-277(them)-277(the)-278(more,)]TJ 0 -13.549 Td[(should)-526(they)-263(become)-264(passive)-263(Instruments)-263(in)-263(the)-263(Hand)-263(of)-263(a)-264(Papal)]TJ/F16 7.97 Tf 291.024 0 Td[([074])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Dictator.)]TJ 11.956 -15.186 Td[(To)-317(apply)-317(a)-317(sure)-317(Test)-317(to)-317(the)-317(Propriety,)-334(or)-317(Impropriety,)-334(of)-317(my)]TJ -11.956 -13.549 Td[(Apprehensions,)-249(at)-248(the)-249(Period)-248(when)-249(I)-248(wrote)-249(the)]TJ/F28 10.909 Tf 204.982 0 Td[(Farmer's)-248(Letters)]TJ/F16 10.909 Tf 72.921 0 Td[(,)]TJ -277.903 -13.549 Td[(let)-154(us)-154(suppose)-154(that)-154(no)-154(one)-154(of)-154(the)-154(Penal)-154(Laws,)-173(which)-154(were)-154(instituted)]TJ 0 -13.549 Td[(during)-389(the)-389(Reign)-389(of)-389(her)-388(Majesty)-389(Queen)]TJ/F28 10.909 Tf 184.212 0 Td[(Anne)]TJ/F16 10.909 Tf 22.418 0 Td[(,)-424(had)-389(yet)-388(passed)]TJ -206.63 -13.55 Td[(into)-283(Form,)-291(but)-283(that)-283(Matters)-282(had)-283(remained)-283(in)-283(the)-283(same)-283(Situation,)]TJ 0 -13.549 Td[(in)-280(which)-279(the)]TJ/F28 10.909 Tf 57.633 0 Td[(Monarch)]TJ/F16 10.909 Tf 39.993 0 Td[(,)-287(of)]TJ/F28 10.909 Tf 17.997 0 Td[(humane)]TJ/F16 10.909 Tf 34.538 0 Td[(,)-287(as)-280(well)-279(as)]TJ/F28 10.909 Tf 51.971 0 Td[(glorious)-280(Memory)]TJ/F16 10.909 Tf 75.771 0 Td[(,)]TJ -277.903 -13.549 Td[(had)-465(left)-466(this)-465(unhappy)-465(People.)-896(Well,)-520(what)-465(would)-465(have)-466(been)]TJ 0 -13.549 Td[(the)-321(Consequence?)-461(Would)]TJ/F28 10.909 Tf 118.067 0 Td[(Papists)]TJ/F16 10.909 Tf 32.127 0 Td[(,)-338(in)-321(that)-320(Case,)-339(have)-320(been)-321(less)]TJ -150.194 -13.549 Td[(amenable)-260(to)-260(the)-260(Government,)-262(by)-260(which)-260(they)-260(had)-260(been)-260(favoured,)]TJ 0 -13.55 Td[(supported,)-302(and)-292(cherished?)-375(Would)-291(they)-292(have)-291(been)-292(the)-292(forwarder)]TJ 0 -13.549 Td[(to)-377(bring)-377(Damage)-377(and)-377(Destruction)-376(on)-377(a)-377(Country,)-409(because)-377(their)]TJ 0 -13.549 Td[(own)-281(Interest)-281(was)-281(connected)-281(therewith,)-288(and)-281(the)-281(Fortunes)-281(of)-281(their)]TJ 0 -13.549 Td[(Posterity)-234(deposited)-234(th)-1(erein?)-244(Would)-234(they)-235(have)-234(been)-234(the)-234(readier)-235(to)]TJ 0 -13.549 Td[(attempt)-351(the)-350(Overthrow)-351(of)-350(our)-350(beneficent)-351(Constitution,)-376(because)]TJ 0 -13.55 Td[(they)-375(enjoyed)-376(the)-375(Privileges)-375(and)-376(Advantages)-375(thereof?)-626(No,)-407(Sir,)]TJ 0 -13.549 Td[(no.)-246(The)-239(Absurdity)-238(of)-239(the)-238(Supposition)-239(is)-238(inclusive)-239(of)-238(the)-239(Answer.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
291 0 obj <<
/Type /Page
/Contents 292 0 R
/Resources 290 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
293 0 obj <<
/D [291 0 R /XYZ 78.736 298.115 null]
>> endobj
290 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
296 0 obj <<
/Length 5298
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(60)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(Had)-395(this)-395(been)-395(the)-395(Case,)-431(the)]TJ/F28 10.909 Tf 131.376 0 Td[(Farmer's)-395(Letters)]TJ/F16 10.909 Tf 78.827 0 Td[(would)-395(not)-395(have)]TJ -210.203 -13.549 Td[(existed)-250(to)-250(have)-250(caused)-250(the)-250(Renewal)-250(of)-250(our)-250(Acquaintance.)]TJ 11.956 -15.186 Td[(I)-667(have)-667(read)-666(and)-667(noted)-667(many)-667(Instances,)-772(in)-667(free)-667(States)]TJ -11.956 -13.549 Td[(and)-618(Commonwealths,)-711(where)]TJ/F28 10.909 Tf 140.315 0 Td[(Liberty)]TJ/F16 10.909 Tf 31.517 0 Td[(,)-710(when)-619(fermented)-618(into)]TJ/F28 10.909 Tf -171.832 -13.549 Td[(Licentiousness)]TJ/F16 10.909 Tf 64.244 0 Td[(,)-690(hath)-602(occasioned)-602(many)-602(partial)-602(Struggles)-602(for)]TJ -64.244 -13.549 Td[(Power,)-306(many)-294(Broils)-294(and)-295(Factions,)-305(and)-294(much)-295(Disturbance)-294(to)-295(the)]TJ 0 -13.55 Td[(Community.)-434(But)-311(very)-311(few)-311(are)-312(the)-311(Instances)-311(of)-311(the)-312(Insurrection)]TJ 0 -13.549 Td[(of)-367(any)-367(People,)-397(who)-367(have)-367(not)-368(been)-367(goaded)-367(thereto)-367(by)-368(Severity)]TJ 0 -13.549 Td[(and)-232(Oppression.)-244(The)-232(inoffensive)-232(Stag)-232(grows)-232(formidable)-232(when)]TJ/F28 10.909 Tf 272.143 0 Td[(at)]TJ -269.415 -13.549 Td[(Bay)]TJ/F16 10.909 Tf 16.963 0 Td[(.)-250(The)-250(Worm)-250(turneth)-250(not,)-250(till)-250(it)-250(receiveth)-250(a)-250(Crush.)]TJ/F16 7.97 Tf -92.446 0 Td[([075])]TJ/F16 10.909 Tf 84.711 -15.186 Td[(I)-353(forget)-352(the)-353(Book,)-379(though)-352(I)-353(remember)-353(the)-352(Passage,)-379(where)-353(a)]TJ -11.956 -13.549 Td[(Prince)-359(demanded)-358(of)-359(his)-359(favourite)-359(Minister,)-385(what)-359(he)-359(should)-359(do)]TJ 0 -13.549 Td[(with)-410(a)-411(Number)-410(of)-410(the)-410(Commons)-411(and)-410(Nobility,)-450(whom)-410(he)-411(had)]TJ 0 -13.549 Td[(suppressed)-450(and)-450(taken)-450(Captive)-450(in)-450(the)-450(Act)-450(of)-450(Rebellion?)-851(The)]TJ 0 -13.55 Td[(Minister)-343(answered,)]TJ/F28 10.909 Tf 88.616 0 Td[(Put)-343(them,)-365(and)-343(their)-342(Adherents,)-366(instantly)-342(to)]TJ -88.616 -13.549 Td[(Death)]TJ/F16 10.909 Tf 26.662 0 Td[(.)-224(No,)-188(replied)-173(the)-172(Prince,)-188(that)-172(were)-173(an)-172(Act)-173(of)-172(such)-173(Bloodshed)]TJ -26.662 -13.549 Td[(and)-371(Barbarity,)-401(as)-371(neither)-371(Fear)-371(nor)-371(Revenge)-372(shall)-371(persuade)-371(me)]TJ 0 -13.549 Td[(to)-400(perpetrate.)]TJ/F28 10.909 Tf 66.839 0 Td[(Then,)-438(grant)-400(them)-400(all)-400(free)-401(Pardon)]TJ/F16 10.909 Tf 152.842 0 Td[(,)-438(rejoined)-400(the)]TJ -219.681 -13.549 Td[(Minister.)-578(How!)-577(said)-359(the)-360(Prince,)-386(must)-359(Rebellion)-359(go)-360(altogether)]TJ 0 -13.55 Td[(unpunished?)-525(There)-341(is)-342(no)-341(Medium)-342(that)-341(can)-342(assure)-341(your)-342(Safety,)]TJ 0 -13.549 Td[(answered)-245(the)-244(Minister;)-247(you)-244(must)-245(either)-244(pull)-245(this)-244(Party)-245(wholly)-245(up)]TJ 0 -13.549 Td[(by)-271(the)-271(Root,)-276(so)-271(as)-271(to)-270(leave)-271(no)-271(Fibre)-271(from)-271(whence)-271(future)-271(Enmity)]TJ 0 -13.549 Td[(may)-221(grow;)-231(or)-221(else,)-227(you)-221(must)-221(change)-221(that)-221(Enmity)-221(into)-221(Friendship,)]TJ 0 -13.549 Td[(by)-302(binding)-302(their)-302(Gratitude)-302(to)-302(your)-302(Person)-302(and)-302(Interest,)-315(with)-302(the)]TJ 0 -13.55 Td[(kindliest)-284(of)-283(all)-283(Connections,)-292(that)-284(of)-283(your)-284(Goodness)-283(and)-284(Favour.)]TJ/F28 10.909 Tf 0 -13.549 Td[(A)-281(partial)-282(Punishment)-281(will)-282(be)-281(too)-282(little)-281(for)-282(your)-281(Safety;)-297(a)-282(partial)]TJ 0 -13.549 Td[(Pardon)-331(will)-331(not)-331(be)-331(enough.)]TJ/F16 10.909 Tf 128.01 0 Td[(You)-331(must)-331(either)-331(wholly)-331(annihilate)]TJ -128.01 -13.549 Td[(their)-256(Power,)-257(by)-255(their)]TJ/F28 10.909 Tf 92.67 0 Td[(Death)]TJ/F16 10.909 Tf 26.662 0 Td[(;)-258(or)-256(derive)-256(Strength)-255(to)-256(yourself,)-257(from)]TJ -119.332 -13.549 Td[(that)-250(Power,)-250(by)-250(their)]TJ/F28 10.909 Tf 88.778 0 Td[(Friendship)]TJ/F16 10.909 Tf 47.88 0 Td[(.)]TJ -124.703 -15.186 Td[(By)-394(disarming)-394(our)-394(Enemies,)-430(the)-393(utmost)-394(we)-394(can)-394(hope,)-430(is,)-430(to)]TJ -11.955 -13.549 Td[(render)-456(them)-457(impotent.)-869(The)-457(Diminution)-456(of)]TJ/F28 10.909 Tf 201.944 0 Td[(their)]TJ/F16 10.909 Tf 25.838 0 Td[(Power)-456(adds)]TJ -227.782 -13.549 Td[(nothing)-513(to)-513(our)]TJ/F28 10.909 Tf 73.161 0 Td[(own)]TJ/F16 10.909 Tf 18.185 0 Td[(.)-1039(Repentance)-514(is)-513(never)-513(so)-513(permanent)-513(or)]TJ -91.346 -13.55 Td[(sincere,)-497(as)-448(when)-448(preceded)-447(by)-448(Pardon;)-546(and)-448(Favour)-448(is,)-497(as)-448(the)]TJ 0 -13.549 Td[(polar)-287(Attraction,)-296(to)-287(Inclination.)-360(Is)-287(there)-287(a)-287(Man)-287(whose)-287(Love)-287(and)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
295 0 obj <<
/Type /Page
/Contents 296 0 R
/Resources 294 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
297 0 obj <<
/D [295 0 R /XYZ 93.543 394.596 null]
>> endobj
294 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
300 0 obj <<
/Length 5367
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Farmer's)-250(Case)-250(Of)-250(The)-250(Roman-Catholics)-250(Of)]TJ/F28 10.909 Tf 211.32 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-2159(61)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(Gratitude)-283(you)-284(desire)-283(to)-283(engage?)-350(Common)-284(Sense)-283(will)-283(direct)-284(you)]TJ 0 -13.549 Td[(to)-287(do)-288(him)-287(a)-287(Benefit.)-362(Would)-287(you)-287(bind)-287(him)-575(to)-287(your)-287(Service)-288(with)]TJ/F16 7.97 Tf 291.024 0 Td[([076])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Hoops)-354(of)-353(Steel?)-561(You)-354(must)-353(make)-354(it)-354(his)-353(Interest,)-380(as)-353(well)-354(as)-354(his)]TJ 0 -13.549 Td[(Duty,)-250(to)-250(befriend)-250(you.)]TJ 11.956 -14.777 Td[(It)-264(is,)-267(by)-264(no)-264(means,)-267(my)-264(Intention)-263(to)-264(arraign)-264(either)-264(the)-264(Wisdom)]TJ -11.956 -13.549 Td[(or)-399(good)-400(Policy)-399(of)-399(our)-399(Forefathers.)-698(But)-399(all)-400(Men)-399(are,)-436(in)-400(some)]TJ 0 -13.549 Td[(Degree,)-325(fallible,)-325(as)-310(well)-310(in)-310(the)-310(congregate,)-325(as)-310(in)-311(the)-310(individual;)]TJ 0 -13.55 Td[(and)-238(the)-237(Shrewd)-238(may)-238(err)-238(as)-237(much,)-240(by)-238(over-reaching)-238(their)-237(Aim,)-241(as)]TJ 0 -13.549 Td[(the)-250(Ignorant,)-250(by)-250(falling)-250(short,)-250(or)-250(deviating)-250(from)-250(it.)]TJ 11.956 -14.776 Td[(But,)-438(had)-400(a)-400(hundred)]TJ/F28 10.909 Tf 92.709 0 Td[(Pitts)]TJ/F16 10.909 Tf 20.007 0 Td[(,)-438(and)-400(a)-400(hundred)]TJ/F28 10.909 Tf 76.946 0 Td[(Cecils)]TJ/F16 10.909 Tf 27.273 0 Td[(,)-438(composed)]TJ -228.891 -13.55 Td[(the)-300(Senate)-300(of)-300(our)-299(Ancestors,)-313(at)-299(the)-300(Time)-300(that)-300(those)]TJ/F28 10.909 Tf 228.869 0 Td[(Penal)-300(Laws)]TJ/F16 10.909 Tf -228.869 -13.549 Td[(were)-288(enacted;)-306(had)-288(those)-288(Laws)-287(been)-288(ever)-288(so)-287(wise)-288(and)-288(so)-287(just,)-298(so)]TJ 0 -13.549 Td[(wholesome)-274(and)-274(necessary,)-279(and)-274(well)-274(suited)-274(to)-273(the)-274(Season;)-286(is)-274(that)]TJ 0 -13.549 Td[(a)-342(Reason)-341(that)-342(they)-341(shou)-1(ld)]TJ/F28 10.909 Tf 119.837 0 Td[(continue)-342(so)]TJ/F16 10.909 Tf 54.722 0 Td[(to)-342(the)-341(End)-342(of)-341(Time?)-525(In)]TJ -174.559 -13.549 Td[(a)-352(W)-1(orld)-352(where)-352(nothing)-353(is)-352(permanent;)-404(where)-353(Modes,)-378(Manners,)]TJ 0 -13.55 Td[(Principles,)-374(and)-349(Practice)-349(are)-349(at)-348(a)-349(Flux;)-399(where)-349(Life)-349(is)-349(uncertain,)]TJ 0 -13.549 Td[(and)-283(all)-283(it)-283(contains)-283(changeable;)-299(Nature)-283(and)-283(Reason)-283(will)-283(conform)]TJ 0 -13.549 Td[(to)-313(Situation)-313(and)-313(Circumstance;)-344(and)-313(where)]TJ/F28 10.909 Tf 189.891 0 Td[(Causes)]TJ/F16 10.909 Tf 34.93 0 Td[(have)-313(ceased,)]TJ -224.821 -13.549 Td[(in)-411(any)-410(Degree,)-451(the)]TJ/F28 10.909 Tf 90.149 0 Td[(Consequences)]TJ/F16 10.909 Tf 66.891 0 Td[(ought)-411(to)-410(cease)-411(in)-411(the)-410(same)]TJ -157.04 -13.549 Td[(Proportion.)]TJ 11.956 -14.777 Td[(It)-322(is)-322(not)-322(now)-322(with)]TJ/F28 10.909 Tf 83.631 0 Td[(Rome)]TJ/F16 10.909 Tf 28.353 0 Td[(as)-322(it)-322(was)-322(in)-322(the)-322(Days)-322(when)-322(Princes)]TJ -123.94 -13.549 Td[(held)-221(her)-220(Steed,)-227(and)-220(Emperors)-221(her)-220(Stirrup.)-240(The)-221(Kings)-221(of)-220(the)-221(Earth)]TJ 0 -13.549 Td[(have,)-339(pretty)-321(clearly,)-339(resumed)-322(her)-321(Usurpations)-321(and)-322(Acquisitions)]TJ 0 -13.549 Td[(of)-324(temporal)-325(Dominion.)-473(It)-325(is)-324(not)-324(now,)-343(as)-325(it)-324(was)-325(when)-324(she)-325(cried)]TJ 0 -13.55 Td[(Peace!)-283(and)-261(it)-261(became)-261(Pe)-1(ace;)-266(or)-261(when)-261(the)-261(Breath)-261(of)-261(he)-1(r)-261(Mandate)]TJ 0 -13.549 Td[(kindled)-316(the)-316(Nations)-316(to)-316(Battle.)-448(Even)-316(his)]TJ/F28 10.909 Tf 177.996 0 Td[(Holiness)]TJ/F16 10.909 Tf 41.629 0 Td[(is,)-333(now,)-332(but)-316(a)]TJ -219.625 -13.549 Td[(poor)-367(limited)-368(Prince,)-396(pent)-368(up)-367(within)-368(his)-367(little)]TJ/F28 10.909 Tf 204.208 0 Td[(Italian)]TJ/F16 10.909 Tf 33.102 0 Td[(Demesne.)]TJ -237.31 -13.549 Td[(If)-357(some)-357(few)-357(still)-357(acknowledge)-357(to)-356(hold)-357(of)-357(his)-357(Authority,)-384(it)-357(is)-357(a)]TJ 0 -13.549 Td[(Homage)-279(of)-279(Words,)-286(and)-279(not)-279(of)-279(Facts;)-294(they)-279(will)-279(not)-279(acknowledge)]TJ 0 -13.55 Td[(to)-306(hold)-306(of)-306(his)-305(Power.)-836(He)-305(is)-306(restored)-306(to)-306(the)-306(quiet)-306(and)-306(unenvied)]TJ/F16 7.97 Tf 291.024 0 Td[([077])]TJ/F16 10.909 Tf -291.024 -13.549 Td[(Possession)-423(of)-423(all)-423(the)-422(Lordship)-423(and)-423(Interest)-423(he)-423(can)-423(acquire)-423(in)]TJ 0 -13.549 Td[(Heaven.)-525(But)-342(the)-342(Sceptre,)-365(even)-341(of)-342(his)-342(spiritual)-342(Dominion)-342(upon)]TJ 0 -13.549 Td[(Earth,)-250(is,)-250(of)-250(late,)-250(as)-250(I)-250(take)-250(it,)-250(most)-250(wonderfully)-250(shortened.)]TJ 11.956 -14.777 Td[(Matters)-303(are)-304(much)-303(altered)-304(with)-303(the)-303(ecclesiastical)-304(World,)-317(even)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
299 0 obj <<
/Type /Page
/Contents 300 0 R
/Resources 298 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
301 0 obj <<
/D [299 0 R /XYZ 234.271 504.626 null]
>> endobj
302 0 obj <<
/D [299 0 R /XYZ 144.974 121.566 null]
>> endobj
298 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
305 0 obj <<
/Length 5216
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(62)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(since)-272(I)-271(wrote)-272(the)-271(Letters)-272(that)-271(have)-272(roused)-271(your)-272(Spleen.)-315(Whether)]TJ 0 -13.549 Td[(it)-389(be)-388(through)-389(a)-389(Decline)-388(of)-389(the)]TJ/F28 10.909 Tf 141.172 0 Td[(Romish)]TJ/F16 10.909 Tf 36.967 0 Td[(Religion,)-423(in)-389(particular;)]TJ -178.139 -13.549 Td[(or,)-377(possibly,)-377(through)-352(a)-351(Decline)-352(of)-352(all)-351(Religion,)-377(in)-352(general;)-403(the)]TJ 0 -13.549 Td[(pontifical)-295(and)-294(episcopal)-295(Dictatorship)-294(and)-295(Authority)-294(are)-295(wofully)]TJ 0 -13.55 Td[(fallen,)-223(from)-216(the)-216(Chair)-216(of)-216(Infallibility,)-223(where)-216(they)-216(had)-216(been)-217(seated)]TJ 0 -13.549 Td[(by)-350(Opinion.)-549(The)-350(Sons)-350(of)-350(the)-349(most)-350(bigotted)-350(Ancestors)-350(do)-350(now)]TJ 0 -13.549 Td[(perceive,)-428(that)-392(Piety)-392(and)-392(Immorality)-392(are)-392(not)-392(rightly)-392(consistent.)]TJ 0 -13.549 Td[(And)-458(even)-458(the)-458(vulgar)-457(and)-458(ignorant,)-510(among)-458(the)]TJ/F28 10.909 Tf 218.974 0 Td[(Roman)]TJ/F16 10.909 Tf 35.9 0 Td[(Laity,)]TJ -254.874 -13.549 Td[(would)-485(grumble)-486(at)-485(departing)-485(from)-485(an)-486(Inch)-485(of)-485(their)-486(Property,)]TJ 0 -13.55 Td[(though)-341(the)-342(Priest)-341(should)-342(advise,)-364(and)-342(the)-341(Pope,)-364(himself,)-365(should)]TJ 0 -13.549 Td[(enjoin)-250(it.)]TJ 11.956 -16.004 Td[(But,)-210(Sir,)-209(if)-200(the)-199(Change)-200(of)-199(Times,)-210(and)-199(Principles,)-210(Situation,)-210(and)]TJ -11.956 -13.549 Td[(Circumstances;)-219(if)-202(the)-203(Change)-203(of)-203(every)-202(Cause)-203(that)-203(produced)-203(those)]TJ 0 -13.549 Td[(penal)-395(Laws,)-431(have)-395(not)-395(availed)-395(for)-395(a)-395(Ch)-1(ange)-395(of)]TJ/F28 10.909 Tf 215.187 0 Td[(Consequences)]TJ/F16 10.909 Tf 62.41 0 Td[(;)]TJ -277.597 -13.549 Td[(for)-275(some)-274(Mitigation)-275(or)-274(Abatement)-275(of)-275(their)-274(Rigour,)-281(toward)-275(these)]TJ 0 -13.55 Td[(my)-391(unhappy)-392(Brethren,)-426(the)]TJ/F28 10.909 Tf 123.203 0 Td[(Roman)-391(Catholics)-392(of)-391(Ireland)]TJ/F16 10.909 Tf 126.141 0 Td[(:)-533(If)-391(no)]TJ -249.344 -13.549 Td[(Argument,)-328(I)-311(s)-1(ay,)-327(that)-312(is)-312(taken)-312(from)-312(Changes,)-328(may)-312(avail)-312(for)-312(the)]TJ 0 -13.549 Td[(Purpose,)-181(I)-164(will)-164(take)-164(one)-164(from)-164(Permanence)-164(and)-164(Duration)-163(itself,)-182(that)]TJ 0 -13.549 Td[(shall)-300(strike)-301(Light)-300(and)-301(Conviction)-300(to)-301(the)-300(Eye)-301(of)-300(every)-301(Beholder;)]TJ 0 -13.549 Td[(that)-406(Power)-406(may)]TJ/F28 10.909 Tf 76.315 0 Td[(gainsay)]TJ/F16 10.909 Tf 33.938 0 Td[(,)-445(but)-406(cannot)]TJ/F28 10.909 Tf 59.471 0 Td[(refute)]TJ/F16 10.909 Tf 25.451 0 Td[(;)-484(that)-406(Malevolence)]TJ -195.175 -13.55 Td[(may)]TJ/F28 10.909 Tf 21.513 0 Td[(dispute)]TJ/F16 10.909 Tf 31.516 0 Td[(,)-250(but)-250(never)-250(can)]TJ/F28 10.909 Tf 66.949 0 Td[(answer)]TJ/F16 10.909 Tf 31.517 0 Td[(.)]TJ -139.539 -16.004 Td[(About)-344(six)-343(Generations)-344(have)-344(now)-343(passed)-344(away,)-367(according)-344(to)]TJ -11.956 -13.549 Td[(the)-348(Rates)-348(of)-348(Purchase)-348(and)-348(Estimate)-697(of)-348(the)-348(Life)-348(of)-348(Man,)-373(since)]TJ/F16 7.97 Tf -72.755 0 Td[([078])]TJ/F16 10.909 Tf 72.755 -13.549 Td[(these)-175(People)-176(have)-175(offended)-176(in)-175(Word)-176(or)-175(in)-176(Deed.)-225(No)-175(Riotings)-176(have)]TJ 0 -13.549 Td[(been)-183(heard)-183(in)-183(their)-183(Houses,)-196(no)-183(Complainings)-183(in)-183(their)-183(Streets;)-206(they)]TJ 0 -13.549 Td[(have)-381(been)-380(silent)-381(and)-380(ha)-1(rmless)-380(as)-381(Sheep)-380(before)-381(their)-381(Sheerers.)]TJ 0 -13.549 Td[(Our)-470(Parties,)-525(Factions,)-524(and)-470(Insurrections,)-525(as)-470(they)-470(are)-470(merrily)]TJ 0 -13.55 Td[(stiled)-370(in)]TJ/F28 10.909 Tf 40.201 0 Td[(England)]TJ/F16 10.909 Tf 36.971 0 Td[(,)-400(have)-370(been)-370(all)-370(among)-370(ourselves;)-430(this)-370(People)]TJ -77.172 -13.549 Td[(were)-393(neither)-393(Actors)-392(nor)-393(Partakers)-393(therein.)-678(They)-393(have)-393(offered)]TJ 0 -13.549 Td[(themselves)-232(to)-232(our)-231(Fleets,)-236(and)-232(to)-231(ou)-1(r)-231(Armies;)-238(to)-232(tend)-232(our)-232(Persons,)]TJ 0 -13.549 Td[(to)-337(till)-337(our)-338(Grounds,)-358(to)-338(hew)-337(our)-337(Wood,)-359(and)-337(to)-337(draw)-337(our)-338(Water.)]TJ 0 -13.549 Td[(Where)-409(we)-408(admit)-409(them)-409(to)-409(fight)-408(for)-409(us,)-448(they)-409(have)-409(ever)-409(proved)]TJ 0 -13.55 Td[(valiant;)-249(where)-248(we)-248(admit)-248(them)-247(to)-248(serve)-248(us,)-249(they)-248(are)-248(found)-248(loving,)]TJ 0 -13.549 Td[(observant,)-352(and)-332(faithful.)-496(Temptations)-332(have)-332(come)-332(to)-332(their)-332(Doors)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
304 0 obj <<
/Type /Page
/Contents 305 0 R
/Resources 303 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 285 0 R
>> endobj
306 0 obj <<
/D [304 0 R /XYZ 256.301 215.183 null]
>> endobj
303 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
309 0 obj <<
/Length 5140
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Farmer's)-250(Case)-250(Of)-250(The)-250(Roman-Catholics)-250(Of)]TJ/F28 10.909 Tf 211.32 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(.)-2159(63)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(and)-335(called)-336(them)-335(forth;)-378(the)-335(Contagion)-336(of)-335(Rebellion)-335(hath)-336(broken)]TJ 0 -13.549 Td[(out)-296(among)-296(their)-297(Neighbours;)-319(they)-296(have)-296(yet)-297(remained)-296(quiet,)-308(and)]TJ 0 -13.549 Td[(continued)-336(untainted;)-379(still)-336(loyal)-337(to)-336(their)-336(Sovereign,)-357(amenable)-337(to)]TJ 0 -13.549 Td[(Government,)-298(and)-289(submissive)-288(to)-289(Law,)-298(through)-288(a)-289(long)-288(and)-289(trying)]TJ 0 -13.55 Td[(Succession)-232(of)-232(about)-233(seventy)-232(Years,)-236(they)-232(have)-232(scarce)-232(appeared)-233(to)]TJ 0 -13.549 Td[(repine)-250(in)-250(the)-250(midst)-250(of)-250(their)-250(Calamities.)]TJ 11.956 -14.531 Td[(When)-552(I)-551(look)-552(back)-552(on)-552(the)-552(querulous)-552(and)-552(restless)-552(Nature)]TJ -11.956 -13.549 Td[(of)-520(Man:)-790(When)-520(I)-520(trace)-520(the)-520(human)-520(Propensities)-521(through)-520(the)]TJ 0 -13.549 Td[(Records)-488(of)-488(Ages)-488(and)-488(Nations:)-725(In)-488(all)-488(the)-488(Histories)-488(of)-488(those)]TJ 0 -13.55 Td[(States)-541(who)-540(had)-541(least)-540(Cause)-541(of)-540(Complaint:)-831(Throughout)-541(the)]TJ 0 -13.549 Td[(Commonwealths)-373(of)]TJ/F28 10.909 Tf 91.162 0 Td[(Asia)-373(Minor)]TJ/F16 10.909 Tf 50.735 0 Td[(,)-403(the)]TJ/F28 10.909 Tf 24.525 0 Td[(Archipelago)]TJ/F16 10.909 Tf 53.934 0 Td[(,)-403(the)]TJ/F28 10.909 Tf 24.525 0 Td[(Grecian)]TJ -244.881 -13.549 Td[(Continent)]TJ/F16 10.909 Tf 43.037 0 Td[(,)]TJ/F28 10.909 Tf 6.942 0 Td[(Italy)]TJ/F16 10.909 Tf 19.996 0 Td[(,)-386(the)-359(Islands)-359(of)-360(the)]TJ/F28 10.909 Tf 89.264 0 Td[(Mediterranean)]TJ/F16 10.909 Tf 65.444 0 Td[(,)-386(&c.)-578(where)]TJ -224.682 -13.549 Td[(the)-292(RIGHTS)-292(OF)-292(NATURE,)-292(under)-292(Forms)-292(of)-292(various)-292(Institution)-1(,)]TJ 0 -13.549 Td[(were)-302(ASSERTED)-303(BY)-302(LIBERTY)-302(AND)-303(GUARDED)-302(BY)-302(LAW:)]TJ 0 -13.55 Td[(Where)-238(the)-239(ASSURANCE)-238(OF)-239(PROPERTY)-238(gave)-239(most)-238(REASO)-1(N)]TJ 0 -13.549 Td[(FOR)-364(CONTENT:)-364(I)-364(can)-365(find)-364(but)-364(few)-729(Instances)-364(of)-364(any)-364(Pe)-1(ople)]TJ/F16 7.97 Tf 291.023 0 Td[([079])]TJ/F16 10.909 Tf -291.023 -13.549 Td[(who,)-583(through)-517(such)-517(a)-516(Length)-517(of)-517(Time,)-583(have)-517(continued)-517(firm)]TJ 0 -13.549 Td[(and)-388(unshaken,)-424(in)-388(an)-389(uninterrupted)-388(Loyalty)-389(and)-388(Submission)-389(to)]TJ 0 -13.549 Td[(Government.)]TJ 11.955 -14.531 Td[(What)-365(then,)-394(do)-364(we)-365(look)-365(for)-365(further?)-595(What)-365(Proofs)-365(do)-365(ye)-365(yet)]TJ -11.955 -13.55 Td[(require,)-371(of)-347(Peacefulness)-347(and)-347(Attachment)-347(at)-347(the)-347(Hands)-347(of)-347(the)-1(se)]TJ 0 -13.549 Td[(our)-274(Brethren?)-323(Is)-274(no)-274(Period)-274(to)-274(be)-275(put)-274(to)-274(their)-274(State)-274(of)-274(Prob)-1(ation?)]TJ 0 -13.549 Td[(Must)-290(they)]TJ/F28 10.909 Tf 47.542 0 Td[(for)-290(ever)]TJ/F16 10.909 Tf 38.085 0 Td[(keep)-290(out)-290(upon)]TJ/F28 10.909 Tf 65.849 0 Td[(Quarantine)]TJ/F16 10.909 Tf 50.301 0 Td[(,)-300(without)-290(Harbour)]TJ -201.777 -13.549 Td[(or)-250(Hopes)-250(of)-250(Rest)-250(or)-250(Reconciliation?)-250(That)-250(were)-250(hard,)-250(indeed.)]TJ 11.955 -14.531 Td[(If)-410(it)-410(is)-410(Revenge)-409(that)-410(we)-410(seek,)-450(they)-410(have,)-450(already,)-450(suffered)]TJ -11.955 -13.55 Td[(enough,)-386(not)-359(for)-359(their)-359(own)-359(Faults,)-386(but)-359(for)-359(the)-359(Ho)-1(stility)-359(of)-359(their)]TJ 0 -13.549 Td[(Forefathers.)-690(If)-397(we)-397(seek)-396(our)-397(Safety,)-433(alone;)-470(let)-397(us)-397(chace)]TJ/F28 10.909 Tf 256.695 0 Td[(them,)]TJ -256.695 -13.549 Td[(at)-392(once,)-428(from)-392(Country)-392(and)-392(Community)]TJ/F16 10.909 Tf 176.617 0 Td[(;)-463(or)-392(put)-392(an)]TJ/F28 10.909 Tf 54.243 0 Td[(End)-392(to)-392(our)]TJ -230.86 -13.549 Td[(domestic)-250(Fears)]TJ/F16 10.909 Tf 66.959 0 Td[(,)-250(by)-250(giving)-250(them)-250(Cause)-250(to)-250(defend)-250(us.)]TJ -55.004 -14.531 Td[(Indeed,)-370(Sir,)-370(neither)-347(common)-346(Sense,)-370(nor)-346(Sense)-346(of)-346(any)-347(Kind,)]TJ -11.955 -13.549 Td[(can)-314(possibly)-313(suppose,)-330(That)-314(Acts)-314(of)-313(Kindness)-314(which)-314(have)-314(been,)]TJ 0 -13.55 Td[(from)-329(the)-329(Beginning)-329(of)-329(the)-329(World,)-349(the)-329(Cement)-329(of)-329(Friendship)-329(to)]TJ 0 -13.549 Td[(all)-250(other)-250(People,)-250(should)-250(prove)-250(the)-250(reverse)-250(to)-250(these)-250(People)-250(alone.)]TJ 11.955 -14.531 Td[(Had)-204(they)-204(been)-204(to)-204(us,)-213(as)-204(the)-204(Swallow,)-213(in)-204(Autumn,)-213(who)-204(forsakes)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
308 0 obj <<
/Type /Page
/Contents 309 0 R
/Resources 307 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
310 0 obj <<
/D [308 0 R /XYZ 216.38 313.955 null]
>> endobj
307 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
314 0 obj <<
/Length 4032
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(64)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(all)-287(Connections)-287(on)-286(the)-287(Approach)-287(of)-287(Inclemency,)-296(I)-287(should)-287(never)]TJ 0 -13.549 Td[(have)-344(pleaded)-343(for)-344(any)-343(Confidence)-344(in)-343(them.)-531(But)-343(a)-344(People,)-367(who,)]TJ 0 -13.549 Td[(through)-463(a)-463(Winter)-463(o)-1(f)-463(seventy)-463(Years)-463(Continuance,)-516(have)-464(never)]TJ 0 -13.549 Td[(failed,)-358(or)-336(forsaken,)-357(or)-336(given)-337(us)-336(Cause)-336(of)-336(Offence,)-357(surely)-337(merit)]TJ 0 -13.55 Td[(some)-369(Consideration,)-398(some)-369(grateful)-368(and)-369(chearing)-368(Ray)-369(to)-369(warm)]TJ 0 -13.549 Td[(them)-310(to)-311(a)-310(Sense)-311(that)]TJ/F28 10.909 Tf 93.897 0 Td[(Protestants)]TJ/F16 10.909 Tf 53.088 0 Td[(are)-310(not,)-326(by)-310(Choice,)-326(of)-310(a)-311(cruel,)]TJ -146.985 -13.549 Td[(unforgiving,)-250(and)-250(malevolent)-250(Nature.)]TJ/F16 7.97 Tf -72.755 0 Td[([080])]TJ/F16 10.909 Tf 84.711 -13.549 Td[(Lastly,)-793(Sir,)-792(as)-685(I)-683(know)-685(you)-684(to)-684(be)-684(a)-684(Gentleman)-684(of)-685(a)]TJ -11.956 -13.549 Td[(communicative)-344(Disposition,)-367(and)-344(that)-344(you)-344(were,)-367(formerly,)-368(fond)]TJ 0 -13.55 Td[(of)-210(exhibiting)-210(the)-210(Sentiments)-210(of)-210(some)-210(of)-210(your)-210(Friends;)-224(should)-210(you)]TJ 0 -13.549 Td[(impart)-335(this)-334(Letter)-335(to)-334(any)-335(of)-334(your)-335(popish)-334(Acquaintance,)-356(I)-335(doubt)]TJ 0 -13.549 Td[(they)-248(might)-249(be)-248(apt)-248(to)-248(give)-249(me)-248(more)-248(Thanks)-248(th)-1(an)-248(I)-248(am)-248(conscious)-249(I)]TJ 0 -13.549 Td[(deserve.)-308(It)-270(is,)-274(therefore,)-274(but)-270(commonly)-269(honest,)-275(to)-269(advertise)-270(you,)]TJ 0 -13.549 Td[(and)-236(them,)-239(that)-236(while)-236(I)-236(write)-236(in)-236(the)-236(Favour)-237(of)]TJ/F28 10.909 Tf 194.547 0 Td[(Papists)]TJ/F16 10.909 Tf 32.128 0 Td[(,)-239(the)-236(Interest)]TJ -226.675 -13.55 Td[(of)]TJ/F28 10.909 Tf 11.815 0 Td[(Protestants)]TJ/F16 10.909 Tf 52.429 0 Td[(is)-250(never)-250(out)-250(of)-250(my)-250(Eye.)]TJ -52.288 -13.549 Td[(When)-282(I)-283(thought)-282(your)-282(Favourites)-282(most)-283(formidable,)-290(I)-282(shewed)-283(I)]TJ -11.956 -13.549 Td[(did)-267(not)-268(fear)-267(them;)-276(and)-267(now,)-272(that)-268(I)-267(think)-267(them)-268(impotent,)-271(let)-268(them)]TJ 0 -13.549 Td[(not)-250(think)-250(I)-250(flatter.)]TJ 11.956 -13.549 Td[(What)-381(I)-380(have)-381(hitherto)-381(hinted)-380(is)-381(but)-381(a)-380(narrow)-381(opening)-381(to)-381(the)]TJ -11.956 -13.55 Td[(Concerns)-317(and)-317(Interests)-317(of)-317(an)-317(unhappy)-317(Country,)-334(whereof)-317(I)-317(have)]TJ 0 -13.549 Td[(the)-410(Misfortune)-410(to)-409(be)-410(a)-410(helpless,)-450(though)-410(loving,)-449(Member.)-730(To)]TJ 0 -13.549 Td[(promote)-300(the)-299(Adv)-1(antage)-299(of)]TJ/F28 10.909 Tf 119.115 0 Td[(Ireland)]TJ/F16 10.909 Tf 32.116 0 Td[(,)-312(in)-300(any)-300(respect,)-312(would)-300(be,)-312(to)]TJ -151.231 -13.549 Td[(me,)-349(the)-329(cardinal)-328(Point)-329(of)-329(the)-329(whole)-329(Compass)-329(of)-329(my)-329(Ambition;)]TJ 0 -13.549 Td[(and)-427(a)-426(subsequent)-427(Letter)-427(may)-427(shew)-426(how)-427(far)-427(my)-427(Observations)]TJ 0 -13.55 Td[(relate)-370(to)-371(the)-370(Decline,)-401(or)-370(Prosperity,)-400(of)-371(my)-370(Country,)-401(whenever)]TJ 0 -13.549 Td[(you)-250(confer)-250(the)-250(Pleasure)-250(of)-250(an)-250(Answer)-250(on,)]TJ/F28 10.909 Tf 11.956 -13.549 Td[(Dear)]TJ/F16 10.909 Tf 25.145 0 Td[(SIR,)]TJ/F28 10.909 Tf -37.101 -13.549 Td[(Your)-250(truly)-250(affectionate)]TJ/F16 10.909 Tf 98.793 0 Td[(,)-250(&c.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
313 0 obj <<
/Type /Page
/Contents 314 0 R
/Resources 312 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
315 0 obj <<
/D [313 0 R /XYZ 93.543 434.502 null]
>> endobj
312 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
316 0 obj
<< /S /GoTo /D (index4) >>
endobj
319 0 obj
(Footnotes)
endobj
322 0 obj <<
/Length 238
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(Footnotes)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
321 0 obj <<
/Type /Page
/Contents 322 0 R
/Resources 320 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
323 0 obj <<
/D [321 0 R /XYZ 46.771 529.134 null]
>> endobj
317 0 obj <<
/D [321 0 R /XYZ 46.771 529.134 null]
>> endobj
320 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
326 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
325 0 obj <<
/Type /Page
/Contents 326 0 R
/Resources 324 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
324 0 obj <<
/ProcSet [ /PDF ]
>> endobj
329 0 obj <<
/Length 390
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(***END)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)-500(AN)]TJ 0 -13.549 Td[(ESSAY)-500(ON)-500(THE)-500(ANTIENT)-500(AND)-500(MODERN)-500(STATE)-500(OF)]TJ 0 -13.549 Td[(IRELAND***)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
328 0 obj <<
/Type /Page
/Contents 329 0 R
/Resources 327 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
330 0 obj <<
/D [328 0 R /XYZ 46.771 529.134 null]
>> endobj
327 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
333 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
332 0 obj <<
/Type /Page
/Contents 333 0 R
/Resources 331 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 311 0 R
>> endobj
331 0 obj <<
/ProcSet [ /PDF ]
>> endobj
334 0 obj
<< /S /GoTo /D (index5) >>
endobj
337 0 obj
(Credits)
endobj
340 0 obj <<
/Length 549
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(Credits)]TJ/F16 10.909 Tf 0 -37.877 Td[(November)-250(10,)-250(2008)]TJ 21.819 -19.003 Td[(Project)-250(Gutenberg)-250(TEI)-250(edition)-250(1)]TJ 0 -13.55 Td[(Produced)-221(by)-222(Robert)-221(Cicconetti,)-227(David)-222(King,)-227(and)-221(the)-222(Online)]TJ 0 -13.549 Td[(Distributed)-250(Proofreading)-250(Team)-250(at)-250(<http://www.pgdp.net/>.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
339 0 obj <<
/Type /Page
/Contents 340 0 R
/Resources 338 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
335 0 obj <<
/D [339 0 R /XYZ 46.771 529.134 null]
>> endobj
338 0 obj <<
/Font << /F16 5 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
344 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
343 0 obj <<
/Type /Page
/Contents 344 0 R
/Resources 342 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
342 0 obj <<
/ProcSet [ /PDF ]
>> endobj
345 0 obj
<< /S /GoTo /D (index6) >>
endobj
348 0 obj
(A Word from Project Gutenberg)
endobj
351 0 obj <<
/Length 3131
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(A)-250(Word)-250(from)-250(Project)-250(Gutenberg)]TJ/F16 10.909 Tf 0 -32.422 Td[(This)-250(file)-250(should)-250(be)-250(named)-250(27226-pdf.pdf)-250(or)-250(27226-pdf.zip.)]TJ 11.956 -13.549 Td[(This)-291(and)-291(all)-291(associated)-291(files)-291(of)-291(various)-291(formats)-291(will)-291(be)-291(found)]TJ -11.956 -13.549 Td[(in:)]TJ/F16 9.863 Tf 19.637 -22.64 Td[(http://www.gutenberg.org/dirs/2/7/2/2/27226/)]TJ/F16 10.909 Tf -7.681 -23.368 Td[(Updated)-447(editions)-446(will)-447(replace)-447(the)-447(previous)-446(one)]TJ/F31 10.909 Tf 220.746 0 Td[(\024)]TJ/F16 10.909 Tf 15.782 0 Td[(the)-447(old)]TJ -248.484 -13.549 Td[(editions)-250(will)-250(be)-250(renamed.)]TJ 11.956 -13.549 Td[(Creating)-308(the)-308(works)-308(from)-308(public)-308(domain)-308(print)-308(editions)-308(means)]TJ -11.956 -13.549 Td[(that)-220(no)-220(one)-219(owns)-220(a)-220(United)-220(States)-220(copyright)-219(in)-220(these)-220(works,)-226(so)-220(the)]TJ 0 -13.549 Td[(Foundation)-325(\050and)-324(you!\051)-473(can)-325(copy)-324(and)-325(distribute)-324(it)-325(in)-324(the)-325(United)]TJ 0 -13.55 Td[(States)-163(without)-163(permission)-163(and)-163(without)-163(paying)-164(copyright)-163(royalties.)]TJ 0 -13.549 Td[(Special)-298(rules,)-311(set)-298(forth)-298(in)-298(the)-298(General)-299(Terms)-298(of)-298(Use)-298(part)-298(of)-299(this)]TJ 0 -13.549 Td[(license,)-360(apply)-337(to)-338(copying)-338(and)-337(distributing)-338(Project)-338(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-247(works)-246(to)-247(protect)-246(the)-247(Project)-246(Gutenberg)]TJ/F46 10.909 Tf 214.88 0 Td[(")]TJ/F16 10.909 Tf 13.381 0 Td[(concept)-247(and)]TJ -228.261 -13.549 Td[(trademark.)-243(Project)-228(Gutenberg)-228(is)-227(a)-228(registered)-228(trademark,)-233(and)-228(may)]TJ 0 -13.55 Td[(not)-394(be)-394(used)-394(if)-394(you)-393(charge)-394(for)-394(the)-394(eBooks,)-430(unless)-394(you)-394(receive)]TJ 0 -13.549 Td[(specific)-377(permission.)-631(If)-376(you)-377(do)-377(not)-377(charge)-377(anything)-377(for)-377(copies)]TJ 0 -13.549 Td[(of)-468(this)-468(eBook,)-523(complying)-468(with)-468(the)-468(rules)-468(is)-468(very)-468(easy.)-904(You)]TJ 0 -13.549 Td[(may)-329(use)-329(this)-329(eBook)-329(for)-329(nearly)-329(any)-329(purpose)-329(such)-329(as)-329(creation)-329(of)]TJ 0 -13.549 Td[(derivative)-251(works,)-252(reports,)-251(performances)-251(and)-251(research.)-253(They)-252(may)]TJ 0 -13.55 Td[(be)-152(modified)-152(and)-152(printed)-153(and)-152(given)-152(away)]TJ/F31 10.909 Tf 170.977 0 Td[(\024)]TJ/F16 10.909 Tf 12.569 0 Td[(you)-152(may)-152(do)-152(practically)]TJ/F28 10.909 Tf -183.546 -13.549 Td[(anything)]TJ/F16 10.909 Tf 41.786 0 Td[(with)-330(public)-331(domain)-330(eBooks.)-491(Redistribution)-331(is)-330(subject)]TJ -41.786 -13.549 Td[(to)-250(the)-250(trademark)-250(license,)-250(especially)-250(commercial)-250(redistribution.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
350 0 obj <<
/Type /Page
/Contents 351 0 R
/Resources 349 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
/Annots [ 352 0 R ]
>> endobj
352 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [66.408 395.011 247.235 403.798]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/dirs/2/7/2/2/27226/) >>
>> endobj
346 0 obj <<
/D [350 0 R /XYZ 46.771 529.134 null]
>> endobj
9 0 obj <<
/D [350 0 R /XYZ 46.771 124.715 null]
>> endobj
349 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R /F46 353 0 R /F28 16 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
354 0 obj
<< /S /GoTo /D (index7) >>
endobj
357 0 obj
(The Full Project Gutenberg License)
endobj
360 0 obj <<
/Length 3309
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 18.959 Tf 93.543 479.321 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)]TJ/F28 10.909 Tf 0 -31.684 Td[(Please)-250(read)-250(this)-250(before)-250(you)-250(distribute)-250(or)-250(use)-250(this)-250(work.)]TJ/F16 10.909 Tf 11.956 -13.55 Td[(To)-269(protect)-269(the)-268(Project)-269(Gutenberg)]TJ/F46 10.909 Tf 144.428 0 Td[(")]TJ/F16 10.909 Tf 13.623 0 Td[(mission)-269(of)-269(promoting)-269(the)]TJ -170.007 -13.549 Td[(free)-225(distribution)-225(of)-226(electronic)-225(works,)-230(by)-225(using)-225(or)-225(distributing)-226(this)]TJ 0 -13.549 Td[(work)-304(\050or)-304(any)-303(other)-304(work)-304(associated)-304(in)-303(any)-304(way)-304(with)-304(the)-304(phrase)]TJ/F31 10.909 Tf 0 -13.549 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-270(Gutenberg)]TJ/F31 10.909 Tf 79.894 0 Td[(\035)]TJ/F16 10.909 Tf 4.844 0 Td[(\051,)-275(you)-269(agree)-270(to)-270(comply)-269(with)-270(all)-270(the)-269(terms)-270(of)]TJ -89.582 -13.549 Td[(the)-268(Full)-269(Project)-268(Gutenberg)]TJ/F46 10.909 Tf 116.649 0 Td[(")]TJ/F16 10.909 Tf 13.617 0 Td[(License)-268(\050available)-269(with)-268(this)-268(file)-268(or)]TJ -130.266 -13.55 Td[(online)-250(at)-250(http://www.gutenberg.org/license\051.)]TJ/F16 15.781 Tf 0 -35.486 Td[(Section)-250(1.)]TJ/F16 13.151 Tf 15.58 -44.421 Td[(General)-255(Terms)-254(of)-255(Use)-255(&)-254(Redistributing)-255(Project)]TJ 45.013 -17.095 Td[(Gutenberg)]TJ/F46 13.151 Tf 55.509 0 Td[(")]TJ/F16 13.151 Tf 16.415 0 Td[(electronic)-268(works)]TJ -132.517 -41.803 Td[(1.A.)]TJ/F16 10.909 Tf 0 -25.902 Td[(By)-583(reading)-583(or)-583(using)-583(any)-583(part)-583(of)-583(this)-584(Project)-583(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-405(work,)-443(you)-404(indicate)-405(that)-404(you)-405(have)-404(read,)-444(understand,)]TJ 0 -13.549 Td[(agree)-309(to)-309(and)-308(accept)-309(all)-309(the)-309(terms)-308(of)-309(this)-309(license)-309(and)-309(intellectual)]TJ 0 -13.55 Td[(property)-331(\050trademark/copyright\051)-332(agreement.)-493(If)-332(you)-331(do)-331(not)-332(agree)]TJ 0 -13.549 Td[(to)-239(abide)-238(by)-239(all)-239(the)-238(terms)-239(of)-239(this)-239(agreement,)-241(you)-238(must)-239(cease)-239(using)]TJ 0 -13.549 Td[(and)-195(return)-194(or)-195(destroy)-194(all)-195(copies)-194(of)-195(Project)-194(Gutenberg)]TJ/F46 10.909 Tf 224.803 0 Td[(")]TJ/F16 10.909 Tf 12.813 0 Td[(electronic)]TJ -237.616 -13.549 Td[(works)-268(in)-269(your)-268(possession.)-305(If)-268(you)-269(paid)-268(a)-268(fee)-269(for)-268(obtaining)-268(a)-269(copy)]TJ 0 -13.549 Td[(of)-210(or)-209(access)-210(to)-210(a)-209(Project)-210(Gutenberg)]TJ/F46 10.909 Tf 150.044 0 Td[(")]TJ/F16 10.909 Tf 12.979 0 Td[(electronic)-210(work)-209(and)-210(you)-210(do)]TJ -163.023 -13.55 Td[(not)-307(agree)-307(to)-308(be)-307(bound)-307(by)-307(the)-307(terms)-308(of)-307(this)-307(agreement,)-321(you)-308(may)]TJ 0 -13.549 Td[(obtain)-292(a)-292(refund)-292(from)-293(the)-292(person)-292(or)-292(entity)-292(to)-292(whom)-292(you)-292(paid)-293(the)]TJ 0 -13.549 Td[(fee)-250(as)-250(set)-250(forth)-250(in)-250(paragraph)-250(1.E.8.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
359 0 obj <<
/Type /Page
/Contents 360 0 R
/Resources 358 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
/Annots [ 361 0 R 362 0 R 365 0 R ]
>> endobj
361 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [264.296 377.512 362.159 387.232]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
362 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [134.147 363.963 280.798 373.683]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
365 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [217.743 63.764 243.499 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
355 0 obj <<
/D [359 0 R /XYZ 93.543 529.134 null]
>> endobj
363 0 obj <<
/D [359 0 R /XYZ 93.543 363.963 null]
>> endobj
364 0 obj <<
/D [359 0 R /XYZ 93.543 254.119 null]
>> endobj
358 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
369 0 obj <<
/Length 4467
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(73)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 13.151 Tf 46.771 518.175 Td[(1.B.)]TJ/F31 10.909 Tf 0 -27.866 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-352(Gutenberg)]TJ/F31 10.909 Tf 80.79 0 Td[(\035)]TJ/F16 10.909 Tf 8.681 0 Td[(is)-352(a)-352(registered)-351(trademark.)-556(It)-351(may)-352(only)-352(be)]TJ -94.315 -13.549 Td[(used)-395(on)-394(or)-395(associated)-394(in)-395(any)-395(way)-394(with)-395(an)-394(electronic)-395(work)-395(by)]TJ 0 -13.549 Td[(people)-347(who)-346(agree)-347(to)-346(be)-347(bound)-347(by)-346(the)-347(terms)-346(of)-347(this)-347(agreement.)]TJ 0 -13.55 Td[(There)-531(are)-531(a)-531(few)-531(things)-530(that)-531(you)-531(can)-531(do)-531(with)-531(most)-531(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 13.674 0 Td[(electronic)-274(works)-273(even)-274(without)-273(complying)-274(with)-273(the)]TJ -59.722 -13.549 Td[(full)-229(terms)-228(of)-229(this)-228(agreement.)-243(See)-229(paragraph)-229(1.C)-228(below.)-243(There)-229(are)]TJ 0 -13.549 Td[(a)-330(lot)-331(of)-330(things)-330(you)-331(can)-330(do)-330(w)-1(ith)-330(Project)-330(Gutenberg)]TJ/F46 10.909 Tf 223.321 0 Td[(")]TJ/F16 10.909 Tf 14.295 0 Td[(electronic)]TJ -237.616 -13.549 Td[(works)-193(if)-192(you)-193(follow)-192(the)-193(terms)-193(of)-192(this)-193(agreement)-192(and)-193(help)-193(preserve)]TJ 0 -13.55 Td[(free)-284(future)-283(access)-284(to)-283(Project)-284(Gutenberg)]TJ/F46 10.909 Tf 171.772 0 Td[(")]TJ/F16 10.909 Tf 13.784 0 Td[(electronic)-284(works.)-350(See)]TJ -185.556 -13.549 Td[(paragraph)-250(1.E)-250(below.)]TJ/F16 13.151 Tf 0 -43.303 Td[(1.C.)]TJ/F16 10.909 Tf 0 -27.866 Td[(The)-686(Project)-687(Gutenberg)-686(Literary)-687(Archive)-686(Foundation)-687(\050)]TJ/F31 10.909 Tf 262.456 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(the)]TJ -267.299 -13.549 Td[(Foundation)]TJ/F31 10.909 Tf 49.702 0 Td[(\035)]TJ/F16 10.909 Tf 8.901 0 Td[(or)-372(PGLAF\051,)-372(owns)-372(a)-372(compilation)-372(copyright)-372(in)-372(the)]TJ -58.603 -13.549 Td[(collection)-340(of)-339(Project)-340(Gutenberg)]TJ/F46 10.909 Tf 140.176 0 Td[(")]TJ/F16 10.909 Tf 14.395 0 Td[(electronic)-339(works.)-519(Nearly)-339(all)]TJ -154.571 -13.549 Td[(the)-233(individual)-232(works)-233(in)-233(the)-232(collection)-233(are)-233(in)-233(the)-232(public)-233(domain)-233(in)]TJ 0 -13.549 Td[(the)-289(United)-289(States.)-366(If)-288(an)-289(individual)-289(work)-289(is)-288(in)-289(the)-289(public)-289(domain)]TJ 0 -13.55 Td[(in)-253(the)-253(United)-252(States)-253(and)-253(you)-252(are)-253(located)-253(in)-253(the)-252(United)-253(States,)-254(we)]TJ 0 -13.549 Td[(do)-332(not)-331(claim)-332(a)-331(right)-332(to)-332(prevent)-331(you)-332(from)-332(copying,)-352(distributing,)]TJ 0 -13.549 Td[(performing,)-231(displaying)-226(or)-226(creating)-226(derivative)-226(works)-226(based)-226(on)-226(the)]TJ 0 -13.549 Td[(work)-232(as)-231(long)-232(as)-231(all)-232(references)-231(to)-232(Project)-231(Gutenberg)-232(are)-232(removed.)]TJ 0 -13.549 Td[(Of)-188(course,)-200(we)-187(hope)-188(that)-187(you)-188(will)-187(support)-188(the)-187(Project)-188(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.55 Td[(mission)-334(of)-334(promoting)-335(free)-334(access)-334(to)-334(electronic)-334(works)-334(by)-335(freely)]TJ 0 -13.549 Td[(sharing)-212(Project)-211(Gutenberg)]TJ/F46 10.909 Tf 113.685 0 Td[(")]TJ/F16 10.909 Tf 12.999 0 Td[(works)-212(in)-211(compliance)-212(with)-211(the)-212(terms)]TJ -126.684 -13.549 Td[(of)-441(this)-441(agreement)-441(for)-441(keeping)-441(the)-441(Project)-441(Gutenberg)]TJ/F46 10.909 Tf 241.5 0 Td[(")]TJ/F16 10.909 Tf 15.501 0 Td[(name)]TJ -257.001 -13.549 Td[(associated)-262(with)-262(the)-262(work.)-286(You)-262(can)-262(easily)-262(comply)-262(with)-263(the)-262(terms)]TJ 0 -13.549 Td[(of)-283(this)-284(agreement)-283(by)-283(keeping)-284(this)-283(work)-283(in)-284(the)-283(same)-283(format)-284(with)]TJ 0 -13.55 Td[(its)-287(attached)-287(full)-287(Project)-287(Gutenberg)]TJ/F46 10.909 Tf 151.285 0 Td[(")]TJ/F16 10.909 Tf 13.821 0 Td[(License)-287(when)-287(you)-287(share)-287(it)]TJ -165.106 -13.549 Td[(without)-250(charge)-250(with)-250(others.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
368 0 obj <<
/Type /Page
/Contents 369 0 R
/Resources 367 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
/Annots [ 371 0 R 372 0 R ]
>> endobj
371 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [236.157 420.185 251.616 429.905]
/Subtype /Link
/A << /S /GoTo /D (pglicense1C) >>
>> endobj
372 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.113 365.988 107.96 375.708]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E) >>
>> endobj
370 0 obj <<
/D [368 0 R /XYZ 46.771 529.134 null]
>> endobj
373 0 obj <<
/D [368 0 R /XYZ 46.771 354.098 null]
>> endobj
374 0 obj <<
/D [368 0 R /XYZ 46.771 66.142 null]
>> endobj
367 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
378 0 obj <<
/Length 3505
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(74)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 13.151 Tf 93.543 518.175 Td[(1.D.)]TJ/F16 10.909 Tf 0 -29.35 Td[(The)-468(copyright)-467(laws)-468(of)-467(the)-468(place)-467(where)-468(you)-467(are)-468(located)-468(also)]TJ 0 -13.549 Td[(govern)-267(what)-268(you)-267(can)-267(do)-268(with)-267(this)-267(wo)-1(rk.)-302(Copyright)-267(laws)-267(in)-268(most)]TJ 0 -13.549 Td[(countries)-366(are)-366(in)-366(a)-366(constant)-366(state)-366(of)-366(change.)-598(If)-366(you)-367(are)-366(outside)]TJ 0 -13.55 Td[(the)-394(United)-394(States,)-431(check)-394(the)-394(laws)-394(of)-394(your)-394(country)-394(in)-395(addition)]TJ 0 -13.549 Td[(to)-439(the)-440(terms)-439(of)-439(this)-439(agreement)-440(before)-439(downloading,)-487(copying,)]TJ 0 -13.549 Td[(displaying,)-243(performing,)-243(distributing)-241(or)-241(creating)-241(derivative)-241(works)]TJ 0 -13.549 Td[(based)-269(on)-268(this)-268(work)-269(or)-268(any)-269(other)-268(Project)-269(Gutenberg)]TJ/F46 10.909 Tf 221.57 0 Td[(")]TJ/F16 10.909 Tf 13.62 0 Td[(work.)-305(The)]TJ -235.19 -13.549 Td[(Foundation)-344(makes)-343(no)-344(representations)-343(concerning)-344(the)-344(copyright)]TJ 0 -13.55 Td[(status)-250(of)-250(any)-250(work)-250(in)-250(any)-250(country)-250(outside)-250(the)-250(United)-250(States.)]TJ/F16 13.151 Tf 0 -45.973 Td[(1.E.)]TJ/F16 10.909 Tf 0 -29.351 Td[(Unless)-250(you)-250(have)-250(removed)-250(all)-250(references)-250(to)-250(Project)-250(Gutenberg:)]TJ 0 -27.168 Td[(1.E.1.)]TJ 0 -27.168 Td[(The)-259(following)-260(sentence,)-261(with)-260(active)-259(links)-259(to,)-262(or)-259(other)-260(immediate)]TJ 0 -13.549 Td[(access)-465(to)-1(,)-519(the)-465(full)-466(Project)-465(Gutenberg)]TJ/F46 10.909 Tf 170.488 0 Td[(")]TJ/F16 10.909 Tf 15.769 0 Td[(License)-465(must)-466(appear)]TJ -186.257 -13.55 Td[(prominently)-274(whenever)-275(any)-274(copy)-274(of)-275(a)-274(Project)-274(Gutenberg)]TJ/F46 10.909 Tf 244.529 0 Td[(")]TJ/F16 10.909 Tf 13.683 0 Td[(work)]TJ -258.212 -13.549 Td[(\050any)-421(work)-422(on)-421(which)-421(the)-422(phrase)]TJ/F31 10.909 Tf 148.755 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Project)-421(Gutenberg)]TJ/F31 10.909 Tf 81.549 0 Td[(\035)]TJ/F16 10.909 Tf 9.44 0 Td[(appears,)]TJ -244.587 -13.549 Td[(or)-347(with)-346(which)-347(the)-346(phrase)]TJ/F31 10.909 Tf 115.849 0 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-346(Gutenberg)]TJ/F31 10.909 Tf 80.732 0 Td[(\035)]TJ/F16 10.909 Tf 8.624 0 Td[(is)-346(associated\051)-347(is)]TJ -210.049 -13.549 Td[(accessed,)-250(displayed,)-250(performed,)-250(viewed,)-250(copied)-250(or)-250(distributed:)]TJ/F16 9.863 Tf 19.637 -25.35 Td[(This)-432(eBook)-432(is)-432(for)-432(the)-432(use)-433(of)-432(anyone)-432(anywhere)-432(at)-432(no)-432(cost)]TJ 0 -12.822 Td[(and)-345(with)-344(almost)-345(no)-344(restrictions)-345(whatsoever.)-534(You)-344(may)-345(copy)]TJ 0 -12.822 Td[(it,)-437(give)-400(it)-400(away)-400(or)-400(re-use)-400(it)-400(under)-399(the)-400(terms)-400(of)-400(the)-400(Project)]TJ 0 -12.822 Td[(Gutenberg)-476(License)-476(included)-476(with)-475(this)-476(eBook)-476(or)-476(online)-476(at)]TJ 0 -12.821 Td[(http://www.gutenberg.org)]TJ/F16 10.909 Tf -19.637 -40.246 Td[(1.E.2.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
377 0 obj <<
/Type /Page
/Contents 378 0 R
/Resources 376 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
/Annots [ 380 0 R ]
>> endobj
380 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [113.18 104.237 215.636 113.025]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
375 0 obj <<
/D [377 0 R /XYZ 93.543 364.976 null]
>> endobj
379 0 obj <<
/D [377 0 R /XYZ 93.543 302.729 null]
>> endobj
381 0 obj <<
/D [377 0 R /XYZ 93.543 91.16 null]
>> endobj
376 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
384 0 obj <<
/Length 3769
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(75)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(If)-295(an)-295(individual)-295(Project)-295(Gutenberg)]TJ/F46 10.909 Tf 151.639 0 Td[(")]TJ/F16 10.909 Tf 13.91 0 Td[(electronic)-295(work)-295(is)-295(derived)]TJ -165.549 -13.549 Td[(from)-228(the)-229(public)-228(domain)-228(\050does)-228(not)-229(contain)-228(a)-228(notice)-228(indicating)-229(that)]TJ 0 -13.549 Td[(it)-184(is)-183(posted)-184(with)-183(permission)-184(of)-183(the)-184(copyright)-184(holder\051,)-196(the)-184(work)-184(can)]TJ 0 -13.549 Td[(be)-256(copied)-256(and)-256(distributed)-256(to)-256(anyone)-256(in)-256(the)-256(United)-256(States)-256(without)]TJ 0 -13.55 Td[(paying)-230(any)-230(fees)-230(or)-230(charges.)-243(If)-230(you)-231(are)-230(redistributing)-230(or)-230(providing)]TJ 0 -13.549 Td[(access)-248(to)-248(a)-248(work)-248(with)-248(the)-248(phrase)]TJ/F31 10.909 Tf 143.745 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Project)-248(Gutenberg)]TJ/F31 10.909 Tf 79.658 0 Td[(\035)]TJ/F16 10.909 Tf 7.548 0 Td[(associated)]TJ -235.794 -13.549 Td[(with)-410(or)-411(appearing)-410(on)-410(the)-411(work,)-450(you)-411(must)-410(comply)-410(either)-411(with)]TJ 0 -13.549 Td[(the)-424(requireme)-1(nts)-424(of)-424(paragraphs)-425(1.E.1)-424(through)-425(1.E.7)-424(or)-425(obtain)]TJ 0 -13.549 Td[(permission)-281(for)-280(the)-280(use)-281(of)-280(the)-281(work)-280(and)-281(the)-280(Project)-281(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.55 Td[(trademark)-250(as)-250(set)-250(forth)-250(in)-250(paragraphs)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -38.607 Td[(1.E.3.)]TJ 0 -26.259 Td[(If)-344(an)-343(individual)-344(Project)-343(Gutenberg)]TJ/F46 10.909 Tf 153.755 0 Td[(")]TJ/F16 10.909 Tf 14.439 0 Td[(electronic)-344(work)-343(is)-344(posted)]TJ -168.194 -13.549 Td[(with)-551(the)-551(permission)-550(of)-551(the)-551(copyright)-551(holder,)-626(your)-551(use)-551(and)]TJ 0 -13.549 Td[(distribution)-429(must)-429(comply)-429(with)-429(both)-429(paragraphs)-429(1.E.1)-429(through)]TJ 0 -13.549 Td[(1.E.7)-251(and)-250(any)-251(additional)-250(terms)-251(imposed)-250(by)-251(the)-250(copyright)-251(holder.)]TJ 0 -13.549 Td[(Additional)-524(terms)-524(will)-523(b)-1(e)-523(linked)-524(to)-524(the)-524(Project)-524(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.55 Td[(License)-212(for)-211(all)-212(works)-212(posted)-211(with)-212(the)-212(permission)-211(of)-212(the)-212(copyright)]TJ 0 -13.549 Td[(holder)-250(found)-250(at)-250(the)-250(beginning)-250(of)-250(this)-250(work.)]TJ 0 -38.608 Td[(1.E.4.)]TJ 0 -26.258 Td[(Do)-275(not)-275(unlink)-275(or)-274(detach)-275(or)-275(remove)-275(the)-275(full)-275(Project)-275(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(License)-330(terms)-329(from)-330(this)-329(work,)-350(or)-330(any)-329(files)-330(containing)-329(a)-330(part)-330(of)]TJ 0 -13.549 Td[(this)-185(work)-185(or)-185(any)-185(other)-185(work)-185(associated)-185(with)-186(Project)-185(Gutenberg)]TJ/F46 10.909 Tf 267.212 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[(.)]TJ -277.903 -38.608 Td[(1.E.5.)]TJ 0 -26.258 Td[(Do)-457(not)-457(copy,)-508(display,)-509(perform,)-508(distribute)-457(or)-457(redistribute)-457(this)]TJ 0 -13.55 Td[(electronic)-441(work,)-488(or)-441(any)-441(part)-441(of)-441(this)-440(electronic)-441(work,)-489(without)]TJ 0 -13.549 Td[(prominently)-258(displaying)-257(the)-258(sentence)-258(set)-258(forth)-257(in)-258(paragraph)-258(1.E.1)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
383 0 obj <<
/Type /Page
/Contents 384 0 R
/Resources 382 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
/Annots [ 385 0 R 386 0 R 388 0 R 391 0 R ]
>> endobj
385 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [192.525 420.953 215.554 430.673]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
386 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [206.12 393.854 229.149 403.574]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
388 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [265.755 301.89 288.784 311.61]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
391 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [304.372 63.764 327.401 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
387 0 obj <<
/D [383 0 R /XYZ 46.771 381.505 null]
>> endobj
389 0 obj <<
/D [383 0 R /XYZ 46.771 235.344 null]
>> endobj
390 0 obj <<
/D [383 0 R /XYZ 46.771 143.379 null]
>> endobj
382 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
395 0 obj <<
/Length 3975
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(76)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(with)-394(active)-395(links)-394(or)-395(immediate)-394(access)-395(to)-394(the)-394(full)-395(terms)-394(of)-395(the)]TJ 0 -13.549 Td[(Project)-250(Gutenberg)]TJ/F46 10.909 Tf 79.68 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(License.)]TJ -93.098 -34.591 Td[(1.E.6.)]TJ 0 -24.07 Td[(You)-475(may)-476(convert)-475(to)-476(and)-475(distribute)-476(this)-475(work)-476(in)-475(any)-476(binary,)]TJ 0 -13.549 Td[(compressed,)-556(marked)-495(up,)-556(nonproprietary)-495(or)-495(proprietary)-495(form,)]TJ 0 -13.549 Td[(including)-439(any)-439(word)-439(processing)-439(or)-439(hypertext)-439(form.)-818(However,)]TJ 0 -13.55 Td[(if)-595(you)-595(provide)-595(access)-595(to)-595(or)-595(distribute)-595(copies)-595(of)-596(a)-595(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 13.484 0 Td[(work)-256(in)-256(a)-256(format)-256(other)-256(than)]TJ/F31 10.909 Tf 122.795 0 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Plain)-256(Vanilla)-256(ASCII)]TJ/F31 10.909 Tf 88.615 0 Td[(\035)]TJ/F16 10.909 Tf -275.786 -13.549 Td[(or)-253(other)-253(format)-253(used)-254(in)-253(the)-253(official)-253(version)-253(posted)-253(on)-253(the)-254(official)]TJ 0 -13.549 Td[(Project)-361(Gutenberg)]TJ/F46 10.909 Tf 80.888 0 Td[(")]TJ/F16 10.909 Tf 14.627 0 Td[(web)-361(site)-360(\050http)-1(://www.gutenberg.org\051,)-388(you)]TJ -95.515 -13.549 Td[(must,)-351(at)-331(no)-331(additional)-331(cost,)-351(fee)-331(or)-331(expense)-331(to)-331(the)-330(user,)-352(provide)]TJ 0 -13.55 Td[(a)-357(copy,)-384(a)-358(means)-357(of)-357(exporting)-357(a)-358(copy,)-384(or)-357(a)-357(means)-357(of)-358(obtaining)]TJ 0 -13.549 Td[(a)-344(copy)-345(upon)-344(request,)-368(of)-344(the)-344(work)-344(in)-345(its)-344(original)]TJ/F31 10.909 Tf 217.486 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Plain)-344(Vanilla)]TJ -222.329 -13.549 Td[(ASCII)]TJ/F31 10.909 Tf 28.484 0 Td[(\035)]TJ/F16 10.909 Tf 7.286 0 Td[(or)-224(other)-224(form.)-241(Any)-224(alternate)-224(format)-224(must)-224(include)-224(the)-224(full)]TJ -35.77 -13.549 Td[(Project)-250(Gutenberg)]TJ/F46 10.909 Tf 79.68 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(License)-250(as)-250(specified)-250(in)-250(paragraph)-250(1.E.1.)]TJ -93.098 -34.591 Td[(1.E.7.)]TJ 0 -24.07 Td[(Do)-672(not)-672(charge)-672(a)-671(fee)-672(for)-672(access)-672(to,)-777(viewing,)-778(displaying,)]TJ 0 -13.549 Td[(performing,)-516(copying)-463(or)-463(distributing)-463(any)-463(Project)-463(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(works)-250(unless)-250(you)-250(comply)-250(with)-250(paragraph)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -34.591 Td[(1.E.8.)]TJ 0 -24.07 Td[(You)-440(may)-440(charge)-440(a)-439(reasonable)-440(fee)-440(for)-440(copies)-440(of)-440(or)-440(providing)]TJ 0 -13.55 Td[(access)-361(to)-361(or)-361(distributing)-361(Project)-361(Gutenberg)]TJ/F46 10.909 Tf 192.388 0 Td[(")]TJ/F16 10.909 Tf 14.628 0 Td[(electronic)-361(works)]TJ -207.016 -13.549 Td[(provided)-250(that)]TJ/F31 10.909 Tf 12.546 -18.615 Td[(")]TJ/F16 10.909 Tf 9.272 0 Td[(You)-218(pay)-218(a)-219(royalty)-218(fee)-218(of)-218(20%)-219(of)-218(the)-218(gross)-218(profits)-218(you)-219(derive)]TJ 0 -13.55 Td[(from)-212(the)-211(use)-212(of)-212(Project)-211(Gutenberg)]TJ/F46 10.909 Tf 146.666 0 Td[(")]TJ/F16 10.909 Tf 13 0 Td[(works)-212(calculated)-211(using)]TJ -159.666 -13.549 Td[(the)-431(method)-432(you)-431(already)-432(use)-431(to)-432(calculate)-431(your)-432(applicable)]TJ 0 -13.549 Td[(taxes.)-1231(The)-577(fee)-577(is)-577(owed)-577(to)-577(the)-577(owner)-577(of)-577(the)-577(Project)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
394 0 obj <<
/Type /Page
/Contents 395 0 R
/Resources 393 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
/Annots [ 397 0 R 399 0 R ]
>> endobj
397 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [334.776 294.546 360.532 304.266]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
399 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [275.943 208.786 298.972 218.506]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
396 0 obj <<
/D [394 0 R /XYZ 93.543 491.727 null]
>> endobj
398 0 obj <<
/D [394 0 R /XYZ 93.543 284.025 null]
>> endobj
366 0 obj <<
/D [394 0 R /XYZ 93.543 198.265 null]
>> endobj
393 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
402 0 obj <<
/Length 4211
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(77)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 68.59 518.175 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.047 0 Td[(")]TJ/F16 10.909 Tf 17.639 0 Td[(trademark,)-734(but)-637(he)-637(has)-637(agreed)-637(to)-637(donate)]TJ -63.686 -13.549 Td[(royalties)-501(under)-501(this)-501(paragraph)-501(to)-501(the)-501(Project)-501(Gutenberg)]TJ 0 -13.549 Td[(Literary)-576(Archive)-576(Foundation.)-1228(Royalty)-576(payments)-576(must)]TJ 0 -13.549 Td[(be)-538(paid)-537(within)-538(60)-537(days)-538(following)-538(each)-537(date)-538(on)-538(which)]TJ 0 -13.55 Td[(you)-605(prepare)-606(\050or)-605(are)-606(legally)-605(required)-606(to)-605(prepare\051)-606(your)]TJ 0 -13.549 Td[(periodic)-374(tax)-374(returns.)-622(Royalty)-374(payments)-374(should)-374(be)-375(clearly)]TJ 0 -13.549 Td[(marked)-303(as)-304(such)-303(and)-303(sent)-303(to)-304(the)-303(Project)-303(Gutenberg)-304(Literary)]TJ 0 -13.549 Td[(Archive)-517(Foundation)-516(at)-517(the)-517(address)-516(specified)-517(in)-517(Section)]TJ 0 -13.549 Td[(4,)]TJ/F31 10.909 Tf 12.486 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Information)-366(about)-365(donations)-366(to)-366(the)-365(Project)-366(Gutenberg)]TJ -17.329 -13.55 Td[(Literary)-250(Archive)-250(Foundation.)]TJ/F31 10.909 Tf 128.159 0 Td[(\035)]TJ/F16 10.909 Tf -128.159 -14.279 Td[(You)-425(provide)-425(a)-425(full)-424(refund)-425(of)-425(any)-425(money)-425(paid)-425(by)-425(a)-425(user)]TJ 0 -13.549 Td[(who)-339(notifies)-339(you)-340(in)-339(writing)-339(\050or)-339(by)-340(e-mail\051)-339(within)-339(30)-340(days)]TJ 0 -13.549 Td[(of)-343(receipt)-343(that)-343(s/he)-343(does)-344(not)-343(agree)-343(to)-343(the)-343(terms)-343(of)-343(the)-344(full)]TJ 0 -13.549 Td[(Project)-235(Gutenberg)]TJ/F46 10.909 Tf 79.514 0 Td[(")]TJ/F16 10.909 Tf 13.252 0 Td[(License.)-245(You)-235(must)-235(require)-234(such)-235(a)-235(user)]TJ -92.766 -13.55 Td[(to)-324(return)-324(or)-323(destroy)-324(all)-324(copies)-324(of)-323(the)-324(works)-324(possessed)-324(in)-324(a)]TJ 0 -13.549 Td[(physical)-322(medium)-321(and)-322(discontinue)-321(all)-322(use)-322(of)-321(and)-322(all)-322(access)]TJ 0 -13.549 Td[(to)-250(other)-250(copies)-250(of)-250(Project)-250(Gutenberg)]TJ/F46 10.909 Tf 158.454 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(works.)]TJ -171.872 -14.279 Td[(You)-427(provide,)-472(in)-427(accordance)-428(with)-427(paragraph)-427(1.F.3,)-472(a)-428(full)]TJ 0 -13.549 Td[(refund)-215(of)-216(any)-215(money)-216(paid)-215(for)-216(a)-215(work)-216(or)-215(a)-216(replacement)-216(copy,)]TJ 0 -13.549 Td[(if)-245(a)-246(defect)-245(in)-245(the)-246(electronic)-245(work)-245(is)-246(discovered)-245(and)-245(r)-1(eported)]TJ 0 -13.55 Td[(to)-250(you)-250(within)-250(90)-250(days)-250(of)-250(receipt)-250(of)-250(the)-250(work.)]TJ 0 -14.279 Td[(You)-278(comply)-279(with)-278(all)-279(other)-278(terms)-279(of)-278(this)-279(agreement)-278(for)-279(free)]TJ 0 -13.549 Td[(distribution)-250(of)-250(Project)-250(Gutenberg)]TJ/F46 10.909 Tf 144.534 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(works.)]TJ -179.77 -41.937 Td[(1.E.9.)]TJ 0 -28.107 Td[(If)-316(you)-315(wish)-316(to)-316(charge)-315(a)-316(fee)-316(or)-315(distribute)-316(a)-316(Project)-315(Gutenbe)-1(rg)]TJ/F46 10.909 Tf 269.938 0 Td[(")]TJ/F16 10.909 Tf -269.938 -13.55 Td[(electronic)-233(work)-233(or)-233(group)-234(of)-233(works)-233(on)-233(different)-233(terms)-233(than)-233(are)-234(set)]TJ 0 -13.549 Td[(forth)-346(in)-347(this)-346(agreement,)-371(you)-346(must)-346(obtain)-347(permission)-346(in)-347(writing)]TJ 0 -13.549 Td[(from)-161(both)-160(the)-161(Project)-160(Gutenberg)-161(Literary)-160(Archive)-161(Foundation)-161(and)]TJ 0 -13.549 Td[(Michael)-287(Hart,)-297(the)-287(owner)-287(of)-287(the)-287(Project)-287(Gutenberg)]TJ/F46 10.909 Tf 219.853 0 Td[(")]TJ/F16 10.909 Tf 13.824 0 Td[(trademark.)]TJ -233.677 -13.549 Td[(Contact)-250(the)-250(Foundation)-250(as)-250(set)-250(forth)-250(in)-250(Section)-250(3)-250(below.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
401 0 obj <<
/Type /Page
/Contents 402 0 R
/Resources 400 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
/Annots [ 403 0 R 404 0 R 405 0 R 406 0 R 408 0 R ]
>> endobj
403 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [294.674 420.963 327.401 430.673]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
404 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 407.403 327.401 417.156]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
405 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 393.854 201.593 403.607]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
406 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [272.441 284.001 294.87 293.721]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
408 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [213.735 79.971 254.644 87.454]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
407 0 obj <<
/D [401 0 R /XYZ 46.771 201.696 null]
>> endobj
409 0 obj <<
/D [401 0 R /XYZ 46.771 66.142 null]
>> endobj
400 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
415 0 obj <<
/Length 3657
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(78)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 13.151 Tf 93.543 518.175 Td[(1.F.)]TJ/F16 10.909 Tf 0 -43.517 Td[(1.F.1.)]TJ 0 -27.775 Td[(Project)-1179(Gutenberg)-1179(volunteers)-1179(and)-1179(employees)-1180(expend)]TJ 0 -13.549 Td[(considerable)-684(effort)-684(to)-684(identify,)-793(do)-684(copyright)-684(research)-684(on,)]TJ 0 -13.549 Td[(transcribe)-411(and)-410(proofread)-411(public)-411(domain)-411(works)-410(in)-411(creating)-411(the)]TJ 0 -13.549 Td[(Project)-395(Gutenberg)]TJ/F46 10.909 Tf 81.258 0 Td[(")]TJ/F16 10.909 Tf 14.997 0 Td[(collection.)-684(Despite)-395(these)-394(efforts,)-431(Project)]TJ -96.255 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 14.444 0 Td[(electronic)-344(works,)-368(and)-344(the)-344(medium)-344(on)-344(which)-344(they)]TJ -60.492 -13.55 Td[(may)-317(be)-316(stored,)-334(may)-317(contain)]TJ/F31 10.909 Tf 126.832 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Defects,)]TJ/F31 10.909 Tf 36.044 0 Td[(\035)]TJ/F16 10.909 Tf 8.299 0 Td[(such)-317(as,)-333(but)-317(not)-316(lim)-1(ited)]TJ -176.018 -13.549 Td[(to,)-274(incomplete,)-275(inaccurate)-269(or)-270(corrupt)-269(data,)-275(transcription)-269(errors,)-275(a)]TJ 0 -13.549 Td[(copyright)-235(or)-235(other)-234(intellectual)-235(property)-235(infringement,)-238(a)-235(defective)]TJ 0 -13.549 Td[(or)-210(damaged)-210(disk)-211(or)-210(other)-210(medium,)-218(a)-210(computer)-210(virus,)-218(or)-211(computer)]TJ 0 -13.549 Td[(codes)-250(that)-250(damage)-250(or)-250(cannot)-250(be)-250(read)-250(by)-250(your)-250(equipment.)]TJ 0 -41.336 Td[(1.F.2.)]TJ 0 -27.774 Td[(LIMITED)-451(WARRANTY,)-451(DISCLAIMER)-451(OF)-451(DAMAGES)]TJ/F31 10.909 Tf 269.721 0 Td[(\024)]TJ/F16 10.909 Tf -269.721 -13.549 Td[(Except)-473(for)-473(the)]TJ/F31 10.909 Tf 71.832 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Right)-473(of)-473(Replacement)-474(or)-473(Refund)]TJ/F31 10.909 Tf 152.146 0 Td[(\035)]TJ/F16 10.909 Tf 10.006 0 Td[(described)]TJ -238.827 -13.55 Td[(in)-550(paragraph)-550(1.F.3,)-625(the)-550(Project)-550(Gutenberg)-550(Literary)-550(Archive)]TJ 0 -13.549 Td[(Foundation,)-432(the)-395(owner)-396(of)-395(the)-396(Project)-395(Gutenberg)]TJ/F46 10.909 Tf 218.673 0 Td[(")]TJ/F16 10.909 Tf 15.004 0 Td[(trademark,)]TJ -233.677 -13.549 Td[(and)-805(any)-805(other)-806(party)-805(distributing)-805(a)-805(Project)-806(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-573(work)-572(under)-573(this)-572(agreement,)-653(disclaim)-573(all)-573(liability)]TJ 0 -13.549 Td[(to)-662(you)-663(for)-662(damages,)-766(costs)-662(and)-663(expenses,)-765(including)-663(legal)]TJ 0 -13.55 Td[(fees.)-1105(YOU)-534(AGREE)-535(THAT)-535(YOU)-534(HAVE)-535(NO)-535(REMEDIES)]TJ 0 -13.549 Td[(FOR)-645(NEGLIGENCE,)-645(STRICT)-645(LIABILITY,)-646(BREACH)-645(OF)]TJ 0 -13.549 Td[(WARRANTY)-812(OR)-811(BREACH)-812(OF)-811(CONTRACT)-812(EXCEPT)]TJ 0 -13.549 Td[(THOSE)-504(PROVIDED)-504(IN)-504(PARAGRAPH)-503(F3.)-1013(YOU)-504(AGREE)]TJ 0 -13.549 Td[(THAT)-423(TH)-1(E)-423(FOUNDATION,)-424(THE)-423(TRADEMARK)-424(OWNER,)]TJ 0 -13.55 Td[(AND)-590(ANY)-590(DISTRIBUTOR)-590(UNDER)-590(THIS)-590(AGREEMENT)]TJ 0 -13.549 Td[(WILL)-941(NOT)-941(BE)-942(LIABLE)-941(TO)-941(YOU)-941(FOR)-942(ACTUAL,)]TJ 0 -13.549 Td[(DIRECT,)-592(INDIRECT,)-591(CONSEQUENTIAL)-1(,)-591(PUNITIVE)-592(OR)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
414 0 obj <<
/Type /Page
/Contents 415 0 R
/Resources 413 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
/Annots [ 418 0 R ]
>> endobj
418 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [108.03 226.354 180.072 236.074]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
416 0 obj <<
/D [414 0 R /XYZ 93.543 502.313 null]
>> endobj
417 0 obj <<
/D [414 0 R /XYZ 93.543 309.001 null]
>> endobj
413 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
421 0 obj <<
/Length 3273
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(79)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(INCIDENTAL)-492(DAMAGES)-492(EVEN)-492(IF)-492(YOU)-492(GIVE)-492(NOTICE)]TJ 0 -13.549 Td[(OF)-250(THE)-250(POSSIBILITY)-250(OF)-250(SUCH)-250(DAMAGE.)]TJ 0 -35.704 Td[(1.F.3.)]TJ 0 -24.646 Td[(LIMITED)-421(RIGHT)-421(OF)-422(REPLACEMENT)-421(OR)-421(REFUND)]TJ/F31 10.909 Tf 257.859 0 Td[(\024)]TJ/F16 10.909 Tf 15.506 0 Td[(If)]TJ -273.365 -13.549 Td[(you)-434(discover)-434(a)-434(defect)-434(in)-434(this)-434(electronic)-434(work)-434(within)-434(90)-434(days)]TJ 0 -13.549 Td[(of)-335(receiving)-334(it,)-356(you)-335(can)-335(receive)-334(a)-335(refund)-335(of)-334(th)-1(e)-334(money)-335(\050if)-335(any\051)]TJ 0 -13.549 Td[(you)-369(paid)-369(for)-369(it)-370(by)-369(sending)-369(a)-369(written)-369(explanation)-369(to)-369(the)-370(person)]TJ 0 -13.55 Td[(you)-430(received)-430(the)-431(work)-430(from.)-790(If)-431(you)-430(received)-430(the)-430(work)-430(on)-431(a)]TJ 0 -13.549 Td[(physical)-231(medium,)-236(you)-231(must)-231(return)-232(the)-231(medium)-232(with)-231(your)-232(written)]TJ 0 -13.549 Td[(explanation.)-706(The)-402(person)-402(or)-402(entity)-402(that)-402(provided)-402(you)-402(with)-402(the)]TJ 0 -13.549 Td[(defective)-301(work)-301(may)-301(elect)-300(to)-301(provide)-301(a)-301(replacement)-301(copy)-301(in)-301(lieu)]TJ 0 -13.549 Td[(of)-305(a)-305(refun)-1(d.)-415(If)-305(you)-306(received)-305(the)-305(work)-305(electronically,)-319(the)-306(person)]TJ 0 -13.55 Td[(or)-348(entity)-347(providing)-348(it)-347(to)-348(you)-347(may)-348(choose)-347(to)-348(give)-348(you)-347(a)-348(second)]TJ 0 -13.549 Td[(opportunity)-226(to)-226(receive)-225(the)-226(work)-226(electronically)-226(in)-225(lieu)-226(of)-226(a)-226(refund.)]TJ 0 -13.549 Td[(If)-315(the)-315(second)-315(copy)-315(is)-315(also)-315(defective,)-331(you)-315(may)-315(demand)-315(a)-315(refund)]TJ 0 -13.549 Td[(in)-250(writing)-250(without)-250(further)-250(opportunities)-250(to)-250(fix)-250(the)-250(problem.)]TJ 0 -35.704 Td[(1.F.4.)]TJ 0 -24.646 Td[(Except)-618(for)-618(the)-618(limited)-618(right)-618(of)-618(replacement)-618(or)-619(refund)-618(set)]TJ 0 -13.549 Td[(forth)-485(in)-485(paragraph)-485(1.F.3,)-543(this)-485(work)-485(is)-485(provided)-485(to)-485(you)-485('AS-)]TJ 0 -13.549 Td[(IS,')-610(WITH)-610(NO)-610(OTHER)-610(WA)-1(RRANTIES)-610(OF)-610(ANY)-610(KIND,)]TJ 0 -13.549 Td[(EXPRESS)-339(OR)-339(IMPLIED,)-338(INCLUDING)-339(BUT)-339(NOT)-339(LIMITED)]TJ 0 -13.55 Td[(TO)-401(WARRANTIES)-400(OF)-401(MERCHANTIBILITY)-401(OR)-401(FITNESS)]TJ 0 -13.549 Td[(FOR)-250(ANY)-250(PURPOSE.)]TJ 0 -35.704 Td[(1.F.5.)]TJ 0 -24.646 Td[(Some)-155(states)-155(do)-155(not)-155(allow)-155(disclaimers)-155(of)-155(certain)-155(implied)-155(warranties)]TJ 0 -13.549 Td[(or)-541(the)-540(exclu)-1(sion)-540(or)-541(limitation)-541(of)-540(certain)-541(types)-541(of)-541(damages.)]TJ 0 -13.549 Td[(If)-587(any)-587(disclaimer)-587(or)-587(limitation)-587(set)-587(forth)-587(in)-587(this)-587(agreement)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
420 0 obj <<
/Type /Page
/Contents 421 0 R
/Resources 419 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
/Annots [ 423 0 R ]
>> endobj
423 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [87.045 205.409 158.378 215.129]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
411 0 obj <<
/D [420 0 R /XYZ 46.771 493.425 null]
>> endobj
422 0 obj <<
/D [420 0 R /XYZ 46.771 268.249 null]
>> endobj
424 0 obj <<
/D [420 0 R /XYZ 46.771 142.39 null]
>> endobj
419 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
427 0 obj <<
/Length 3542
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(80)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(violates)-405(the)-405(law)-405(of)-405(the)-405(state)-405(app)-1(licable)-405(to)-405(this)-405(agreement,)-444(the)]TJ 0 -13.549 Td[(agreement)-251(shall)-251(be)-250(interpre)-1(ted)-250(to)-251(make)-251(the)-251(maximum)-251(disclaimer)]TJ 0 -13.549 Td[(or)-210(limita)-1(tion)-210(permitted)-210(by)-211(the)-210(applicable)-211(state)-210(law.)-237(The)-211(invalidity)]TJ 0 -13.549 Td[(or)-297(unenforceability)-297(of)-297(any)-297(provision)-297(of)-297(this)-297(agreement)-297(shall)-297(not)]TJ 0 -13.55 Td[(void)-250(the)-250(remaining)-250(provisions.)]TJ 0 -34.869 Td[(1.F.6.)]TJ 0 -24.209 Td[(INDEMNITY)]TJ/F31 10.909 Tf 69.759 0 Td[(\024)]TJ/F16 10.909 Tf 18.872 0 Td[(You)-730(agree)-730(to)-730(indemnify)-730(and)-730(hold)-730(the)]TJ -88.631 -13.549 Td[(Foundation,)-504(the)-454(trademark)-453(owner,)-505(any)-453(agent)-454(or)-453(employee)-454(of)]TJ 0 -13.55 Td[(the)-213(Foundation,)-220(anyone)-213(providing)-213(copies)-213(of)-213(Project)-213(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-436(works)-437(in)-436(accordance)-436(with)-436(this)-437(agreement,)-482(and)-437(any)]TJ 0 -13.549 Td[(volunteers)-691(associated)-691(with)-690(the)-691(production,)-801(promotion)-691(and)]TJ 0 -13.549 Td[(distribution)-339(of)-338(Project)-339(Gutenberg)]TJ/F46 10.909 Tf 147.433 0 Td[(")]TJ/F16 10.909 Tf 14.384 0 Td[(electronic)-339(works,)-360(harmless)]TJ -161.817 -13.549 Td[(from)-330(all)-331(liability,)-350(costs)-330(and)-330(expenses,)-351(including)-330(legal)-330(fees,)-351(that)]TJ 0 -13.55 Td[(arise)-284(directly)-284(or)-284(indirectly)-284(from)-284(any)-284(of)-284(the)-284(following)-284(which)-284(you)]TJ 0 -13.549 Td[(do)-461(or)-461(cause)-461(to)-462(occur:)-672(\050a\051)-461(distribution)-461(of)-461(this)-461(or)-461(any)-462(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 14.236 0 Td[(work,)-344(\050b\051)-325(alteration,)-344(modification,)-343(or)-325(additions)-326(or)]TJ -60.284 -13.549 Td[(deletions)-319(to)-319(any)-319(Project)-320(Gutenberg)]TJ/F46 10.909 Tf 154.511 0 Td[(")]TJ/F16 10.909 Tf 14.172 0 Td[(work,)-336(and)-320(\050c\051)-319(any)-319(Defect)]TJ -168.683 -13.549 Td[(you)-250(cause.)]TJ/F16 15.781 Tf 0 -46.636 Td[(Section)-250(2.)]TJ/F16 13.151 Tf 32.422 -45.397 Td[(Information)-260(about)-259(the)-260(Mission)-260(of)-259(Project)]TJ 73.695 -17.096 Td[(Gutenberg)]TJ/F46 13.151 Tf 55.509 0 Td[(")]TJ/F16 10.909 Tf -161.626 -26.391 Td[(Project)-400(Gutenberg)]TJ/F46 10.909 Tf 81.319 0 Td[(")]TJ/F16 10.909 Tf 15.057 0 Td[(is)-400(synonymous)-400(with)-401(the)-400(free)-400(distribution)]TJ -96.376 -13.549 Td[(of)-408(electronic)-409(works)-408(in)-408(formats)-408(readable)-409(by)-408(the)-408(widest)-409(variety)]TJ 0 -13.549 Td[(of)-514(computers)-513(including)-514(obsolete,)-580(old,)-579(middle-aged)-514(and)-514(new)]TJ 0 -13.55 Td[(computers.)-1070(It)-524(exists)-523(because)-524(of)-523(the)-523(efforts)-524(of)-523(hundreds)-524(of)]TJ 0 -13.549 Td[(volunteers)-250(and)-250(donations)-250(from)-250(people)-250(in)-250(all)-250(walks)-250(of)-250(life.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
426 0 obj <<
/Type /Page
/Contents 427 0 R
/Resources 425 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 392 0 R
>> endobj
428 0 obj <<
/D [426 0 R /XYZ 93.543 450.94 null]
>> endobj
429 0 obj <<
/D [426 0 R /XYZ 93.543 242.82 null]
>> endobj
425 0 obj <<
/Font << /F16 5 0 R /F31 31 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
432 0 obj <<
/Length 3572
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(81)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 58.727 518.175 Td[(Volunteers)-162(and)-163(financial)-162(support)-162(to)-163(provide)-162(volunteers)-162(with)-163(the)]TJ -11.956 -13.549 Td[(assistance)-198(they)-199(need,)-209(is)-198(critical)-198(to)-199(reaching)-198(Project)-199(Gutenberg)]TJ/F46 10.909 Tf 263.732 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[('s)]TJ -274.423 -13.549 Td[(goals)-309(and)-308(ensuring)-309(that)-309(the)-308(Pro)-1(ject)-308(Gutenberg)]TJ/F46 10.909 Tf 203.205 0 Td[(")]TJ/F16 10.909 Tf 14.058 0 Td[(collection)-309(will)]TJ -217.263 -13.549 Td[(remain)-382(freely)-381(available)-382(for)-381(generations)-382(to)-382(come.)-644(In)-382(2001,)-415(the)]TJ 0 -13.55 Td[(Project)-350(Gutenberg)-351(Literary)-350(Archive)-351(Foundation)-350(was)-350(created)-351(to)]TJ 0 -13.549 Td[(provide)-302(a)-303(secure)-302(and)-302(permanent)-303(future)-302(for)-302(Project)-303(Gutenberg)]TJ/F46 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(and)-609(future)-609(generations.)-1327(To)-609(learn)-609(more)-609(about)-610(the)-609(Project)]TJ 0 -13.549 Td[(Gutenberg)-414(Literary)-414(Archive)-413(Foundation)-414(and)-414(how)-414(your)-414(efforts)]TJ 0 -13.549 Td[(and)-245(donations)-246(can)-245(help,)-246(see)-246(Sections)-245(3)-245(and)-246(4)-245(and)-245(the)-246(Foundation)]TJ 0 -13.55 Td[(web)-250(page)-250(at)-250(http://www.pglaf.org.)]TJ/F16 15.781 Tf 0 -53.578 Td[(Section)-250(3.)]TJ/F16 13.151 Tf 10.376 -52.34 Td[(Information)-253(about)-253(the)-253(Project)-253(Gutenberg)-253(Literary)]TJ 76.986 -17.096 Td[(Archive)-276(Foundation)]TJ/F16 10.909 Tf -87.362 -30.22 Td[(The)-438(Project)-439(Gutenberg)-438(Literary)-438(Archive)-439(Foundation)-438(is)-438(a)-439(non)]TJ 0 -13.55 Td[(profit)-176(501\050c\051\0503\051)-176(educational)-176(corporation)-176(organized)-176(under)-176(the)-176(laws)]TJ 0 -13.549 Td[(of)-303(the)-304(state)-303(of)-304(Mississippi)-303(and)-304(granted)-303(tax)-303(exempt)-304(status)-303(by)-304(the)]TJ 0 -13.549 Td[(Internal)-319(Revenue)-319(Service.)-457(The)-319(Foundation's)-319(EIN)-319(or)-319(federal)-319(tax)]TJ 0 -13.549 Td[(identification)-179(number)-179(is)-178(64-6221541.)-227(Its)-178(501\050c\051\0503\051)-179(letter)-179(is)-179(posted)]TJ 0 -13.549 Td[(at)-549(http://www.gutenberg.org/fundraising/pglaf.)-1149(Contributions)]TJ 0 -13.549 Td[(to)-404(the)-403(Project)-404(Gutenberg)-404(Literary)-404(Archive)-403(Foundation)-404(are)-404(tax)]TJ 0 -13.55 Td[(deductible)-306(to)-306(the)-307(full)-306(extent)-306(permitted)-306(by)-306(U.S.)-306(federal)-306(laws)-307(and)]TJ 0 -13.549 Td[(your)-250(state's)-250(laws.)]TJ 11.956 -14.265 Td[(The)-214(Foundation's)-214(principal)-214(office)-213(is)-214(located)-214(at)-214(4557)-214(Melan)-214(Dr.)]TJ -11.956 -13.549 Td[(S.)-297(Fairbanks,)-310(AK,)-297(99712.,)-309(but)-297(its)-298(volunteers)-297(and)-297(employees)-298(are)]TJ 0 -13.55 Td[(scattered)-343(throughout)-343(numerous)-344(locations.)-529(Its)-343(business)-343(office)-344(is)]TJ 0 -13.549 Td[(located)-197(at)-197(809)-197(North)-197(1500)-197(West,)-208(Salt)-197(Lake)-197(City,)-208(UT)-197(84116,)-208(\050801\051)]TJ 0 -13.549 Td[(596-1887,)-225(email)-218(business@pglaf.org.)-239(Email)-219(contact)-218(links)-218(and)-219(up)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
431 0 obj <<
/Type /Page
/Contents 432 0 R
/Resources 430 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 437 0 R
/Annots [ 433 0 R 434 0 R 435 0 R 436 0 R ]
>> endobj
433 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [208.573 407.414 214.028 417.123]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
434 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [235.133 407.414 240.587 417.123]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
435 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [101.6 393.854 193.717 403.574]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
436 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [60.641 172.873 252.139 182.593]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/pglaf) >>
>> endobj
412 0 obj <<
/D [431 0 R /XYZ 46.771 380.081 null]
>> endobj
430 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
440 0 obj <<
/Length 3304
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(82)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(to)-227(date)-227(contact)-227(information)-227(can)-227(be)-227(found)-227(at)-227(the)-228(Foundation's)-227(web)]TJ 0 -13.549 Td[(site)-250(and)-250(official)-250(page)-250(at)-250(http://www.pglaf.org)]TJ 11.956 -13.549 Td[(For)-250(additional)-250(contact)-250(information:)]TJ/F16 9.863 Tf 7.681 -22.095 Td[(Dr.)-250(Gregory)-250(B.)-250(Newby)]TJ 0 -12.822 Td[(Chief)-250(Executive)-250(and)-250(Director)]TJ 0 -12.822 Td[(gbnewby@pglaf.org)]TJ/F16 15.781 Tf -19.637 -58.864 Td[(Section)-250(4.)]TJ/F16 13.151 Tf 26.999 -44.805 Td[(Information)-258(about)-258(Donations)-258(to)-258(the)-258(Project)]TJ 8.106 -17.096 Td[(Gutenberg)-260(Literary)-261(Archive)-260(Foundation)]TJ/F16 10.909 Tf -35.105 -26.095 Td[(Project)-329(Gutenberg)]TJ/F46 10.909 Tf 80.543 0 Td[(")]TJ/F16 10.909 Tf 14.28 0 Td[(depends)-329(upon)-329(and)-329(cannot)-329(survive)-329(without)]TJ -94.823 -13.549 Td[(wide)-217(spread)-217(public)-217(support)-217(and)-217(donations)-217(to)-217(carry)-217(out)-218(its)-217(mission)]TJ 0 -13.549 Td[(of)-334(increasing)-334(the)-334(number)-334(of)-334(public)-334(domain)-334(and)-335(licensed)-334(works)]TJ 0 -13.549 Td[(that)-192(can)-193(be)-192(freely)-193(distributed)-192(in)-192(machine)-193(readable)-192(form)-193(accessible)]TJ 0 -13.549 Td[(by)-261(the)-261(widest)-261(array)-261(of)-261(equipment)-261(including)-261(ou)-1(tdated)-261(equipment.)]TJ 0 -13.55 Td[(Many)-303(small)-302(donations)-303(\050$1)-303(to)-302($5,00)-1(0\051)-302(are)-303(particularly)-303(important)]TJ 0 -13.549 Td[(to)-250(maintaining)-250(tax)-250(exempt)-250(status)-250(with)-250(the)-250(IRS.)]TJ 11.956 -13.549 Td[(The)-460(Foundation)-461(is)-460(committed)-461(to)-460(complying)-461(with)-460(the)-461(laws)]TJ -11.956 -13.549 Td[(regulating)-353(charities)-352(and)-353(charitable)-352(donations)-353(in)-352(all)-353(50)-352(states)-353(of)]TJ 0 -13.549 Td[(the)-430(United)-429(States.)-789(Compliance)-430(requirements)-429(are)-430(not)-430(uniform)]TJ 0 -13.55 Td[(and)-389(it)-389(takes)-389(a)-389(considerable)-389(effort,)-424(much)-389(paperwork)-389(a)-1(nd)-389(many)]TJ 0 -13.549 Td[(fees)-489(to)-489(meet)-489(and)-489(keep)-489(up)-489(with)-489(these)-489(requirements.)-968(We)-489(do)]TJ 0 -13.549 Td[(not)-396(solicit)-395(donations)-396(in)-396(locations)-396(where)-395(we)-396(have)-396(not)-396(received)]TJ 0 -13.549 Td[(written)-234(confirmation)-233(of)-234(compliance.)-244(To)-234(SEND)-233(DONATIONS)-234(or)]TJ 0 -13.549 Td[(determine)-309(the)-310(status)-309(of)-310(compliance)-309(for)-309(any)-310(particular)-309(state)-310(visit)]TJ 0 -13.55 Td[(http://www.gutenberg.org/fundraising/donate)]TJ 11.956 -13.549 Td[(While)-305(we)-304(cannot)-305(and)-304(do)-305(not)-305(solicit)-304(contributions)-305(from)-305(states)]TJ -11.956 -13.549 Td[(where)-323(we)-323(have)-322(not)-323(met)-323(the)-323(solicitation)-323(requirements,)-341(we)-323(know)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
439 0 obj <<
/Type /Page
/Contents 440 0 R
/Resources 438 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 437 0 R
/Annots [ 441 0 R 442 0 R ]
>> endobj
441 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [198.063 502.248 290.179 511.968]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
442 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [93.543 90.862 291.707 100.582]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
410 0 obj <<
/D [439 0 R /XYZ 93.543 420.153 null]
>> endobj
438 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
445 0 obj <<
/Length 3413
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(83)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(of)-366(no)-365(prohibition)-366(against)-366(accepting)-365(unsolicited)-366(donations)-366(from)]TJ 0 -13.549 Td[(donors)-250(in)-250(such)-250(states)-250(who)-250(approach)-250(us)-250(with)-250(offers)-250(to)-250(donate.)]TJ 11.956 -14.186 Td[(International)-237(donations)-237(are)-237(gratefully)-238(accepted,)-239(but)-237(we)-238(cannot)]TJ -11.956 -13.549 Td[(make)-533(any)-532(statements)-533(concerning)-533(tax)-532(treatment)-533(of)-533(donations)]TJ 0 -13.549 Td[(received)-256(from)-255(outside)-256(the)-255(United)-256(States.)-267(U.S.)-255(laws)-256(alone)-256(swamp)]TJ 0 -13.549 Td[(our)-250(small)-250(staff.)]TJ 11.956 -14.186 Td[(Please)-413(check)-413(the)-412(Project)-413(Gutenberg)-413(Web)-413(pages)-413(for)-413(current)]TJ -11.956 -13.549 Td[(donation)-467(methods)-467(and)-467(addresses.)-900(Donations)-467(are)-467(accepted)-467(in)]TJ 0 -13.549 Td[(a)-517(number)-517(of)-516(other)-517(ways)-517(including)-516(checks,)-584(online)-517(payments)]TJ 0 -13.55 Td[(and)-884(credit)-884(card)-885(donations.)-2152(To)-885(donate,)-1042(please)-885(visit:)]TJ 0 -13.549 Td[(http://www.gutenberg.org/fundraising/donate)]TJ/F16 15.781 Tf 0 -52.862 Td[(Section)-250(5.)]TJ/F16 13.151 Tf 12.158 -51.624 Td[(General)-254(Informat)1(ion)-254(About)-254(Project)-253(Gutenberg)]TJ/F46 13.151 Tf 243.427 0 Td[(")]TJ/F16 13.151 Tf -160.742 -17.096 Td[(electronic)-278(works.)]TJ/F16 10.909 Tf -94.843 -29.823 Td[(Professor)-596(Michael)-597(S.)-596(Hart)-596(is)-596(the)-597(originator)-596(of)-596(the)-597(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 13.755 0 Td[(concept)-281(of)-281(a)-281(library)-281(of)-281(electronic)-281(works)-281(that)-281(could)]TJ -59.803 -13.549 Td[(be)-436(freely)-436(shared)-436(with)-436(anyone.)-807(For)-436(thirty)-436(years,)-483(he)-436(produced)]TJ 0 -13.549 Td[(and)-357(distributed)-357(Project)-358(Gutenberg)]TJ/F46 10.909 Tf 151.064 0 Td[(")]TJ/F16 10.909 Tf 14.588 0 Td[(eBooks)-357(with)-357(only)-358(a)-357(loose)]TJ -165.652 -13.549 Td[(network)-250(of)-250(volunteer)-250(support.)]TJ 11.956 -14.186 Td[(Project)-379(Gutenberg)]TJ/F46 10.909 Tf 81.091 0 Td[(")]TJ/F16 10.909 Tf 14.829 0 Td[(eBooks)-379(are)-380(often)-379(created)-380(from)-379(several)]TJ -107.876 -13.549 Td[(printed)-248(editions,)-248(all)-248(of)-247(which)-248(are)-248(confirmed)-247(as)-248(Public)-248(Domain)-248(in)]TJ 0 -13.549 Td[(the)-303(U.S.)-302(unless)-303(a)-303(copyright)-303(notice)-302(is)-303(included.)-408(Thus,)-316(we)-303(do)-303(not)]TJ 0 -13.55 Td[(necessarily)-216(keep)-217(eBooks)-216(in)-216(compliance)-217(with)-216(any)-216(particular)-217(paper)]TJ 0 -13.549 Td[(edition.)]TJ 11.956 -14.185 Td[(Each)-355(eBook)-356(is)-356(in)-355(a)-356(subdirectory)-355(of)-356(the)-355(same)-356(number)-355(as)-356(the)]TJ -11.956 -13.55 Td[(eBook's)-266(eBook)-266(number,)-269(often)-266(in)-266(several)-266(formats)-266(including)-266(plain)]TJ 0 -13.549 Td[(vanilla)-250(ASCII,)-250(compressed)-250(\050zipped\051,)-250(HTML)-250(and)-250(others.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
444 0 obj <<
/Type /Page
/Contents 445 0 R
/Resources 443 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 437 0 R
/Annots [ 446 0 R ]
>> endobj
446 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.771 379.032 244.935 388.752]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
447 0 obj <<
/D [444 0 R /XYZ 46.771 365.577 null]
>> endobj
443 0 obj <<
/Font << /F16 5 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
450 0 obj <<
/Length 1889
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(84)-3422(A)-1(n)-250(Essay)-250(on)-250(the)-250(Antient)-250(and)-250(Modern)-250(State)-250(of)-250(Ireland)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(Corrected)]TJ/F28 10.909 Tf 45.766 0 Td[(editions)]TJ/F16 10.909 Tf 37.301 0 Td[(of)-252(our)-253(eBooks)-252(replace)-252(the)-252(old)-253(file)-252(and)-252(take)]TJ -95.023 -13.549 Td[(over)-286(the)-285(old)-285(filename)-286(and)-285(etext)-286(number.)-356(The)-286(replaced)-285(older)-286(file)]TJ 0 -13.549 Td[(is)-367(renamed.)]TJ/F28 10.909 Tf 58.126 0 Td[(Versions)]TJ/F16 10.909 Tf 42.185 0 Td[(based)-367(on)-367(separate)-367(sources)-367(are)-367(treated)-367(as)]TJ -100.311 -13.549 Td[(new)-250(eBooks)-250(receiving)-250(new)-250(filenames)-250(and)-250(etext)-250(numbers.)]TJ 11.956 -13.55 Td[(Most)-416(people)-416(start)-416(at)-416(our)-416(Web)-416(site)-416(which)-416(has)-416(the)-416(main)-416(PG)]TJ -11.956 -13.549 Td[(search)-250(facility:)]TJ/F16 9.863 Tf 19.637 -22.64 Td[(http://www.gutenberg.org)]TJ/F16 10.909 Tf -7.681 -23.367 Td[(This)-1077(Web)-1078(site)-1077(includes)-1077(information)-1077(about)-1078(Project)]TJ -11.956 -13.549 Td[(Gutenberg)]TJ/F46 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[(,)-418(including)-384(how)-384(to)-384(ma)-1(ke)-384(donations)-384(to)-384(the)-384(Project)]TJ -56.739 -13.549 Td[(Gutenberg)-397(Literary)-396(Archive)-397(Foundation,)-433(how)-396(to)-397(help)-397(produce)]TJ 0 -13.55 Td[(our)-230(new)-230(eBooks,)-234(and)-230(how)-230(to)-230(subscribe)-230(to)-230(our)-230(email)-230(newsletter)-230(to)]TJ 0 -13.549 Td[(hear)-250(about)-250(new)-250(eBooks.)]TJ
ET
1 0 0 1 93.543 322.811 cm
0 g 0 G
0 g 0 G
0 g 0 G
1 0 0 1 0 -284.029 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
449 0 obj <<
/Type /Page
/Contents 450 0 R
/Resources 448 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 437 0 R
/Annots [ 451 0 R ]
>> endobj
451 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [113.18 425.639 215.636 434.427]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
448 0 obj <<
/Font << /F16 5 0 R /F28 16 0 R /F46 353 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
452 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2100/uni2101/uni2102/centigrade/uni2104/careof/uni2106/uni2107/uni2108/fahrenheit/uni210a/uni210b/uni210c/uni210d/uni210e/uni210f/uni2110/Ifraktur/uni2112/lsquare/uni2114/uni2115/numero/uni2117/weierstrass/uni2119/uni211a/uni211b/Rfraktur/uni211d/prescription/uni211f/uni2120/telephone/trademark/uni2123/uni2124/uni2125/Omega/uni2127/uni2128/uni2129/uni212a/angstrom/uni212c/uni212d/estimated/uni212f/uni2130/uni2131/uni2132/uni2133/uni2134/aleph/uni2136/uni2137/uni2138/uni2139/uni213a/uni213b/uni213c/uni213d/uni213e/uni213f/uni2140/uni2141/uni2142/uni2143/uni2144/uni2145/uni2146/uni2147/uni2148/uni2149/uni214a/uni214b/uni214c/uni214d/uni214e/uni214f/uni2150/uni2151/uni2152/onethird/twothirds/uni2155/uni2156/uni2157/uni2158/uni2159/uni215a/oneeighth/threeeighths/fiveeighths/seveneighths/uni215f/Oneroman/Tworoman/Threeroman/Fourroman/Fiveroman/Sixroman/Sevenroman/Eightroman/Nineroman/Tenroman/Elevenroman/Twelveroman/uni216c/uni216d/uni216e/uni216f/oneroman/tworoman/threeroman/fourroman/fiveroman/sixroman/sevenroman/eightroman/nineroman/tenroman/elevenroman/twelveroman/uni217c/uni217d/uni217e/uni217f/uni2180/uni2181/uni2182/uni2183/uni2184/uni2185/uni2186/uni2187/uni2188/uni2189/uni218a/uni218b/uni218c/uni218d/uni218e/uni218f/arrowleft/arrowup/arrowright/arrowdown/arrowboth/arrowupdn/arrowupleft/arrowupright/arrowdownright/arrowdownleft/uni219a/uni219b/uni219c/uni219d/uni219e/uni219f/uni21a0/uni21a1/uni21a2/uni21a3/uni21a4/uni21a5/uni21a6/uni21a7/arrowupdownbase/uni21a9/uni21aa/uni21ab/uni21ac/uni21ad/uni21ae/uni21af/uni21b0/uni21b1/uni21b2/uni21b3/uni21b4/carriagereturn/uni21b6/uni21b7/uni21b8/uni21b9/uni21ba/uni21bb/harpoonleftbarbup/uni21bd/uni21be/uni21bf/harpoonrightbarbup/uni21c1/uni21c2/uni21c3/arrowrightoverleft/arrowupleftofdown/arrowleftoverright/uni21c7/uni21c8/uni21c9/uni21ca/uni21cb/uni21cc/arrowleftdblstroke/uni21ce/arrowrightdblstroke/arrowleftdbl/arrowdblup/dblarrowright/arrowdbldown/dblarrowleft/uni21d5/uni21d6/uni21d7/uni21d8/uni21d9/uni21da/uni21db/uni21dc/uni21dd/pageup/pagedown/arrowdashleft/arrowdashup/arrowdashright/arrowdashdown/arrowtableft/arrowtabright/arrowleftwhite/arrowupwhite/arrowrightwhite/arrowdownwhite/capslock/uni21eb/uni21ec/uni21ed/uni21ee/uni21ef/uni21f0/uni21f1/uni21f2/uni21f3/uni21f4/uni21f5/uni21f6/uni21f7/uni21f8/uni21f9/uni21fa/uni21fb/uni21fc/uni21fd/uni21fe/uni21ff]
>> endobj
353 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 452 0 R
/BaseFont /Times-Roman
>> endobj
453 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2000/uni2001/enspace/uni2003/uni2004/uni2005/uni2006/uni2007/uni2008/uni2009/uni200a/zerowidthspace/zerowidthnonjoiner/afii301/afii299/afii300/hyphentwo/uni2011/figuredash/endash/emdash/horizontalbar/dblverticalbar/underscoredbl/quoteleft/quoteright/quotesinglbase/quotereversed/quotedblleft/quotedblright/quotedblbase/uni201f/dagger/daggerdbl/bullet/uni2023/onedotenleader/twodotleader/ellipsis/uni2027/uni2028/uni2029/uni202a/uni202b/afii61573/afii61574/afii61575/uni202f/perthousand/uni2031/minute/second/uni2034/primereversed/uni2036/uni2037/uni2038/guilsinglleft/guilsinglright/referencemark/exclamdbl/uni203d/overline/uni203f/uni2040/uni2041/asterism/uni2043/fraction/uni2045/uni2046/uni2047/uni2048/uni2049/uni204a/uni204b/uni204c/uni204d/uni204e/uni204f/uni2050/uni2051/uni2052/uni2053/uni2054/uni2055/uni2056/uni2057/uni2058/uni2059/uni205a/uni205b/uni205c/uni205d/uni205e/uni205f/uni2060/uni2061/uni2062/uni2063/uni2064/uni2065/uni2066/uni2067/uni2068/uni2069/uni206a/uni206b/uni206c/uni206d/uni206e/uni206f/zerosuperior/uni2071/uni2072/uni2073/foursuperior/fivesuperior/sixsuperior/sevensuperior/eightsuperior/ninesuperior/plussuperior/uni207b/equalsuperior/parenleftsuperior/parenrightsuperior/nsuperior/zeroinferior/oneinferior/twoinferior/threeinferior/fourinferior/fiveinferior/sixinferior/seveninferior/eightinferior/nineinferior/uni208a/uni208b/uni208c/parenleftinferior/parenrightinferior/uni208f/uni2090/uni2091/uni2092/uni2093/uni2094/uni2095/uni2096/uni2097/uni2098/uni2099/uni209a/uni209b/uni209c/uni209d/uni209e/uni209f/uni20a0/colonsign/cruzeiro/franc/lira/uni20a5/uni20a6/peseta/uni20a8/won/sheqelhebrew/dong/euro/uni20ad/uni20ae/uni20af/uni20b0/uni20b1/uni20b2/uni20b3/uni20b4/uni20b5/uni20b6/uni20b7/uni20b8/uni20b9/uni20ba/uni20bb/uni20bc/uni20bd/uni20be/uni20bf/uni20c0/uni20c1/uni20c2/uni20c3/uni20c4/uni20c5/uni20c6/uni20c7/uni20c8/uni20c9/uni20ca/uni20cb/uni20cc/uni20cd/uni20ce/uni20cf/uni20d0/uni20d1/uni20d2/uni20d3/uni20d4/uni20d5/uni20d6/uni20d7/uni20d8/uni20d9/uni20da/uni20db/uni20dc/uni20dd/uni20de/uni20df/uni20e0/uni20e1/uni20e2/uni20e3/uni20e4/uni20e5/uni20e6/uni20e7/uni20e8/uni20e9/uni20ea/uni20eb/uni20ec/uni20ed/uni20ee/uni20ef/uni20f0/uni20f1/uni20f2/uni20f3/uni20f4/uni20f5/uni20f6/uni20f7/uni20f8/uni20f9/uni20fa/uni20fb/uni20fc/uni20fd/uni20fe/uni20ff]
>> endobj
135 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 453 0 R
/BaseFont /Times-Italic
>> endobj
454 0 obj <<
/Type /Encoding
/Differences [ 0 /Amacron/amacron/Abreve/abreve/Aogonek/aogonek/Cacute/cacute/Ccircumflex/ccircumflex/Cdotaccent/cdotaccent/Ccaron/ccaron/Dcaron/dcaron/Dslash/dmacron/Emacron/emacron/Ebreve/ebreve/Edotaccent/edotaccent/Eogonek/eogonek/Ecaron/ecaron/Gcircumflex/gcircumflex/Gbreve/gbreve/Gdotaccent/gdotaccent/Gcommaaccent/gcommaaccent/Hcircumflex/hcircumflex/Hbar/hbar/Itilde/itilde/Imacron/imacron/Ibreve/ibreve/Iogonek/iogonek/Idotaccent/dotlessi/IJ/ij/Jcircumflex/jcircumflex/Kcommaaccent/kcommaaccent/kgreenlandic/Lacute/lacute/Lcommaaccent/lcommaaccent/Lcaron/lcaron/Ldotaccent/ldotaccent/Lslash/lslash/Nacute/nacute/Ncommaaccent/ncommaaccent/Ncaron/ncaron/quoterightn/Eng/eng/Omacron/omacron/Obreve/obreve/Ohungarumlaut/ohungarumlaut/OE/oe/Racute/racute/Rcommaaccent/rcommaaccent/Rcaron/rcaron/Sacute/sacute/Scircumflex/scircumflex/Scedilla/scedilla/Scaron/scaron/Tcommaaccent/tcommaaccent/Tcaron/tcaron/Tbar/tbar/Utilde/utilde/Umacron/umacron/Ubreve/ubreve/Uring/uring/Uhungarumlaut/uhungarumlaut/Uogonek/uogonek/Wcircumflex/wcircumflex/Ycircumflex/ycircumflex/Ydieresis/Zacute/zacute/Zdotaccent/zdotaccent/Zcaron/zcaron/slong/bstroke/Bhook/Btopbar/btopbar/Tonesix/tonesix/Oopen/Chook/chook/Dafrican/Dhook/Dtopbar/dtopbar/deltaturned/Ereversed/Schwa/Eopen/Fhook/florin/Ghook/Gammaafrican/hv/Iotaafrican/Istroke/Khook/khook/lbar/lambdastroke/Mturned/Nhookleft/nlegrightlong/Ocenteredtilde/Ohorn/ohorn/Oi/oi/Phook/phook/yr/Tonetwo/tonetwo/Esh/eshreversedloop/tpalatalhook/Thook/thook/Tretroflexhook/Uhorn/uhorn/Upsilonafrican/Vhook/Yhook/yhook/Zstroke/zstroke/Ezh/Ezhreversed/ezhreversed/ezhtail/twostroke/Tonefive/tonefive/glottalinvertedstroke/wynn/clickdental/clicklateral/clickalveolar/clickretroflex/DZcaron/Dzcaron/dzcaron/LJ/Lj/lj/NJ/Nj/nj/Acaron/acaron/Icaron/icaron/Ocaron/ocaron/Ucaron/ucaron/Udieresismacron/udieresismacron/Udieresisacute/udieresisacute/Udieresiscaron/udieresiscaron/Udieresisgrave/udieresisgrave/eturned/Adieresismacron/adieresismacron/Adotmacron/adotmacron/AEmacron/aemacron/Gstroke/gstroke/Gcaron/gcaron/Kcaron/kcaron/Oogonek/oogonek/Oogonekmacron/oogonekmacron/Ezhcaron/ezhcaron/jcaron/DZ/Dz/dz/Gacute/gacute/uni01f6/uni01f7/uni01f8/uni01f9/Aringacute/aringacute/AEacute/aeacute/Ostrokeacute/ostrokeacute]
>> endobj
50 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 454 0 R
/BaseFont /Times-Italic
>> endobj
31 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 453 0 R
/BaseFont /Times-Roman
>> endobj
455 0 obj <<
/Type /Encoding
/Differences [ 0 /uni0000/controlSTX/controlSOT/controlETX/controlEOT/controlENQ/controlACK/controlBEL/controlBS/controlHT/controlLF/controlVT/controlFF/controlCR/controlSO/controlSI/controlDLE/controlDC1/controlDC2/controlDC3/controlDC4/controlNAK/controlSYN/controlETB/controlCAN/controlEM/controlSUB/controlESC/controlFS/controlGS/controlRS/controlUS/spacehackarabic/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/grave/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/verticalbar/braceright/asciitilde/controlDEL/uni0080/uni0081/uni0082/uni0083/uni0084/uni0085/uni0086/uni0087/uni0088/uni0089/uni008a/uni008b/uni008c/uni008d/uni008e/uni008f/uni0090/uni0091/uni0092/uni0093/uni0094/uni0095/uni0096/uni0097/uni0098/uni0099/uni009a/uni009b/uni009c/uni009d/uni009e/uni009f/nonbreakingspace/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/softhyphen/registered/overscore/degree/plusminus/twosuperior/threesuperior/acute/mu1/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
>> endobj
16 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 455 0 R
/BaseFont /Times-Italic
>> endobj
5 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 455 0 R
/BaseFont /Times-Roman
>> endobj
8 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [2 0 R 11 0 R 14 0 R 18 0 R 21 0 R 29 0 R]
>> endobj
37 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [34 0 R 43 0 R 47 0 R 52 0 R 57 0 R 61 0 R]
>> endobj
68 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [65 0 R 70 0 R 75 0 R 79 0 R 83 0 R 88 0 R]
>> endobj
95 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [92 0 R 97 0 R 101 0 R 105 0 R 110 0 R 114 0 R]
>> endobj
121 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [118 0 R 123 0 R 128 0 R 132 0 R 137 0 R 141 0 R]
>> endobj
149 0 obj <<
/Type /Pages
/Count 6
/Parent 456 0 R
/Kids [145 0 R 151 0 R 155 0 R 159 0 R 163 0 R 168 0 R]
>> endobj
175 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [172 0 R 177 0 R 181 0 R 186 0 R 190 0 R 194 0 R]
>> endobj
202 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [198 0 R 204 0 R 208 0 R 212 0 R 216 0 R 221 0 R]
>> endobj
228 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [225 0 R 230 0 R 234 0 R 239 0 R 243 0 R 247 0 R]
>> endobj
255 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [251 0 R 257 0 R 261 0 R 265 0 R 273 0 R 277 0 R]
>> endobj
285 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [281 0 R 287 0 R 291 0 R 295 0 R 299 0 R 304 0 R]
>> endobj
311 0 obj <<
/Type /Pages
/Count 6
/Parent 457 0 R
/Kids [308 0 R 313 0 R 321 0 R 325 0 R 328 0 R 332 0 R]
>> endobj
341 0 obj <<
/Type /Pages
/Count 6
/Parent 458 0 R
/Kids [339 0 R 343 0 R 350 0 R 359 0 R 368 0 R 377 0 R]
>> endobj
392 0 obj <<
/Type /Pages
/Count 6
/Parent 458 0 R
/Kids [383 0 R 394 0 R 401 0 R 414 0 R 420 0 R 426 0 R]
>> endobj
437 0 obj <<
/Type /Pages
/Count 4
/Parent 458 0 R
/Kids [431 0 R 439 0 R 444 0 R 449 0 R]
>> endobj
456 0 obj <<
/Type /Pages
/Count 36
/Parent 459 0 R
/Kids [8 0 R 37 0 R 68 0 R 95 0 R 121 0 R 149 0 R]
>> endobj
457 0 obj <<
/Type /Pages
/Count 36
/Parent 459 0 R
/Kids [175 0 R 202 0 R 228 0 R 255 0 R 285 0 R 311 0 R]
>> endobj
458 0 obj <<
/Type /Pages
/Count 16
/Parent 459 0 R
/Kids [341 0 R 392 0 R 437 0 R]
>> endobj
459 0 obj <<
/Type /Pages
/Count 88
/Kids [456 0 R 457 0 R 458 0 R]
>> endobj
460 0 obj <<
/Type /Outlines
/First 26 0 R
/Last 356 0 R
/Count 7
>> endobj
356 0 obj <<
/Title 357 0 R
/A 354 0 R
/Parent 460 0 R
/Prev 347 0 R
>> endobj
347 0 obj <<
/Title 348 0 R
/A 345 0 R
/Parent 460 0 R
/Prev 336 0 R
/Next 356 0 R
>> endobj
336 0 obj <<
/Title 337 0 R
/A 334 0 R
/Parent 460 0 R
/Prev 318 0 R
/Next 347 0 R
>> endobj
318 0 obj <<
/Title 319 0 R
/A 316 0 R
/Parent 460 0 R
/Prev 270 0 R
/Next 336 0 R
>> endobj
270 0 obj <<
/Title 271 0 R
/A 268 0 R
/Parent 460 0 R
/Prev 40 0 R
/Next 318 0 R
>> endobj
40 0 obj <<
/Title 41 0 R
/A 38 0 R
/Parent 460 0 R
/Prev 26 0 R
/Next 270 0 R
>> endobj
26 0 obj <<
/Title 27 0 R
/A 24 0 R
/Parent 460 0 R
/Next 40 0 R
>> endobj
461 0 obj <<
/Names [(Pg003) 23 0 R (Pg004) 32 0 R (Pg005) 36 0 R (Pg006) 45 0 R (Pg007) 49 0 R (Pg008) 54 0 R (Pg009) 55 0 R (Pg010) 59 0 R (Pg011) 63 0 R (Pg012) 67 0 R (Pg013) 72 0 R (Pg014) 73 0 R (Pg015) 77 0 R (Pg016) 81 0 R (Pg017) 85 0 R (Pg018) 86 0 R (Pg019) 90 0 R (Pg020) 94 0 R (Pg021) 99 0 R (Pg022) 103 0 R (Pg023) 107 0 R (Pg024) 108 0 R (Pg025) 112 0 R (Pg026) 116 0 R (Pg027) 120 0 R (Pg028) 125 0 R (Pg029) 126 0 R (Pg030) 130 0 R (Pg031) 134 0 R (Pg032) 139 0 R (Pg033) 143 0 R (Pg034) 147 0 R (Pg035) 148 0 R (Pg036) 153 0 R (Pg037) 157 0 R (Pg038) 161 0 R (Pg039) 165 0 R (Pg040) 166 0 R (Pg041) 170 0 R (Pg042) 174 0 R (Pg043) 179 0 R (Pg044) 183 0 R (Pg045) 184 0 R (Pg046) 188 0 R (Pg047) 192 0 R (Pg048) 196 0 R (Pg049) 200 0 R (Pg050) 201 0 R (Pg051) 206 0 R (Pg052) 210 0 R (Pg053) 214 0 R (Pg054) 218 0 R (Pg055) 219 0 R (Pg056) 223 0 R (Pg057) 227 0 R (Pg058) 232 0 R (Pg059) 236 0 R (Pg060) 237 0 R (Pg061) 241 0 R (Pg062) 245 0 R (Pg063) 249 0 R (Pg064) 253 0 R (Pg065) 254 0 R (Pg066) 259 0 R (Pg067) 263 0 R (Pg068) 267 0 R (Pg069) 275 0 R (Pg070) 279 0 R (Pg071) 283 0 R (Pg072) 284 0 R (Pg073) 289 0 R (Pg074) 293 0 R (Pg075) 297 0 R (Pg076) 301 0 R (Pg077) 302 0 R (Pg078) 306 0 R (Pg079) 310 0 R (Pg080) 315 0 R (footnotes) 323 0 R (index1) 25 0 R (index2) 39 0 R (index3) 269 0 R (index4) 317 0 R (index5) 335 0 R (index6) 346 0 R (index7) 355 0 R (pgfooter) 330 0 R (pgheader) 4 0 R (pglicense) 9 0 R (pglicense1) 363 0 R (pglicense1A) 364 0 R (pglicense1B) 370 0 R (pglicense1C) 373 0 R (pglicense1D) 374 0 R (pglicense1E) 375 0 R (pglicense1E1) 379 0 R (pglicense1E2) 381 0 R (pglicense1E3) 387 0 R (pglicense1E4) 389 0 R (pglicense1E5) 390 0 R (pglicense1E6) 396 0 R (pglicense1E7) 398 0 R (pglicense1E8) 366 0 R (pglicense1E9) 407 0 R (pglicense1F) 409 0 R (pglicense1F1) 416 0 R (pglicense1F2) 417 0 R (pglicense1F3) 411 0 R (pglicense1F4) 422 0 R (pglicense1F5) 424 0 R (pglicense1F6) 428 0 R (pglicense2) 429 0 R (pglicense3) 412 0 R (pglicense4) 410 0 R (pglicense5) 447 0 R]
/Limits [(Pg003) (pglicense5)]
>> endobj
462 0 obj <<
/Kids [461 0 R]
>> endobj
463 0 obj <<
/Dests 462 0 R
>> endobj
464 0 obj <<
/Type /Catalog
/Pages 459 0 R
/Outlines 460 0 R
/Names 463 0 R
>> endobj
465 0 obj <<
/Producer (pdfeTeX-1.30.5)
/Author (Henry Brooke) /Title (An Essay on the Antient and Modern State of Ireland)
/Creator (TeX)
/CreationDate (D:20081110021211-08'00')
/PTEX.Fullbanner (This is pdfeTeX using libpoppler, Version 3.141592-1.30.5-2.2 (Web2C 7.5.5) kpathsea version 3.5.5)
>> endobj
xref
0 466
0000000000 65535 f
0000002161 00000 n
0000001585 00000 n
0000000015 00000 n
0000002104 00000 n
0000443856 00000 n
0000001721 00000 n
0000001890 00000 n
0000443946 00000 n
0000377708 00000 n
0000003523 00000 n
0000003408 00000 n
0000002229 00000 n
0000005539 00000 n
0000005424 00000 n
0000003592 00000 n
0000443764 00000 n
0000005919 00000 n
0000005804 00000 n
0000005620 00000 n
0000006424 00000 n
0000006250 00000 n
0000005959 00000 n
0000006365 00000 n
0000006493 00000 n
0000010337 00000 n
0000446677 00000 n
0000006536 00000 n
0000010455 00000 n
0000010222 00000 n
0000006566 00000 n
0000441706 00000 n
0000010396 00000 n
0000011080 00000 n
0000010905 00000 n
0000010548 00000 n
0000011021 00000 n
0000444054 00000 n
0000011149 00000 n
0000016712 00000 n
0000446588 00000 n
0000011192 00000 n
0000016831 00000 n
0000016596 00000 n
0000011217 00000 n
0000016771 00000 n
0000022102 00000 n
0000021926 00000 n
0000016924 00000 n
0000022042 00000 n
0000441614 00000 n
0000027333 00000 n
0000027097 00000 n
0000022195 00000 n
0000027213 00000 n
0000027273 00000 n
0000032524 00000 n
0000032348 00000 n
0000027426 00000 n
0000032464 00000 n
0000038455 00000 n
0000038280 00000 n
0000032605 00000 n
0000038396 00000 n
0000044827 00000 n
0000044651 00000 n
0000038536 00000 n
0000044767 00000 n
0000444164 00000 n
0000051968 00000 n
0000051732 00000 n
0000044932 00000 n
0000051848 00000 n
0000051908 00000 n
0000058997 00000 n
0000058821 00000 n
0000052049 00000 n
0000058937 00000 n
0000065108 00000 n
0000064932 00000 n
0000059078 00000 n
0000065048 00000 n
0000071079 00000 n
0000070844 00000 n
0000065201 00000 n
0000070960 00000 n
0000071020 00000 n
0000077777 00000 n
0000077601 00000 n
0000071172 00000 n
0000077717 00000 n
0000083904 00000 n
0000083728 00000 n
0000077858 00000 n
0000083844 00000 n
0000444274 00000 n
0000090514 00000 n
0000090338 00000 n
0000083985 00000 n
0000090454 00000 n
0000096826 00000 n
0000096646 00000 n
0000090595 00000 n
0000096765 00000 n
0000104229 00000 n
0000103986 00000 n
0000096908 00000 n
0000104105 00000 n
0000104167 00000 n
0000111142 00000 n
0000110961 00000 n
0000104311 00000 n
0000111080 00000 n
0000117027 00000 n
0000116846 00000 n
0000111236 00000 n
0000116965 00000 n
0000123468 00000 n
0000123286 00000 n
0000117121 00000 n
0000123406 00000 n
0000444388 00000 n
0000130175 00000 n
0000129931 00000 n
0000123550 00000 n
0000130051 00000 n
0000130113 00000 n
0000136295 00000 n
0000136113 00000 n
0000130269 00000 n
0000136233 00000 n
0000142242 00000 n
0000142060 00000 n
0000136377 00000 n
0000142180 00000 n
0000439239 00000 n
0000147323 00000 n
0000147142 00000 n
0000142337 00000 n
0000147262 00000 n
0000154428 00000 n
0000154246 00000 n
0000147417 00000 n
0000154366 00000 n
0000160325 00000 n
0000160081 00000 n
0000154510 00000 n
0000160201 00000 n
0000160263 00000 n
0000444505 00000 n
0000166491 00000 n
0000166309 00000 n
0000160407 00000 n
0000166429 00000 n
0000172516 00000 n
0000172335 00000 n
0000166573 00000 n
0000172455 00000 n
0000178559 00000 n
0000178377 00000 n
0000172598 00000 n
0000178497 00000 n
0000185813 00000 n
0000185574 00000 n
0000178641 00000 n
0000185694 00000 n
0000185756 00000 n
0000191950 00000 n
0000191768 00000 n
0000185895 00000 n
0000191888 00000 n
0000197904 00000 n
0000197722 00000 n
0000192032 00000 n
0000197842 00000 n
0000444622 00000 n
0000204558 00000 n
0000204376 00000 n
0000197998 00000 n
0000204496 00000 n
0000210686 00000 n
0000210443 00000 n
0000204652 00000 n
0000210563 00000 n
0000210624 00000 n
0000218864 00000 n
0000218682 00000 n
0000210768 00000 n
0000218802 00000 n
0000225152 00000 n
0000224971 00000 n
0000218946 00000 n
0000225091 00000 n
0000230565 00000 n
0000230383 00000 n
0000225234 00000 n
0000230503 00000 n
0000236086 00000 n
0000235843 00000 n
0000230660 00000 n
0000235963 00000 n
0000236025 00000 n
0000444739 00000 n
0000241754 00000 n
0000241572 00000 n
0000236168 00000 n
0000241692 00000 n
0000247454 00000 n
0000247272 00000 n
0000241836 00000 n
0000247392 00000 n
0000252354 00000 n
0000252172 00000 n
0000247536 00000 n
0000252292 00000 n
0000258650 00000 n
0000258408 00000 n
0000252436 00000 n
0000258528 00000 n
0000258589 00000 n
0000265117 00000 n
0000264935 00000 n
0000258744 00000 n
0000265055 00000 n
0000270150 00000 n
0000269969 00000 n
0000265199 00000 n
0000270089 00000 n
0000444856 00000 n
0000276286 00000 n
0000276104 00000 n
0000270232 00000 n
0000276224 00000 n
0000281961 00000 n
0000281718 00000 n
0000276368 00000 n
0000281838 00000 n
0000281900 00000 n
0000287269 00000 n
0000287088 00000 n
0000282043 00000 n
0000287208 00000 n
0000292024 00000 n
0000291842 00000 n
0000287351 00000 n
0000291962 00000 n
0000298284 00000 n
0000298102 00000 n
0000292106 00000 n
0000298222 00000 n
0000303826 00000 n
0000303584 00000 n
0000298366 00000 n
0000303704 00000 n
0000303766 00000 n
0000444973 00000 n
0000309435 00000 n
0000309253 00000 n
0000303908 00000 n
0000309373 00000 n
0000314822 00000 n
0000314640 00000 n
0000309517 00000 n
0000314760 00000 n
0000316255 00000 n
0000316074 00000 n
0000314916 00000 n
0000316194 00000 n
0000316350 00000 n
0000320633 00000 n
0000446496 00000 n
0000316394 00000 n
0000320755 00000 n
0000320513 00000 n
0000316466 00000 n
0000320694 00000 n
0000326085 00000 n
0000325903 00000 n
0000320837 00000 n
0000326023 00000 n
0000332535 00000 n
0000332291 00000 n
0000326167 00000 n
0000332411 00000 n
0000332473 00000 n
0000445090 00000 n
0000338106 00000 n
0000337926 00000 n
0000332617 00000 n
0000338046 00000 n
0000343837 00000 n
0000343656 00000 n
0000338188 00000 n
0000343776 00000 n
0000349457 00000 n
0000349276 00000 n
0000343919 00000 n
0000349396 00000 n
0000355209 00000 n
0000354965 00000 n
0000349539 00000 n
0000355085 00000 n
0000355147 00000 n
0000360748 00000 n
0000360566 00000 n
0000355291 00000 n
0000360686 00000 n
0000366210 00000 n
0000366029 00000 n
0000360830 00000 n
0000366149 00000 n
0000445207 00000 n
0000370564 00000 n
0000370383 00000 n
0000366292 00000 n
0000370503 00000 n
0000370646 00000 n
0000371197 00000 n
0000446403 00000 n
0000370690 00000 n
0000371258 00000 n
0000371016 00000 n
0000370719 00000 n
0000371136 00000 n
0000371633 00000 n
0000371513 00000 n
0000371328 00000 n
0000372304 00000 n
0000372123 00000 n
0000371674 00000 n
0000372243 00000 n
0000372679 00000 n
0000372559 00000 n
0000372374 00000 n
0000372720 00000 n
0000373519 00000 n
0000446310 00000 n
0000372764 00000 n
0000373580 00000 n
0000373399 00000 n
0000372791 00000 n
0000445324 00000 n
0000373955 00000 n
0000373835 00000 n
0000373650 00000 n
0000373996 00000 n
0000377647 00000 n
0000446217 00000 n
0000374040 00000 n
0000377767 00000 n
0000377279 00000 n
0000374089 00000 n
0000377419 00000 n
0000436783 00000 n
0000377874 00000 n
0000382056 00000 n
0000446138 00000 n
0000377918 00000 n
0000382239 00000 n
0000381340 00000 n
0000377972 00000 n
0000381496 00000 n
0000381667 00000 n
0000382117 00000 n
0000382178 00000 n
0000381884 00000 n
0000401442 00000 n
0000387546 00000 n
0000386872 00000 n
0000382346 00000 n
0000387364 00000 n
0000387020 00000 n
0000387193 00000 n
0000387425 00000 n
0000387486 00000 n
0000391553 00000 n
0000391734 00000 n
0000391205 00000 n
0000387641 00000 n
0000391614 00000 n
0000391345 00000 n
0000391675 00000 n
0000396695 00000 n
0000395657 00000 n
0000391829 00000 n
0000395821 00000 n
0000395995 00000 n
0000396512 00000 n
0000396168 00000 n
0000396573 00000 n
0000396634 00000 n
0000396340 00000 n
0000445441 00000 n
0000401503 00000 n
0000400824 00000 n
0000396790 00000 n
0000401320 00000 n
0000400972 00000 n
0000401381 00000 n
0000401146 00000 n
0000407018 00000 n
0000405868 00000 n
0000401598 00000 n
0000406040 00000 n
0000406212 00000 n
0000406383 00000 n
0000406554 00000 n
0000406897 00000 n
0000406727 00000 n
0000406958 00000 n
0000427858 00000 n
0000415004 00000 n
0000423772 00000 n
0000411264 00000 n
0000410829 00000 n
0000407113 00000 n
0000411142 00000 n
0000411203 00000 n
0000410969 00000 n
0000415186 00000 n
0000414691 00000 n
0000411359 00000 n
0000415065 00000 n
0000414831 00000 n
0000415126 00000 n
0000419109 00000 n
0000418869 00000 n
0000415268 00000 n
0000418989 00000 n
0000419049 00000 n
0000423833 00000 n
0000422835 00000 n
0000419204 00000 n
0000422999 00000 n
0000423171 00000 n
0000423343 00000 n
0000423546 00000 n
0000445558 00000 n
0000427919 00000 n
0000427279 00000 n
0000423916 00000 n
0000427427 00000 n
0000427632 00000 n
0000431902 00000 n
0000431474 00000 n
0000428002 00000 n
0000431614 00000 n
0000431841 00000 n
0000434281 00000 n
0000433933 00000 n
0000431985 00000 n
0000434073 00000 n
0000434376 00000 n
0000436875 00000 n
0000439332 00000 n
0000441797 00000 n
0000445659 00000 n
0000445772 00000 n
0000445890 00000 n
0000445984 00000 n
0000446062 00000 n
0000446752 00000 n
0000448817 00000 n
0000448856 00000 n
0000448894 00000 n
0000448980 00000 n
trailer
<< /Size 466
/Root 464 0 R
/Info 465 0 R
/ID [<54F035ED58580F519FBDE0A477D27711> <54F035ED58580F519FBDE0A477D27711>] >>
startxref
449289
%%EOF
|