From 45eab3164414a6cb3261263873372773fe6e917d Mon Sep 17 00:00:00 2001 From: kwaychoff Date: Tue, 3 May 2016 10:57:22 -0400 Subject: [PATCH] Commiting storymap functionality to new branch --- QI/admin.py | 43 +- QI/inner.py | 22 + QI/management/__init__.py | 0 QI/management/commands/__init__.py | 0 QI/management/commands/_private.py | 0 QI/management/commands/generate.py | 393 ++ QI/migrations/0012_auto_20160415_1530.py | 19 + QI/urls | 0 QI/urls.py | 6 +- QI/views.py | 7 +- data4.json | 1 + db.sqlite3 | Bin 1167360 -> 1167360 bytes static/img/.DS_Store | Bin 6148 -> 6148 bytes static/json/LatLon3.json | 1827 +++++++ static/json/SW_GH1804.json | 1 + static/json/SW_RC1805.json | 1 + static/json/SW_WH1793.json | 1 + static/json/StoryMapData.json | 1701 +++++++ static/json/result.json | 1 + static/xls/TEI people, places, orgs.xlsx | Bin 0 -> 4372948 bytes static/xml/SW_GH1804.xml | 5910 ++++++++++++++++++++++ static/xml/SW_IC1799.xml | 3357 ++++++++++++ static/xml/SW_RC1805.xml | 1256 +++++ static/xml/SW_WH1793.xml | 3046 +++++++++++ static/xml/xml_file_names.xml | 1 + templates/story_maps/SW_GH1804.html | 73 + templates/story_maps/SW_RC1805.html | 73 + templates/story_maps/SW_WH1793.html | 73 + templates/storymap.html | 95 +- templates/storymap_dir.html | 58 + 30 files changed, 17857 insertions(+), 108 deletions(-) create mode 100644 QI/inner.py create mode 100644 QI/management/__init__.py create mode 100644 QI/management/commands/__init__.py create mode 100644 QI/management/commands/_private.py create mode 100644 QI/management/commands/generate.py create mode 100644 QI/migrations/0012_auto_20160415_1530.py create mode 100644 QI/urls create mode 100644 data4.json create mode 100644 static/json/LatLon3.json create mode 100644 static/json/SW_GH1804.json create mode 100644 static/json/SW_RC1805.json create mode 100644 static/json/SW_WH1793.json create mode 100644 static/json/StoryMapData.json create mode 100644 static/json/result.json create mode 100644 static/xls/TEI people, places, orgs.xlsx create mode 100644 static/xml/SW_GH1804.xml create mode 100644 static/xml/SW_IC1799.xml create mode 100644 static/xml/SW_RC1805.xml create mode 100644 static/xml/SW_WH1793.xml create mode 100644 static/xml/xml_file_names.xml create mode 100644 templates/story_maps/SW_GH1804.html create mode 100644 templates/story_maps/SW_RC1805.html create mode 100644 templates/story_maps/SW_WH1793.html create mode 100644 templates/storymap_dir.html diff --git a/QI/admin.py b/QI/admin.py index 6389b58..fc86188 100644 --- a/QI/admin.py +++ b/QI/admin.py @@ -214,18 +214,33 @@ class Meta: fields = ['id_tei', 'Manuscript_id', 'img_url', 'fulltext'] resource_class = PageResource -admin.site.register(Person,PersonAdmin) -admin.site.register(Place,PlaceAdmin) -admin.site.register(Organization,OrganizationAdmin) -admin.site.register(RoleType,RoleTypeAdmin) - -admin.site.register(Relationship,RelationshipAdmin) -admin.site.register(RelationshipType,RelationshipTypeAdmin) -admin.site.register(Location,LocationAdmin) -admin.site.register(LocType,LocTypeAdmin) -admin.site.register(Org,OrgAdmin) -admin.site.register(Affiliation,AffiliationAdmin) -admin.site.register(Manuscript,ManuscriptAdmin) -admin.site.register(Page,PageAdmin) -admin.site.register(Book,BookAdmin) +#admin.site.register(Person,PersonAdmin) +admin.site.register(Person) +#admin.site.register(Place,PlaceAdmin) +admin.site.register(Place) +#admin.site.register(Organization,OrganizationAdmin) +admin.site.register(Organization) +#admin.site.register(RoleType,RoleTypeAdmin) +admin.site.register(RoleType) + +#admin.site.register(Relationship,RelationshipAdmin) +admin.site.register(Relationship) +#admin.site.register(RelationshipType,RelationshipTypeAdmin) +admin.site.register(RelationshipType) +#admin.site.register(Location,LocationAdmin) +admin.site.register(Location) #changed - not sure why but it works +#admin.site.register(LocType,LocTypeAdmin) +admin.site.register(LocType)#changed + +#admin.site.register(Org,OrgAdmin) +admin.site.register(Org) +#admin.site.register(Affiliation,AffiliationAdmin) +admin.site.register(Affiliation) +#admin.site.register(Manuscript,ManuscriptAdmin) +admin.site.register(Manuscript) +#admin.site.register(Page,PageAdmin) +admin.site.register(Page) +#admin.site.register(Book,BookAdmin) +admin.site.register(Book) + diff --git a/QI/inner.py b/QI/inner.py new file mode 100644 index 0000000..1a6132a --- /dev/null +++ b/QI/inner.py @@ -0,0 +1,22 @@ +from django.conf.urls import url +from QI import views + +from xml.etree.ElementTree import ElementTree +from xml.etree.ElementTree import Element +import xml.etree.ElementTree as etree + +###WOrk on this!! + +urlpatterns = [] +file = 'static/xml/xml_file_names.xml' +tree = etree.parse(file) +root = tree.getroot() +for child in root: + xml_id = child.text + urlpatterns.append(url(r'^' +xml_id+ '/$', views.storymap, {'xml_id': xml_id})) + + +#urlpatterns = [ +# url(r'^SW_GH1804/$', views.storymap, {'xml_id': 'SW_GH1804'}), +# url(r'^SW_WH1793/$', views.storymap, {'xml_id': 'SW_WH1793'}), +#] \ No newline at end of file diff --git a/QI/management/__init__.py b/QI/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/QI/management/commands/__init__.py b/QI/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/QI/management/commands/_private.py b/QI/management/commands/_private.py new file mode 100644 index 0000000..e69de29 diff --git a/QI/management/commands/generate.py b/QI/management/commands/generate.py new file mode 100644 index 0000000..e55b866 --- /dev/null +++ b/QI/management/commands/generate.py @@ -0,0 +1,393 @@ +##### move file SW_GH1804.xml to static/xml +##### python manage.py generate SW_GH1804 + +##### Comment numbers correspond to additional explanation in the documentation + + +from django.core.management.base import BaseCommand, CommandError + +#1 +import os +from xml.etree.ElementTree import ElementTree +from xml.etree.ElementTree import Element +import xml.etree.ElementTree as etree +import json +import xlrd + + +class Command(BaseCommand): #2 + args = 'Arguments is not needed' + help = 'Django admin custom command' + + def add_arguments(self, parser): + parser.add_argument('xml_file', nargs='+', type=str) + + + def handle(self, *args, **options): + for xml_file in options['xml_file']: #3 + #4 + file_name = 'static/xml/' + xml_file + '.xml' + workbook = xlrd.open_workbook('static/xls/TEI people, places, orgs.xlsx')#LOCATION + worksheet = workbook.sheet_by_name('Places')#LOCATION + tree = etree.parse(file_name) + root = tree.getroot() + #5 + #namespace - needs to be put before every element tag + ns = "" + if root.tag[0] == "{": + x = 1 + ns = root.tag[0] + while root.tag[x-1] != "}": + ns += root.tag[x] + x += 1 + #6 + title = "" + titlelist =[] + for a in root.iter(ns + "titleStmt"): + titlelist.append(a) + if len(titlelist)>0: + for x in root.iter(ns + "titleStmt"): + for child in x: + if child.tag == ns + "title": + title = child.text + title_fin = title + if title.endswith("Version"): + title_fin = title_fin.replace("\n","") + title_fin = title_fin.replace("Version", "") + title_fin = title_fin.replace("Electronic","") + title_fin = title_fin.replace(": ", "") + title_fin = title_fin.replace(" ","") + #7 + description = "" + desc_list = [] + for b in root.iter(ns + "projectDesc"): + desc_list.append(b) + if len(desc_list)>0: + for b in root.iter(ns + "projectDesc"): + for child in b: + if child.tag == ns + "p": + description = child.text + #8 + #Separating entries and the text of entries - making a list for both + div_text = [] + #Getting everything as text for each div, so I can later take out tags + divs = root.iter(ns + 'div') + #Making a list of "div type=entry" elements. + entries = [] + for div in divs: + if div.get('type') == 'entry': + entries.append(div) + div_text = div_text + [etree.tostring(div)] + #div_text is a list of strings, one for each div type= entry + #9 + # Making the text nicer -- removing <> xml tags + final_text = [] + #final_text is a list of div strings without tags + for string in div_text: + new = "" + a = 0 + b=0 + while(a < len (string)): + a_init = a + if string[a]== "<": + b = a + while (string[b] != ">" and b < len(string)): + b = b + 1 + a = b+1 + else: + new = new + string[a_init] + a = a+1 + final_text = final_text + [new] + #final_text is a list of div strings without tags + #10 + #Getting page breaks: + objects = [0]*len(entries) + #creates list of zeroes to later hold pseudo-json objects + pages = [] + for f,e in enumerate(entries): + for child in e: + page = [] + if child.tag == ns + "pb": + page = page + [child.get("n")] + else: + for ch in child: + if ch.tag == ns + "pb": + page = page + [ch.get("n")] + else: + for c in ch: + if c.tag == ns + "pb": + page = page + [c.get("n")] + pages.append(page) + ####getting first possible page for overview slide + #11 + first_page = 0 + all_pb = [] + for c in root.iter(ns + "pb"): + all_pb.append(c.get("n")) + #12 + fp_new = "" #new first page + if "[" in all_pb[0] or "]" in all_pb[0]: + for s in range(0,len(all_pb[0])): + if all_pb[0][s] != "[" and all_pb[0][s] != "]": + fp_new = fp_new + all_pb[0][s] + else: + fp_new = all_pb[0] + if pb_start(entries, ns) == True: + pages_final = get_pages_alt(pages) + first_page = int(fp_new) + else: + pages_final = get_pages(pages) + first_page = int(fp_new) - 1 + #13 + ###OBJECTS DEFINED HERE - Getting date and location data + for f,e in enumerate(entries): + #f is int, e are "div type=entry" elements + for child in e: + if child.tag == ns + "dateline": + dateline = child + for child in dateline: + if child.tag == ns +"placeName": + place = child.get("key") + if child.tag == ns+"date": + date = child.get("when") + teiId = place #LOCATION + found = False#LOCATION + row = 0#LOCATION + while (worksheet.cell(row, 0).value != xlrd.empty_cell.value and found == False):#LOCATION + if worksheet.cell(row, 0).value == teiId:#LOCATION + found = True#LOCATION + else:#LOCATION + row +=1#LOCATION + lat = worksheet.cell(row, 4).value#LOCATION + lon = worksheet.cell(row, 5).value#LOCATION + #filler latitude/longitude + if lat == "":#LOCATION + lat = 42 #LOCATION + if lon == "":#LOCATION + lon = 83#LOCATION + #Important: the spreadsheet is North and West, so you have to make it negative if you dont want to end up in Tajikistan + objects[f] = {"location":{"lat" : float(lat), "lon": -float(lon)}, "text":{"headline": date_repr(date), "text" : final_text[f]}, "media":{"url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg", "caption" : page_repr(pages_final[f])} } + #14 + #ADDING OVERVIEW INFORMATION + final = [{"type": "overview", "text":{"headline": title_fin, "text" : description},"media":{"url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg", "caption" : "First Page"} }] + objects + #Adding JSON Outside bits - 3/29/2016 + final2 = {"calculate_zoom": False, "storymap": {"call_to_action": True, "map_type": "stamen:toner-lite", "map_as_image": False, "slides": final}} + data = final2 + #15 + with open('static/json/' + xml_file + '.json', 'w') as outfile: + json.dump(data, outfile, sort_keys=True) + #16 + html_str = """{% load staticfiles %} + + + + {% include 'top-links.html' %} + + """+ xml_file + """ StoryMapJS + + + + + + +
+
+ Header img +
+ +
+
+ +
+ + +
+ + + {% include 'nav.html' %} + +
+ +
+
+
+

StoryMap for """+ xml_file + """

+ +
+ +
+
+ +
+
+ + + {% include 'footer.html' %} + + {% include 'bottom-links.html' %} + + + + + + + +""" + html_file = open('templates/story_maps/' +xml_file + '.html', 'w') + html_file.write(html_str) + html_file.close() #creates html template + #17 + #adds to list of xml ids to be made into urls + file_names = 'static/xml/xml_file_names.xml' + tree = etree.parse(file_names) + root = tree.getroot() + list_of_files = [] + for child in root: + list_of_files.append(child.text) + if xml_file not in list_of_files: + x = etree.SubElement(root, 'file') + x.text = xml_file + tree.write('static/xml/xml_file_names.xml') + +def pb_start(entries, ns): + #determines whether a document has page breaks at the ends of entries or the + #beginning of entries when an entry starts on a new page + #returns True if an element starts with a page break + for x in entries: + children = [] + for child in x: + children.append(child) + if children[0].tag == ns +"pb": + return True + return False#18 + +def page_repr(page_list): + #function to print page numbers (really just removes brackets) + page_string = str(page_list) + new = "" + for s in range(0,len(page_string)): + if page_string[s] != "[" and page_string[s] != "]": + new = new + page_string[s] + if len(page_list)== 1: + return "Page: " +new + else: + return "Pages: "+new#19 + +def date_repr(date_str): + #ex: "1793-07-20" + #want to be : "July 20, 1793" + year = date_str[0:4] + day = date_str[-2:] + month = date_str[5:7] + if month == "01": + mo_fin = "January" + elif month == "02": + mo_fin = "February" + elif month == "03": + mo_fin = "March" + elif month == "04": + mo_fin = "April" + elif month == "05": + mo_fin = "May" + elif month == "06": + mo_fin = "June" + elif month == "07": + mo_fin = "July" + elif month == "08": + mo_fin = "August" + elif month == "09": + mo_fin = "September" + elif month == "10": + mo_fin = "October" + elif month == "11": + mo_fin = "November" + else: + mo_fin = "December" + return mo_fin + " " + day +", " +year#20 + +def get_pages(page_list_a): + #shifting list of page breaks back one so it will be the list of page numbers + page_list_b = page_list_a #list of lists + #subtracts one from each page break associated with each div + for p in range(0, len(page_list_a)): + if page_list_a[p]!= []: + for x in range(0,len(page_list_a[p])): + page_list_b[p][x] = int(page_list_a[p][x]) - 1 + + #only deals with the beginning part + fill = [0] + if page_list_a[0] == []: + x = 0 + while x < len(page_list_a) and page_list_a[x] == []: + x+=1 + if x < len(page_list_a): + fill = [int(page_list_a[x][0])] + + for y in range(0,x): + page_list_b[y] = fill + else: + fill = page_list_a[0] + + #now need to do rest + + for n in range(0, len(page_list_a)): + if page_list_a[n] == []: + page_list_b[n].append(fill[0]+1) + else: + if len(page_list_a[n]) == 1: + fill = page_list_a[n] + else: + fill = [page_list_a[n][len(page_list_a[n])-1]] + return page_list_b#21 + +def get_pages_alt(page_list_a): + #get pages alternate is designed for refining the list of pages in + #cases where a page break might be at the beginning of an entry but we're not sure + #I am probably going to just not shift the numbers back + page_list_b = page_list_a #list of lists + for p in range(0, len(page_list_a)): + if page_list_a[p]!= []: + for x in range(0,len(page_list_a[p])): + page_list_b[p][x]= int(page_list_a[p][x]) #same except no minus 1 + + #only deals with the beginning part + fill = [0] + if page_list_a[0] == []: + x = 0 + while x < len(page_list_a) and page_list_a[x] == []: + x+=1 + if x < len(page_list_a): + fill = [int(page_list_a[x][0])] + + for y in range(0,x): + page_list_b[y] = fill + else: + fill = page_list_a[0] + + #now need to do rest + for n in range(0, len(page_list_a)): + if page_list_a[n] == []: + page_list_b[n].append(int(fill[0])+1) + else: + if len(page_list_a[n]) == 1: + fill = page_list_a[n] + else: + fill = [page_list_a[n][len(page_list_a[n])-1]] + return page_list_b#22 \ No newline at end of file diff --git a/QI/migrations/0012_auto_20160415_1530.py b/QI/migrations/0012_auto_20160415_1530.py new file mode 100644 index 0000000..1216974 --- /dev/null +++ b/QI/migrations/0012_auto_20160415_1530.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('QI', '0011_auto_20160219_2012'), + ] + + operations = [ + migrations.AlterField( + model_name='person', + name='affiliations', + field=models.ManyToManyField(to='QI.Org', blank=True), + ), + ] diff --git a/QI/urls b/QI/urls new file mode 100644 index 0000000..e69de29 diff --git a/QI/urls.py b/QI/urls.py index c05c31d..1b60846 100644 --- a/QI/urls.py +++ b/QI/urls.py @@ -19,7 +19,8 @@ from . import views urlpatterns = [ - url(r'^storymap/$', 'QI.views.storymap', name = "StoryMapJS"), + url(r'^storymap/$', 'QI.views.storymap_dir', name = "StoryMapJS"), + url(r'^storymap/', include('QI.inner')), url(r'^profiles/$', 'QI.views.profiles', name = "Person Profiles"), url(r'^texts/$', 'QI.views.texts', name = "Available Texts"), url(r'^about/$', 'QI.views.about', name = "About Page"), @@ -28,9 +29,6 @@ url(r'^cornp1/$', 'QI.views.cornp1', name = "Henry Cornplanter"), url(r'^places/$', 'QI.views.places', name = "Places page"), url(r'^organizations/$', 'QI.views.organizations', name = "Organizations page"), - - - ] admin.site.site_header = 'Beyond Penns Treaty' diff --git a/QI/views.py b/QI/views.py index bd6d8a8..48537c8 100644 --- a/QI/views.py +++ b/QI/views.py @@ -30,8 +30,11 @@ def profiles(request): org_list = Organization.objects.order_by('organization_name') return render(request, 'profiles.html', {'persons': person_list, 'places': place_list, 'orgs': org_list}) -def storymap(request): - return render(request, 'storymap.html') +def storymap(request, xml_id): + return render(request, 'story_maps/' + xml_id + '.html') + +def storymap_dir(request): + return render(request, 'storymap_dir.html') class Home(TemplateView): template_name = 'index.html' diff --git a/data4.json b/data4.json new file mode 100644 index 0000000..1a866f2 --- /dev/null +++ b/data4.json @@ -0,0 +1 @@ +{"calculate_zoom": false, "storymap": {"call_to_action": true, "map_as_image": false, "map_type": "stamen:toner-lite", "slides": [{"media": {"caption": "First Page", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "A Mission to the Indians from the Indian Committee of Baltimore YearlyMeeting to Fort Wayne, in 1804 ", "text": " Native Americans and Quakers "}, "type": "overview"}, {"location": {"lat": "brook", "lon": "brook"}, "media": {"caption": "Page: 9", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 24, 1804", "text": "\n 2d mo. 24th.\n Bade farewell to my relatives and connexions at Brookeville, and rode to Now-land's\n Ferry-28 miles-a very muddy and cold day. The high wind\n preventing us from cross-ing the Potomac\n river, we rode to the house of\n George Lepley, a neighboring farmer, where\n we found good accommodations, and were kindly entertained. \n \n "}}, {"location": {"lat": "goosec", "lon": "goosec"}, "media": {"caption": "Page: 9", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 25, 1804", "text": "\n 25th.\n Crossed the Potomac early this morn-ing,\n passed over the Catoctin mountain, taking\n the village of Waterford in our way;\n thence through the gap of the Short\n Hill, over the Blue Ridge\n to Warmsley's Ferry over the Shenandoah\n river; thence across the Shenandoah to the house of our friend, John McPherson, a dis-tance of 29 miles. This\n day's journey has been highly entertaining; mountain rising above\n mountain, and farm above farm, till we reached the summit of the Blue Ridge, from whence a most extensive and\n beautiful prospect of the country, both on the east and west side of\n the mountain, was full in view. From the top of this commanding\n eminence, we were the specta-tors of a beautiful natural scene. A cloud,\n small in its appearance, passing nearly upon a level with our\n elevation, cast its shadow upon theGoose\n Creek settlement below, for several miles in extent. The\n precise shape of the cloud, with all its indentations, was visible in the\n shadow; the indentations bearing the same enlarged pro-portions, with\n the shadow, to the cloud.\n An extraordinary deceptibility in human vision is evident, in a view of the\n Shenandoah river, from the summit of\n the Blue Ridge. The river, in the\n estimation of some of our company, did not appear to be further from us\n than the distance of half a mile and it proved to be not nearer than\n three or four miles.\n \n "}}, {"location": {"lat": "ridgeva", "lon": "ridgeva"}, "media": {"caption": "Page: 9", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 26, 1804", "text": "\n 26th.\n Passed across the Shenandoah valley, a\n body of excellent limestone land. This valley is several hundred miles in\n length, and general-ly from 20 to 25 miles in width, lying between the\n Blue Ridge and the North Mountains. Many parts of it retain to this day the\n name of barrens, though now heavily timbered, being at the time the\n land was taken up, covered with scrubby bushes. On our way we crossed a\n small river called the Opekon,-and it\n being the first day of the week, we attended the Ridge\n Meeting of Friends, after which we spent the remainder\n of the day, and lodged at night, at the house of our friend, David Lupton, at the foot of the North Mountain,-having travelled 18 miles. One\n of our horses faltered this morning, having been too well fed at last\n night's quarters. \n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 9", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 27, 1804", "text": "\n 27th.\n This day travelled 31 miles, and lodged at Clayton's Ordinary,*\n *An Ordinary, is another name for a house\n afford-ing indifferent entertainment. having crossed the\n North Mountain, Timber\n Ridge, Sandy Ridge and\n Capon Mountain; also forded Great Capon river and North river. Our road led us through several long and\n narrow valleys, which were well timbered and rich; we have also passed\n large tracts of mountainous, uncultivated, and doubt-less never to be\n cultivated land. It is said deer are very plenty in the tract through which\n we have passed to-day, but none were discovered by us. Upon some of\n the mountains, and also in the valleys, we observed a few tolerably\n well-looking farms; we have also noticed several small sugar camps in\n the course of this day's journey.\n \n "}}, {"location": {"lat": "musta", "lon": "musta"}, "media": {"caption": "Page: 11", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 28, 1804", "text": "\n 28th.\n Continued our journey,-forded the\n Little Capon river, the south branch of\n Poto-mac, Patterson's creek, and the north branch of\n Potomac. We also travelled over Little Capon Mountain, South Branch Mountain and North\n Branch Mountain, passing through Springfield,\n Frankford and Cresapsburg villages, reaching\n Musselman's tavern, near the foot of the\n Alle-ghany Mountains; making a journey\n of 37 miles.\n A snow has been falling for some hours upon the remains of a former snow ten\n inches in depth. Our journey to-day has been very en-tertaining,\n notwithstanding the severity of the weather, and the danger at\n this time attendant, on climbing up and descending precipices.\n There is much in a journey over these moun-tains to puzzle, as well as\n amuse, the naturalist. Many extraordinary natural curiosities have\n fallen under our observation, in the diversified appearance of mountains,\n rocks and valleys. We have passed to-day the most ponderous, craggy\n and over-jutting rocks we have heretofore met with, many of which were\n elevated several hundred feet above our heads, and seemed to threaten\n us with impending danger; which was not a little magnified, in our\n apprehensions, from observing cast bodies of rock, which had evidently\n tum-bled from their lofty summits into the valleys. Had we been\n disposed to indulge fancy, we might have figured to ourselves, in a view\n of these rude mountains of rocks, many of those descriptions met with\n in Roman, Greek or Egyptian history, of amphitheatres, obelisks,\n pyramids, &c. &c; whilst many others exhibit-ed such regular, wavy\n appearences, interspersed alternately with oaks and pines, and soil of\n various hues, as seemed to challenge the painter with his diversified\n shades of coloring. And could we have observed here goats, white bears\n and reindeer, with now and then a human being clothed in skins and\n furs, and with weather a little colder, we might, perhaps, have been\n led to suppose ourselves in Lapland. A few settle-ments are made in\n this tract, which are mostly in the valleys. Deer are said to\n be very numerous upon these mountains-several were seen by us. We also\n observed seats erected in the branches of the trees by the hunters, twenty\n feet in height, being concealed stations for the purpose of shoot-ing\n deer at the Salt Licks. We have also seen several flocks of turkeys and\n pigeons in vast numbers. \n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 13", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "February 29, 1804", "text": "\n 29th.\n Travelled thirty miles upon the Alle-ghany\n Mountains, and at night lodged at Smith's Ordinary. We have\n to-day passed through land heavily timbered, tolerably level, and said to\n be rich and clear of stone; of this, the snow pre-vented us from\n judging. We also crossed over that part of the Alleghany ridge which divides the eastern and western\n waters of our continent- the streams all bearing a right hand\n direction: Near this part of the mountain, our road led us through the\n most beautiful and lofty forest of spruce and pine I ever saw. This forest\n is call-ed the Shades. The trees are generally from 108 to 180 feet in\n height, with a body not more than 12 inches in diameter at the surface\n of the earth.\n We also forded one of the branches of the\n Youghiogany river, called the Little Crossings. The principal ridges which we\n passed are called by the mountaineers the Back-bone\n Ridge, (from its sharp elevation,) the Winding Ridge and the\n Negro Mountain. On inquiring into the\n origin of the name of the latter, we were informed\n that many years ago, a white man and a negro who were hunting together,\n accidentally fell in with an Indian upon this ridge who was armed;\n both the negro and the Indian betook them-selves to trees, presented their\n guns at each other, and fired at the same moment, and both fell dead.\n Thier images are cut upon the trees behind which they fell, as a memento of\n the circumstance. The ridge has ever since been called the Negro Mountain.\n Deer and turkies are numerous upon these mountains. The hunters have in many\n places erected seats, as heretofore described, for the pur-pose of\n shooting deer.\n Over the greater part of our journey to-day we have found snow two feet in\n depth. A tolera-ble track is however beaten for us by a descrip-tion\n of pedlars, who pass by the name of Packers. These people carry on a\n considerable trade be-tween the Redstone settlements and Winchester, in Virginia, as also with several other villages in the western\n part of that State.\n They take with them upon horses, bags of flax, which article they purchase\n at Redstone at a low price; this they\n dispose of at an advance, and in return carry salt, for which they are\n well paid at Redstone. It is not\n unusual to meet a Packer, having under his direction half a dozen\n loaded horses. These animals on meeting travel-lers, do not turn aside from\n the beaten path. We were several times under difficulties in\n making our way through the snow on their account.\n \n "}}, {"location": {"lat": "redst1", "lon": "redst1"}, "media": {"caption": "Page: 14", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 01, 1804", "text": "\n 3d mo. 1st.\n This day we travelled thirty six miles, passed through the villages\n Woodstack and Uniontown, and after night reached the house\n of our friend, Jonah Cadwalader, in the\n neighborhood of Redstone, Old Fort, and near the Monongahela river. On our way we passed a place called the\n Great Meadows, upon the\n Alleghany Mountains. This place is noted\n for an entrenchment, cast up by General\n Washing-ton, then Colonel Washington, when retreating\n from a defeat given to a small force under his command, (near the junction\n of the Alleghany and Monongahela rivers,) history says by a much superior body\n of French and Indians. We also passed over the spot where Gen. Braddock was buried. His army of 1200\n chosen men was de-feated near Fort Du\n Quesne, in an unexpected attack by the Indians. We are told\n that the\n General and half this number were killed,\n and sixty-four out of eighty-five of his officers; of those who\n escaped was Washington, at the time\n Aid-de-Camp to General Braddock. The\n de-feated army brought off their dead commander and buried him in the\n road, in order to elude the search of the Indians for his dead body.\n It may be remarked that the land in the neighborhood of the Great Meadows is very level and the timber\n heavy, which indicates the goodness of the soil. A considerable body\n ofthis land was owned by Washington at the time of his death.\n This day's journey has been very disagreeable and cold, owing to a continued\n fall of snow. We greatly regretted that the clouds prevented a view of\n the Redstone settlements from the top\n of Laurel Hill, this being that part of the\n Alle­ghany Mountains from which a\n descent is made into the country below. From this commanding eminence\n the prospect, we are told, is beautiful beyond description.\n Our disappointment, however, was in some measure recompensed by finding\n ourselves, when upon the top of this hill, not only above the clouds,\n but also so elevated in a cloud as to find the particles of snow resembling\n fog; a proof that large spits of snow, as they are called, ac­quire\n their size by an accumulation of particles on their way from the clouds to\n the earth. I may here mention, that the difficulties and fatigues of\n our journey thus far have been rendered light by the agreeable company of\n my brother-in-law,\n Thomas Moore, and our esteemed friend,\n Israel Janney, the former joining us\n at Brookeville, and the latter in the\n Shenandoah Valley. They are\n complying with an appointment by our late Yearly Meeting, in a visit to a\n Quarterly Meet­ing at Redstone.\n \n "}}, {"location": {"lat": "wash2", "lon": "wash2"}, "media": {"caption": "Page: 14", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 09, 1804", "text": "\n 9th.\n The river Monongahela not having yet risen,\n we are greatly disappointed in our wish and intention to take boat at\n Redstone for the mouth of the\n Miami of the Ohio. We have, therefore,\n no other alternative than to prosecute a long and doubtless fatiguing\n journey by land. This morning, whilst we were preparing to pro-eed on our route, two young men arrived at our quarters, for\n the purpose of accompanying us; one of them a blacksmith, and a member of\n our Society, the other a carpenter, and a steady young man. They are\n under the pay of government, and have engaged to reside in the\n neighborhood of Fort Wayne, to be\n employed for the benefit and instruction of the Indians. Previous to\n our leaving home, we had reason to expect that we should be overtaken\n by these young men, and were glad to have our expectations realized.\n Again proceeding on our journey, we passed through Brownsville, a village on the Mononga-hela River; crossed over that river in a boat,\n and rode about twenty-six miles to Washington, an inland town. Our ride to-day has been\n through a very hilly country, tolerably rich, though badly watered. It\n is said that one of the first survey-ors of this tract of country, when\n questioned re-specting its general appearance, replied, It is like a large meadow filled with stacks of\n hay. A comparison very apropos.\n It is worthy of remark, that near Brownsville, on the Monongahela, are the remains of an old fortification,\n including several acres of ground. Mussel shells are yet very abnndant\n within the intrenchment; and nearly opposite to the forti-fication are\n two fish pots extending quite across the river; they are made of stone,\n weighing gene-rally from thirty to forty pounds. It is said that the\n Indians who resided near the spot at the time of its discovery\n by the white men, had not even a traditional knowledge of the making of\n these fish pots, nor of the erection of the fortification. \n This day, in passing along, my mind has been involved in much serious\n reflection on the im-portance of our mission. And I trust I have in no\n small degree felt the responsibility we are under, not to men only, but to\n the Great Author of all good, with an ardency not to be expressed,\n that we may indeed discharge the trust reposed in us, and perform the duty\n required of us with propriety.\n \n "}}, {"location": {"lat": "shortc", "lon": "shortc"}, "media": {"caption": "Page: 22", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 10, 1804", "text": "\n 10th.\n Travelled thirty-four miles, and after night were glad to reach the house of\n our friendJonathan Taylor, in the State\n of Ohio; on our way we passed through the\n small villages of Tay-lorstown and\n West Liberty. The tract of coun-try\n through which we have travelled is generally fertile and is mostly settled.\n In the course of this day's ride, it is observable that limestone is\n to be found on the tops of the highest hills, but is rarely found in the\n bottoms.\n It may now be noted that the hills between the Monongahela and the Ohio rivers\n are gene-rally of a very singular description, having two or three\n circular elevations, the surface of each elevation flat for the space of\n twenty-five to thirty feet in diameter. These flat appearances extend\n quite around the circumference of the hills, and seem to vie with art for\n regularity.\n This day we crossed in a boat the great river Ohio. On approaching it, I felt no small degree\n of awe. The slow and majestic movement of so vast a body of running water,\n added to the re-collection of the blood which had been spilt re-lative\n to its shores, enforced the sensation. With what obstinacy the poor Indians\n resisted the de-signs of the white men in making settlements west of\n this river! Having been driven further and further westward, relinquished\n claim to tract after tract, they here made a stand, fixed in a\n re-solve, hitherto ye may come, but no farther! This river shall be\n the boundary between us! It shall limit your encroachment! The\n resist-ance they made, and the blood which was split, sufficiently\n prove the reluctance with which they gave up the contest. The bottom upon\n the west side of the river where we crossed, which was at the junction\n of Short Creek, is very rich, but not\n wide. In this bottom we observed a mound of earth cast up to the height of\n fifteen feet, its diameter at the base forty-five feet, and said to be\n a burial place, but whether made by the In-dians or not is not ascertained.\n It is said that two miles below this is a square fortification\n containing several acres of ground, enclosed by a bank of earth thrown up\n by art to the height of eight feet.\n Along the east shore of the river great de-struction was made a few years\n ago by a species of caterpillar which infested the trees. They fed\n upon the leaves, and thus killed trees of enormous size. Their\n havoc extended for many miles along the river, and reached about seven\n or eight miles from the shore. \n \n "}}, {"location": {"lat": "shortc", "lon": "shortc"}, "media": {"caption": "Page: 23", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 11, 1804", "text": "\n 11th.\n This day being First-day, we rested ourselves and horses, and were glad to\n have an opportunity of attending a meeting of Friends, called Short Creek Meeting. A Monthly Meet-ing is lately\n established here by Redstone Quar-terly\n Meeting. About forty Friends were at this meeting, and most\n of them were new settlers. The greater number had moved from North Carolina. The meeting was held in a log\n house or cabin, situated upon a beautiful hill, covered with lofty\n timber. The difficulties and incon-veniences of a new settlement, are\n rendered the more easy and tolerable, where, as in the instance of\n these Friends, a number of families, by agree-ment, form a settlement in\n the same neighbor-hood. In the afternoon several of them visited us at\n our lodgings, and expressed sympathy with us in our undertaking.\n \n "}}, {"location": {"lat": "randt", "lon": "randt"}, "media": {"caption": "Page: 23", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 12, 1804", "text": "\n 12th.\n Proceeded on our journey; travelled thirty-one miles and reached Randallstown; part of the day has been rainy,\n and the riding very disagreeable. We have passed through a body of\n land heavily timbered and very rich. There are yet but few settlements made\n on this tract. The first settlers in this new country erect small log\n cabins, which they cover with split timber called puncheons; these they pin\n to the rafters with wooden pins. Nails are rarely to be\n found in any part of the house. Their floors are hewn out of the\n timber, and pinned to the sleepers with wooden pins. They clear their land\n by killing the timber, which is done by girdling the trees, that is by\n cutting the bark around the trees to the wood. They then proceed to\n the cultivation of the soil, which produces them abun-dant crops.\n It is a common practice with them to sow small grain upon the original\n surface, which is harrowed in, and such is the looseness and\n light-ness of the soil, there seems but little necessity for the\n plough in raising the first crop of grain.\n Our road led us across a water of the Ohio\n called Captena; also several streams belonging\n to a river called Stillwater; thus named\n from its slow, silent progress to the Muskingum.\n \n "}}, {"location": {"lat": "beath", "lon": "beath"}, "media": {"caption": "Page: 23", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 13, 1804", "text": "\n 13th.\n This day we travelled twenty-five miles and reached Beathe's Ordinary. We have had a very disagreeable day's\n ride. A continued fall of rain, hail, and snow, and the road very miry\n and fatiguing to our horses. The land through which we have passed not\n quite so good gene-rally as that noted yesterday. We, however, saw\n considerable bodies of excellent land, parti-cularly of bottoms. Some of\n them were of far greater extent than any we have heretofore met with,\n being heavily timbered and very rich. Scarcely a settlement has yet been\n made in this tract; deer are very plenty here. It is to be\n re-marked, that in riding the last fifty miles, we have scarcely seen\n one of any of the descriptions of the feathered tribes, except owls. Birds\n love to resort to the haunts of men.\n Squirrels appear to be very numerous, and are mostly of a deep black color.\n In the notes made on crossing the Alleghany\n Mountains, I omitted to observe that the squirrels we\n saw there were mostly red, and less in size than the grey squirrels of\n Maryland. They are the most active\n squirrel I ever saw, and are called by the mountaineers the Chipparee\n Squirrel. \n We this day crossed several of the branches ofWill's\n Creek. This creek we understand derivedits name from Will, a\n famous Indian, who former-ly had a town upon its banks called Willstown.\n \n "}}, {"location": {"lat": "zanev", "lon": "zanev"}, "media": {"caption": "Page: 25", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 14, 1804", "text": "\n 14th.\n Travelled twenty-five miles, crossing in our way the main branch of\n Will's Creek and a water called\n Salt Creek; at night reached Zanes-ville, and lodged at M'Intire's tavern. This is a town lately laid\n out on the Muskingum river, opposite to\n the junction of Licking creek. Its\n situation is very level and handsome, and will doubtless command the trade\n of this new coun-try. As we approached the Muskingum, our roadled us upon a hill of about 200 feet\n elevation, upon which we rode for a distance of seven miles; both upon\n our right and left hand, were chains of hills about ten miles from us,\n in view, bearing the same westerly direction, with\n that upon which we travelled. The appearanceof these hills revived the\n recollection of theBlue Ridge, and its\n parallel mountians. Several mounds or burial places were to-day\n observed by us.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 26", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 15, 1804", "text": "\n 15th.\n This day we travelled thirty miles and lodged at a small hut called\n Trimble's. \n We ferried the beautiful river Muskingum at\n Zanesville, where it is about 600 feet wide,\n rode through a tolerable tract of land, till we reached a creek called\n Jonathan's creek. From this creek to\n the end of this day's journey, a distance of twenty miles, we rode through\n land which we think preferable to any tract we have yet passed, being\n more level, the timber heavier and the soil very rich; many Germans are\n making settlements here. Several mounds fell under our observa-tion\n to-day; we also saw many deer; seventeen of these were together in one\n wheat field.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 27", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 16, 1804", "text": "\n 16th.\n Rode thirty-two miles, and at night were permitted to lodge under a roof\n called Gray's. We passed through New\n Lancaster, a town lately laid out, and situated on the\n greatHock-hocking river, as it is\n called upon the maps. Its size greatly disappointed me; an ac-tive man\n may jump from one of its banks to the other at New\n Lancaster.\n This town as well as the neighboring country, is being rapidly settled by\n Germans. During our day's ride, the extraordinary beauty of\n the country, as well as the superior excellency of the land, excited\n our admiration. Now and then a prairie or natural meadow containing from\n fifty to two hundred acres, apparently a perfect level, having neither\n tree, shrub, stump, or stone, and the soil the deepest black I ever saw in\n any com-position of earths, attracted our notice. These were\n surrounded by higher ground, covered with lofty timber, extending to the\n next prairie, and thus on till we reached a tract called the Piqua Plains. Here our admiration was afresh\n excited by a view of the most beautiful scenery we had yet met with.\n This tract is perfectly level; it is situated upon the Scioto river, is seven miles in length, and\n generally three miles in width, hav-ing neither tree, stone or shrub, and\n composed of the black earth above described; it is in part under\n cultivation. About the centre of the prairie is a circular mound of large\n diameter, and about forty feet in height, cast up by art. It is\n covered with lofty timber. The people who cultivate these plains find them\n to produce from eighty to one hundred bushels of Indian corn, and from\n forty to fifty bushels of Indian corn, and from forty to fifty bushels of\n wheat per acre. They plant corn at the distance of two and a half to\n three feet apart, having six to eight stalks in a hill.\n In the course of this day's journey we have seen deer and turkeys in\n abundance, and for several days past have seen vast numbers\n of pigeons.\n \n "}}, {"location": {"lat": "chill", "lon": "chill"}, "media": {"caption": "Page: 28", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 17, 1804", "text": "\n 17th.\n Travelled fifteen miles and arrived at the town of Chilicothe, where we were well en-tertained at Tiffin's\n tavern. The governor of the State of Ohio\n resides here, who having heard of our arrival, paid us a visit in the\n even-ing and supped with us. We were pleased with his friendly\n affability. In the course of this day's short ride, our road led through a\n continua-tion of the finest lands.\n It is remarkable that there are uniformly three gradations of elevation,\n from the banks of the Scioto river. The\n first is a bottom of about one mile in extent, very level and covered\n with black walnut, buck eye, blue ash, honey locust, and sugar trees.\n Then upon another elevation of about fifteen feet, a second bottom, which\n ex-tends from one to two miles, covered with the same descriptions of\n timber, though heavier, and the trees standing nearer together. Then\n an-other elevation about the same height, which ex-tends for many\n miles, being a little inclined to hills; the timber composed of a great\n variety. People are settling fast upon this tract, and several mills\n are already erected upon a creek belonging to the Scioto, which we crossed, called the Killakanik.\n On our way we turned aside from our road to view an ancient fortification.\n This fortifica-tion is on the Scioto bottom adjacent to the river, and is shaped\n thus.\n \n Map of an ancient fortification along the Scioto River\n \n \n Ancient Fortification on Scioto\n River. A pictorial representa-tion of this\n Indian antiquity has been published in the Smithson-ian\n Contributions to Knowledge, vol, I, plate xviii.\n \n \n \n The bank of earth thrown up around the for-tification is about six feet\n high, surrounded by a ditch upon the outside, now four feet in width,\n and as many in depth. The bank is covered with lofty timber, as is also the\n ground within the intrenchment. There are several mounds such as have\n heretofore been described in the vicinity, and within the town of\n Chilicothe there is another\n fortification of which the diameter is about 450 feet. Near this is the\n largest mound we have seen, being 100 feet in diameter,\n and thirty feet in height, and is a globular figure of great\n regularity. Three miles below the town of Chilicothe, and between the Scioto and Paint Creek,\n and near their junction, is a fortification of the following figure:\n \n Map of a fortification between the Scioto and Paint Creek\n \n \n Containing 30 Acres.\n \n \n \n The banks of this ancient work are about six feet in height. The eight small\n circles opposite the openings or gates are mounds of considerable\n size.\n I had omitted to mention, that on the east bank of the Scioto, nearly opposite Chilicothe, we measured to-day a sycamore tree which\n was sixteen feet in diameter. The tree is hollow, and measures\n thirteen feet across the hollow. New settlers have frequently encamped in\n this tree with their families, whilst they were making choice of land\n to settle upon.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 33", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 18, 1804", "text": "\n 18th.\n Proceeded upon our journey fifteen miles and lodged at Platter's tavern. On\n our way we passed many mounds. Several of them were of the\n shape and size of the one described in the town of Chilicothe. Our attention was also arrested by the\n appearance of a bank thrown up at some distance from the road; on riding\n to it we found it to be a very extensive fortifica-tion. It is\n situated upon a level plain near\n Paint Creek, one of the waters of the\n Scioto river. As this is a work of\n great labor and curi-osity, I shall be minute in my description and\n give the following figure.\n \n Map of fortification on Paint Creek\n \n \n Ancient Fortification on Paint\n Creek, near Chilicothe, contain-ing within the embankments\n nearly one hundred acres.\n \n \n \n \n\n The bank which is cast up for the fortification is now fully four feet in\n height, and thirty-three in width, at the base covered with lofty\n timber.\n The figure marked (A) is a very regular oval mound 500 feet in diameter,\n from one extremity to another the longest way, and 300 feet in\n diameter the other way; perpendicular height is about thirty feet. This\n mound is paved over with stone, and has upon it trees of large size,\n as well as the remains of decaying trees, which after acquiring their\n full growth have fallen. The two circles marked (B) are very perfect\n globular figures. They are one hundred feet in diameter, and about thrity\n feet perpendicular height.\n The remaining eight small circles represent mounds which are from eighty to\n one hundred feet in diameter, and from twenty-five to thirty feet\n perpendicular height, being also globular figures, and all covered with\n lofty timber. The semi-circle (C) is a bank of earth thrown up to the\n height of about three feet, its diameter about one hundred and fifty\n feet.\n Near the outer banks of this extraordinary fortification are many large\n holes in the earth, at least one hundred feet in diameter, and of\n considerable depth. These are no doubt places out of which the earth was in\n part taken for making this work of labor.\n The land through which we have passed to-day, is a continuation of a\n country, very level and beautiful, being situated on Paint Creek; the soil, the same in appearance\n as that de-scribed yesterday, nothing seeming to indicate its superior\n richness, unless it be the size of its timber. The heaviest and most\n towering trees we have seen, we met with to-day. Our progress was\n impeded by our curiosity to take the girth of many trees; we measured white\n oaks which were from seven to eight feet in diameter; walnuts, six to\n seven feet four inches; elms, six to six feet eight inches; ash, five feet,\n and honey locusts four feet in diameter; the girths taken eight feet\n above the surface of the earth. These trees carried their thickness to an\n amazingheight.\n We also measured a few sycamore trees, and most of them were from eight to\n ten feet in diameter; one of the sycamores we measured which was eight\n feet in diameter, continued its thickness forty-five feet without a limb,\n its top very branching and large. While we were admir-ing it,\n Philip Dennis* suggested an opinion\n that this tree, could it be split into cord-wood after the common manner,\n would measure forty cords. At first we questioned the statement, but\n upon making a calculation, became con-vinced that his estimate was within\n bounds. \n These were not trees singled out as the only monuments; we turned not aside\n to search for them, but measured such as fell under our ownobservation\n in passing over our road. It is more than probable that there\n are trees in the same tract larger than any we saw. Few settlements\n are yet made here. \n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 35", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 19, 1804", "text": "\n 19th.\n Rode seventeen miles, and reached the residence of our friend William Lupton, upon\n Lee's Creek, one of the head waters of Paint Creek. Our road led us eight times across\n Paint Creek; passing a great part of\n the way through the bottoms of Paint\n Creek. The land the same in appearance as remarked\n yesterday. In the course of our ride, we saw many hundreds of poplars\n which were the more observable, as we have scarcely noticed a poplar since\n we crossed the Ohio. These trees are\n generally seven to eight feet six inches in diameter, many of them\n continuing their thickness for fifty feet in height, and very handsome and\n sound. On the bot-toms we saw deer in abundance; they were so gentle\n as to allow us to pass by them quite within gun shot. They appeared to\n be busy in cropping the young grass. We have also observed several\n mounds and fortifications near the falls to Paint\n Creek, and others nearly adjacent of which the banks are\n about three and a half feet high.\n Upon this Creek there are many beaver\n dams, and beavers are still caught here by the Indians. For several days\n past we have seen many hunting camps but no Indians. Several families\n of Friends have settled in this remote quarter of the Western Territory.\n They haveremoved from Virginia and North Carolina,\n and expect to be followed by others. They tell us that an indulged\n meeting is held in one of their houses.\n There is much to induce Friends of the South-ern States, to remove to this\n new country; for, added to the consideration of the superior quality\n of the land, and the cheap and easy terms upon which it is to be purchased,\n there is an invalu-able regulation in the Constitution of Ohio, pro-hibiting the introduction of slaves.\n The Con-stitution has also provided that no person with-in the State\n shall voluntarily relinquish his right to freedom. Its framers have even\n gone further; they declare that they have made these regula-tions to\n be binding both upon them and upontheir posterity.\n This truly valuable country is forbidden ground to the Virginia slave holders. Many of them have\n approached as near to its borders as they have dared, by settling along the\n east shore of the Ohio river; their\n murmurs induced several persons in the State of Ohio, to offer themselves as candidates to the late State\n Legislature, de-claring their determination to use their influence in\n obtaining an alteration in this part of the Constitution. We are told that\n on account of this avowal, they met with the most pointed and zealous\n opposition; the people declaring gene-rally, that one of the inducements\n which led them to emigrate to the State, was the Constitu-tional provision by which slavery was interdicted, and that any\n alteration therein would be an in-supportable grievance.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 36", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 20, 1804", "text": "\n 20th.\n This day rode fifteen miles, and reached\n Hugh Evan's, upon Clear\n Creek, one of the head waters of the Rocky Fork of Paint Creek.\n The country through which we have passed is up-land and lies level.\n The timber is heavy and much interspersed with blue ash, hackberry,\n walnut and sugar trees. There is scarcely a set-tlement yet made here.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 36", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 21, 1804", "text": "\n 21st.\n Our progress has been impeded for several days past, two of our horses\n belonging to our company having faltered. This day we concluded to\n rest them by continuing at the house of Hugh\n Evans, who is hearty and cheerful at seventy-four years of\n age, his wife equally so, and seventy-two years of age. The old man\n appears to make me welcome at his house, say-ing he knew my father, having\n early in life been his neighbor, and has made many inquiries after the\n families of the people who were his old ac-quaintance. He says he has six\n children, all of whom have married to his satisfaction, and that they\n lately removed with him from Kentucky,\n and are settled around him, each of them upon five hundred acres of land\n which he has given them. He says that it affords him great\n conso-lation now in the decline of life, to reflect that his\n acquisitions are the fruits of his honest in-dustry.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 36", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 22, 1804", "text": "\n \n 22d.\n This day rode twenty-three miles, and lodged at Sewell's Cabin,-a day of snow and rain. We crossed the\n ridge which divides the waters of the Scioto from those of the Little\n Miami river. Passed several of the head branches of the\n latter, as also a considerable creek called the East\n Fork of the Little\n Miami. On one of the bottoms of the creek we noticed a\n fortification. The bank cast up around was about four feet high. We also\n observed within a few rods several mounds. It is truly a beautiful\n country through which we have passed to-day; the land is level, covered\n with lofty timber, and the soil very rich, scarcely a settlement yet\n made.\n \n "}}, {"location": {"lat": "wains", "lon": "wains"}, "media": {"caption": "Page: 36", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 23, 1804", "text": "\n 23d.\n Continued our journey, and after riding fourteen miles, reached the house of\n Samuel Linton, at Wainsville, upon the Little\n Miami river, where we were kindly received. At this\n place we rested ourselves and horses, acquired information respecting our\n future route, and equipped ourselves for the increasing difficulties\n of the wilderness.\n The settlement made here is composed cheifly of Friends; about thirty\n families reside in this neighborhood. A Monthly Meeting is held here\n called Miami Monthly Meeting, to which about\n thirty families more belong who are scat-tered over an extensive tract of\n country.\n Our attention was attracted to-day by the ap-pearance of the stone, not only\n in the beds of the rivers and creeks, but also upon the\n hills and in the valleys. They are limestone, and are composed\n altogether of marine shells. The stone when broken discovers the size and\n shape of theshells very perfectly.\n These shells are of the same description with those I have formerly obtained\n from the banks of the Chesapeake Bay, in\n the lower part of the State of Maryland.\n It may be remarked, that no shell-fish of this description are at present\n to be found in any of the waters of our Continent.\n The country west of the Ohio river through\n which we have passed is a limestone country, the very pebbles and even sand\n in many places are limestone.\n Heretofore I have omitted to mention that in the neighborhood of Chilicothe, we amused our-selves with the\n earths and stones, which were dug out of the ground in sinking wells.\n There are several layers or strata of limestone, gravel, and sand,\n within a few feet of the surface of the earth. Some of the stones contain\n the above description of marine shells, and in breaking some of the\n large gravel we found appearances of the same shells. The stones as well as\n the gravel have evident marks of their having been washed with water,\n their shape inclining greatly to rotundity.\n \n "}}, {"location": {"lat": "dayt", "lon": "dayt"}, "media": {"caption": "Page: 38", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 24, 1804", "text": "\n 24th.\n Again proceeded upon our journey, and after riding eight miles reached\n Dayton, where we lodged. This town is\n newly laid out, situ-ated upon the Great\n Miami river, nearly op-posite to the junction of Still Water and Mad\n river, with the Miami, which is\n here about one hundred and sixty feet in width. We have passed to day\n the Ridge which divides the waters of the Little and Great Miami, and\n crossed several of the streams belonging to the Great Miami. The tract of country between the two,\n through which we have passed to-day, is of the most beautiful and desirable\n de-scription. The land lies in waves of great regu-larity, is crossed\n with heavy towering timber, and the soil inexhaustibly rich. At Dayton were two block houses, which were erected\n by the white men, as places of retreat and defence against an attack\n by the Indians.\n \n "}}, {"location": {"lat": "staunt", "lon": "staunt"}, "media": {"caption": "Page: 39", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 25, 1804", "text": "\n 25th.\n Rode twenty-one miles, and reached a small village called Staunton, situated upon the\n Great Miami river. The country continues\n to exhibit a beautiful appearance, though the timber is not generally\n so heavy as noted yesterday. We passed several extensive and rich\n prairies, and forded Mad river a little\n above its mouth. The river derives its name from its swift current. We\n also crossed several streams belonging to the\n Great Miami.\n \n "}}, {"location": {"lat": "flino", "lon": "flino"}, "media": {"caption": "Page: 39", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 26, 1804", "text": "\n 26th.\n This day after riding fifteen miles, we reached Flinn's ordinary, where we were disap-pointed in finding\n no feed for our horses. We also received the information that there was\n no probability of our obtaining provision for them short\n of Fort Wayne; we therefore despatched a\n part of our company to a house we had passed about four miles, in quest of\n corn. They obtained four bushels, and hired a man and horse to travel\n with us and bring the corn along. For many days past our horses have\n suffered for want of hay, and being fed altogether upon corn they have\n lost their appetites.\n The face of the country in the course of this day's short journey is a\n continuation of beautiful land; being level, and finely timbered. We\n passed through a handsome prairie containing several hundred acres called\n the Lower Piqua Plain, crossed Honey Creek and Lost\n Creek, two considerable streams of the Great Miami.\n Thus far in our route we have been favoredwith respect to the waters, no\n rain having fallen lately to raise the creeks and rivers to a height\n sufficient to detain us. In fording some of the streams we have thought\n that even six inches greater depth would take our horses off their\n feet. There is considerable danger in fording many of the streams we\n have passed, from the uneveness of the stony bottoms of the rivers. The\n beds of the rivers are mostly limestone, and being worn smooth by the\n washing of the water, horses are apt to fall. This was to-day the case with\n my horse in fording the Miami, from which\n accident I got very wet. \n During our detention here this afternoon, we observed a flock of birds\n alighting from the trees, different in appearance from any we\n had seen. Our landlord informed us they were parrots, and that they\n were common upon the Great Miami; and to\n gratify our curiosity he shot one. It was about the size of a dove, and its\n plumage resem-bled the green parrot of South America, the head red,\n and the wings tipped with the same color, the tail long and the bill and\n tongue of the same description as the chattering parrot. As they\n alighted from the trees, they made a hoarse noise resembling the chattering\n of the common parrot.\n There is also a woodcock here resembling the red headed woodcock of\n Maryland, except that its head is\n black and its bill ivory.\n At this place General Wayne erected a\n fortification when on his march against the In-dians, a part of which is\n now standing. Our landlord occupies one of the houses which was at\n that time built and enclosed within the stock-ade. From the late period in\n the day at which our supply of corn arrived for the horses, we have\n concluded to remain at our quarters; the landlord tells us we shall be\n welcome to sleep upon his floor, and has promised to make us a good\n fire to sleep by. \n This is a kind of lodgment to which we have become well accustomed, having\n heretofore in our journey often had to wrap ourselves in our blankets\n and to lie upon floors, always observing the necessary precaution of laying\n our feet to the fire; we have in no instance taken cold.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 39", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 27, 1804", "text": "\n \n\n 27th.\n This day rode fourteen miles, and on our way passed a larger prairie than\n the one we saw yesterday, which is called the Upper Piqua Plains. We have also passed a body of land\n heavily timbered, but its very level situation renders it not desirable.\n Through this tract we have found a very deep and miry road, and have\n regretted the neccesity of a slow movement. Our hired man has to lead his\n horse, the bag of corn being too heavy for the horse to bear his\n weight also. We reached a place called Lora-mier's store, where we found a\n shelter and lodged, having through the latter part of the day rode\n through rain. On our way we twice crossed a considerable water of the\n Miami called\n Loramier's Creek.\n At this place there is a very large fortification made by General Wayne called Fort\n Loramier. And here it is that the line of division\n between the white people and the Indians passes agree-ably to the\n treaty of peace* *Treaty of Greenville, for which see\n Appendix. between the Indians and General\n Wayne. I may here remark that for many days in passing\n along, we have ob-served hunting camps erected by the Indians, but no\n Indians in them.\n It is probable they are at present at or near their towns. We have observed\n from day to day many curious, and to us unitelligible In-dian\n hieroglyphics cut upon the trees. We have also been entertained in\n examining these figures, sometimes cut, at other times painted on the\n wood after cutting away the bark, the figures of elks,\n the horns of the elk, the figures of buffaloes, bears, wolves, deer,\n raccoons, and various other wild beasts, and birds of different species;\n turtles and reptile creatures; also the representation of men, women\n and children, boys with bows and arrows shooting game, and men with\n their guns aiming at game, or in the act of pursuing it, &c.\n &c.\n As a testimony in favor of the virtue and modesty of these men of the woods,\n I note, that we have not yet observed amongst this variety of figures,\n one unchaste representation.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 44", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 28, 1804", "text": "\n 28th.\n Rode twenty-two miles through a flat country, heavily timbered; at night we\n encamped in the woods, made a large fire, fared sumptu-ously upon wild\n pigeons, wrapped ourselves in our blankets and slept soundly. Our\n pigeons were shot by one of our company who carries a gun. There are\n at this time vast numbers of this fowl scattered over the woods. They\n breed here undisturbedly. Squirrels are also very numerous. We now and\n then see a few deer. They are not plenty here. Wolves, opossums,\n reaccoons, and some other descriptions of wild game are abundant. We have\n not yet seen a bear, though they are very plenty throughout the region\n we have passed over. This is owing to a remarkable fact in the history of\n this crea-ture. They betake themselves to dens in the holes of trees,\n at an early period of the winter, where they remain till the\n 1st of the 4th month. During this\n interval they never leave their holes, and as they lay up no store for the\n winter sup-ply, it is certain they live without eating. The Indians\n say they live by sucking their paws. The means by which their lives are\n supported in their recluse situation, I shall not undertake to\n determine. I shall however observe that when taken from their dens they are\n always very fat. We have met with much of their meat, and can assert\n that we have seen the thickness of four inches of fat between the skin and\n the lean which covers the ribs. During the winter the Indians find the\n bears by searching for their dens in the trees, which they know by the\n marks made by the claws of the bear in climbing.\n We have now reached the waters of the lakes, having to day forded one of the\n forks of the St. Mary's river. On our way\n we passed for a few miles along a road one hundred feet wide, cut by\n General Wayne's army for transporting\n pro-visions from the great Miami to the\n St. Mary's river. The road is now\n grown up with briars and shrubs.\n Shortly after we had made our fire, and with the approach of night we heard\n at a short dis-tance from us, a whooping in the woods. We had reason\n to believe from the shrill and uncom-mon whoop, that it was the voice of an\n Indian, and having understood that it was a custom among them when\n about to approach a camp, to give notice by a whoop, we failed\n not to return the ceremony also by a whoop. In a few mo-ments two\n Indian men upon a horse, followed by two women and a girl upon another\n horse, rode up to our camp. Their countenances were smil-ing and\n indicative of friendship. As we reached them our hands, they shook them\n saying, Saga, Saga,\n niches, which we have since learned was the\n salutation, How do you do, brothers. They could not speak\n English, but putting their hands to their breasts expressed, Delawares,\n Dela-wares, from which we gathered they were\n Delaware Indians. They had their hunting\n ap-paratus with them, and pointing several times to the south, we\n concluded they wished to make us understand that their camp was in that\n direc-tion, and that they were on their way to it. After looking upon\n us for some minutes they left us.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 45", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 29, 1804", "text": "\n 29th.\n Very early this morning we again pro-ceeded, and this day rode thirty miles,\n a laborious, fatiguing journey to ourselves and horses. Our path\n leading through a flat country we find the travelling miry and deep. Our\n horses are to be pitied, the stock of corn we procured for them is\n exhausted, and the only food they can now get is the grass in the woods.\n For several nights past we have turned them loose to graze. These poor\n creatures feed around our camps and appear afraid to leave us.\n This day we crossed the St. Mary's where\n its width was about one hundred and fifty feet, it is\n said to be a very deep river. An old Indian and his squaw reside here, and\n he undertook to ferry us across in a canoe. Our horses swam the river,\n and got over well. The old Indian, whose name is Stephen, very unintentionally swam also. This accident was\n owing to the mis-conduct of some of the packers, who, on their way to\n Fort Wayne with provisions, gave\n Stephen too much whisky. Philip Dennis was in the canoe with him when he\n accidentely fell over-board; we were greatly alarmed for his safety,\n knowing that he was intoxicated, but after dis-appearing for a few seconds,\n he rose to the sur-face of the water, and soon convinced us that he\n could swim. Philip caught him by his\n blanket, and got him again into the boat. The old man laughed very\n heartily at the accident, saying to us in broken English, No fear, me ferry you in de canoe yet. Our\n blacksmith having in-formed Stephen of\n his expectation of settling in the Indian country for the benefit of the\n red people, and the old man finding also that our company were all\n prosecuting their travels for benevolent purposes, exercised his gratitude\n by telling us You pay one quarter dollar de man;\n nobody keep canoe here but Stephen; he\n make the white people pay dollar, I make dem packers pay me de\n rest. In Stephen's hut we\n observed several Indians who were asleep. He says they are Indians who\n have come a great distance and are tired. During the greater\n part of this day we have rode through a heavy rain. The rain\n continuing with the approach of night, we made a large fire, and erected a\n shelter in imitation of the Indian hunting camps, covering it with our\n blankets. Under this we slept, and were but little incommoded,\n notwithstanding the rain continued during the greater part of the\n night.\n I must not omit to mention that we to-day passed through a very level plain\n containing many thousand acres. This plain is almost with-out trees.\n The soil nearly hid by weeds and grass of last year's growth; the\n luxuriance of which plainly demonstrates its extraordinary fer-tility.\n In this plain we observed a small pond or lake in which were wild geese and\n ducks in abundance. We are informed that this is one of the places\n where wild fowl raise their young.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 45", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 30, 1804", "text": "\n 30th.\n Pursued our path and travelled twenty-three miles through a very fertile,\n heavily tim-bered and beautiful country, being a little more inclined\n to hills. The ride to-day has been a pleasing one, in part doubtless from\n the reflec-tion that the day would probably close a long, tedious and\n arduous journey. We at last reachedFort\n Wayne. As we approached the Fort, having reached it within about thirty rods, we\n were saluted by a sentinel with the word Halt. We obeyed the command. A sergeant was de-spatched from\n the commanding officer, who en-quired of us on his behalf, Where are you going, and What is your business. We de-sired him to\n inform the commandant that we were strangers, and that we had an\n introductory letter directed to him which would explain our\n business.\n The officer shortly returned to us with an in-vitation to advance; we\n accordingly proceeded, and were met very politely by the commanding\n officer, Capt. Whipple, to whom we handed\n the following letter from the Secretary of War.\n \n \n War Department, February 20,\n 1804.Gentlemen,-\n This will be handed you by Messrs. George\n Ellicott, Joel Wright,\n and Gerard T. Hopkins, who are a\n deputation from the So-ciety of Friends in\n Maryland, for\n visiting the In-dians in the western country for the laudable\n purpose of affording them assistance in the intro-duction of the\n arts of civilization.\n They are men of high respectability, are ac-tuated by the best\n motives, and are entitled to all the civilities in your power to\n bestow. You will please to afford them all necessary aid, and\n treat them with such marks of respectful atten-tion as are due to\n citizens whose disinterested services deserve the plaudits of every\n good man.\n I am, very respectfully, your humble servant,\n Henry Dearborn.*\n *General\n Dearborn was well acquainted with the members of\n the mission who resided at Ellicott's\n Mills, and letters frequently passed between\n them. He was deeply interested in the improvement of the\n Indian tribes, and having heard of the deputation about to be\n sent from the Friends of Maryland to\n Fort Wayne, he drew up this\n letter, and also the one which will be seen in the following\n pages to the com-manding officer, and the Indian agent at\n Detroit, and wishing to\n impart all the information he possessed, to relieve a journey\n to a place then considered so dis-tant a settlement, he took\n the trouble to deliver them in person at Ellicott's Mills, and suggest the return of\n the mission by the way of Lake Erie and\n Niagara. The General was a noble\n looking man, and although he had been actively engaged in our\n Re-volutionary war, still appeared to be in the vigor of\n life; he made the trip from Washington to Ellicott's Mills on horse-back attended by his\n son and a ser-vant, a distance of forty miles, and returned\n the next day in the same way. T.\n To the commanding officer at Fort\n Wayne. \n Mr. John Johnson, Indian Factor.\n Mr. William Wells, Indian Agent.\n \n \n \n \n\n After delivering this letter we proceeded to the house of a Canadian trader,\n who we had pre-viously been informed would furnish us with\n accommodations.\n In the evening the Commandant followed us to our quarters, discovering marks\n of great re-spect and attention, and appears to be a gentle-man. He\n has urgently pressed us to dine with him to-morrow, and we have accepted\n the invi-tation.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 51", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "March 31, 1804", "text": "\n 31st.\n This morning the commanding officer, accompanied by John Johnson and William\n Wells, the two other persons named in the letter to the\n Secretary of War, waited upon us. They expressed to us they\n were glad to see us, and invited us with marks of earnestness, each\n one, to make his house our home. We thanked them for their kindness,\n and accepted the invitation of the Factor, John\n Johnson, whom we accom-panied to his house.\n In an interview with these three persons we communicated to them more fully\n the object of our visit, and consulted with them respecting the best\n mode to pursue, in order to effect our purpose. It was deemed advisable\n that an ex-press be sent to the Little\n Turtle and to the Five\n Medals. The former residing at his town called\n Turtle's Town, about eighteen miles from\n this place, situated upon Eel river, a\n water of theWabash, and the latter on the\n river St. Joseph of Lake Michigan, about forty miles hence, in-forming them of\n our arrival at Fort Wayne, and that we\n wished to see each of them there at an early period. This charge William Wells readily took upon himself, and we\n have no doubt he will comply with his engagement.\n We fulfilled our promise in dining to-day withCapt.\n Whipple, the commanding officer. We were all accompanied to\n his house by John Johnson, who dined with\n us. The officer behaved with a freedom and gentility becoming a well\n bred man. After dinner he showed us more fully the fort. This fortification\n which was built by General Wayne, is\n large and substantial, and is situated opposite to the junction of\n the\n St. Mary's and St.\n Joseph's rivers, and precisely the place from which those\n waters take the name of the Miami of the Lake,* *Now\n called the Maumee river. bearing\n that name to Lake Erie. The fort commands\n a beautiful view of these rivers, as also of an extent of about four\n miles square of cleared land. Much of this land has been cleared by the\n army of the United States, and much of it was formerly done by the\n Miami Indians; they having had a large\n town here. It is said that in the year 1785, the\n Indian town then at this place contained upwards of one thousand warriors.\n The garrison kept here at present contains about forty officers and\n soldiers It being a time of profound peace with the Indians, government\n have withdrawn the large force formerly kept at this station.\n The spot where Fort Wayne is situated is\n ren-dered famous in Indian history. It was here that the Indians gave\n the army of General Har-mar a second\n defeat by which several hundred of his men fell. Their bones lie scattered\n upon the surface of the earth, and we are told that the route by which\n the army made an escape can be readily traced for the distance of five\n or six miles by the bones of those slain by the In-dians.\n The grave of the Toad, nephew to the Little Turtle, a distinguished young chief, who\n with the Little Turtle and other chiefs\n visited the Friends of Baltimore two years ago, is here;\n he died very suddenly on his return from that jour-ney. His death was\n greatly lamented by the Indians, and for a long time after his burial\n his grave was visited by them, and many singular ceremonies performed\n over it. They buried with him his rifle, his hunting apparatus, his\n best clothing, all his ornaments, trinkets, &c. &c., their\n value being not less than three hundred dollars.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 52", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 01, 1804", "text": "\n 4th month 1st.\n This day is the first day of the week, and the inhabitants of Fort Wayne appear to pay no respect to it. The\n soldiers are on duty, and the Canadians who are settled here are\n busied with their several occupations. Afterbreakfast we paid a visit to\n William Wells, and after spending\n several hours with returned to our quarters. In the afternoon we\n observed three Indians advancing toward our lodgings, and soon\n discovered that one of them was theFive\n Medals, the other two were his sons. He had not heard of our\n arrival till he reached Fort Wayne, and\n the only information he had ob-tained was that some Quakers had come.\n Busi-ness had brought him to the fort. They were invited into our\n room, when the chief instantly recognized us both. He appeared glad to\n see us, and shook hands with both of us very heartily. A person being\n present who understood thePottowattamy\n language, he said to him pointing to me, This is\n the man who wrote our talks inBaltimore.\n \n\n The Five Medals very deliberately and\n can-didly replied to our inquiry after his health as follows: That in the course of last fall he went to Detroit, that whilst there the white people\n made him drink whiskey. That after he had accomplished his business\n there, he set out for his home, and got upon his horse whilst the\n whiskey was in his head. That he had not rode far before he fell from\n his horse, and was very much hurt by the fall, and that ever since\n that time he had not been well.\n After some further mutual inquiries, relative to the welfare of red and\n white acquaintance, we we informed him through an interpreter that we\n had come to see our red brethren, that we had messages for both the\n Little Turtle and himself, and were\n glad that it had so happened that we had come. That we hoped the Little Turtle would come to-morrow, and that we\n wished to see them together, having something to say to them. He\n appeared pleased with this informa-tion, and expressed that he had made a\n camp not far off, where he would wait for the arrival of the Little Turtle. After some general con-versation\n he withdrew, bidding us farewell. \n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 52", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 02, 1804", "text": "\n 4th mo. 2d.\n Being invited to dine to-day withWilliam\n Wells, who is interpreter for the In-dians, we went to his\n house accordingly, having the company of our very worthy and kind\n land-lord.\n About mid-day the Little Turtlearrived. He\n approached us with a countenance placid be-yond description;\n took us by the hand with cor-diality, and expressed himself in terms of\n great gladness at meeting with us. He inquired very particularly after\n his friends and acquaintance ofBaltimore, after our own welfare, the path we had come,\n and the difficulties we had encoun-tered on our journey through the\n wilderness. Having answered his questions, he replied in turn to our\n inquiries as follows: That since he saw us it had pleased the Great Spirit\n to take away two of his brothers and a nephew. That his nephew was the\n Toad, a young chief who was with him\n in Baltimore. That he died on his\n return from that visit, and within a few miles of home, of which\n circumstances he had desiredWilliam Wells\n to inform us. That with respect to himself, he was but half well, having\n been very sick last fall and expected to die. That his white brothers\n at Fort Wayne, hearing of his illness,\n sent a doctor to him who gave him physic and made him better. That he had\n now seen fifty-three winters, and two of his brothers being dead, made\n him think of death, and that his time would soon come.\n He also told us that he had left a brother at his town who would have\n accompanied him, being desirous to come with him, but could not find\n his horse in time. After this, other conversation took place of a general\n nature. The interpreter informs us that his complaint is the\n gout, and that in the time of his illness he (the interpreter)\n had told him that his complaint be-longed to great folks and gentlemen.\n Well, said the Turtle, I always thought I was a\n gentlemen.* *By the suffrage of\n all who became acquainted with the Little\n Turtle during his visits to Baltimore in\n 1801, and also in 1807, he\n was acknowledged to be a gentleman in character, appearance, and\n manners. His estimate of himself therefore was not too high. For\n his speech before the Indian Committee in\n Balti-more in\n 1801, and other information concerning\n him, see appendix. T.\n \n About 2 o'clock we dined. At the head of the table sat the interpreter's\n wife, who is a modest, well-looking Indian woman, and the daughter of\n a distinguished chief. She had prepared for us a large well roasted wild\n turkey, and also a wild turkey boiled, and for these she had pro-vided\n a large supply of cranberry sauce. TheLittle\n Turtle sat at table with us, and with much sociability we\n all partook of an excellent dinner.\n In the afternoon the Five Medals, attended\n by his sons, visited us at William Wells'\n house, and the opportunity being a suitable one, we proposed to them\n that a formal conference should then take place between us. This\n proposition meeting their assent, we opened the conference by desiring\n the interpreter to inform them that we had received their talk sent to us\n last fall, informing us that the implements of husbandry,\n which we had sent to them last year, had come to them safely, and that we\n had carefully ob-served all that was contained in that talk. That we\n were deputed by their brothers and friends ofBaltimore to come to see them. That we had accordingly\n come, and had with us a letter di-rected to them, which we thought ought in\n the first place to be read, and after that we might have something to\n say to them. A short pause having taken place, they expressed a desire\n that the letter should be read, which was accordingly done, and\n interpreted to them as follows:\n \n \n From the Committee appointed for\n Indian Affairs by the Friends\n of Maryland to the\n Little Turtle and the\n Five Medals, Chiefs of the\n Potto-wattamy and Miami nations of\n Indians:\n Brothers and Friends- We have received your talk, communicated by\n our friend William Wells, after\n the reception of the implements of husbandry sent last spring for\n your use. In that speech, as well as when you were in Balti-more, you have told us that you\n thought it best for some of us to go out to see yoou, that we\n might be better capable of judging what could be done further for\n the benefit of our red breth-ren.\n Brothers and Friends,-In compliance with your request we have named\n our beloved friendsGeorge\n Ellicott, Gerard T.\n Hopkins, Joel\n Wright, and Elisha\n Tyson, to go and visit you and to take\n you by the hand on our behalf. And we desire that you will receive\n them, or any of them that may be enabled to perform the journey as\n your brothers, in whom we have confidence, and that you will\n receive any communications from them as being from us, who are\n desirous of assisting you in what may add to your comfort, and\n that of your women and children.\n Your friends and brothers,\n \n William Stabler,\n Isaac Tyson,\n Benjamin\n Ellicott,\n John Ellicott\n Edward Stabler\n Philip E. Thomas\n Andrew Ellicott,\n Jr.,\n Evan Thomas,\n Elisha Tyson,\n Jonathan Wright,\n Elias Ellicott,\n Jonathan\n Ellicott,\n Thomas More,\n Samuel Snowden.\n \n Baltimore, 2d. mo. 4th, 1804.\n \n \n At the contents of this letter they expressed their satisfaction, and after\n a pause of several minutes we addressed them through an interpre-ter\n as follows:\n \n \n \n Brothers and Friends.- You observe that the letter which has just\n been read, makes men-tion of four of us appointed to visit you.\n One of these was an infirm man who thought he could not endure\n the fatigue of so long a jour-ney, and therefore did not come. The\n other did not omit to come for the want of love to his red\n brethren; family circumstances rendered it inconvenient for him to\n leave home. You see, brothers, that it has pleased the\n Great Spirit that two of us mentioned in the letter, should\n reach the country of our red brethren. Brothers, we thought it\n right in the first place to send for you, and to show you the\n letter which has just been read. We are glad that you are now\n come, and that we have this opportunity of taking you by the\n hand.\n Brothers, we believe that we have some things to say to you which\n are of great importance to our red brothers, to their old men, to\n their young men, to their women, and to their children.\n Brothers, we may now mention that we have not come merely to talk,\n but we hope we have come prepared to do a little for the welfare\n of our red brethren.\n Brothers, in looking over our business, we have thought that we\n should be glad to have an opportunity of seeing our red brethren\n together, and are willing to propose for your consideration,\n that you should now fix upon some place, and agree upon some time\n to meet us again, and that our brothers invite their old men, their\n young men, their women and their children to meet us, when we\n shall have something to say which it may not be necessary now to\n say.\n Brothers and Friends,- Should you think that the proposal which we\n have now made is proper, and conclude to meet us in the manner\n we have pointed out, we expect we shall have but little more to say\n at present.\n \n \n Here a pause for some minutes took place, when the Little Turtle inquired, If\n the Friends had more to say. He was answered in the\n negative.\n After a further pause and some conversation between the two chiefs, they\n rose from their seats, and perceiving that they were advancing toward\n us, we also arose from our seats. On meet-ing them, they took us by the\n hand, and with countenances indicative of great gravity, shook hands\n with us and returned to their seats.\n The Five Medals then commenced a speech as\n follows:-\n \n \n \n Brothers and Friends: My friend, the Lit-tle\n Turtle, and myself, together with my two sons, who\n are present, rejoice to have this oppor-tunity of seeing you, and\n of taking you by the hand.\n My Brothers: We are glad to be informed, that you received our talk\n sent to you last fall, and to find that you are now come to the\n country of your red brethren.\n My Brothers and Friends: We rejoice that the Great Spirit has\n conducted you safely to our country, and figure to ourselves that\n in you we see the rest of our brothers and friends of Balti-more, and that in taking you by\n the hand, we take them by the hand.\n Brothers: We know that you have come a long distance to see the\n situation of your red brethren. We have no doubt that you have\n things to say which are of great importance to\n us, and which do not belong to a few only but to many. \n Brothers: Your brethren the Indians do business not as the white\n people do. We con-vene our chiefs, and things of importance\n are considered by them. But, brothers, you have come to see\n the situation of your red brethren. It is our wish that you should\n see it. You shall not be disappointed. The proposal you have\n made to us we think right, and have concluded that this place\n (Fort Wayne,) is the best\n place to be fixed upon for the purpose you wish. We are\n pleased to find that you have a desire that our young men should be\n present to hear what you have to say, and as it is your wish to see\n our women and children, we desire that you may have an\n opportunity of seeing them.\n Brothers and Friends: Our young men are out hunting, and our women\n and children are now at work at their sugar camps. The time is\n not far off when they will all return to our towns, when it is\n usual to meet together. We hope, brothers, that you will not be in\n a hurry, but will allow us time to collect our people\n to-gether.\n \n \n Here a pause took place, when we inquired if they had any thing further to\n add. And being answered in the negative, we addressed them again in\n substance as follows:\n \n \n \n Brothers and Friends: When we left our homes, we knew\n it was early in the season, and expected that we should ge to the\n country of our red brethren at a time when their young men,\n their women and children would be busy. But brothers, a part of the\n service* *The Friends were desirous that their\n agricul-turist, Philip\n Dennis, should arrive amongst the Indians in time to\n plant corn. T. which we de-sign to render to you,\n required that we should come early, and makes it also necessary\n that we should now be in a hurry.\n Brothers: We will also add that when we were chosen by our friends\n at home to pay a visit to our red brethren, our women and\n chil-dren consented that we should leave them, but charged us\n that we should not stay away from them longer than circumstances\n really required. A long time has already past since we left\n them, we therefore hope, brothers, that in three or four days\n it will be in your power to get together some of your people. Those\n that are far from home we do not wish that you should send for.\n \n \n The Little Turtle then observed that the\n res-sons we had given were good. The Five\n Medals next remarked that at the time proposed, they\n could easily convene a considerable number of their indolent people, who\n were too lazy to hunt or make sugar, but such they did not wish us to\n see. Their industrious young men and women \n were too far from home to be convened in so short a time.\n Here a short conversation took place between the chiefs, and afterwards they\n proposed seven day's hence as the time; desiring that to-morrow might\n not be counted, as it would take them a day to return home. To this we\n consented.\n The Five Medals then expressed as follows:\n \n \n \n Brothers, it would have been very desirable to us if you could have\n met us at the time of our counsel. We have very often told our\n people of the Quakers. They listen to us, but are at a loss to\n know what sort of people the Quakers are. If you could stay,\n brothers, they would have an opportunity of seeing the Quakers,\n and of hearing words from your own mouths.\n \n \n After this the Little Turtle added:\n \n \n \n Brothers: We hope the words that you may say to us at the time we\n have appointed to meet will be upon paper. From that paper we\n can at some future time have your words de-livered to our people.\n This, brothers, will in some measure answer the end.\n \n \n During a pause which occupied several minutes we asked them if we understood\n each other. The Turtle replied, Yes, perfectly; we have nothing further to do now than to\n look for-ward to the day appointed.\n After this we took each other by the hand and very cordially bade farewell.\n We then re-turned to our lodgings.\n \n In the evening we again had the company of the chiefs, they having been\n invited by our landlord to take supper with us.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 52", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 03, 1804", "text": "\n 3d.\n This day rainy, and spent chiefly atWilliam\n Wells'.\n Besides the garrison stationed here, there is a large store of goods\n established by the United States, for the purpose of suppplying the\n Indians. The store is kept by our landlord. Several Canadian traders\n also reside here, who exchange goods with the Indians; some of them have\n re-sided here for more than thirty years. The In-dians are daily\n arriving with their peltry, some of them exchange them for goods, others\n re-quire money. The women bring sugar, which is generally neatly\n packed in a square box made of bark, containing about fifty pounds. It\n is made from the sugar tree. This art has long been known to the\n Indians. They make and use large quantities of sugar. We have seen\n very white and clear looking sugar of their manu-facture.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 52", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 04, 1804", "text": "\n 4th.\n Rode about two miles up the St. Mary's\n river and viewed the remains of old Indian houses, also the\n fields on which they cultivated corn, where the corn hills are still\n discernible. We also observed large numbers of Indian graves. These\n are now discernible only by the sunken cavities in the surface of the\n earth. In the course of our route we have seen many Indian graves of\n more recent date. They bury their dead about three feet below\n the surface of the earth; and over the grave they either place a heap\n of stones or a pen of logs. If the de-ceased has been a person of\n distinction, they plant posts at the head and foot which they\n orna-ment very curiously.\n In a review of the many circumstantial evi-dences which have fallen under\n our observation of the former population of this western world, I am\n ready to adopt the expressions of pious author:\n Where is the dust that hath not been alive!The spade, the\n plough, disturb our ancestors; From human mould we reap our daily\n bread.\n Young's Night Thoughts.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 64", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 05, 1804", "text": "\n 4th month 5th.\n Spent the day with Captain Wells. We\n walked with him up the St. Joseph's river,\n and were shown the ground upon which the Indians under the command of the\n Little Turtle defeated a part of the\n United States army under General Harmar,\n killing 300 out 500 men. We also followed for a considerable dis-tance\n the route which the soldiers took in their retreat, and saw many of their\n bones. Amongst these were skulls which had marks of the tomahawk and\n scalping knife. Many of them had fallen on the east bank of the river,\n and also within the river. The Indians being sta-tioned behind trees\n on the west side shot them in their attempt to get across.\n We were shown the tree behind which the\n Little Turtle took his station, as also a tree\n near it behind which his nephew fell. This\n was a second defeat, the United States troops having been routed the\n day before on Eel river.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 65", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 06, 1804", "text": "\n 6th.\n Spent the day in the neighborhood of\n Fort Wayne, in the course of which we visited\n Captain Whipple. This afternoon several\n In-dians from different tribes arrived, bringing with them skins and\n furs. These are mostly brought by the women upon their backs, the men\n thinking it sufficient to carry their guns and hunting equipments.\n We saw this evening a white woman, who, when a small girl, had been taken\n captive, and has ever since lived amongst the Pottowatamy tribe of Indians. She tells us (through an\n in-terpreter) that she has no knowledge of the part of the country\n from which she was taken, nor of her family. That she remembers her\n name was Dolly, which is the only distinct recollec-tion she retains\n of herself previous to her cap-tivity. This woman is dressed in Indian\n habit, is painted after the Indian order, and has so effectually\n adopted Indian manners, that a nice observer would not discover from\n external ob-servation her origin, except from the color of her eyes,\n which are grey.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 65", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 07, 1804", "text": "\n 7th.\n Visited William Wells, and rode with him\n up the St. Mary's about five miles. On our\n way we passed several sugar camps, at which were Indian women and children\n who were em-ployed in making sugar. Their huts were large,\n and covered with the bark of the Buck Eye wood. Their troughs for catching\n the sugar water as it is called, are made of the bark of the red elm,\n they are made thin, and the ends tied together. We were shown the places\n where stood the houses of several distinguished char-acters amongst\n the Indians. Captain Wells also took us\n to the ground, where the Little Turtle\n reviewed his men, and gave them their orders before going against the army\n of General St. Clair. It is an extensive\n plain near the river.Wells was then one\n of the number, and says theLittle Turtle\n had one thousand four hundred men; St.\n Clair's army consisted of a much larger number, and were\n about fifty miles distant at the time. The Little\n Turtle divided his men into bands or messes, to each mess\n twenty men. It was the business of four of this number alter-nately to\n hunt for provisions. At 12 o'clock each day it was the duty of the hunters\n to re-turn to the army with what they had killed. By this regulation,\n his warriors were well supplied with provisions, during the seven day's in\n which they were advancing from this place to the field of battle. It\n is well known that at day break the Indians commenced an unexpected\n attack upon St. Clair's forces, killed\n nine hundred of his men, and put his whole army to flight.Wells says, that only about thirty Indians were\n killed in the battle, and that about twenty died afterwards of\n their wounds. He also related the following anecdote:\n A considerable altercation arose amongst the Indians on the review ground,\n relative to a Commander-in-Chief. Some were in favor of\n Buckangehelas, a principal chief amongst the\n Delawares, whilst others were in favor of the\n Little Turtle. At length Buckangehelas himself decided the controversy\n by yielding to the Little Turtle, saying\n that he was the youngest and most active man, and that he preferred him to\n him-self. This reconciled the parties, and the Little Turtle took the command.\n We also rode to view a prairie which extends from the St. Mary's river to the Little\n river, a branch of the Wabash. The distance from one to the other is not more than\n four miles, and the highest ground is not more than five feet above\n the water in either river. The Indians say that in high freshets they have\n passed from one water to the other in their canoes. A canal might\n easily be cut here, and at a small expense, by which the waters of the\n lakes and the waters of the Ohio, (and of\n course the Mississippi) would be\n connected. An abundance of furs and skins taken on the waters of the\n Ohio and the Wabash, are brought up the latter river in boats by the\n Canadians and the Indians, and thence taken across a portage of eight miles\n to the Miami of the Lakes,* *The Maumee river.\n whence they are\n again conveyed by water to Detroit; goods suit-able for the Indian trade are also\n transported back again by the same route.\n After spending some time in viewing the re-mains of several old Indian\n towns, graves, hiero-glyphics, &c. &c. &c., we returned to\n William Wells' house, where we dined,\n and in the even-ing returned to our lodgings.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 65", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 08, 1804", "text": "\n 8th.\n Paid a visit to the carpenter and black-smith who accompanied us as before\n mentioned. They are both at work. The blacksmith is re-pairing Indian\n guns, and the carpenter is at work upon a council house which the\n govern-ment has ordered to be built for the Indians at their request.\n The house is to be built of hewn logs, fifty feet in length, and\n twenty-five in width. We also amused ourselves in attending to the\n manner of packing furs and skins. Our friend Jonathan has several Canadians\n now employed in that business. They are packed by a ma-chine\n constructed for the purpose, by which the work is performed expeditiously.\n The packs are made in squares of about two and a half feet, and\n contain from thirty-five to forty deer skins, or about two hundred raccoon\n skins.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 65", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 09, 1804", "text": "\n 9th.\n On the evening of this day, we received a message from the Little Turtle, informing us that the Indians\n had arrived, and that they would be ready to meet us at 10 o'clock the\n next morning.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 85", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 10, 1804", "text": "\n 4th mo. 10th.\n At 10 o'clock this morning we proceeded to William Wells', who, as we before observed, is\n interpreter for the Indians. We were accompanied by our friend John Johnson,Captain\n Whipple, Lieutenants Campbell\n andSimms, and several other reputable persons,\n and were met by the following chiefs:\n O-bas-se-a, (or the Fawn,) a village chief\n of great distinction in the Miami\n nation.\n Os-so-mit, a village chief of the Pottowattamy nation, and brother to the Five Medals.\n Me-she-ke-na-que, or the Little Turtle, a war chief of the Miami nation.\n They were attended by a considerable num-ber of their principal young men,\n and by several women.\n The Five Medals was not present. He had\n informed us on taking leave, that circumstances required him to return to\n his town, and that the distance would be too great for him to return\n in time to meet us, his infirmities occasioning him to travel slowly,\n but that he would send his brother, who would report to him faithfully\n all the proceedings of the council.\n After we had taken each other by the hand, the chiefs took their seats by\n the side of each other. Their principal people next seated them-selves\n according to the rank or distinction which they held. After them, their\n young men in circular order, seat after seat,- and lastly, the women,-\n who occupied seats separate from the men, being placed near the centre of\n the room.\n \n We took our seats on the opposite side of the house and in front of the\n Indians.\n Being all thus seated- I speak literally, when I say my heart palpitated- I\n felt the importance and dignity of our mission; I wished our heads\n were wiser, and feared for the result of so in-teresting an\n opportunity.\n After a few minutes had passed, the Little\n Turtle observed, that when we met before, they had informed\n us of the difficulty there was in convening the Indians at so early a\n period in the season, and that those of their people then present with\n him were all who were likely to attend to listen to what we had to say.\n We then proposed that the letter from our friends and brothers at home, read\n to the Five Medals and the Little Turtle at the time of our first meeting,\n should be again read for the in-formation of our Indian brethren now\n attend-ing.\n This proposal was deemed proper, and the letter was accordingly read.\n After a short pause, we addressed them as follows:\n \n \n \n Brothers and Friends: We know that the most of our Red Brethren are,\n at present, at their hunting and sugar camps, and did not\n ex-pect to see a large number at so short a notice. We have,\n therefore, agreeably to your request, put upon paper the things we\n have to say, and hope you will not fail to have them communi-\n cated, when, at some future time, you may be more\n generally assembled. \n \n \n One of us, then standing up, read to them the following address: The\n interpreter, also standing between us and the Indians, interpreted our\n com-munication: \n \n \n \n The Address of George\n Ellicott and Gerard T.\n Hopkins, delivered to the Little Turtle and the Five\n Medals, Chiefs of the\n Miami and Pottowattamy nations of Indians, and\n others.\n Brothers and Friends: When we were to-gether, eight days ago, with\n the Little Turtle and the\n Five Medals, the letter was read\n to them, which has just been read. That letter, you observe,\n says that we were appointed by the people called Quakers, of Baltimore, to visit you, and to take you by\n the hand on their be-half, desiring that you would receive any\n com-munications from us, as coming immediately from them.\n Brothers: After that letter was read, our hearts were filled with so\n much love for our Red Brethren, that, on looking over and\n considering the business upon which we had come, we felt a\n desire to see as many together as could be convened- and this day\n was that agreed upon for us to meet you.\n Brothers: We believed that the things we had to say were of great\n importance to our Red Brethren, and therefore it was that we\n request-ed to see you together, that you all might have an\n opportunity of hearing what we have to say.\n \n Brothers: Our hearts are filled with thank-fulness to the Great\n Spirit, that He has brought us safely to the country of our\n Red Brethren, and protected us through the journey. We also\n rejoice that He has given us this oppor-tunity of seeing you, and\n of taking you by the hand.\n Brothers: It is now a little more than two years since your Brothers\n of Baltimore had an opportunity\n of becoming acquainted with theFive\n Medals, the Little\n Turtle, Tuthinipee,\n and some other chiefs. They were glad of that op-portunity of\n having a talk with them, and of enquiring after the situation of\n their Red Brethren.\n Brothers: We had for some time entertain-ed apprehensions, that the\n many changes which were taking place in circumstances, must\n greatly change the situation of our Red Brethren, and that the\n time was fast approaching, in which it would be necessary for them\n to alter their mode of living.\n Brothers: After our talk with the chiefs whom we have just\n mentioned, we were fully con-vinced that the time was come, in\n which our Red Brethren ought to begin to cultivate their\n lands; that they ought to raise corn and other grain, also\n horses, cows, sheep, hogs, and other animals. We then proposed to\n afford them some assist-ance. They appeared to be glad of the\n proposal, and informed that many of their people\n were disposed to turn heir attention to the cultiva-tion of\n the earth. They also expressed a desire to be assisted by their\n Brothers of Baltimore.\n Brothers: Having been encouraged by the opportunity which we then\n had, we sent to the care of the Agent for Indian Affairs some\n ploughs, harness for horses, axes, hoes, and other imple-ments\n of husbandry, which were made for the use of our Red Brethren, and\n desired that they might be distributed amongst them as tokens\n of our friendship.\n Brothers: We received last fall, through the hands of the Agent for\n Indian Affairs, a talk from the Little\n Turtle, the Five\n Medals, and others, informing us that they had\n received the implements of husbandry, and requested that their\n Brothers of Baltimore would\n send some of their people into the country of their Red\n Brethren for the purpose of seing their situation, and showing them\n how to make use of the tools, saying they did not know how to\n begin. \n Brothers: It is for these purposes that we have now come; and we\n again repeat, that we rejoice we have the opportunity of seeing\n you, and of taking you by the hand.\n Brothers: In coming into the country of our Red Brethren, we have\n come with our eyes open. And although we are affected with sorrow,\n in believing that many of the Red Brethren suffer\n much for the want of food and for the want of clothing, yet our\n hearts have been made glad, in seeing that it has pleased the Great\n Spirit to give you a rich and valuable country. Because we\n know that it is out of the earth that food and clothing come. We\n are sure, brothers, that with but little labor and attention, you\n may raise much more corn and other grain than will be\n necessary for yourselves, your women and chil-dren, and may also,\n with great ease, raise many more horses, cows, sheep, hogs and\n other valuable animals, than will be necessary for your own\n use. We are also confident, that if you will pursue our method\n in the cultivation of your land, you will live in much greater ease\n and plenty, and with much less fatigue and toil, than\n attend hunting, for a subsistence.\n Brothers: We are fully convinced, that if you will adopt our mode of\n cultivating the earth, and of raising useful animals, you will find\n it to be a mode of living, not only far more plentiful and\n much less fatiguing, but also much more certain, and which will\n expose your bodies less to the inclemencies of the weather than is\n now attendant upon hunting. It will lead you, brothers, to\n have fixed homes. You will build comfortable dwelling-houses for\n yourselves, your women and children, where you may be\n shelter-ed from the rain, from the frost, and from the snow,\n and where you may enjoy in plenty the rewards of your labors.\n \n Brothers: In laying these things before you, we have no other motive\n than a desire of heart for the improvement, the benefit and\n the welfare of our Red Brethren- and therefore it is that we\n speak with freedom, and we hope, that what we have to say, will go\n in at one ear, and not come out the other, but that it will be\n remembered by our Red Brethren. For we know, brothers, that we\n shall not be ashamed of what we say, when, in time to come, you\n com-pare the things we are saying to you with your experience\n in practising them.\n Brothers: We will here mention, that the time was, when the\n forefathers of your brothers, the white people, lived beyond the\n great water, in the same manner that our Red Brethren now\n live. The winters can yet be counted when they went almost naked,\n when they procured their living by fishing, and by the bow and\n arrow in hunting- and when they lived in houses no bet-ter\n than yours. They were encouraged by some who came from the\n sun-rising, and lived amongst them, to change their mode of living.\n They did change- they cultivated the earth, and we are sure\n the change was a happy one.\n Brothers and Friends: We are not ashamed to acknowledge that the\n time was when our fore-fathers rejoiced at finding a wild plumb\n tree, or at killing a little game, and that they wandered up\n and down, living on the uncertain supplies of fishing and hunting.\n But, brothers, for your encouragement, we now mention\n that, by turn-ing their attention to the cultivation of the\n earth, instead of the plumb tree, they soon had orchards of many\n kinds of good fruits- instead of wild game, they soon had large\n numbers of cattle, horses, sheep, hogs, and other valuable\n animals,- and in many places, instead of their forests, they had\n large fields of corn and other grain, as also many other valuable\n productions of the earth.\n Brothers: We hope your eyes will be open to see clearly, the things\n which are best for you, and that you will desire to pursue them.\n We believe, brothers, that it is in the heart of your father,\n the President of the United States, to assist his red children in\n the cultivation of the earth, and to render them services which\n will be greatly for their benefit and welfare. We hope that\n your exertions to change your present mode of living will be so\n plain to him, that he will see them. This will encourage him to\n continue to aid you, in your endeavors.\n Brothers, we have spoken plainly; we de-sire to speak plainly. We\n will now tell you that we have not come merely to talk to you.\n We have come prepared to render you a little assistance. Our\n beloved brother, Philip Dennis,\n who is now present, has come along with us. His desire is to\n cultivate for you a field of corn; also, to show you how to raise\n some of the other productions of the earth. He knows how to\n use the plough, the hoe, the axe, and other\n imple-ments of husbandry.\n Brothers, we here ask you, are you still de-sirous to be instructed\n by us, in the cultivation of your lands? If you say you are, our\n brother, whom we have just mentioned, will continue with you\n during the summer. We shall leave it to you to show him the spot\n where to begin to work.\n Brothers, he has left a farm, he has left a wife, and five small\n children, who are very dear to him; he has come from a sincere\n desire to be useful to our red brothers. His motives are pure,\n he will ask no reward from you, for his services, his greatest\n reward will be in the satis-faction he will feel in finding you\n inclined to take hold of the same tools which he takes hold\n of, to receive from him instruction in the culti-vation of your\n lands, and to pursue the example he will set you.\n Brothers, we hope you will make the situa-tion of our brother as\n comfortable as circum-stances will admit. We hope, also, that\n many of your young men will be willing to be taught by him, to\n use the plough, the hoe, and other implements of husbandry. For we\n are sure, brothers, that as you take hold of such tools as are\n in the hands of the white people, you will find them to be to you\n like having additional hands. You will also find that by using\n them, they will enable you to do many things\n which, without them, cannot be performed.\n Brothers, there is one thing more which we wish to add. The white\n people, in order to get their land cultivated, find it necessary\n that their young men should be employed in it, and not their\n women. Women are less than men. They are not as strong as men. They\n are not as able to endure fatigue as men. It is the business\n of our women to be employed in our houses, to keep them clean,\n to sew, to knit, spin, and weave, to dress food for themselves and\n families, to make clothes for the men and the rest of their\n families, to keep the clothes of their families clean, and to take\n care of their children. \n Brothers, we desire not to mention too many things to you, but we\n must add a little further. We are fully convinced that if you will\n turn your attention to the cultivation of the earth, to\n rais-ing the different kinds of grain, to erecting mills for\n grinding grain, to building comfortable dwell-ing houses for your\n families, to raising useful animals- amongst others, sheep, for the\n advan-tage of the wool, in making clothing- to raising flax\n and hemp for your linen; and your young women learn to spin and\n weave, that your lives would be easier and happier than at\n present, and that your numbers will increase, and not continue\n to diminish. As we observed, brothers, your land is good. It is far\n better than the land the white people near the great water cultivate. We are persuaded that your land will produce\n double the quantity of any kind of grain, or of flax, or of hemp,\n with the same labor necessary near the great water. \n Brothers and Friends: We shall now end what we have to say, with\n informing you thatall the corn, and other productions of the\n earth, which Philip Dennis may\n raise, we wish our red brethren to accept of, as a token of\n our friendship. And it is our desire that the chiefs of\n Pottowatamy and Miami nations, who are now present, added to our\n brothers, the Five Medals,\n Tuthenipee, and Philip Dennis, make such a distribution\n thereof as they may think proper. * The\n address was published in pamphlet form in\n Baltimore, by the Indian Committee in 1804, and also appeared in the newspapers of the\n period, and was much commended for its earnest and\n enlightened simplicity. T.\n \n \n The Indians observed great gravity and de-corum, during the time of our\n addressing them, and seemed to reiterate the sentiments delivered by\n repeated shouts.\n At the close of our communication, a short pause took place, during which we\n informed them that we had no more to add at present, but wished them\n to speak freely. After which a conversation, occupying several minutes\n took place between the chiefs, and some of their principal\n men, which being in the Indian lan-guage was to us unintelligible. They\n then rose upon their feet, and shook hands with us with great\n solemnity, and returned to their seats.\n In a few moments the Little Turtle arose\n and delivered the following speech, which one of us* Gerard Hopkins, who was a\n fine short hand writer. T. wrote in short hand, from the\n mouth of the In-terpreter.\n \n \n \n Brothers, it appears to me to be necessary that I should give you an\n immediate answer, as you are about to return to your families\n from whence you came.\n My Brothers and Friends, we are all pleased to see you here, and to\n take our brothers, the Quakers, through you by the hand. We\n re-joice that the Great Spirit has appointed that we should\n this day meet. For we believe, that this meeting will be of the\n utmost consequence to your red brethren.\n Brothers, what you have said, we have care-fully gathered up, we\n have placed it in our hearts, in order that it may be communicated\n to our posterity. We are convinced that what you have said is\n for the good of your red brethren. We are also convinced that our\n chiefs and war-riors, our women and children will be all of our\n opinion, and will be glad when they have\n heard what you have said.\n Brothers, we take you now by the hand, and through you we take the\n people who sent you here by the hand, and assure you we are\n pleased that the Great Spirit has let us see each other, and\n converse together upon the subjects which you have communicated to\n us.\n Brothers, you see there is not a large num-ber of us here. What you\n have said to us will not remain with those who are here alone.\n It will be communicated to all your red brethren in this\n country. And I again repeat, that I am convinced they will be glad\n to hear what you have said to us, to our women and children.\n Brothers, when we saw you with the rest of our brothers in\n Baltimore, upwards of two\n years ago, I expect you recollect perfectly the conver-sation\n between us at that time and place. I, there with my brother chiefs,\n told you that we were glad to find you so much disposed to\n assist us, our women and children. We told you that your good\n wished should be made known to all your red brethren in this\n country, which has been done.\n Brothers, ever since that time, I, as well as some others of my\n brother chiefs, have been en-deavoring to turn the minds of our\n people to-wards the cultivation of the earth, but I am sorry\n to say we have not yet been able to effect any thing.\n \n Brothers, there are so few of our chiefs now present, it would not\n be proper for us to under-take to give a pointed answer to your\n talk. We expect that in a few moons there will be many of our\n people together. At that time it will be proper that we should\n return an answer to all the subjects you now mention to us.\n Brothers, the things you have said to us re-quire the greatest\n attention. It appears to me to be really necessary to deliberate\n upon them. In order to do so, we must beg to leave the paper\n upon which they are written, that we may com-municate them to our\n chiefs when they assemble.\n Brothers, all the words which you have said to-day were certainly\n calculated for our good. You have enumerated to us the different\n kinds of grain and animals we ought to raise for our comfort.\n You have told us that if we all adopt the plan you have proposed,\n we should want for nothing. This, brothers, myself and many of\n our people believe is true, and we hope we shall finally be\n able to convince our young men that this is the plan we ought to\n adopt to get our living.\n Brothers, you have come a long distance to render service to us. We\n hope that you will meet with the success you wish, you have\n been very particular in pointing out to us what will be for\n our good. You have also been very par-ticular in pointing out to us\n the duties of our women, and you have told us that in adopting\n your mode of living, our numbers would increase and\n not diminish. In all this I perfectly agree with you. And I hope\n the other chiefs will also agree with you.\n Brothers, we are pleased to hear you say you are going to leave one\n of your brothers with us, to show us in what manner you cultivate\n the earth. We shall endeavor, brothers, to make his situation\n amongst us as agreeable to him as will be possible for us.\n Brothers, we are convinced that the plan you propose will be highly\n advantageous to your red brethren. We are also convinced that\n you have observed very justly that we shall not then be liable\n to sickness. We are certain that we shall then be able to make a\n more comfortable living with less labor than at present. And I\n hope that this will be the opinion of us all.\n Brothers, assure your people who sent you here, tell your old chiefs\n that we are obliged to them for their friendly offers to assist us\n in changing our present mode of living; tell them that it is a\n work which cannot be done immediate-ly,- that we are\n that way disposed, and we hope it will take place gradually.\n \n \n Here the speaker sat down for a short time, and then rose again, saying,\n \n \n \n Brothers, my heart is so overjoyed and warmed with what you have\n said, that I find I had forgot to mention one of the most\n important things.\n Brothers, at the time we first met at this place, the Five Medals and myself formed some idea\n of your business. We expected you had come to do for us the things\n you had proposed to us when in Baltimore. We consulted each other upon the answer\n necessary to return to you in every respect, and I now find that\n our idea was right.\n Brothers, the sentiments which I have de-livered to you were his\n sentiments. You have now told us, that your brother has a mind\n to live amongst us to show us how to cultivate the earth, and\n have desired us to show him the spot where to begin. We agreed\n then, that he should be at neither of our villages, lest our\n younger brothers should be jealous of our taking him to\n ourselves. We have determined to place him on the Waash, where some of our families will\n follow him,-where our young men I hope will flock to him, and where\n he will be able to in-struct them as he wished. This is all I have\n to say. I could all day repeat the sentiments I have already\n expressed; also how much I have been gratified in\n seeing and hearing my brothers; but that is not necessary. I am\n sorry, brothers, that the chiefs of our country are not all\n present, that they might all hear what you have said, and have\n an opportunity of talking to you.\n \n \n At the close of this speech we were informed that nothing would be added by\n the Indians to the communication made by the Little\n Turtle. We then told them that the words spoken by the\n Little Turtle should be carefully\n carried home to our brothers and friends who had sent us. We also\n informed them that notwithstanding we were now desirous to return to our\n homes as soon as possible, yet we wished to see the place which they\n designed to be the station of our brother, Philip\n Dennis, and hoped some of them would show it to us. We\n further added, that this did not arise from any jealousy in our minds\n that the place fixed upon was not suitable. On the contrary, we had no\n doubt that they had judged wisely; but that the love and respect which\n we bore to our brother, led us to desire to bear him company to the place,\n and also to ren-der him every assistance in our power before we left\n him.\n They then informed us that they would con-sult and fix upon some one to go\n with us. The business of the council being then at an end, we in turn\n rose from our seats, and shook hands with them, which concluded the\n formalities of the opportunity. After entering into a little conversation, we told them we should now bid them farewell, as we\n expected we should not see them again. They then took us separately by\n the hand, and with marks of great affection and friendship bade us\n farewell, and we returned to our quarters.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 12, 1804", "text": "\n 4th month 12th.\n Being a fine pleasant morn-ing we set out for the place on the Wabash as-signed by the Indians to Philip Dennis. We were accompanied by Wiliam Wells and Mas-sanonga, (or Clear Sky,) a handsome young man of\n the Wea tribe, deputed by the Indians to pilot\n us, who (by the bye) says he shall be the first young man to take hold of\n Philip Dennis' plough.\n After riding eight miles, we came to the place called the Portage, on the Little\n river, a navigable water of the Wabash. Then down the margin of the river, leaving it to\n our left. At the end of four miles, crossed Sandy\n Creek, another navi-gable water of the Wabash; then proceeded through the woods, and at the end of\n thirteen miles further again came to Little\n river, at a place called the Saddle. This name is derived from a large rock in the bed\n of the river in the shape of a saddle. From the Saddle we pro-ceeded six miles along the margin of the\n river to its junction with the Wabash.\n The bed of the Wabash here is of limestone.\n After riding five miles further, we came to a vein of land\n about one mile in width, the sur-face of which is covered with small flint\n stones, and which we are told extends for several miles.On examining\n these flints, we found them of excellent quality.\n Here the Indians supply themselves with flints for their guns and for other\n purposes, and here formerly they procured their darts. It has\n cer-tainly been a place abundantly resorted to from time immemorial.\n This is evident from the sur-face of the ground being dug in holes of two\n and three feet in depth, over nearly the whole tract. This flinty vein\n is called by the Indians Father Flint.\n They have a tradition concerning its origin which is very incredible. From\n this we proceeded, and after riding two miles, reached the place\n proposed by the Indians.\n This place is thirty-two miles rather south of west from Fort Wayne, and is situated on the\n Wabash, at a place called the Boat-yard,\n which name it obtained from the circumstance of\n General Wilkinson having built some flat,\n bottomed boats here, for the purpose of tran-sporting some of the baggage\n of the American troops down the river. It was formerly the seat of an\n Indian town of the Delawares, and we are\n pleased to find there are about twenty-five acres of land clear. The\n Wabash here makes a beau-tiful\n appearance, and is about sixty yards wide. A little above is an island in\n the river, on one side of which the water runs with a strong cur-rent, and affords a good mill seat. We viewed the land in this\n neighborhood for a considerable distance, and found it high and of\n superior quality, being covered with sugar trees of enor-mous size,\n black walnut, white walnut, hack-berry, blue ash, oak buckeye trees,\n &c., all very large. The land appears to be equal in quality to\n any we have seen, not excepting the bottoms of the Scioto and Paint Creek. About\n half a mile below, a handsome creek falls into the river from the\n north, which we traced for a consider-able distance, and are convinced it\n affords a good mill seat. This creek bearing no name, we called it\n Dennis' Creek in honor of Philip Dennis. \n As night approached, Massanonga, taking\n his knife, left us, and in about fifteen minutes re-turned with a\n remarkably fine turkey. This he prepared and roasted for us in a very nice\n and expeditious manner, on which we fared sumptu-ously. At 9 o'clock\n we wrapped ourselves in our blankets, and laid down to sleep before\n the fire, having no shelter. The night was frosty; we, however, slept\n tolerably and took no cold.\n In the night the otters were very noisy along the river, the deer also\n approached our fire and made a whistling noise; the wolves howled, and\n at the dawn of day turkies gobbled in all direct-tions.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 13, 1804", "text": "\n 13th.\n Early this morning we arose, and breakfasted on the remains of the turkey\n cooked last evening, after which we fixed upon the place\n for Philip Dennis' farm; we also staked out\n the situation for his wigwam, which is about one hundred feet from the\n banks of the Wabash, and opposite to a\n fine spring of excellent water issuing out of the bank of the river.\n We are told by several persons well acquainted with the country, that from\n hence to St. Vin-cennes, on the\n Wabash, a distance of two hun-dred\n miles by land, and three hundred and fifty by water, the land on both sides\n of the river embracing a very extensive width, is not inferior to the\n description given of this location in yes-terday's notes.\n At Mississinaway, a large Indian town of the\n Miami's, situated about thirty miles below\n us, on the Wabash, stone coal is found,\n which with limestone continues for two hundred miles down the\n river.\n There are no Indians between this and Fort\n Wayne, neither any between this and Mississin-away. Philip\n Dennis' nearest neighbors will be at the Little Turtle's town, eighteen miles\n dis-tant. Whilst here we have seen four peroques loaded with peltry,\n manned by Canadians and In-dians, on their way up the river to be\n tran-sported to Detroit.\n I may here observe that the Wabash affords\n an abundance of large turtles, called soft shelled turtles, the outer coat\n being a hard skin, rather than a shell. They are esteemed excellent\n food. It affords a great variety of fine fish, and we saw\n ducks in abundance; we are told it is re-sorted to by geese and swans.\n About 8 o'clock in the morning we set out for Fort\n Wayne, where we arrived about 3 o'clock in the afternoon,\n and after dining with William Wells\n returned to our lodgings.\n \n "}}, {"location": {"lat": "fwayn", "lon": "fwayn"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 14, 1804", "text": "\n 14th.\n I may here observe that some days ago we came to a conclusion to return home\n by the way of the lakes; to this we have been induced from a hope that\n we shall be subjected to fewer difficulties and much less fatigue than to\n retrace the way by which we came; and I may also add, that we have\n been encouraged to this by the advice of our kind friends heretofore\n named, who have with much apparent cheefulness offered to prepare a\n way for us; and this morn-ing being informed by our worthy friend,\n Cap-tain Whipple, that the boat\n intended for us would be in readiness against to-morrow, we spent the\n day in making preparations, and in writing to our families.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 15, 1804", "text": "\n 15th.\n This morning we bade both a joyful and sorrowful farewell to Philip Dennis, and the two young men who\n accompanied us out. We also took leave of those generally with whom we\n had formed an acquaintance, first breakfast-ing with Captain Whipple, whose hearty kind-ness to us has been so\n often repeated, that his name will deservedly claim a place in our\n re-membrance. He has fitted out a perogue for us and\n manned it with a corporal and private soldier from the fort; and, joined by\n John John-son and William Wells, has stocked it with an apparent\n superabundant supply both for eating and drinking.\n About 8 o'clock we embarked for Detroit,\n pro-ceeded about thirty miles down the Miami of the lakes, and in the evening encamped under a\n tent near the margin of the river. With respect to the appearance of\n the country, the same old phrase must be continued; land of\n excellent quality. We several times went ashore to view the\n river bottoms, they were extensive and ap-peared to be first rate land. The\n timber, buck eye, ash, elm, sugar tree, oak, hickory, black and white\n walnut, &c. We saw ducks in abun-dance, and Corporal\n King says they breed here in great numbers. This river\n affords a variety of fine fish, and mostly of descriptions very\n dif-ferent from those found in our salt waters. Of these the following\n are some of the names; black, yellow, and white bass, covers,\n pickerel, suckers, herrings, muscanago, gar, pike, catfish,\n sheeps-head, carp, and sturgeon. These are all caught with the hook except\n the two last.\n The sturgeon are now on their way from the lake to the head waters of the\n St. Joseph's and\n St. Mary's rivers. In company with the\n Little Turtle, our friends, John Johnson, William\n Wells, and some others, whilst at Fort\n Wayne, the conversation turned upon fish, and the\n then running up of the sturgeon; the Little Turtle very humorously proposed to Johnson a project, which was to join in\n building a stone dam at the junction of the two rivers, to prevent the\n sturgeon from getting back again to the lake, and then said he you and I will live on them this summer.\n We observed to-day (15th,) several hunting\n and sugar camps, and went on shore to visit two of the latter. The camps\n were well supplied with jerk venison, dried raccoon, sturgeon,\n &c.; one man only was at the camp, and he was em-ployed with his\n knife in making a paddle for his canoe. A squaw was knitting a bag, and\n an-other was preparing the bark of the buckeye for thread, strings,\n &c., by beating it with a piece of wood. We saw amongst them several\n fat and healthy looking children, who were playful and did not appear\n to be afraid of us. The children presented us with a quarter of fresh\n venison, for which we returned them some salt meat and bis-cuit, with\n which they were pleased. Here we saw a child about six months old fixed to\n a board in the genuine Indian fashion. The board was straight, about\n fifteen inches in width, and two and a half feet in length, having at its\n head a circular handle, and at the foot a small ledge To this the\n child was lashed by cloth bandages, and so tight that it could not move\n hand or foot. The board was placed against a tree, almost\n per-pendicularly, and the infant asleep- of course in a standing\n position. The child was painted very red, and had silver\n bandages about its wrists, and ornaments of the same metal in its\n ears. The Indians are very fond of their children, and put about them\n very costly silver ornaments.\n I have seen Indian children dressed in a calico frock which was stuck with\n silver broaches from neck to heel, besides ornaments on the wrists, in\n the ear, and about the neck and head.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 16, 1804", "text": "\n 4th month 16th.\n Proceeded very pleasantly down the river about fifty miles, and at\n night encamped under our tent. In the evening a severe thunder gust\n came on, with heavy rain, which continued for several hours after\n night, but having a good tent we did not get much wetted. In the\n course of the day we saw wild fowl in abundance, also passed by several\n Indian hunting and sugar camps. Our Corporal is very fond of saluting\n the camps with an imitation of an Indian whoop, which they are sure to\n answer by a similar not. This whoop very nearly re-sembles the shrill\n yelp of a dog. The land ap-pears to be of an excellent quality, and deer\n and turkies are very numerous. Here also\n The prowling wolf howls hideous all night long, And owls vociferate the\n dread response.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 17, 1804", "text": "\n 17th.\n Proceeded about thirty-five miles, and at night encamped under our tent. We\n have been entertained to-day with a diversified scene. The river\n covered with wild fowl, fish jumping up around us, and turkies flying.\n \n We stopped a short time to view the remains of Fort\n Defiance. This fort was built by Gene-ral Wayne, in the course of his march to attack\n the Indians. The situation is very beautiful and commanding, at the\n junction of the river Great Au Glaize with\n the Miami. The two rivers make a large\n body of water, the width being about two hundred yards. A Canadian\n trader only resides here. We also went on shore several times to visit\n Indian towns and camps. Great numbers of Indians are settled upon the\n banks of the Miami; they are chiefly of the Ottoway and Shawnese\n tribes. They appeared pleased at receiving visitors. Their children were\n very antic, and seemed to leap for joy on seeing us land; doubtless\n from a hope of receiving some presents. The hunters are returning to\n their towns, and many of their wigwams are stocked with peltry, dried\n raccoon, and jerk venison. They are on their way to the foot of the\n rapids. The women are mostly employed in knitting bags and belts and\n in making moccasins. A considerable number of Indians are on the river\n in bark canoes loaded with peltry. They are on the way to the foot of the\n rapids and other places for the purpose of exchanging their peltry\n with the traders for goods. Most of the wigwams we have seen to-day\n are covered with rushes sewed together, which are procured from the shores of\n Lake Erie, and so put together, that the\n covering will turn any fall of rain. An Indian house is\n constructed by putting two forks into the ground, and a horizontal piece\n from one fork to the other. Upon this piece rest long pieces of bark,\n with the other end upon the earth at a conveni-ent distance, thus\n sheltering them from the weather. Sometimes they make circular\n wig-wams, by putting small saplings into the ground in circular order,\n then bringing the other ends to a point, they tie them together. These\n they either cover with bark or with the rush mats before\n described.\n To-day we passed a place called Girty's\n town, noted for the former residence of Simon Girty.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 18, 1804", "text": "\n 18th.\n Proceeded about thirty-three miles. In the earlier part of the day we passed\n several creeks and small streams, and at length reached what is called\n the head of the rapids. The river is here\n about four hundred yards wide. The noise of the falls informed us of our\n approach, long be-lieve that our peroque was manned by careful hands,\n we resolutely entered the rapids and\n de-scended with great velocity down the fall for the distance of\n eighteen miles to the foot of the\n rapids. The whole of this distance is a\n continued fall, the land falling with the same regularity, and\n generally elevated but a few feet above the surface of the water. It is\n needless to say that we went swiftly down, when I add, that it is a\n trip occupying but one hour and a half.\n The bed of the river is a solid limestone rock,At the foot of\n the Rapids we lodged all night at the\n house of a Canadian trader, who treated us with great respect, and, though\n a tavern-keeper, would receive no pay from us for our supper,\n lodgings, or breakfast. A considerable encamp-ment of Indians, who had come\n to trade with him was near his house. They were very merry for a great\n part of the night, keeping up a con-tinued sound of their favorite\n instruments of music, amongst them the drum and fife. The former is\n made of part of the body of a hollow tree, with the ends covered with deer\n skin, upon which they beat with sticks, the latter they make of reed\n into which they bore holes some-what in imitation of a fife. The foot of the\n Rapids is rendered well known in American\n his-tory, as having been a place of frequent ren-dezvous by the\n Indians, previous to their defeat by General\n Wayne. Here also the Indians burnt many of the white men who\n were taken prisoners by them. To this place Wayne marched, and here he met and defeated the Indian\n army.\n About eight miles above the foot of the Rapids and near the centre of the river, in a very rapid\n situation, is a noted rock called by the Cana-dians, Rochede Bout, (or standing rock.) This rock is about thirty\n feet in height above the surface of the water, and the same in\n diameter. The top has the regular appearance of the roof of a house,\n and the body of the rock is circular. Its appearance is additionally\n handsome from the circumstance of the roof, as it is called,\n being covered with cedar. \n Fish are now passing up the Rapids in\n great numbers from the lakes, in so much that the water smells\n strongly of them. They are taken very abundantly by the Canadians and\n Indians. The fisherman without seeing them strikes his barbed spear to\n the rocks, which often passes through several at a time, and frequently of\n different kinds. The muscanonje are taken here in great numbers; they\n are a fish from three to five feet in length.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 19, 1804", "text": "\n 19th.\n This morning we proceeded with diffi-culty ten miles; owing to high winds,\n and a raincoming on, prudence seemed to dictate that we should put\n into a harbor, which we did at the mouth of Swan\n creek, where is a small fort and garrison lately established\n by the United States. Introductory letters were given us at Fort Wayne, to Lieutenant Rhea, the Commandant, which we delivered. He\n treated us with respect, and with him we spent the remainder of the\n day and lodged. On our way we stopped to view an old fort, called\n Fort Miami, which was garrisoned by\n the British at the time Wayne defeated\n the Indians.\n Many Indian villages and wigwams are seated on both shores of the river, and\n many Canadian traders are to be found residing amongst them. They have\n generally intermarried with the In-dians, and adopted their manners. Some\n of the Indian houses which we passed to-day are built of\n small round logs, and are roofed with bark. Near the mouth of Swan creek is an extensive valley of which we\n took a particular view. Here the Indians placed their wives and children\n at the time they agreed to make battle with Gene-ral Wayne.\n The river increases in width from the foot of the Rapids toward the lake. It is more than half a mile wide\n opposite Swan creek, and at present has\n the appearance of tide water; a strong east wind having brought a heavy\n swell from the lake, which has in a short time raised the river more\n than three feet in perpendicular height. We saw to-day geese and swans\n in great abundance.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 20, 1804", "text": "\n 20th.\n This morning notwithstanding the very unfavorable appearance of the weather,\n it being rainy and wind high, we again proceeded. At the end of three\n miles we reached the mouth of the river, where we entered a beautiful\n circu-lar bay, about six miles in diameter, called Miami bay.* Now called Maumee Bay. The wind continuing high, we\n proceeded along the margin of the bay, for about ten miles to a point\n called Bay Point. This is the ex-treme\n point of land, between Miami Bay and\n Lake Erie. We attempted to turn the point\n in order to enter the lake, but the situation being bleak and the wind\n high, occasioned a heavy swell, and apprehending danger, we\n thought it most advisable, however reluctantly, to put to shore and\n encamp.\n The shore of that part of the bay which we have passed, as also of the lake\n now in view, is elevated but a little above the surface of the water.\n The country is level and appears rich. The bay is resorted to by vast\n numbers of wild fowl.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 86", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 21, 1804", "text": "\n 21st.\n The last night has been very stormy and rainy. Our tent, though a good, one\n did not shelter us altogether from the rain. The high swells in the\n course of the night, breaking over our peroque, filled and sunk her, which\n has oc-casioned our men much labor and difficulty. And during this day\n the storm continuing, we have been obliged to remain under our tent. \n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 101", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 22, 1804", "text": "\n 22d.\n \n About midnight the clouds dispersing, wind becoming calm, and the moon\n shining very refulgently, we were encouraged again to embark,\n notwithstanding a considerable agitation of the lake from the storm, and\n were successful enough to turn Bay\n Point, after which we proceeded without difficulty to\n Point Raisin, near the mouth of the\n river Raisin, (or Grape river,) making\n a distance of about twelve miles, when the wind rising we made an\n unsuccessful attempt to get round the Point, and were again obliged to seek a harbor and wait\n for a calm. Shortly after we had put into harbor a fish approached the\n shore very near to us and seemed to be at play. One of\n our men advanced toward it very cautiously, and with an oar, gave it a blow\n upon the tail, which so disabled it that he caught it. We found it to\n be a muscanonje, measuring four feet two inches in length and\n proportionally thick. The muscanonje is from head to tail very\n beau-tifully spotted, and is I think not inferior to any fish I ever\n tasted.\n For several days past we have been not a little mortified at being confined\n to a harbor, whilst the Indians are passing us very frequently in\n their bark canoes. It is astonishing to see these canoes riding large\n swells without danger. It is certain that they will ride waves whose\n height exceeds their length.\n Many of the bark canoes of the Indians have fallen under our observation.\n They are gene-rally made of the bark of the birch tree, and shaped\n differently. We have seen bark canoes loaded with two thousand five hundred\n weight, which were so light that two men could carry them on their\n shoulders with great ease. The construction of the smaller description of\n these boats is so simple, that in an hour they will have a canoe made\n which will carry several per-sons across their rivers. We have also seen\n many of their rafts. These are made for crossing rivers at those\n seasons of the year when it is not easy to strip the bark from the trees.\n In all the river bottoms the buckeye wood is to be found.\n This they prefer for making a raft, on account of its lightness when dried,\n it being a wood nearly as light as cork. The Indians tie together\n small logs of the buckeye wood, to form a square of about five or six\n feet, this they cross by pieces of any other description of wood, confining\n piece to piece by bark strings, splits of hoop ash, &c. Upon a\n raft of this description, three or four persons will cross their rivers\n even though the currenthe against them.\n We had not been long in harbor, before our anxiety to proceed exceeded our\n patience, and observing in view at an apparent distance of one and a\n half to two miles from us, about fifty houses resembling a village, we\n concluded to abandon our peroque, walk to the settlement, and then\n endeavor to procure horses to take us to Detroit.\n At 11 o'clock this morning we set out for this purpose, followed by our men\n with our baggage on their backs, and after walking over a wet prairie,\n through mud and water, half a leg and more in depth, for the distance of\n nearly six miles, we reached the place. Viewing this set-tlement from\n the lake, and over a tract so level that the elevation between it and us\n did not ex-ceed two feet, occasioned us to be so greatly de-ceived in\n the distance. On arriving we found that, instead of a village, it was a\n settlement of French farmers situated along the river\n Raisin, and presenting a very beautiful scene. The farms contain from sixty to eighty acres, laid off in\n parallelograms. The buildings are good, and the gardens and orchards\n handsome. We un-derstand that about two miles higher up the river\n there is another settlement composed of about forty families, and upon\n Otter Creek, about four miles\n distant, a third settlement containing about thirty families. These people\n are Roman Ca-tholics. We were soon informed that the dis-tance from\n here to Detroit was thirty-six miles by\n land, and that the road passed through so flat and wet a country, for the\n greater part of the way, that at this season of the year, it was\n almost impossible to travel it on horseback, and were advised to wait\n on the wind for a passage by water. We, therefore, concluded to take\n lodgings at the house of John Bedient,\n who has offered to entertain us, and dispatched our men to the boat,\n with instructions to come up the river Raisin\n for us, as soon as wind and weather permitted; being so wearied and\n overcome with our \"Jack-o-Lan-tern\" excursion, that we could not consent\n to retrace our steps to the boat.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 102", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 23, 1804", "text": "\n 23d.\n A strong west wind, attended with heavy rain last night and this day, have\n prevented our men from getting to us. It is a fact well-known here,\n that northwest and west winds are as certain to produce cloudy weather as\n easterly winds with us. This is doubtless owing to the humidity of the\n vast western lakes. The same winds are severely cold in winter, no doubt\n from the im-mense bodies of ice then accumulated upon\n those lakes.\n \n "}}, {"location": {"lat": "browt", "lon": "browt"}, "media": {"caption": "Page: 103", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 24, 1804", "text": "\n 24th.\n This morning our men arrived about 8 o'clock, with the peroque, the wind\n having abated and weather fair. We again embarked, and on our way down\n the river Raisin were amused with the\n great numbers of wild geese, which were at play in the ponds near the\n margin of the river. They feed here so undisturbedly, that though we\n were within gun shot of them, they took but little notice of us. We again\n entered the lake, and encouraged our men\n to make the best of its smooth surface. They proceeded with great\n industry, and at night we reached a Wyan-dot\n town, called Brown's town,\n making a distance of about thirty miles. Here we concluded to lodge at\n the house of William Walker, who is\n interpreter for those of the Wyandot nation\n who are settled on this side of the lake. He is married to an Indian\n woman who speaks good English, and is very conversible. She gave us\n for supper bacon, bear's meat, and eggs fried, also a dish of tea.\n Brownstown is situated at the mouth of the\n Detroit river, and on the American side. The\n river Detroit is a vast body of running\n water. Its mouth is two miles in width, and the water passes out of it\n into the lake with a strong cur-rent. Its channel is wide, generally ten\n fathoms in depth, and in many places much deeper. The name Detroit river is a corruption. Detroit, a French word, signifies the Strait, a name much more appropos,\n it being but an outlet from the waters of the western lakes to Lake Erie.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 104", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 25, 1804", "text": "\n 25th.\n This morning our curiosity led us to take a view of Brownstown. The village contains about one hundred houses,\n which are generally built of small round logs, and roofed with elm\n bark. These Indians cultivate a considerable quantity of corn, and their\n fields are enclosed with rails of their own splitting. We saw a sample\n of the wheat which they had raised the last season, which looked well. They\n have gar-dens and a considerable number of fruit trees. They have a\n small number of cattle, and raise a large number of hogs. The interpreter\n says they are greatly disposed to civilization, and have re-quested of\n the United States to furnish them this year with cattle, instead of goods\n or money for their annuity.\n After taking breakfast, we again embarked and proceeded up the river Detroit, passing by another Indian town\n called Walk-in-the-Water village, a name\n derived from the principal chief of the settlement. The village contains\n about twenty houses, and bears the same civilized ap-pearance as\n Brownstown.\n After passing the river Le Cas and the river Range, we came opposite to a British\n town called Sandwich, where, upon an\n elevated position, we beheld the horrible spectacle of two men hanging\n in gibbets.\n \n The white settlements, on both the American and British shores of the\n Detroit, are so near together, that\n the farms resemble villages. Nearly opposite Sandwich is Detroit, which\n we reached about 5 o'clock in the afternoon, and proceeded to the\n boarding house of the widowHarrison, to\n whom we had been recommended, having come eighteen miles. In the evening,\n Charles Jewett and several others came to\n see us; they told us they had heard of the arrival of some strangers,\n and expected we were from the interior of the United States; that for a\n long time they had received no account from the seat of government,\n and were anxious to hear the news. Having an open letter from the\n Secre-tary of War, directed to Charles\n Jewett, and to the commanding officer at Detroit, we embraced the opportunity to present\n it. The letter was as follows:\n \n \n \n War Department, February 20th, 1804.\n Gentlemen,-\n This will be handed you by\n Joel Wright, George Ellicott, and Gerard\n Hop-kins. They are amongst the most respectable\n members of the Society of Friends in Maryland. Their object is\n to visit some of the western In-dians, for the laudable purpose of\n encouraging and aiding them in the introduction of\n agricul-ture and other improvements essential to the happiness\n of the red people. They are men of science, information and\n property, and are en-titled to the civilities and\n attention of all good men. You will please to afford them every\n aid, and should they wish to cross the lake from De-troit to Niagara, and a public vessel being about to sail\n for that place, accommodations should be afforded them free of\n expense, and letters of in-troduction given them to Major Porter.\n I am respectfully Your humble servant,\n H. DEARBORN..\n To the Commanding Officer at Detroit, and Charles\n Jewett, Esq., Indian Agent.\n \n \n Charles Jewett received us with great\n civility, and has invited us to dine with him to-morrow, to which we\n have consented.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 104", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 27, 1804", "text": "\n 4th month 27th.\n This morning Charles Jewett again called\n upon us, and at his request we accompanied him to the garrison, and\n were introduced to the commanding officer,\n Major Pike, who appears to be a genteel\n and clever old man. He informed us that a public vessel would sail for\n Niagara, about the first of the\n ensuing month, and recommended us very strongly to take passage in her, in\n preference to any other vessel, she being in good order, and under the\n management of mariners well ac-quainted with the lake. This vessel is under\n his superintendence.\n Agreeably to engagement, we dined to-day withCharles\n Jewett. The revenue officer for the port of Detroit, Captian\n Ernest, also dined with us.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 107", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 28, 1804", "text": "\n \n 28th.\n This day we dined with Major Pike, in\n compliance with an invitation which he gave us yesterday. He treated us\n with great respect and attention, and appeared to be pleased with our\n company. New Jersey being the place of\n his nativity, he has considerable knowledge of our Society. In the\n course of conversation he in-quired after Peter\n Yarnall, and says that Peter and himself were in the same military company during\n the Revolutionary war; he had not heard of his death.\n The following circumstance, as related by him, making at the time\n considerable impression upon me, I have thought proper to record it. He\n told us that several officers with Peter\n and himself were lodging together; that one night Peter alarmed them all with loud screams to such a\n de-gree that on first awaking he supposed the enemy had fallen upon\n their army with bayonets. Peter was on\n his feet, and appeared to be awake. They spoke to him repeatedly, and\n endeavored to ap-proach him, but every advance they made in-creased\n his alarm. Finally he recovered himself and became composed, and for\n several days after-wards, instead of satisfying their inquiries,\n ap-peared to be sunk in distress and gloom. He afterwards told them he\n considered his alarm as a warning to him, and that his fright arose\n from a plain representation of the devil, come to take him off.\n Peter in a short time left the army,\n and (said the Major) I always believed that\n his reformation had its rise from that circumstance.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 108", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 28, 1804", "text": "\n 28th.\n This day we dined with Robert Monroe,\n factor of the United States in the Indian Depart-ment. At his table we met\n our friend Charles Jewett, the revenue\n officer before named, Judge Henry and\n Lawyer Sibley.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 108", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 29, 1804", "text": "\n 29th.\n This day we dined with Frederick Bates, at\n his lodgings. He is descended from Friends, and discovers great partiality\n for our company. He is a young man of superior under-standing, and is\n much esteemed in Detroit. I feel and\n fear for the situation of this young man. It is not in human nature to\n support good principles unblemished, when left alone to stem the\n torrent of fashionable and fascinating vices.Detroit is a place of great corruption.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 108", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "April 30, 1804", "text": "\n 30th.\n This day we rode nine miles up theriver\n Detroit to take a view of Lake St.\n Clair. This lake is thirty miles in length, and twenty\n miles in width. We had a beautiful prospect of it, from a commanding\n situation. I ought to have mentioned that bordering the river, the\n whole distance from Detroit to the lake, the\n land is handsomely improved. The houses are so near each other that\n the margin of the river looks like a village. These farms are grants\n made by the French government nearly a cen-tury ago. They uniformly lie in\n parallelograms containing about one hundred acres. Added to tolerable\n dwelling houses are the handsomestapple orchards I ever saw. The\n extraordinary healthfulness of the trees, indicates a\n suitableness of climate or soil, or both.\n The pear trees also are very large and hand-some; but their cherry and peach\n trees do not thrive well, the climate being too cold for them.\n In this little excursion we were accompanied by Frederick Bates, and returned in time to com-ply with an\n invitation we had received to dine with Doctor\n Davis. Major Pike, and\n several others, dined with us.\n \n "}}, {"location": {"lat": "detro", "lon": "detro"}, "media": {"caption": "Page: 108", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 01, 1804", "text": "\n 5th month 1st.\n We this day dined with Dr. Wilkinson, who\n removed from the lower part of the State of Maryland. Were we as fond of eating and drinking as the\n people of Detroit ap-pear to be, it\n would be no marvel if we should forget our homes, and think ourselves well\n enough entertained where we are; but whilst we have been under an\n apparent necessity of yielding to the invitations we have received during\n (shall I say?) our imprisonment here, we know we have been very\n anxious for the time to arrive, in which we may embark homewards, and hope\n that to-morrow morning the vessel for which we have been waiting will\n sail.\n \n "}}, {"location": {"lat": "mald", "lon": "mald"}, "media": {"caption": "Page: 109", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 02, 1804", "text": "\n 2d.\n This morning, wind and weather appear-ing to permit, we were informed that\n at 9 o'clock the vessel would sail. We accordingly badefarewell to our\n acquaintance, and went on board the United States brig called the John Adams, commanded by Commodore Brevoort. About 9 o'clock sail was hoisted, and\n we proceeded to the mouth of the river\n Detroit, when night com-ing on, and the wind being\n unfavorable, we anchored near the British shore, and opposite to the\n town of Malden.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 110", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 03, 1804", "text": "\n 3d.\n Weighed anchor. Winds light and op-posite; anchored again about 8 o'clock in\n the evening, near an island called the Middle\n Sister.\n \n "}}, {"location": {"lat": "midbi", "lon": "midbi"}, "media": {"caption": "Page: 110", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 04, 1804", "text": "\n 4th.\n About 4 o'clock this morning again weighed anchor, and a calm coming on\n about 10 o'clock, we anchored again near Middle\n Bass Island, where we were confined the remainder of\n the day. In the afternoon some of us amused ourselves with fishing. The\n small boat was rowed by several hands around the island, whilst we\n cast our lines, about thirty feet in length, hav-ing hooks baited with the\n skin of pork and covered in part with the skin of pork and covered in\n part with a piece of red cloth. In a short time we caught upwards of five\n dozen black bass, justly esteemed an excellent fish, and weighing from\n four to six pounds. The lake water is so clear, that fish can be seen\n from twelve to fifteen feet below the surface. Many of the fish we\n caught, we saw advancing to our hooks.\n \n "}}, {"location": {"lat": "putib", "lon": "putib"}, "media": {"caption": "Page: 110", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 05, 1804", "text": "\n 5th.\n At 4 o'clock this morning again hoisted sail. Weather windy, attended with\n rain. We had not proceeded far before a head wind opposed our sailing,\n and we cast anchor at an island called Middle\n Island. At 4 o'clock in the after-noon a heavy rain and\n thunder gust coming on, it was deemed safest to return back a few\n leagues to a harbor called Put-in-Bay, where we lay dur-ing the night.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 111", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 06, 1804", "text": "\n 6th.\n This morning at 6 o'clock we again hoisted sail; wind and weather clear and\n pleasant. We are now, 9 o'clock at night, under sail. \n \n "}}, {"location": {"lat": "presq1", "lon": "presq1"}, "media": {"caption": "Page: 111", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 07, 1804", "text": "\n 7th.\n Have been under sail last night and this day until evening, when we cast\n anchor opposite to Presqueile, for the\n purpose of landing a part of our passengers.\n \n "}}, {"location": {"lat": "presq1", "lon": "presq1"}, "media": {"caption": "Page: 111", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 08, 1804", "text": "\n 8th.\n During last night lay at Presqueile,\n and this morning put on shore the passengers bound for that place,\n after which, the wind heading us, we lay at anchor the rest of the day.\n Presqueile is a town on the\n American side of the lake, con-taining about forty houses, several of which\n are stores. A small garrison of the United States is stationed\n here.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 111", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 09, 1804", "text": "\n 9th.\n About 10 o'clock last night, a light favor-able breeze sprung up, which\n encouraged us to proceed. The vessel has been all night and du-ring\n the day under sail. At 8 o'clock in the evening we dropped anchor, within\n four miles ofNiagara river. Our commander\n says that the channel leading into the harbor, is rocky and dangerous,\n and deems it imprudent to attempt an entrance at night.\n It is a pleasing reflection, that we are so near to the end of our passage\n over the lake; and we are gladdened with the hope, that we shall\n shortly prosecute the remainder of our journey over terra firma, where\n we shall not be subject to the impediments of opposing winds,\n and be freed from the dangers of storms. Lake\n Erie is a very beautiful body of water, 300 miles in\n length and generally from 50 to 60 in width. Much of the distance we have\n sailed has been out of sight of land. The water of the lake appears to\n be of a beautiful deep green color, but when taken up in a glass vessel, is\n to be admired for its transparency. I think it is, without exception,\n the sweetest water I ever drank.\n \n "}}, {"location": {"lat": "ferie", "lon": "ferie"}, "media": {"caption": "Page: 112", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 10, 1804", "text": "\n 10th.\n At 4 o'clock this morning our anchor was again hoisted, and in about half an\n hour we were safely moored at Fort Erie.\n This is a small fort on the Canadian shore of the lake, garrison-ed by\n the British. Immediately on our arrival, we set out on foot for Buffalo, distant 5 miles, a town situated at\n the junction of Buffalo Creek with\n Lake Erie, and near the commencement\n of the outlet of the lake, commonly called Niagara river. The object of this excursion was to\n ob-tain a conveyance across the country to the near-est line of public\n stages. We were successful in an application to one of the inhabitants,\n who agreed to furnish us with a light wagon, to be in readiness two\n day's hence. Here we met withErasmus\n Granger, an agent of the United States, in the Indian\n Department. We had conversa-tion with him at considerable length on\n Indian affairs. He tells us that many individuals amongst the Indians\n of his district, (who are of the Six\n Nations,) are turning their attention to agriculture.\n About mid-day we returned in a small boat to our vessel. After dining on\n board, we went on shore at Fort Erie,\n and joined by our Commodore and Lieutenant Cox, a passenger with us from\n Detroit, we engaged a light wagon to return\n with us at 4 o'clock to-morrow morning, to view the\n Falls of Niagara, distant about eighteen miles.\n We extended our walk for a considerable distance along the shore of\n Lake Erie; it is here composed of a\n solid body of limestone, beautifully marbled.\n \n "}}, {"location": {"lat": "buffa", "lon": "buffa"}, "media": {"caption": "Page: 114", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 11, 1804", "text": "\n 11th.\n This morning we sat out for the Falls of\n Niagara; our road passed near the margin of\n Niagara river, from the lake to the Falls, a dis-tance of 18 miles, which afforded\n us a view both of the river, and of the adjacent improve-ments. The\n land is generally under cultivation, and is tolerably improved. The soil\n appears rather cold and stiff; but some of the meadows are nearly\n equal to the best I ever saw; some of the farms belong to members of our\n society, and we are told that there is a meeting of Friends not far\n distant from the Falls. Considerable emigrations are making from the United\n States, to this as well as other parts of Upper Canada, owing to the very advantageous terms upon\n which the British Government dispose of the land, being scarcely removed\n from a gift.\n We reached a Canadian town called Chippewa,\n to breakfast, after which we walked to the Falls, a distance of two miles. This was a\n walk, of which every step seemed to increase curiosity and surprise.\n Our attention was soon arrested by a cloud which hangs perpetually over the\n Falls for the height of 600 feet, arising from\n the dashing of the waters.\n As we advanced to the Falls the solid earth\n and rocks shook, or seemed to shake, under our feet, whilst the roar of the\n waters so overpowered every other sound that, notwithstanding we were\n tete-a-tete, it was necessary to raise the voice to a very loud key in\n order to be heard. Mean-while the cloud above mentioned issued\n contin-ually in what we sometimes hear called a Scotch mist.\n There is a common saying, Those who know no danger, fear none. This\n was our case on re-turning to the extremity of an overjutting rock,\n called Table Rock, opposite to the great\n cataract, in order to gratify our curiosity, in a peep down the\n precipice which is more than 150 feet per-pendicular. In passing afterwards\n a short dis-tance below this rock, we were alarmed with the discovery,\n that the place on which we had stood was but a thin shell, the Falls having under-mined the rock for many feet.\n Proceeding a little lower down the Falls,\n we again found that our second stand was almost as baseless. We\n however supposed that the danger was not equal to our apprehensions, as the\n names of great num-bers of visitors were cut in these rocks, near\n their extremities. I shall not attempt to give a\n par-ticular description of the Falls of\n Niagara, which has been done by persons who have visited\n them, for the especial purpose of gratifying the curious. After we had\n gratified our curiosity in a view of them we returned to Fort Erie, and after night were rowed in a\n small boat to Buffalo town, in order to\n be in readiness for setting out home-ward in the morning.\n \n "}}, {"location": {"lat": "buffa", "lon": "buffa"}, "media": {"caption": "Page: 115", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 12, 1804", "text": "\n 12th.\n The person who has engaged to take us on our journey this morning has\n disappointed us. The circumstance is a trial, as we have become very\n anxious to reach our homes. Being at lei-sure we accompanied the Indian\n agent in a ride, four miles above Buffalo\n Creek, to an Indian vil-lage of the Senecas, one of the tribes of the Six\n Nations.\n They are making considerable progress in agriculture, live in tolerable log\n houses, and have a number of cattle, horses and hogs. We saw many of\n them at work; they were preparing the ground for the plough by rolling\n logs, taking up stumps, &c. \n We also saw among them a large plough at work, drawn by three yoke of oxen,\n and attended by three Indians. They all appeared to be very merry, and\n to be pleased with our visit. The land upon which these Indians are settled\n is of a superior quality. We saw amongst them Red Jacket, Farmers\n Brother, and several other dis-tinguished Chiefs. Many of\n these Indians wor- in their ears, and round their necks,\n strung upon strings, several descriptions of Lake shells. Here we met\n with Saccarissa, a principal chief of the\n Tuscarora tribe. He has come for the\n purpose of being assisted by the agent in vesting fifteen thousand\n dollars in the purchase of land from theHolland Land\n Company. They have greatly de-clined hunting, and are\n becoming agriculturists. The Tuscarora\n Indians removed from North\n Caro-lina many years ago, and were received into the\n then Five Nations, or Iroquois Indians, who\n gave them a small tract of country, which they now think wants\n enlarging. It is a fact, that theSix\n Nations have stock in the Bank of the United States to the\n amount of more than one hundred thousand dollars, from which they draw\n regular dividends. This is money which they received some years ago from\n our Government for the sale of their lands.\n The Chiefs and principal people took the advice of General Washington, in making bank stock of their\n money.\n \n "}}, {"location": {"lat": "checkPlace", "lon": "checkPlace"}, "media": {"caption": "Page: 115", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 13, 1804", "text": "\n 13th.\n This morning we set out from Buffalo in a\n farm wagon drawn by two horses, and tra-velled 32 miles through a rough and\n inferior country.\n \n "}}, {"location": {"lat": "batav", "lon": "batav"}, "media": {"caption": "Page: 116", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 14, 1804", "text": "\n 14th.\n Proceeded 23 miles and reached Bata-via,\n a new town, handsomely situated. We have had a muddy, disagreeable road,\n through a coun-try too flat to be desirable. The land is pretty rich,\n and very heavily timbered. We have been all day followed by\n millions of mosquitoes; crossed a handsome stream called the Tantawan-tae, and were told at the Ford that a\n little dis-tance above us 120 rattle snakes lay dead. These snakes\n were killed by some fishermen with their spears, the warm weather having\n brought them out of their dens. People are making settle-ments here\n very rapidly.\n \n "}}, {"location": {"lat": "warnt", "lon": "warnt"}, "media": {"caption": "Page: 117", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 15, 1804", "text": "\n 15th.\n Travelled 33 miles, and lodged at War-ner's\n Tavern. The land for the most part tol-erable. The New\n England people are making many handsome settlements here. They have\n built fine farm houses, planted handsome or-chards, and emigration is\n increasing. The stone is mostly limestone. We passed for several miles\n over a tract covered with limestone, which con-tained a great variety of\n curious marine shells. The country affords many fine springs; one\n which we passed contains water sufficient to turn a mill. We also passed\n through a large Indian town, near the Genesee\n river, and to-day crossed that river, where its width is\n about 100 feet.\n \n "}}, {"location": {"lat": "genev", "lon": "genev"}, "media": {"caption": "Page: 117", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 16, 1804", "text": "\n 16th.\n At 6 o'clock this morning we again proceeded; passed near Hemlock lake, and\n Honey lake, of which the waters empty into the\n Genesee river. The face of the country is\n gen-erally tolerable, but stony. We to-day also saw the same\n appearances of marine shells as yesterday. About mid-day we reached the\n town of Canan-daigua; situated upon a\n lake of that name, about 20 miles in length, and from one to two miles in width; its waters empty into Lake Ontario. The improvements on this tract are\n astonishingly handsome for a new country, par-ticularly through a\n settlement called Bloomfield. At\n Canandaigua, we exchanged a rough\n wagon, for the public stage, a circumstance additionally gratifying to\n us from the hope that we shall now proceed homewards with expedition. At 2\n o'clock set out in the stage, and reached the town ofGeneva where we lodged. This is a handsome new\n town situated upon Seneca lake, a body of\n water forty miles in length, and from three to three and a half miles in\n width.\n \n "}}, {"location": {"lat": "onond", "lon": "onond"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 17, 1804", "text": "\n 17th.\n Travelled about fifty miles and lodged at the village of Onandagua. On our way we reached a handsome\n wooden bridge one mile in length, over Cayuga\n Lake.\n \n "}}, {"location": {"lat": "utica", "lon": "utica"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 18, 1804", "text": "\n 18th.\n Travelled fifty miles to the handsome town of Utica, situated on the Mohawk\n river. Passed near Oneida\n Lake, and through a large settlement of Indians of the\n Oneida tribe. Their town consists of\n about seven hundred Indians. They have good houses, a meeting house,\n barns and orchards. Their land is under cultivation, is level, and\n appears to be of good quality. We saw many of them in their fields\n preparing for corn. These Indians have been greatly aided in\n agriculture, by the Friends of Philadelphia.\n \n "}}, {"location": {"lat": "geort", "lon": "geort"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 19, 1804", "text": "\n 19th.\n This morning we again proceeded, and at night lodged at a small village\n called George-town, making a distance of\n fifty miles. Our road led us the whole distance along the\n Mohawk river.\n The Bottoms along this river are called theGerman\n Flats, and are very rich and handsome. They were settled\n many years ago by the Germans. We stopped to view the Falls in the river,\n where the navigation is made easy by locks; a very romantic place,\n there being limestone rock of enormous size, both in the water and upon\n the hills. In proceeding along the bottoms of this river there are\n many marks which indicate that at some period of time there was a vast body\n of water covering these Flats. The Flats\n are gen-erally from half a mile to a mile in width; theirmargins are a\n continuation of hills on each side,which are from two to three hundred feet\n inheight; the surface of the hills show stones of great size, which\n are washed into all shapes; added to this, the hills discover evident\n appear-ances of those indentures common to river shores. \n \n "}}, {"location": {"lat": "alban", "lon": "alban"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 20, 1804", "text": "\n 20th.\n Again prosecuted our journey, passing along the Mohawk\n river to the town of Schen-ectady, where we crossed the river, and in the\n evening reached the town of Albany upon the\n North river, making a distance of forty\n eight miles. I cannot but observe here, that in pro-ceeding along the\n Mohawk river to-day, we came to the\n end of those high chains of hills mention-ed yesterday, where the country\n made quite a level appearance; so that we were puzzled to conjecture\n what became of the earth which had enclosed so great a body\n of water, as the hills seem to declare once washed their summits. I\n may add, in humble confession, that in the course of our long journey, I\n have had frequent occasions to acknowledge, in a view of those\n extraordinary and inexplicable natural curiosities, which have fallen\n under our observation, the truth of that excellent sentiment of a religious\n poet, Nature is wrapt up, In tenfold night, from\n reason's keenest eye.-YOUNG.\n Between Schenectady and Albany the coun-try is the poorest I ever saw. The surface\n is a body of sand, producing scarcely a tree. Surely one of\n Churchill's lines, relative to a part of\n Scotland, may with propriety be applied to\n this tract, Here half starved spiders feed on half starved\n flies.\n \n "}}, {"location": {"lat": "nycit", "lon": "nycit"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 23, 1804", "text": "\n 21st.\n Having concluded to go by water fromAlbany to New York, at 3\n o'clock this afternoon, we set sail, and at six o'clock in the evening\n of the 23d reached New York, a distance of one hundred and sixty miles.\n \n "}}, {"location": {"lat": "balti", "lon": "balti"}, "media": {"caption": "Page: 118", "url": "https://ds-omeka.haverford.edu/qi/files/fullsize/4e0fe986a9716456496045d5fe4f608f.jpg"}, "text": {"headline": "May 27, 1804", "text": "\n 24th.\n At 8 o'clock this morning, we took public stage, and passing through the\n city ofPhiladelphia, reached Baltimore on First-day the 27th of 5th month, 1804. Here reader, allow me\n to add I was gladdened with the favor of being permitted safely to return\n to my home, and grateful for the additional blessing of\n finding my dear wife and infant children all well.\n We were absent on this visit three months and four days, and travelled about\n two thousand miles.\n \n \n "}}]}} \ No newline at end of file diff --git a/db.sqlite3 b/db.sqlite3 index 2251a9275944f8339e419675c85f974ef0e0213e..e5a64023ea194ac100ff9fb88151f7ddbf662f20 100644 GIT binary patch delta 12768 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 delta 2594 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Ò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�>g#xuhVgfk?1=N84<&fR@VsB zUxny+@Li8vhdGBKYvjaf!(TE+WOn!9l>1a>Z&-8=1Z_c|)$>fd7iQR> zny1dE#=b>dKaDO;n+$rhkNbGE<$ zFQA`yYA_(%F#d@rkKFY{akEe;#I?w1Xd0<_jOQnU`sl8Kr_JK$2!)c406&2z=-%eh zUDkFV^9Ye8!So`?kM6Rvd!S-)7660Gv|Qh{NQH#{2IhsNh-q3aBIKZH1n%pUG)QpC zJA>rj3|v;3{sDW7qAOvOgmq2>SuXAAyP3b@c`bPNmTsGz(Dshbirb8s;x7CXgy|>H zLxuALX3bFTtG^A-kSDx-^PhEH3q*^~*)L&3k&22X9P|qn&!WTI6XEpthtI%i^*i6J z4l^9}u7Qu%)kyCGC-cWR89#8u-f(jJ$%Dlsv0`qnFXb#Oq|wQFctMPII30-=P3dPv>)Y&^V%QFlnJc!KUhtav)zgIMtd-Gf;1RJ!k95N{dSBY`ZCr-J5wgkX&* zJmWa%((WlLPZ)G*A0S;?-mbGTt>tSJ8GjKoiMm>%zB@lflpES5j@(4d>+ayjx~Npz z@0c1T)lrn!t4-NNWb}wacT3qv9D5TBTaSnIzT(5ZaxO*H$UcE@eKSkIK8|mF1uoy? zTgSsC2H)DADPTwATWjGGg>StJmw)41ufydSzV#AZj^fvEx=L`T38(GfAY{MjM_Y7- z@NTFsbo(>=H~6ab(G_*oJ?ru^Gecc}a0KPCO~bKcm6DHoKmbA2?|lOmlP7h<&x?ki zHs?~}>gSvT%4j6~te2TMvUXjs|D?Hi57JF`sJ3??*8c zwxMHwqf}kbhJm7Ibbr_05)|~nthRBz`~#jN$UUn>Z)a_atQ0A(Ym+ncbXCV}1FCiRxBBD+1|fpamwR(VH5yS^a}1Ha zD@XEhvVLa(?NfW^P3C&92%4s&w5RDlfutf{!XP>3PqHh%aQQ)YWg%R?mtB!SQp|tL zu3&IE3^2GH1Q=Yt0hokD3zx0>u2kvS5w!oy%|YZ+w$LL*l3wWM`;pDxf6LU0&ZTEk z;YVgDDrl&nqk;*=d*8gY7?J~kk$LhT$guhMmWDr&`!ayq5Xc3AZ2CZBSH;amUcctH zM%@j<*@vL|(4;Ss@z;DrNN#yu$)5jIx_3QjarYp%JiYEMpFPMePpx~j=n+2Lu9`0& zfW_~-hJ}A#OzW*W$78)@;P7FwDUZGs+v8gA7A0M}ND04$j3(ijb2#>PIQDut_Ch$; zL&Kyrtel43reRq$ESZM=Ov8@QuuvLCp|$+Q#wSdLi-vs(y1Es(7&t{Tz>e+O@r+@5>yC+K04( z+@(d@G)tmsdRrU)(+B~OZwWeUbPkzt%nYR}X{d(dyvP*Oh17?T7t|i*1vR(IDD~#` zNSHY?D_DXkM_6dtdZAa~!1O`~!k2cx3Ij*n-;&6&ahll{O?S{b8E5X~r)7E&nZ5qn zhYM3VlKOVq1s*Hyld5KBpie2kP|3?)$)EM1iW(Nk49k}u6KUI&tsJhdwteP3VsAN9 z*KWg9Ixu_lnY|f$4NQaklPUg!mEO(2@`D7 z_?!%1$z)aI0op!b%fOEVfh~(kv^~JG;j$B0He9|07+k&pSObaX1u(d51{hpCWvlj< zDof<;WZo=NLF@Xv%95r~WpZ&at*KqeUgVOIdEi8fE<30lq74Lfp`r&BS}2A_K`lD& z1@Aoop*X00&x0k->|xF)Qb6Tq6r2FacucQ)qhJDq5y0~>*x??1hK?8~AZ~6JyhY%7 zu;{MGgB;vFuyczL^>q&h6^rf~x%(%YJ)F~c3f(gb=m}n;yl(HkS^@c#7kP@dCsH1$ z-dHNibW03Vtx*3|O;guM6EQN|m1dEJ@CLS|1H+z;N$~2%**fVwym}a{ANaR^mFFgj z>nd!)>8ijnJpNdU4}jyiZImUc%vyoh^B3XQtDB*2+B@O#lV6_cTJUZ-c;U@N&ViGW zN8uqdc=YjWuirpEg99};kk1?-2tf#35CVII0B#%>!N|=``sr)tA-sWd2%2ICt=>#< zD>Lb8n0pN)dfUGi`~VFj14H0D;m8m;c$g#IYnaWe8ExRhXFMxt?tm5p-2Miw&9GBD zy0se|Dh(?FbUPWjEcP$YsQr$yiV!HZ7I{q?_GH+84Le}yqHd-uq>?mjm?gV6Fub72 z$g8xkD@mE~1&$+kmTS+Ed@Qf6(=S+kL$FX4o+b^Z zS?8+zTDn8p3k)BBbsewSme|`?S$3MO`d;>P_YLB;D*Gda4((l^C@Mc@*4w+Oeh?D< zY;LoZ{}xhW{$ME&3Mn>l35UN5S;~Fz7hLwhU$N2^xEk z;O*D*3QN$(T&}(t{sw1O!`~Ol9SM_dlI;@wX|GP7EKl zBO*XLlx@hMGdk`;AGt_jV#Zx&bPqZdGY}2#9uy{K++{}h=;PD!*@O6L#$CgA&nRGB zQ#WPrKgl_ln&--$Zcq@?F`CvV)2*nYh%4~cvXpglT%;U#NREq;iBmj@vKC15M^f-zf=PSp3CCBZMt1W++~VhH^F-thC~kgd{& z=h5jT)ZV2AS{nb10A0S3YY`G^hl_TQV?iKyn8vG_W=S`1eRX70u|1vK;bup zcsWp)6CV#@H>woT;DM;gsfTJJs(!8wD!?QTKW7?#j;~eh1@P98-=Y1XNvNgq&td5d zKFExm5*2$#i-7TT5R6K@jw88Ann$~4jDJ+x9kF}!XxE(XN2A@5yElt=O}g(rimz2f z%D*Es>e@mX3kBZ01Bp3d!OuwlwjI8x>qcg9psCcPT?KXBl(K?r;v(6bmdB!{t)fTB{+lBS}LMA>dbW+5hzKQm84iD zDOgGJP?DA^Nz;`i;BMp>?BhN`OchB7eIf$-r9y=h8P%a80~IP%42f|x`jkf}z7c8t zx_)8Hrw1BV+zIYk^qu_&Q~$Z_?bl_`o%JWRhT0$aPW4^w^4?z6vE^I-se9#SX$Ste z%Rj$9JM-JW-Z9G`89b=_BpS0?M~F}mp*bdzkwzT%K(M5o7tre!LemWweaYLBz)Yy; z{oq#yi{JllG9i=UpXoLfEvo5(k&8U2XAILYJi4mQ=KIehIlsH)(j!sGFp3d5^W*(S z`pLHB9mBhbo2-A&>(m>Plr-SXdv8coMD{Fa)%poEZCyjpXNmOQNvd+&w+QKyj8|J9 zDCWCs7SkWvZ}DR$g0&paYc6!`?)*g3Rbc7CyQFs3ABMAc#j~6}g}D1OC8r#Ju(kDN zrMXPA#aK?vqsON66ChP>vV;dQ3?3@PAZw^Y6)1lf06{>8pWhpPz8s=}q`N2@MK#J9 zTm$Wg{_LLb@%oHAV=SnQXs3oj&f%^ zqXURTJ2b6AM$g&jfvg^PRO4zGZRg&HC?v-Sqc%liXw~LwG7&SEuLizVjYe%)IkY@? zijIE-+StC8>s%^(c&E&Vce?lC!#kUZ>K>Iozxz+MzNgEH*)5I{)#&Pe<&t&nh4e+S zn(mm^&^-)Jubb?6snY41;HHi%4L{*fOvSk?doMVW8mlG-G7EaSf=;fWg)4Z-6$rV4 z60YDcuHYtDki!*R;R=4^3eIu`r?`S2xPpIk1qZo;aPIUf&&u$!<)W*EL!pO%_k*~J zQ~c-7PcrGlcn z?yxa1Ra65c?Szi0xWk?eQx!0DCSlIkQ0POG84nrbkaekso;~25amU@!%?TaK9icG;a~@AF3V)p>J*HCHhR#{uUj{AkpAOcNJhY^xTGDhaNzqFZ^pY<3l45&F!M!ApUeeND()3=ELPHX0NS8IFSPdyy zLxP}}WFLFU3EC$GJU@84RX-k`JUuhRQ>b&m-Yv$*R2)0Dl%J@qs}m~DD&D*|lYXveu_qf!orvZH+^dlcO zk~ZwL>}b-XgEWtDT7dv~^_?~HOXddwH5}XmUJap5VMF^)^jL8=3V8M0+`@Y(NwrZ- zRrDmGEY~AcAzr;2@oIFu>e0!v!HZ%5A$Bq}H0t9jbjmQQ)BcmW=t&x-!$GIj;7p4h z;!AzU$4pjV{W{f7N`@$+y*Hyeh5yRpSDfN*&|RnBUvsrp!4%rR?B}32xMXi;KA4yH z0A(D{6TFlscs5Van=9zd6}03E9_9*!xq^~h!C$$8o4JCVT)~xG!Ed>Ov$=v(xzk%c zDg_aRp^5aP370GCP6?s~%`iAT4!CciCvNzv2q)w-2R!`BQ*h1!*18jk<3^qz zV~rt%horNzfA_i9AeK7Z+77c?rd9oe2V%5z{&3o4nE5M~%8Had_3TJ}K2xh|XMkli6p)taj-jLyqHLQ^7F!rVgPiq8d5e6;L zSR>f1HlBiwl?Xr~WAO;!0O6oDPz1})@@;+GIlVWfitw*MxCmAs{go_CT;E#Hbm@G* zRUo1`AdN>mo>=wa%E+s{T3Vxpj9KtQ?sTa~rAI_zmT((KTz4uKG(QDf7SfN>*h+~! zN-=%)Iki?OI)83W@LD}2%I{T`=RL%`Kg9Fu@$U6__|_zphV**G_J6H!e+IM|I%<-i9xs?Fp*xOSX6ws9rNmJB zG7Y~C<#R0)e-YpKHg{Z!*XE11-vFEVNu`zro90afj}XBAmuabfG>NG+qJ~y z!Q>BsS<}X!13qYT9gNqR(>?V{lMik)H3-9ei}zPqgJ3xQ!S#f}%7T&gD{*s?10&MP zL}Z{@0WFQD1{pkwVbu?Eq~U>QYOt;cNPKYBaOwx7cpFaFFpPG_ME&qcaRW^GkJCs6 zIh?-9bPQq6dy)SoQbl#6UbQU`Vn6a>EQ{=z-f+i5!l*XC#Lg*8;cZwyBA8=XHw|c7CN?;jycn@x9QmHbnFE>))S6N!?E&k>~=Vo z6^|%g&H)M8g$fd~2fqpg=ZC>m z5S+EB`q>)Ux}ekJ055$Iq_XhZvtINOMt#}O&P zbjs+Eh#Ay4;xi1!A2X#HG%*~Jv1A?H;a&_JZ_eWDYh0`D zX7SVfI6jrGT;vDK?oo6d^I=hcEN-2olB$YZV=5B`?yY@JS)gXdyEo%`X7K3atFF3# z?!m(v=H=d29H<}k%e_vVpnz1>TkwE62jz#M~)tgB~P1Si*dl)^;zTy zI}tqUK70mz$nJnAq4Np!Kw9Dm3;Sqr$pbn*(Mb4l9#SXwx!1yT09Y-<_C)T0{oRZ{ zctppmka7wp-|vJw;LmEP8qO0E(eV*P$73(a=)Qo6j;A5L^IF6wO~wEUi!Xd$k%PwK zM5A_&=4c2yuC?Gc@RIBgyYQeo`Uwn=pUG=XD?9l+B01Bu4xSm zNoOR@G0H6oc=@YU68#?pyHZyjODUCKv0-A)y+L7Go~?6d4ribDB-MHQGhFWf{6F^I z1gxo}YXEj>i`FW&sJul4t5&P6VB08S2(hgdS0V+)R+hH3)u?PD1_>m#Xk92!wH6H| zQE3f}f>wn9LKH=6HJ}DWArJ^c1SA1N2qYx=&m<}Y!xGc?`@iph{^x-^_s&et%$+$i z_sm&S1;kSV;zQ!NkF6sh~Wa_4gqnSfEXYkZWioc zlG>7T^Rtm+tBIBYLFLKpvr)NAk%g?fT4nF*l}NHV3BnS_-baOn*`jyCgM&ME?(^|V zq@wKCTHnkA>uxC9^QzMl;H^zP=o7p55pa&QPc={-Vr1Tl9%CK`zX`kiSv#O7`k@W_ zVXO9sy{nR95MuukKOKetS%$*@yoGp1OVDnMct%6bG6jH7>=Lw^251g3EA}IzVFt2? z+>cOe8p377t(tN7=0U_cGf)(G72XC>-2=W?xZ_)h2R+a$BjxKa5FxH@@L3;_6i~|m zTrva@{q~`;ei>qX4m9j=miu)XTGKr*{j3j*r{!7iM?C1KMF^As$jGNH>)LOTBA8u~ zD44B)4LJ|?<@<~jX?>ccY&nRMCE#~cQ+;w847ia7dA(Ff zO#;wI&$7S%!Zr@}e=y~J4EF{$Muctrcskm~`&Bg^qBWsTXBD<_eXB>O!&IG`?8Yas z@|+GM-u|%&Sdt|V(T+0{84fxBTV2rVt-jEOX9k5&Ejjt|Hisp4WV%iD@n zaRie8kSanUnMA5s3&{jh#e7KKB2`R;OGhThC4HW_{U z3>CrGSHH*b8F+Io+7oo4;9+K$l-(S^7QTH?#{(^fWJMjs1;+<_;C2QxFJ`;X)5;Fr z)*@Owk^&xa>pC|1@z&qRg4LI!e|-9>NL{umj2eqE*XG(IkpArnp7 zNLQrb?Om~8EtePu#(E27V1*a_Bn8-f?e1WKHw+$641>~T$SBWh4ZgRr8RA$OV`c~3 zy=MTrk%=7I?~JihgmFz~#wSsL;7La8xFH%BB7ugknO;_kLjzE~8%z)ZZ*<0pz03>; zeD6!h_z?+J`WONBvJ>oE1R631vcUB(SQ7%?=nNuv&i<)!CeSM>Onl@;3Rr}fNawFmp61d?OtBQtE@=|^k*hCflkt%&8>8xe zzZ;LIC>8ZK_cgUV3nk@i%@}nNkT2qTLhcwDZ*DT{mX=ysRQZ%z$;c<~99Q-IHuI{r z+gRQ+U{{7@8tlrDOod$;HfI~yl_BYWH=hMIAuM9t`6b>Hvvj0O?wkvIM#Hx!xB}5C z*AT6ef@qb)h*n`CTICf)DZC1_%BP4{xxFi=U&E08ztRXrdwe7G0?-MfVsCW3(*G_G z?A9R9Iuvb@eJF{cI6-(>=LaCP0b3qKj0}<9&<;fytdKr5&&#~BD=1p#pBiODZew6-U1u7>}H^Eq^3!h=E>|l zyi9=Wbjc!Xj_zQIHQkB?{NvAG(C)0pbl<36Km7Pfz=%4Ts|+v6GPe|WxR#bg4t zxl!Vz%41Pm+v6DO8$3K&VM)+5H42>0q&G2TB0zO&dD+?!PIL?Lw)8&h-IBSh)_cn& zoo{YPl;@2rE4qG6(7c9Qn614&&|bUHb zdoNRZ@c8DbTj4k+OvLx@(0^UFZmI?t>EN_9fB_it ztY>;JJK)41H?6R9=>f3EEew?vdNu>O;*IlttjRar*h)gfp-6hPmMdww} zN}aOxxf`cfA1sRk4OZDsRs4uDF2pbYf1u5)> z(%qoDCmzib3Ljgz78Z8RN<1)Tiw4aK zcPv0W2OXe6Yipa+uVo4VusCDE7u=Zs>i3|r9wd`6M4+^cSTPHM74xPmkfQ@-Ar50A zBGrOS>AH4^O#$#PygLO#2|s;X-|(Plwygb8Xi2RQJzs{xrFoyat*aIB^1BA(7exwlbo+e-a z-?Awl0_kWHmkJ$=bO53R;8JDn6y=|0tn~cu&EEC1($m8KY$9;!W^(P(GF0zq>2J!> z@^o2;Q*+$;cIoMfa;Ij3c;`LlhQ!b&mip4d7IdH#q61|q94HHKuqa4x1P&1+(4lGs zl)i(`7n>HVbmxn+o(x1~{Ns+OjGaIe+<%{dsEqm)L}fT3k_7hsf~dSFr9doXnRuPguT>yHl`;u&Q3^1&m^GfSgTy3SIbOe`;von@g=i6w!>N<5p{ zBsxd8tx4qU@y%LE7c|yTlv^9)3BG~poN8SDRa@q?vT| z664BZMsLz-)wMNe5;YB#S#RB0oZiQwN3x$wDZD1OsJ| z%!9IT2_YXq*|!96Nyj1cx819j9su>VGdT*`)trAky*wjt@*Z~h zuN0{`!7evxSsd0*c@ar@Cdr4A!_LpocGNsp$K$)}37qcQ5~`xUgrj8Q)fCEkQa4vb z@bnaLsM($4zo>GP$60s91-5xEYN9kI?!|F~@ADFW#&N%aWDkz(2FY$5_Y+8>aNG|e z`3c8;2a+Fg-0_g?!f}V+=XG*sElSO7^WD&SmE}=Le{BjQ*vunXDmk9%zDIfyQZ`$> z-6J@-zA;%Stl+s77M8J+4n#K-Tqat+cH0fYmP6?`!>6nT;?)Hr#Ubtp6xpC6Gbn

{T>(ufMV8pAk<9)TzQlX+rT2kE{R1; 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

1dK(MQFbJWPz# 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%0D=ICt`0eNhuD&`$CD)yzZKFYB4ufF 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%0Djp?a-E0Dcc^&!sMp&U_Aqxx#vI?Bc!~ywM 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%0A`N`} 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νM)gQr5fl6g^ZvZkfeFj9 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�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 literal 0 HcmV?d00001 diff --git a/static/xml/SW_GH1804.xml b/static/xml/SW_GH1804.xml new file mode 100644 index 0000000..73f01c0 --- /dev/null +++ b/static/xml/SW_GH1804.xml @@ -0,0 +1,5910 @@ + + + + + + + + + + + + + + + A Mission to the Indians from the Indian Committee of Baltimore Yearly + Meeting to Fort Wayne, in 1804: Electronic Version + Friends Historical Library of Swarthmore College + + TEI Markup done by + Cara Ehlenfeldt + + + + + ca. 503 KB + + Friends Historical Library of Swarthmore College +
+ 500 College Avenue + Swarthmore, Pennsylvania + 19081 + United States of America +
+ +

This work is the property of the Friends Historical Library of Swarthmore + College. It may be copied freely by individuals for personal use, research, + and teaching (including distribution to classes) as long as this statement + of availability is included in the text. It may be linked to freely in + Internet editions of all kinds, including for—profit works.

+

Publishers, libraries, and other information providers interested in + providing this text in a commercial or non—profit product or from an + information server must contact Swarthmore College for licensing and cost + information.

+

Scholars interested in changing or adding to these texts by, for example, + creating a new edition of the text (electronically or in print) with + substantive editorial changes, may do so with the permission of Swarthmore + College. This is the case whether the new publication will be made available + at a cost or free of charge.

+
+ 2014 + SW_GH1804 +
+ + Native Americans and Quakers: An Electronic + Collection + + + + + + + Hopkins, Gerard T. + A Mission to the Indians from the Indian Committee of Baltimore + Yearly Meeting to Fort Wayne, in 1804 + + Bx7747.3.H77 + + Philadelphia + T. Elwood Zell + 1862 + + + + + + +
+ + + + +

Native Americans and Quakers

+
+ +

The transcribers and editor attempted to render the author’s orthography and + grammar as they appear on the page of his journal, even when the author’s own + spelling and usage are inconsistent. Additionally, many questions remain about + spelling the names of his Quaker acquaintances, individual Native Americans who + populate his journal, and Indian villages and towns. The transcribers and editor + attempted to remain faithful to the author’s Anglicized spellings in all cases. +

+
+
+ + + English + + + + + + Indians of North America + Baltimore Yearly Meeting of the Religious Society of Friends + Tyson, Martha Ellicott, 1795-1873 + Society of Friends - Indian Affairs + + + + + + + + POD edit 2016 + + + +
+ + +
+ + JOURNAL. +

Many of my friends having been solicitous for the privilege of a perusal of + the minutes I preserved in the course of my late visit to the Western + Indians, I have been induced to devote a small portion of leisure time to + the purpose of attempting such an arrangement of them, as would + convey, intelligibly, both the route we took, and the various circumstances + attending upon our journey.

+

The judicious reader will doubtless make proper allowances for the + difficulty there is in composing an entertaining diary over that of a + history, where circumstances are not necessarily confined to day and + time.

+

As a suitable introduction to my Journal, I deem it proper to insert the + following letter. It will serve to show the intercourse which had + previously taken place between the Indian + Committee of Baltimore Yearly Meeting and some of the + Indian chiefs of the Western tribes.

+
+
+ + + + +
+ + + + The Little Turtle's + Town, Sept. 18th, + 1803.From the Little Turtle, The Five + Medals, and others, to Evan + Thomas, George + Ellicott, and others.Brothers and Friends + of our hearts, + +

-We have received you speech from the hand of our friend, + Wm. Wells, with the implements + of husbandry, that you were so kind to send to his care,-all + in good order.

+

Brothers, it is our wish that the Great Spirit will enable you to + render to your Red Brethren that service which you appear to be so + desirous of doing them, and which their women and children are + so much in need of.

+

Brothers, we will try to use the articles you have sent us, and if + we should want more, we will let you know it.

+

Brothers, we are sorry to say that the minds of our people are not + so much inclined towards the cultivation of the earth as we could + wish them.

+

Brothers, our Father, the President of the United States, has + prevented our traders from selling liquor to our people, which is + the best thing he could do for his Red Children.

+

Brothers, our people appear dissatisfied, be-cause our traders do + not, as usual, bring them liquor, and, we believe, will request our + Father to let the traders bring them liquor, and if he does, + your Red Brethren are all lost forever.

+

Brothers, you will see, from what we have said, that our + prospects are bad at present, though we hope the Great Spirit will + change the minds of our people, and tell them it will be + better for them to cultivate the earth than to drink whiskey.

+

Brothers, we hope the Great Spirit will per-mit some of you to come + and see us,- when you will be able to know whether you can do + any-thing for us or not.

+

Brothers, we delivered you the sentiments of our hearts, when we + spoke to you at Baltimore,* *See Appendix. and shall say nothing + more to you at present. We now take you by the hand, and thank + you for the articles you were so kind to send us.

+ Signed, + + THE LITTLE TURTLE, + Miami Chief. + THE FIVE MEDALS, + Potowatamy Chief. + + +
+

This letter having claimed the solid consider-ation of the Committee on Indian Affairs, at a meeting + held in the city of Baltimore, the 6th of 2d month, 1804, the following + conclusion and minute was, at that time, the result of their + deliberations:

+ + + +

The subject of a visit to the Indians, agreea-bly to the desire they + express in the foregoing letter, being solidly considered, the + Committee are united in judgment, that visit to them at this + time would be the most likely means of ob- + taining a knowledge of the disposition they are + in, and enable Friends to ascertain what would be the best course + to pursue to be useful to them. The following Friends are therefore + nominated to that service, and requested to proceed in the + visit as soon as convenient, to wit: George + Ellicott, + Gerard T. Hopkins, + Joel Wright, and + Elisha Tyson.

+

They are also authorized to take one or more suitable persons with + them to reside amongst the Indians, to instruct them in agriculture + and other useful knowledge, if there should appear to be a + prospect of such an establishment being beneficial to them.

+ +
+

My name having been entered upon the minute, and thus placed upon this very + interesting appoint- ment, was to me a subject of much thoughtful-ness + and exercise; and believing finally that the peace of my own mind was + concerned in a pas-sive submission to the judgment of my friends, I + accordingly made provision for the journey, and on the 23d of the 2d month, 1804, left my home; first + witnessing those sensations due to human nature, in an affectionate + farewell to my family connexions and friends; rode to Ellicott's Mills, and joined my friend, + George Ellicott, from whence we + proceeded on our journey; taking with us Philip + Denis, a member of our So-ciety, who has concluded to + accompany us, for the purpose of residing with the Indians, in order + to instruct them in agriculture; reached Brooke-ville, and lodged at Caleb + Bentley's-making 27 miles. The weather cold, with some + snow. Nothing remarkable occurred, except that, in crossing a miry + glade, my horse fell and threw me; neither of us received a hurt.

+
+ +
+ 2d mo. 24th. +

Bade farewell to my relatives and connexions at Brookeville, and rode to Now-land's + Ferry-28 miles-a very muddy and cold day. The high wind + preventing us from cross-ing the Potomac + river, we rode to the house of + George Lepley, a neighboring farmer, where + we found good accommodations, and were kindly entertained.

+
+
+ 25th. +

Crossed the Potomac early this morn-ing, + passed over the Catoctin mountain, taking + the village of Waterford in our way; + thence through the gap of the Short + Hill, over the Blue Ridge + to Warmsley's Ferry over the Shenandoah + river; thence across the Shenandoah to the house of our friend, John McPherson, a dis-tance of 29 miles. This + day's journey has been highly entertaining; mountain rising above + mountain, and farm above farm, till we reached the summit of the Blue Ridge, from whence a most extensive and + beautiful prospect of the country, both on the east and west side of + the mountain, was full in view. From the top of this commanding + eminence, we were the specta-tors of a beautiful natural scene. A cloud, + small in its appearance, passing nearly upon a level with our + elevation, cast its shadow upon theGoose + Creek settlement below, for several miles in extent. The + precise shape of the cloud, with all its indentations, was visible in the + shadow; the indentations bearing the same enlarged pro-portions, with + the shadow, to the cloud.

+

An extraordinary deceptibility in human vision is evident, in a view of the + Shenandoah river, from the summit of + the Blue Ridge. The river, in the + estimation of some of our company, did not appear to be further from us + than the distance of half a mile and it proved to be not nearer than + three or four miles.

+
+
+ 26th. +

Passed across the Shenandoah valley, a + body of excellent limestone land. This valley is several hundred miles in + length, and general-ly from 20 to 25 miles in width, lying between the + Blue Ridge and the North Mountains. Many parts of it retain to this day the + name of barrens, though now heavily timbered, being at the time the + land was taken up, covered with scrubby bushes. On our way we crossed a + small river called the Opekon,-and it + being the first day of the week, we attended the Ridge + Meeting of Friends, after which we spent the remainder + of the day, and lodged at night, at the house of our friend, David Lupton, at the foot of the North Mountain,-having travelled 18 miles. One + of our horses faltered this morning, having been too well fed at last + night's quarters.

+
+
+ 27th. +

This day travelled 31 miles, and lodged at Clayton's Ordinary,* + *An Ordinary, is another name for a house + afford-ing indifferent entertainment. having crossed the + North Mountain, Timber + Ridge, Sandy Ridge and + Capon Mountain; also forded Great Capon river and North river. Our road led us through several long and + narrow valleys, which were well timbered and rich; we have also passed + large tracts of mountainous, uncultivated, and doubt-less never to be + cultivated land. It is said deer are very plenty in the tract through which + we have passed to-day, but none were discovered by us. Upon some of + the mountains, and also in the valleys, we observed a few tolerably + well-looking farms; we have also noticed several small sugar camps in + the course of this day's journey.

+
+
+ 28th. +

Continued our journey,-forded the + Little Capon river, the south branch of + Poto-mac, Patterson's creek, and the north branch of + Potomac. We also travelled over Little Capon Mountain, South Branch Mountain and North + Branch Mountain, passing through Springfield, + Frankford and Cresapsburg villages, reaching + Musselman's tavern, near the foot of the + Alle-ghany Mountains; making a journey + of 37 miles.

+

A snow has been falling for some hours upon the remains of a former snow ten + inches in depth. Our journey to-day has been very en-tertaining, + notwithstanding the severity of the weather, and the danger at + this time attendant, on climbing up and descending precipices.

+

There is much in a journey over these moun-tains to puzzle, as well as + amuse, the naturalist. Many extraordinary natural curiosities have + fallen under our observation, in the diversified appearance of mountains, + rocks and valleys. We have passed to-day the most ponderous, craggy + and over-jutting rocks we have heretofore met with, many of which were + elevated several hundred feet above our heads, and seemed to threaten + us with impending danger; which was not a little magnified, in our + apprehensions, from observing cast bodies of rock, which had evidently + tum-bled from their lofty summits into the valleys. Had we been + disposed to indulge fancy, we might have figured to ourselves, in a view + of these rude mountains of rocks, many of those descriptions met with + in Roman, Greek or Egyptian history, of amphitheatres, obelisks, + pyramids, &c. &c; whilst many others exhibit-ed such regular, wavy + appearences, interspersed alternately with oaks and pines, and soil of + various hues, as seemed to challenge the painter with his diversified + shades of coloring. And could we have observed here goats, white bears + and reindeer, with now and then a human being clothed in skins and + furs, and with weather a little colder, we might, perhaps, have been + led to suppose ourselves in Lapland. A few settle-ments are made in + this tract, which are mostly in the valleys. Deer are said to + be very numerous upon these mountains-several were seen by us. We also + observed seats erected in the branches of the trees by the hunters, twenty + feet in height, being concealed stations for the purpose of shoot-ing + deer at the Salt Licks. We have also seen several flocks of turkeys and + pigeons in vast numbers.

+
+
+ 29th. +

Travelled thirty miles upon the Alle-ghany + Mountains, and at night lodged at Smith's Ordinary. We have + to-day passed through land heavily timbered, tolerably level, and said to + be rich and clear of stone; of this, the snow pre-vented us from + judging. We also crossed over that part of the Alleghany ridge which divides the eastern and western + waters of our continent- the streams all bearing a right hand + direction: Near this part of the mountain, our road led us through the + most beautiful and lofty forest of spruce and pine I ever saw. This forest + is call-ed the Shades. The trees are generally from 108 to 180 feet in + height, with a body not more than 12 inches in diameter at the surface + of the earth.

+

We also forded one of the branches of the + Youghiogany river, called the Little Crossings. The principal ridges which we + passed are called by the mountaineers the Back-bone + Ridge, (from its sharp elevation,) the Winding Ridge and the + Negro Mountain. On inquiring into the + origin of the name of the latter, we were informed + that many years ago, a white man and a negro who were hunting together, + accidentally fell in with an Indian upon this ridge who was armed; + both the negro and the Indian betook them-selves to trees, presented their + guns at each other, and fired at the same moment, and both fell dead. + Thier images are cut upon the trees behind which they fell, as a memento of + the circumstance. The ridge has ever since been called the Negro Mountain.

+

Deer and turkies are numerous upon these mountains. The hunters have in many + places erected seats, as heretofore described, for the pur-pose of + shooting deer.

+

Over the greater part of our journey to-day we have found snow two feet in + depth. A tolera-ble track is however beaten for us by a descrip-tion + of pedlars, who pass by the name of Packers. These people carry on a + considerable trade be-tween the Redstone settlements and Winchester, in Virginia, as also with several other villages in the western + part of that State.

+

They take with them upon horses, bags of flax, which article they purchase + at Redstone at a low price; this they + dispose of at an advance, and in return carry salt, for which they are + well paid at Redstone. It is not + unusual to meet a Packer, having under his direction half a dozen + loaded horses. These animals on meeting travel-lers, do not turn aside from + the beaten path. We were several times under difficulties in + making our way through the snow on their account.

+
+
+ 3d mo. 1st. +

This day we travelled thirty six miles, passed through the villages + Woodstack and Uniontown, and after night reached the house + of our friend, Jonah Cadwalader, in the + neighborhood of Redstone, Old Fort, and near the Monongahela river. On our way we passed a place called the + Great Meadows, upon the + Alleghany Mountains. This place is noted + for an entrenchment, cast up by General + Washing-ton, then Colonel Washington, when retreating + from a defeat given to a small force under his command, (near the junction + of the Alleghany and Monongahela rivers,) history says by a much superior body + of French and Indians. We also passed over the spot where Gen. Braddock was buried. His army of 1200 + chosen men was de-feated near Fort Du + Quesne, in an unexpected attack by the Indians. We are told + that the + General and half this number were killed, + and sixty-four out of eighty-five of his officers; of those who + escaped was Washington, at the time + Aid-de-Camp to General Braddock. The + de-feated army brought off their dead commander and buried him in the + road, in order to elude the search of the Indians for his dead body.

+

It may be remarked that the land in the neighborhood of the Great Meadows is very level and the timber + heavy, which indicates the goodness of the soil. A considerable body + ofthis land was owned by Washington at the time of his death.

+

This day's journey has been very disagreeable and cold, owing to a continued + fall of snow. We greatly regretted that the clouds prevented a view of + the Redstone settlements from the top + of Laurel Hill, this being that part of the + Alle­ghany Mountains from which a + descent is made into the country below. From this commanding eminence + the prospect, we are told, is beautiful beyond description.

+

Our disappointment, however, was in some measure recompensed by finding + ourselves, when upon the top of this hill, not only above the clouds, + but also so elevated in a cloud as to find the particles of snow resembling + fog; a proof that large spits of snow, as they are called, ac­quire + their size by an accumulation of particles on their way from the clouds to + the earth. I may here mention, that the difficulties and fatigues of + our journey thus far have been rendered light by the agreeable company of + my brother-in-law, + Thomas Moore, and our esteemed friend, + Israel Janney, the former joining us + at Brookeville, and the latter in the + Shenandoah Valley. They are + complying with an appointment by our late Yearly Meeting, in a visit to a + Quarterly Meet­ing at Redstone.

+
+
+ +

From the 1st to the 8th of + the month, we rested at Redstone, a rest useful to our horses as well as to + ourselves. In the course of this interval, we attended Redstone Quarterly Meet-ing. There were present + several Friends from the State of Ohio, + who reside upon a part of the tract of country called the Seven Ranges. They informed us that the Indian + Chief, Tarhie,* *This was Tarhie, (or the + Crane,) Chief of the + Wyandots, whom Evan + Thomas, and other members of the Indian Committee of Baltimore Yearly + Meet-ing, visited at Upper + Sandusky, in the 6th month, + 1799, and of which a report was published in that year. See + Appendix. a + Wyandot of great distinction, with about + one hundred hunters, mostly of the Wyandot + nation, were hunting bears upon a branch of the Big Beaver, called Mahoning, within about twenty miles of their settlement, and + that a fall of snow three feet in depth had placed them in a + suffer-ing condition, they not making provision at their camp for such + an event. In this situation the Friends received the following letter from + Tar-hie.

+ + + +

My dear Brothers, Quakers, listen to what I now say to you. You + always called us Indians your brothers, and now, dear white + brothers, I am in distress, and all my young men who are with + me.

+

Brothers, will you please to help me to fill my kettles and my + horses' troughs, for I am afraid my horses will not be able to + carry me home again.

+

Neighbors, will you please to give, if it is but a + handful a piece, and fetch it out to us, for my horses are not able + to come after it

+

This is all I have to say at present.

+ TARHIE. + To my Brothers, the Quakers. + +
+

About the time of the reception of this letter, some Friends, who resided + nearest to their hunt-ing camp, furnished them with a small supply of + provisions, which occasioned a second letter from Tarhie, as follows:

+ + + +

Brother Quakers, I have a few more words to say to you.

+

Brothers, I want that you should all know what distress I am in.

+

Brothers, I want you to know I have got help from some of my near + neighbors.

+

Brothers, I would be glad to know what you will do for me, if it is + but a little.

+

Brothers, if you cannot come soon, it will do bye and bye, for my + belly is now full.

+

Brothers, I hope you have not forgot our great fathers; when they + first met, it was in friendship; we are of the same race.

+

My Brothers, Quakers, I hope our friendship will last as long as the + world stands. All I haveto say to you now is, that I shall stay + here until two more moons are gone.

+ TARHIE. + Addressed to my Brothers, the Quakers. + +
+

A considerable quantity of provisions were furnished by the Friends to these + Indians, for which they expressed great thankfulness. + Tar-hie himself divided the presents + between man and man, making no difference for distinction in rank.

+

These Friends were informed by Tarhie, that + several years ago he had sent a talk to the In-dian Committee at Baltimore, accompanied by a belt of wampum, + worth fifty dollars, and had long been waiting for an answer, but had + not yet received one.

+

In consequence of this information, a confer-ence was held at Redstone, between such of the members of the + Indian Committee as could be + convened there. The result was a request made to four Friends of the + neighborhood adjacent to the Indian camp, to visit Tarhie, and inform him that his talk was not received by + the Indian Committee, and that his belt + of wampum never came to their hands. Also, if he had any thing now to + say, he must write again to the Indian + Committee.

+

During our stay at Redstone, we had an + op-portunity of seeing and admiring the richness of the land between + the foot of the Alleghany Mountains and + the Monongahela River. The people here + seem to live in ease and plenty, and there is scarcely a plantation that + does not afford stone coal and sugar trees. The coal is, I think, + fully equal in quality to the best Liverpool coal, and is generally used + for fuel in the place ofwood; it being much easier and cheaper to pro- + cure a supply of coal, than to procure wood, not-withstanding + that article is in great plenty here.

+

The sugar trees afford sugar in plenty to those who are sufficiently + industrious to make it. Many families, we are told, make from five hundred + to a thousand pounds, and others make from eight-een to twenty-five + hundred weight, every spring. The trees do not appear to be injured by + draw-ing off the sap. Molasses of excellent quality is also made from + this tree, and also small beer, equal to any thing of the kind we met with + at this place, produced from the sap.

+

Shall I say, a proof of the instability of the human mind, under the most + bountiful supply of temporal blessings, is to be drawn from the + pre-sent disposition of the inhabitants of Redstone? Blest with a country rich and fruitful, and + posses-sing other great natural advantages, there is nevertheless a + general feeling of discontent. The new country beyond the Ohio, lately opened for sale, has set the + general mind afloat. We saw people who were well settled, and who some + years ago, too, had passed the meridian of life, strongly affected with the + prevailing mania.

+
+
+ 9th. +

The river Monongahela not having yet risen, + we are greatly disappointed in our wish and intention to take boat at + Redstone for the mouth of the + Miami of the Ohio. We have, therefore, + no other alternative than to prosecute a long and doubtless fatiguing + journey by land. This morning, whilst we were preparing to pro-eed on our route, two young men arrived at our quarters, for + the purpose of accompanying us; one of them a blacksmith, and a member of + our Society, the other a carpenter, and a steady young man. They are + under the pay of government, and have engaged to reside in the + neighborhood of Fort Wayne, to be + employed for the benefit and instruction of the Indians. Previous to + our leaving home, we had reason to expect that we should be overtaken + by these young men, and were glad to have our expectations realized.

+

Again proceeding on our journey, we passed through Brownsville, a village on the Mononga-hela River; crossed over that river in a boat, + and rode about twenty-six miles to Washington, an inland town. Our ride to-day has been + through a very hilly country, tolerably rich, though badly watered. It + is said that one of the first survey-ors of this tract of country, when + questioned re-specting its general appearance, replied, It is like a large meadow filled with stacks of + hay. A comparison very apropos.

+

It is worthy of remark, that near Brownsville, on the Monongahela, are the remains of an old fortification, + including several acres of ground. Mussel shells are yet very abnndant + within the intrenchment; and nearly opposite to the forti-fication are + two fish pots extending quite across the river; they are made of stone, + weighing gene-rally from thirty to forty pounds. It is said that the + Indians who resided near the spot at the time of its discovery + by the white men, had not even a traditional knowledge of the making of + these fish pots, nor of the erection of the fortification.

+

This day, in passing along, my mind has been involved in much serious + reflection on the im-portance of our mission. And I trust I have in no + small degree felt the responsibility we are under, not to men only, but to + the Great Author of all good, with an ardency not to be expressed, + that we may indeed discharge the trust reposed in us, and perform the duty + required of us with propriety.

+
+
+ 10th. +

Travelled thirty-four miles, and after night were glad to reach the house of + our friendJonathan Taylor, in the State + of Ohio; on our way we passed through the + small villages of Tay-lorstown and + West Liberty. The tract of coun-try + through which we have travelled is generally fertile and is mostly settled. + In the course of this day's ride, it is observable that limestone is + to be found on the tops of the highest hills, but is rarely found in the + bottoms.

+

It may now be noted that the hills between the Monongahela and the Ohio rivers + are gene-rally of a very singular description, having two or three + circular elevations, the surface of each elevation flat for the space of + twenty-five to thirty feet in diameter. These flat appearances extend + quite around the circumference of the hills, and seem to vie with art for + regularity.

+

This day we crossed in a boat the great river Ohio. On approaching it, I felt no small degree + of awe. The slow and majestic movement of so vast a body of running water, + added to the re-collection of the blood which had been spilt re-lative + to its shores, enforced the sensation. With what obstinacy the poor Indians + resisted the de-signs of the white men in making settlements west of + this river! Having been driven further and further westward, relinquished + claim to tract after tract, they here made a stand, fixed in a + re-solve, hitherto ye may come, but no farther! This river shall be + the boundary between us! It shall limit your encroachment! The + resist-ance they made, and the blood which was split, sufficiently + prove the reluctance with which they gave up the contest. The bottom upon + the west side of the river where we crossed, which was at the junction + of Short Creek, is very rich, but not + wide. In this bottom we observed a mound of earth cast up to the height of + fifteen feet, its diameter at the base forty-five feet, and said to be + a burial place, but whether made by the In-dians or not is not ascertained. + It is said that two miles below this is a square fortification + containing several acres of ground, enclosed by a bank of earth thrown up + by art to the height of eight feet.

+

Along the east shore of the river great de-struction was made a few years + ago by a species of caterpillar which infested the trees. They fed + upon the leaves, and thus killed trees of enormous size. Their + havoc extended for many miles along the river, and reached about seven + or eight miles from the shore.

+
+
+ 11th. +

This day being First-day, we rested ourselves and horses, and were glad to + have an opportunity of attending a meeting of Friends, called Short Creek Meeting. A Monthly Meet-ing is lately + established here by Redstone Quar-terly + Meeting. About forty Friends were at this meeting, and most + of them were new settlers. The greater number had moved from North Carolina. The meeting was held in a log + house or cabin, situated upon a beautiful hill, covered with lofty + timber. The difficulties and incon-veniences of a new settlement, are + rendered the more easy and tolerable, where, as in the instance of + these Friends, a number of families, by agree-ment, form a settlement in + the same neighbor-hood. In the afternoon several of them visited us at + our lodgings, and expressed sympathy with us in our undertaking.

+
+
+ 12th. +

Proceeded on our journey; travelled thirty-one miles and reached Randallstown; part of the day has been rainy, + and the riding very disagreeable. We have passed through a body of + land heavily timbered and very rich. There are yet but few settlements made + on this tract. The first settlers in this new country erect small log + cabins, which they cover with split timber called puncheons; these they pin + to the rafters with wooden pins. Nails are rarely to be + found in any part of the house. Their floors are hewn out of the + timber, and pinned to the sleepers with wooden pins. They clear their land + by killing the timber, which is done by girdling the trees, that is by + cutting the bark around the trees to the wood. They then proceed to + the cultivation of the soil, which produces them abun-dant crops.

+

It is a common practice with them to sow small grain upon the original + surface, which is harrowed in, and such is the looseness and + light-ness of the soil, there seems but little necessity for the + plough in raising the first crop of grain.

+

Our road led us across a water of the Ohio + called Captena; also several streams belonging + to a river called Stillwater; thus named + from its slow, silent progress to the Muskingum.

+
+
+ 13th. +

This day we travelled twenty-five miles and reached Beathe's Ordinary. We have had a very disagreeable day's + ride. A continued fall of rain, hail, and snow, and the road very miry + and fatiguing to our horses. The land through which we have passed not + quite so good gene-rally as that noted yesterday. We, however, saw + considerable bodies of excellent land, parti-cularly of bottoms. Some of + them were of far greater extent than any we have heretofore met with, + being heavily timbered and very rich. Scarcely a settlement has yet been + made in this tract; deer are very plenty here. It is to be + re-marked, that in riding the last fifty miles, we have scarcely seen + one of any of the descriptions of the feathered tribes, except owls. Birds + love to resort to the haunts of men.

+

Squirrels appear to be very numerous, and are mostly of a deep black color. + In the notes made on crossing the Alleghany + Mountains, I omitted to observe that the squirrels we + saw there were mostly red, and less in size than the grey squirrels of + Maryland. They are the most active + squirrel I ever saw, and are called by the mountaineers the Chipparee + Squirrel.

+

We this day crossed several of the branches ofWill's + Creek. This creek we understand derivedits name from Will, a + famous Indian, who former-ly had a town upon its banks called Willstown.

+
+
+ 14th. +

Travelled twenty-five miles, crossing in our way the main branch of + Will's Creek and a water called + Salt Creek; at night reached Zanes-ville, and lodged at M'Intire's tavern. This is a town lately laid + out on the Muskingum river, opposite to + the junction of Licking creek. Its + situation is very level and handsome, and will doubtless command the trade + of this new coun-try. As we approached the Muskingum, our roadled us upon a hill of about 200 feet + elevation, upon which we rode for a distance of seven miles; both upon + our right and left hand, were chains of hills about ten miles from us, + in view, bearing the same westerly direction, with + that upon which we travelled. The appearanceof these hills revived the + recollection of theBlue Ridge, and its + parallel mountians. Several mounds or burial places were to-day + observed by us.

+
+
+ 15th. +

This day we travelled thirty miles and lodged at a small hut called + Trimble's.

+

We ferried the beautiful river Muskingum at + Zanesville, where it is about 600 feet wide, + rode through a tolerable tract of land, till we reached a creek called + Jonathan's creek. From this creek to + the end of this day's journey, a distance of twenty miles, we rode through + land which we think preferable to any tract we have yet passed, being + more level, the timber heavier and the soil very rich; many Germans are + making settlements here. Several mounds fell under our observa-tion + to-day; we also saw many deer; seventeen of these were together in one + wheat field.

+
+
+ 16th. +

Rode thirty-two miles, and at night were permitted to lodge under a roof + called Gray's. We passed through New + Lancaster, a town lately laid out, and situated on the + greatHock-hocking river, as it is + called upon the maps. Its size greatly disappointed me; an ac-tive man + may jump from one of its banks to the other at New + Lancaster.

+

This town as well as the neighboring country, is being rapidly settled by + Germans. During our day's ride, the extraordinary beauty of + the country, as well as the superior excellency of the land, excited + our admiration. Now and then a prairie or natural meadow containing from + fifty to two hundred acres, apparently a perfect level, having neither + tree, shrub, stump, or stone, and the soil the deepest black I ever saw in + any com-position of earths, attracted our notice. These were + surrounded by higher ground, covered with lofty timber, extending to the + next prairie, and thus on till we reached a tract called the Piqua Plains. Here our admiration was afresh + excited by a view of the most beautiful scenery we had yet met with. + This tract is perfectly level; it is situated upon the Scioto river, is seven miles in length, and + generally three miles in width, hav-ing neither tree, stone or shrub, and + composed of the black earth above described; it is in part under + cultivation. About the centre of the prairie is a circular mound of large + diameter, and about forty feet in height, cast up by art. It is + covered with lofty timber. The people who cultivate these plains find them + to produce from eighty to one hundred bushels of Indian corn, and from + forty to fifty bushels of Indian corn, and from forty to fifty bushels of + wheat per acre. They plant corn at the distance of two and a half to + three feet apart, having six to eight stalks in a hill.

+

In the course of this day's journey we have seen deer and turkeys in + abundance, and for several days past have seen vast numbers + of pigeons.

+
+
+ 17th. +

Travelled fifteen miles and arrived at the town of Chilicothe, where we were well en-tertained at Tiffin's + tavern. The governor of the State of Ohio + resides here, who having heard of our arrival, paid us a visit in the + even-ing and supped with us. We were pleased with his friendly + affability. In the course of this day's short ride, our road led through a + continua-tion of the finest lands.

+

It is remarkable that there are uniformly three gradations of elevation, + from the banks of the Scioto river. The + first is a bottom of about one mile in extent, very level and covered + with black walnut, buck eye, blue ash, honey locust, and sugar trees. + Then upon another elevation of about fifteen feet, a second bottom, which + ex-tends from one to two miles, covered with the same descriptions of + timber, though heavier, and the trees standing nearer together. Then + an-other elevation about the same height, which ex-tends for many + miles, being a little inclined to hills; the timber composed of a great + variety. People are settling fast upon this tract, and several mills + are already erected upon a creek belonging to the Scioto, which we crossed, called the Killakanik.

+

On our way we turned aside from our road to view an ancient fortification. + This fortifica-tion is on the Scioto bottom adjacent to the river, and is shaped + thus.

+
+ Map of an ancient fortification along the Scioto River + + + Ancient Fortification on Scioto + River. A pictorial representa-tion of this + Indian antiquity has been published in the Smithson-ian + Contributions to Knowledge, vol, I, plate xviii. + + +
+

The bank of earth thrown up around the for-tification is about six feet + high, surrounded by a ditch upon the outside, now four feet in width, + and as many in depth. The bank is covered with lofty timber, as is also the + ground within the intrenchment. There are several mounds such as have + heretofore been described in the vicinity, and within the town of + Chilicothe there is another + fortification of which the diameter is about 450 feet. Near this is the + largest mound we have seen, being 100 feet in diameter, + and thirty feet in height, and is a globular figure of great + regularity. Three miles below the town of Chilicothe, and between the Scioto and Paint Creek, + and near their junction, is a fortification of the following figure:

+
+ Map of a fortification between the Scioto and Paint Creek + + + Containing 30 Acres. + + +
+

The banks of this ancient work are about six feet in height. The eight small + circles opposite the openings or gates are mounds of considerable + size.

+

I had omitted to mention, that on the east bank of the Scioto, nearly opposite Chilicothe, we measured to-day a sycamore tree which + was sixteen feet in diameter. The tree is hollow, and measures + thirteen feet across the hollow. New settlers have frequently encamped in + this tree with their families, whilst they were making choice of land + to settle upon.

+
+
+ 18th. +

Proceeded upon our journey fifteen miles and lodged at Platter's tavern. On + our way we passed many mounds. Several of them were of the + shape and size of the one described in the town of Chilicothe. Our attention was also arrested by the + appearance of a bank thrown up at some distance from the road; on riding + to it we found it to be a very extensive fortifica-tion. It is + situated upon a level plain near + Paint Creek, one of the waters of the + Scioto river. As this is a work of + great labor and curi-osity, I shall be minute in my description and + give the following figure.

+
+ Map of fortification on Paint Creek + + + Ancient Fortification on Paint + Creek, near Chilicothe, contain-ing within the embankments + nearly one hundred acres. + + +
+ + +

The bank which is cast up for the fortification is now fully four feet in + height, and thirty-three in width, at the base covered with lofty + timber.

+

The figure marked (A) is a very regular oval mound 500 feet in diameter, + from one extremity to another the longest way, and 300 feet in + diameter the other way; perpendicular height is about thirty feet. This + mound is paved over with stone, and has upon it trees of large size, + as well as the remains of decaying trees, which after acquiring their + full growth have fallen. The two circles marked (B) are very perfect + globular figures. They are one hundred feet in diameter, and about thrity + feet perpendicular height.

+

The remaining eight small circles represent mounds which are from eighty to + one hundred feet in diameter, and from twenty-five to thirty feet + perpendicular height, being also globular figures, and all covered with + lofty timber. The semi-circle (C) is a bank of earth thrown up to the + height of about three feet, its diameter about one hundred and fifty + feet.

+

Near the outer banks of this extraordinary fortification are many large + holes in the earth, at least one hundred feet in diameter, and of + considerable depth. These are no doubt places out of which the earth was in + part taken for making this work of labor.

+

The land through which we have passed to-day, is a continuation of a + country, very level and beautiful, being situated on Paint Creek; the soil, the same in appearance + as that de-scribed yesterday, nothing seeming to indicate its superior + richness, unless it be the size of its timber. The heaviest and most + towering trees we have seen, we met with to-day. Our progress was + impeded by our curiosity to take the girth of many trees; we measured white + oaks which were from seven to eight feet in diameter; walnuts, six to + seven feet four inches; elms, six to six feet eight inches; ash, five feet, + and honey locusts four feet in diameter; the girths taken eight feet + above the surface of the earth. These trees carried their thickness to an + amazingheight.

+

We also measured a few sycamore trees, and most of them were from eight to + ten feet in diameter; one of the sycamores we measured which was eight + feet in diameter, continued its thickness forty-five feet without a limb, + its top very branching and large. While we were admir-ing it, + Philip Dennis* suggested an opinion + that this tree, could it be split into cord-wood after the common manner, + would measure forty cords. At first we questioned the statement, but + upon making a calculation, became con-vinced that his estimate was within + bounds.

+

These were not trees singled out as the only monuments; we turned not aside + to search for them, but measured such as fell under our ownobservation + in passing over our road. It is more than probable that there + are trees in the same tract larger than any we saw. Few settlements + are yet made here.

+
+
+ 19th. +

Rode seventeen miles, and reached the residence of our friend William Lupton, upon + Lee's Creek, one of the head waters of Paint Creek. Our road led us eight times across + Paint Creek; passing a great part of + the way through the bottoms of Paint + Creek. The land the same in appearance as remarked + yesterday. In the course of our ride, we saw many hundreds of poplars + which were the more observable, as we have scarcely noticed a poplar since + we crossed the Ohio. These trees are + generally seven to eight feet six inches in diameter, many of them + continuing their thickness for fifty feet in height, and very handsome and + sound. On the bot-toms we saw deer in abundance; they were so gentle + as to allow us to pass by them quite within gun shot. They appeared to + be busy in cropping the young grass. We have also observed several + mounds and fortifications near the falls to Paint + Creek, and others nearly adjacent of which the banks are + about three and a half feet high.

+

Upon this Creek there are many beaver + dams, and beavers are still caught here by the Indians. For several days + past we have seen many hunting camps but no Indians. Several families + of Friends have settled in this remote quarter of the Western Territory. + They haveremoved from Virginia and North Carolina, + and expect to be followed by others. They tell us that an indulged + meeting is held in one of their houses.

+

There is much to induce Friends of the South-ern States, to remove to this + new country; for, added to the consideration of the superior quality + of the land, and the cheap and easy terms upon which it is to be purchased, + there is an invalu-able regulation in the Constitution of Ohio, pro-hibiting the introduction of slaves. + The Con-stitution has also provided that no person with-in the State + shall voluntarily relinquish his right to freedom. Its framers have even + gone further; they declare that they have made these regula-tions to + be binding both upon them and upontheir posterity.

+

This truly valuable country is forbidden ground to the Virginia slave holders. Many of them have + approached as near to its borders as they have dared, by settling along the + east shore of the Ohio river; their + murmurs induced several persons in the State of Ohio, to offer themselves as candidates to the late State + Legislature, de-claring their determination to use their influence in + obtaining an alteration in this part of the Constitution. We are told that + on account of this avowal, they met with the most pointed and zealous + opposition; the people declaring gene-rally, that one of the inducements + which led them to emigrate to the State, was the Constitu-tional provision by which slavery was interdicted, and that any + alteration therein would be an in-supportable grievance.

+
+
+ 20th. +

This day rode fifteen miles, and reached + Hugh Evan's, upon Clear + Creek, one of the head waters of the Rocky Fork of Paint Creek. + The country through which we have passed is up-land and lies level. + The timber is heavy and much interspersed with blue ash, hackberry, + walnut and sugar trees. There is scarcely a set-tlement yet made here.

+
+
+ 21st. +

Our progress has been impeded for several days past, two of our horses + belonging to our company having faltered. This day we concluded to + rest them by continuing at the house of Hugh + Evans, who is hearty and cheerful at seventy-four years of + age, his wife equally so, and seventy-two years of age. The old man + appears to make me welcome at his house, say-ing he knew my father, having + early in life been his neighbor, and has made many inquiries after the + families of the people who were his old ac-quaintance. He says he has six + children, all of whom have married to his satisfaction, and that they + lately removed with him from Kentucky, + and are settled around him, each of them upon five hundred acres of land + which he has given them. He says that it affords him great + conso-lation now in the decline of life, to reflect that his + acquisitions are the fruits of his honest in-dustry.

+
+
+ + 22d. +

This day rode twenty-three miles, and lodged at Sewell's Cabin,-a day of snow and rain. We crossed the + ridge which divides the waters of the Scioto from those of the Little + Miami river. Passed several of the head branches of the + latter, as also a considerable creek called the East + Fork of the Little + Miami. On one of the bottoms of the creek we noticed a + fortification. The bank cast up around was about four feet high. We also + observed within a few rods several mounds. It is truly a beautiful + country through which we have passed to-day; the land is level, covered + with lofty timber, and the soil very rich, scarcely a settlement yet + made.

+
+
+ 23d. +

Continued our journey, and after riding fourteen miles, reached the house of + Samuel Linton, at Wainsville, upon the Little + Miami river, where we were kindly received. At this + place we rested ourselves and horses, acquired information respecting our + future route, and equipped ourselves for the increasing difficulties + of the wilderness.

+

The settlement made here is composed cheifly of Friends; about thirty + families reside in this neighborhood. A Monthly Meeting is held here + called Miami Monthly Meeting, to which about + thirty families more belong who are scat-tered over an extensive tract of + country.

+

Our attention was attracted to-day by the ap-pearance of the stone, not only + in the beds of the rivers and creeks, but also upon the + hills and in the valleys. They are limestone, and are composed + altogether of marine shells. The stone when broken discovers the size and + shape of theshells very perfectly.

+

These shells are of the same description with those I have formerly obtained + from the banks of the Chesapeake Bay, in + the lower part of the State of Maryland. + It may be remarked, that no shell-fish of this description are at present + to be found in any of the waters of our Continent.

+

The country west of the Ohio river through + which we have passed is a limestone country, the very pebbles and even sand + in many places are limestone.

+

Heretofore I have omitted to mention that in the neighborhood of Chilicothe, we amused our-selves with the + earths and stones, which were dug out of the ground in sinking wells. + There are several layers or strata of limestone, gravel, and sand, + within a few feet of the surface of the earth. Some of the stones contain + the above description of marine shells, and in breaking some of the + large gravel we found appearances of the same shells. The stones as well as + the gravel have evident marks of their having been washed with water, + their shape inclining greatly to rotundity.

+
+
+ 24th. +

Again proceeded upon our journey, and after riding eight miles reached + Dayton, where we lodged. This town is + newly laid out, situ-ated upon the Great + Miami river, nearly op-posite to the junction of Still Water and Mad + river, with the Miami, which is + here about one hundred and sixty feet in width. We have passed to day + the Ridge which divides the waters of the Little and Great Miami, and + crossed several of the streams belonging to the Great Miami. The tract of country between the two, + through which we have passed to-day, is of the most beautiful and desirable + de-scription. The land lies in waves of great regu-larity, is crossed + with heavy towering timber, and the soil inexhaustibly rich. At Dayton were two block houses, which were erected + by the white men, as places of retreat and defence against an attack + by the Indians.

+
+
+ 25th. +

Rode twenty-one miles, and reached a small village called Staunton, situated upon the + Great Miami river. The country continues + to exhibit a beautiful appearance, though the timber is not generally + so heavy as noted yesterday. We passed several extensive and rich + prairies, and forded Mad river a little + above its mouth. The river derives its name from its swift current. We + also crossed several streams belonging to the + Great Miami.

+
+
+ 26th. +

This day after riding fifteen miles, we reached Flinn's ordinary, where we were disap-pointed in finding + no feed for our horses. We also received the information that there was + no probability of our obtaining provision for them short + of Fort Wayne; we therefore despatched a + part of our company to a house we had passed about four miles, in quest of + corn. They obtained four bushels, and hired a man and horse to travel + with us and bring the corn along. For many days past our horses have + suffered for want of hay, and being fed altogether upon corn they have + lost their appetites.

+

The face of the country in the course of this day's short journey is a + continuation of beautiful land; being level, and finely timbered. We + passed through a handsome prairie containing several hundred acres called + the Lower Piqua Plain, crossed Honey Creek and Lost + Creek, two considerable streams of the Great Miami.

+

Thus far in our route we have been favoredwith respect to the waters, no + rain having fallen lately to raise the creeks and rivers to a height + sufficient to detain us. In fording some of the streams we have thought + that even six inches greater depth would take our horses off their + feet. There is considerable danger in fording many of the streams we + have passed, from the uneveness of the stony bottoms of the rivers. The + beds of the rivers are mostly limestone, and being worn smooth by the + washing of the water, horses are apt to fall. This was to-day the case with + my horse in fording the Miami, from which + accident I got very wet.

+

During our detention here this afternoon, we observed a flock of birds + alighting from the trees, different in appearance from any we + had seen. Our landlord informed us they were parrots, and that they + were common upon the Great Miami; and to + gratify our curiosity he shot one. It was about the size of a dove, and its + plumage resem-bled the green parrot of South America, the head red, + and the wings tipped with the same color, the tail long and the bill and + tongue of the same description as the chattering parrot. As they + alighted from the trees, they made a hoarse noise resembling the chattering + of the common parrot.

+

There is also a woodcock here resembling the red headed woodcock of + Maryland, except that its head is + black and its bill ivory.

+

At this place General Wayne erected a + fortification when on his march against the In-dians, a part of which is + now standing. Our landlord occupies one of the houses which was at + that time built and enclosed within the stock-ade. From the late period in + the day at which our supply of corn arrived for the horses, we have + concluded to remain at our quarters; the landlord tells us we shall be + welcome to sleep upon his floor, and has promised to make us a good + fire to sleep by.

+

This is a kind of lodgment to which we have become well accustomed, having + heretofore in our journey often had to wrap ourselves in our blankets + and to lie upon floors, always observing the necessary precaution of laying + our feet to the fire; we have in no instance taken cold.

+
+
+ + + 27th. +

This day rode fourteen miles, and on our way passed a larger prairie than + the one we saw yesterday, which is called the Upper Piqua Plains. We have also passed a body of land + heavily timbered, but its very level situation renders it not desirable. + Through this tract we have found a very deep and miry road, and have + regretted the neccesity of a slow movement. Our hired man has to lead his + horse, the bag of corn being too heavy for the horse to bear his + weight also. We reached a place called Lora-mier's store, where we found a + shelter and lodged, having through the latter part of the day rode + through rain. On our way we twice crossed a considerable water of the + Miami called + Loramier's Creek.

+

At this place there is a very large fortification made by General Wayne called Fort + Loramier. And here it is that the line of division + between the white people and the Indians passes agree-ably to the + treaty of peace* *Treaty of Greenville, for which see + Appendix. between the Indians and General + Wayne. I may here remark that for many days in passing + along, we have ob-served hunting camps erected by the Indians, but no + Indians in them.

+

It is probable they are at present at or near their towns. We have observed + from day to day many curious, and to us unitelligible In-dian + hieroglyphics cut upon the trees. We have also been entertained in + examining these figures, sometimes cut, at other times painted on the + wood after cutting away the bark, the figures of elks, + the horns of the elk, the figures of buffaloes, bears, wolves, deer, + raccoons, and various other wild beasts, and birds of different species; + turtles and reptile creatures; also the representation of men, women + and children, boys with bows and arrows shooting game, and men with + their guns aiming at game, or in the act of pursuing it, &c. + &c.

+

As a testimony in favor of the virtue and modesty of these men of the woods, + I note, that we have not yet observed amongst this variety of figures, + one unchaste representation.

+
+
+ 28th. +

Rode twenty-two miles through a flat country, heavily timbered; at night we + encamped in the woods, made a large fire, fared sumptu-ously upon wild + pigeons, wrapped ourselves in our blankets and slept soundly. Our + pigeons were shot by one of our company who carries a gun. There are + at this time vast numbers of this fowl scattered over the woods. They + breed here undisturbedly. Squirrels are also very numerous. We now and + then see a few deer. They are not plenty here. Wolves, opossums, + reaccoons, and some other descriptions of wild game are abundant. We have + not yet seen a bear, though they are very plenty throughout the region + we have passed over. This is owing to a remarkable fact in the history of + this crea-ture. They betake themselves to dens in the holes of trees, + at an early period of the winter, where they remain till the + 1st of the 4th month. During this + interval they never leave their holes, and as they lay up no store for the + winter sup-ply, it is certain they live without eating. The Indians + say they live by sucking their paws. The means by which their lives are + supported in their recluse situation, I shall not undertake to + determine. I shall however observe that when taken from their dens they are + always very fat. We have met with much of their meat, and can assert + that we have seen the thickness of four inches of fat between the skin and + the lean which covers the ribs. During the winter the Indians find the + bears by searching for their dens in the trees, which they know by the + marks made by the claws of the bear in climbing.

+

We have now reached the waters of the lakes, having to day forded one of the + forks of the St. Mary's river. On our way + we passed for a few miles along a road one hundred feet wide, cut by + General Wayne's army for transporting + pro-visions from the great Miami to the + St. Mary's river. The road is now + grown up with briars and shrubs.

+

Shortly after we had made our fire, and with the approach of night we heard + at a short dis-tance from us, a whooping in the woods. We had reason + to believe from the shrill and uncom-mon whoop, that it was the voice of an + Indian, and having understood that it was a custom among them when + about to approach a camp, to give notice by a whoop, we failed + not to return the ceremony also by a whoop. In a few mo-ments two + Indian men upon a horse, followed by two women and a girl upon another + horse, rode up to our camp. Their countenances were smil-ing and + indicative of friendship. As we reached them our hands, they shook them + saying, Saga, Saga, + niches, which we have since learned was the + salutation, How do you do, brothers. They could not speak + English, but putting their hands to their breasts expressed, Delawares, + Dela-wares, from which we gathered they were + Delaware Indians. They had their hunting + ap-paratus with them, and pointing several times to the south, we + concluded they wished to make us understand that their camp was in that + direc-tion, and that they were on their way to it. After looking upon + us for some minutes they left us.

+
+
+ 29th. +

Very early this morning we again pro-ceeded, and this day rode thirty miles, + a laborious, fatiguing journey to ourselves and horses. Our path + leading through a flat country we find the travelling miry and deep. Our + horses are to be pitied, the stock of corn we procured for them is + exhausted, and the only food they can now get is the grass in the woods. + For several nights past we have turned them loose to graze. These poor + creatures feed around our camps and appear afraid to leave us.

+

This day we crossed the St. Mary's where + its width was about one hundred and fifty feet, it is + said to be a very deep river. An old Indian and his squaw reside here, and + he undertook to ferry us across in a canoe. Our horses swam the river, + and got over well. The old Indian, whose name is Stephen, very unintentionally swam also. This accident was + owing to the mis-conduct of some of the packers, who, on their way to + Fort Wayne with provisions, gave + Stephen too much whisky. Philip Dennis was in the canoe with him when he + accidentely fell over-board; we were greatly alarmed for his safety, + knowing that he was intoxicated, but after dis-appearing for a few seconds, + he rose to the sur-face of the water, and soon convinced us that he + could swim. Philip caught him by his + blanket, and got him again into the boat. The old man laughed very + heartily at the accident, saying to us in broken English, No fear, me ferry you in de canoe yet. Our + blacksmith having in-formed Stephen of + his expectation of settling in the Indian country for the benefit of the + red people, and the old man finding also that our company were all + prosecuting their travels for benevolent purposes, exercised his gratitude + by telling us You pay one quarter dollar de man; + nobody keep canoe here but Stephen; he + make the white people pay dollar, I make dem packers pay me de + rest. In Stephen's hut we + observed several Indians who were asleep. He says they are Indians who + have come a great distance and are tired. During the greater + part of this day we have rode through a heavy rain. The rain + continuing with the approach of night, we made a large fire, and erected a + shelter in imitation of the Indian hunting camps, covering it with our + blankets. Under this we slept, and were but little incommoded, + notwithstanding the rain continued during the greater part of the + night.

+

I must not omit to mention that we to-day passed through a very level plain + containing many thousand acres. This plain is almost with-out trees. + The soil nearly hid by weeds and grass of last year's growth; the + luxuriance of which plainly demonstrates its extraordinary fer-tility. + In this plain we observed a small pond or lake in which were wild geese and + ducks in abundance. We are informed that this is one of the places + where wild fowl raise their young.

+
+
+ 30th. +

Pursued our path and travelled twenty-three miles through a very fertile, + heavily tim-bered and beautiful country, being a little more inclined + to hills. The ride to-day has been a pleasing one, in part doubtless from + the reflec-tion that the day would probably close a long, tedious and + arduous journey. We at last reachedFort + Wayne. As we approached the Fort, having reached it within about thirty rods, we + were saluted by a sentinel with the word Halt. We obeyed the command. A sergeant was de-spatched from + the commanding officer, who en-quired of us on his behalf, Where are you going, and What is your business. We de-sired him to + inform the commandant that we were strangers, and that we had an + introductory letter directed to him which would explain our + business.

+

The officer shortly returned to us with an in-vitation to advance; we + accordingly proceeded, and were met very politely by the commanding + officer, Capt. Whipple, to whom we handed + the following letter from the Secretary of War.

+ + + War Department, February 20, + 1804.Gentlemen,- +

This will be handed you by Messrs. George + Ellicott, Joel Wright, + and Gerard T. Hopkins, who are a + deputation from the So-ciety of Friends in + Maryland, for + visiting the In-dians in the western country for the laudable + purpose of affording them assistance in the intro-duction of the + arts of civilization.

+

They are men of high respectability, are ac-tuated by the best + motives, and are entitled to all the civilities in your power to + bestow. You will please to afford them all necessary aid, and + treat them with such marks of respectful atten-tion as are due to + citizens whose disinterested services deserve the plaudits of every + good man.

+ I am, very respectfully, your humble servant, + Henry Dearborn.* + *General + Dearborn was well acquainted with the members of + the mission who resided at Ellicott's + Mills, and letters frequently passed between + them. He was deeply interested in the improvement of the + Indian tribes, and having heard of the deputation about to be + sent from the Friends of Maryland to + Fort Wayne, he drew up this + letter, and also the one which will be seen in the following + pages to the com-manding officer, and the Indian agent at + Detroit, and wishing to + impart all the information he possessed, to relieve a journey + to a place then considered so dis-tant a settlement, he took + the trouble to deliver them in person at Ellicott's Mills, and suggest the return of + the mission by the way of Lake Erie and + Niagara. The General was a noble + looking man, and although he had been actively engaged in our + Re-volutionary war, still appeared to be in the vigor of + life; he made the trip from Washington to Ellicott's Mills on horse-back attended by his + son and a ser-vant, a distance of forty miles, and returned + the next day in the same way. T. + To the commanding officer at Fort + Wayne. + Mr. John Johnson, Indian Factor. + Mr. William Wells, Indian Agent. + + +
+ + +

After delivering this letter we proceeded to the house of a Canadian trader, + who we had pre-viously been informed would furnish us with + accommodations.

+

In the evening the Commandant followed us to our quarters, discovering marks + of great re-spect and attention, and appears to be a gentle-man. He + has urgently pressed us to dine with him to-morrow, and we have accepted + the invi-tation.

+
+
+ 31st. +

This morning the commanding officer, accompanied by John Johnson and William + Wells, the two other persons named in the letter to the + Secretary of War, waited upon us. They expressed to us they + were glad to see us, and invited us with marks of earnestness, each + one, to make his house our home. We thanked them for their kindness, + and accepted the invitation of the Factor, John + Johnson, whom we accom-panied to his house.

+

In an interview with these three persons we communicated to them more fully + the object of our visit, and consulted with them respecting the best + mode to pursue, in order to effect our purpose. It was deemed advisable + that an ex-press be sent to the Little + Turtle and to the Five + Medals. The former residing at his town called + Turtle's Town, about eighteen miles from + this place, situated upon Eel river, a + water of theWabash, and the latter on the + river St. Joseph of Lake Michigan, about forty miles hence, in-forming them of + our arrival at Fort Wayne, and that we + wished to see each of them there at an early period. This charge William Wells readily took upon himself, and we + have no doubt he will comply with his engagement.

+

We fulfilled our promise in dining to-day withCapt. + Whipple, the commanding officer. We were all accompanied to + his house by John Johnson, who dined with + us. The officer behaved with a freedom and gentility becoming a well + bred man. After dinner he showed us more fully the fort. This fortification + which was built by General Wayne, is + large and substantial, and is situated opposite to the junction of + the + St. Mary's and St. + Joseph's rivers, and precisely the place from which those + waters take the name of the Miami of the Lake,* *Now + called the Maumee river. bearing + that name to Lake Erie. The fort commands + a beautiful view of these rivers, as also of an extent of about four + miles square of cleared land. Much of this land has been cleared by the + army of the United States, and much of it was formerly done by the + Miami Indians; they having had a large + town here. It is said that in the year 1785, the + Indian town then at this place contained upwards of one thousand warriors. + The garrison kept here at present contains about forty officers and + soldiers It being a time of profound peace with the Indians, government + have withdrawn the large force formerly kept at this station.

+

The spot where Fort Wayne is situated is + ren-dered famous in Indian history. It was here that the Indians gave + the army of General Har-mar a second + defeat by which several hundred of his men fell. Their bones lie scattered + upon the surface of the earth, and we are told that the route by which + the army made an escape can be readily traced for the distance of five + or six miles by the bones of those slain by the In-dians.

+

The grave of the Toad, nephew to the Little Turtle, a distinguished young chief, who + with the Little Turtle and other chiefs + visited the Friends of Baltimore two years ago, is here; + he died very suddenly on his return from that jour-ney. His death was + greatly lamented by the Indians, and for a long time after his burial + his grave was visited by them, and many singular ceremonies performed + over it. They buried with him his rifle, his hunting apparatus, his + best clothing, all his ornaments, trinkets, &c. &c., their + value being not less than three hundred dollars.

+
+
+ 4th month 1st. +

This day is the first day of the week, and the inhabitants of Fort Wayne appear to pay no respect to it. The + soldiers are on duty, and the Canadians who are settled here are + busied with their several occupations. Afterbreakfast we paid a visit to + William Wells, and after spending + several hours with returned to our quarters. In the afternoon we + observed three Indians advancing toward our lodgings, and soon + discovered that one of them was theFive + Medals, the other two were his sons. He had not heard of our + arrival till he reached Fort Wayne, and + the only information he had ob-tained was that some Quakers had come. + Busi-ness had brought him to the fort. They were invited into our + room, when the chief instantly recognized us both. He appeared glad to + see us, and shook hands with both of us very heartily. A person being + present who understood thePottowattamy + language, he said to him pointing to me, This is + the man who wrote our talks inBaltimore.

+ + +

The Five Medals very deliberately and + can-didly replied to our inquiry after his health as follows: That in the course of last fall he went to Detroit, that whilst there the white people + made him drink whiskey. That after he had accomplished his business + there, he set out for his home, and got upon his horse whilst the + whiskey was in his head. That he had not rode far before he fell from + his horse, and was very much hurt by the fall, and that ever since + that time he had not been well.

+

After some further mutual inquiries, relative to the welfare of red and + white acquaintance, we we informed him through an interpreter that we + had come to see our red brethren, that we had messages for both the + Little Turtle and himself, and were + glad that it had so happened that we had come. That we hoped the Little Turtle would come to-morrow, and that we + wished to see them together, having something to say to them. He + appeared pleased with this informa-tion, and expressed that he had made a + camp not far off, where he would wait for the arrival of the Little Turtle. After some general con-versation + he withdrew, bidding us farewell.

+
+
+ 4th mo. 2d. +

Being invited to dine to-day withWilliam + Wells, who is interpreter for the In-dians, we went to his + house accordingly, having the company of our very worthy and kind + land-lord.

+

About mid-day the Little Turtlearrived. He + approached us with a countenance placid be-yond description; + took us by the hand with cor-diality, and expressed himself in terms of + great gladness at meeting with us. He inquired very particularly after + his friends and acquaintance ofBaltimore, after our own welfare, the path we had come, + and the difficulties we had encoun-tered on our journey through the + wilderness. Having answered his questions, he replied in turn to our + inquiries as follows: That since he saw us it had pleased the Great Spirit + to take away two of his brothers and a nephew. That his nephew was the + Toad, a young chief who was with him + in Baltimore. That he died on his + return from that visit, and within a few miles of home, of which + circumstances he had desiredWilliam Wells + to inform us. That with respect to himself, he was but half well, having + been very sick last fall and expected to die. That his white brothers + at Fort Wayne, hearing of his illness, + sent a doctor to him who gave him physic and made him better. That he had + now seen fifty-three winters, and two of his brothers being dead, made + him think of death, and that his time would soon come.

+

He also told us that he had left a brother at his town who would have + accompanied him, being desirous to come with him, but could not find + his horse in time. After this, other conversation took place of a general + nature. The interpreter informs us that his complaint is the + gout, and that in the time of his illness he (the interpreter) + had told him that his complaint be-longed to great folks and gentlemen. + Well, said the Turtle, I always thought I was a + gentlemen.* *By the suffrage of + all who became acquainted with the Little + Turtle during his visits to Baltimore in + 1801, and also in 1807, he + was acknowledged to be a gentleman in character, appearance, and + manners. His estimate of himself therefore was not too high. For + his speech before the Indian Committee in + Balti-more in + 1801, and other information concerning + him, see appendix. T. +

+

About 2 o'clock we dined. At the head of the table sat the interpreter's + wife, who is a modest, well-looking Indian woman, and the daughter of + a distinguished chief. She had prepared for us a large well roasted wild + turkey, and also a wild turkey boiled, and for these she had pro-vided + a large supply of cranberry sauce. TheLittle + Turtle sat at table with us, and with much sociability we + all partook of an excellent dinner.

+

In the afternoon the Five Medals, attended + by his sons, visited us at William Wells' + house, and the opportunity being a suitable one, we proposed to them + that a formal conference should then take place between us. This + proposition meeting their assent, we opened the conference by desiring + the interpreter to inform them that we had received their talk sent to us + last fall, informing us that the implements of husbandry, + which we had sent to them last year, had come to them safely, and that we + had carefully ob-served all that was contained in that talk. That we + were deputed by their brothers and friends ofBaltimore to come to see them. That we had accordingly + come, and had with us a letter di-rected to them, which we thought ought in + the first place to be read, and after that we might have something to + say to them. A short pause having taken place, they expressed a desire + that the letter should be read, which was accordingly done, and + interpreted to them as follows:

+ + + From the Committee appointed for + Indian Affairs by the Friends + of Maryland to the + Little Turtle and the + Five Medals, Chiefs of the + Potto-wattamy and Miami nations of + Indians: +

Brothers and Friends- We have received your talk, communicated by + our friend William Wells, after + the reception of the implements of husbandry sent last spring for + your use. In that speech, as well as when you were in Balti-more, you have told us that you + thought it best for some of us to go out to see yoou, that we + might be better capable of judging what could be done further for + the benefit of our red breth-ren.

+

Brothers and Friends,-In compliance with your request we have named + our beloved friendsGeorge + Ellicott, Gerard T. + Hopkins, Joel + Wright, and Elisha + Tyson, to go and visit you and to take + you by the hand on our behalf. And we desire that you will receive + them, or any of them that may be enabled to perform the journey as + your brothers, in whom we have confidence, and that you will + receive any communications from them as being from us, who are + desirous of assisting you in what may add to your comfort, and + that of your women and children.

+ Your friends and brothers, + + William Stabler, + Isaac Tyson, + Benjamin + Ellicott, + John Ellicott + Edward Stabler + Philip E. Thomas + Andrew Ellicott, + Jr., + Evan Thomas, + Elisha Tyson, + Jonathan Wright, + Elias Ellicott, + Jonathan + Ellicott, + Thomas More, + Samuel Snowden. + + Baltimore, 2d. mo. 4th, 1804. + +
+

At the contents of this letter they expressed their satisfaction, and after + a pause of several minutes we addressed them through an interpre-ter + as follows:

+ + + +

Brothers and Friends.- You observe that the letter which has just + been read, makes men-tion of four of us appointed to visit you. + One of these was an infirm man who thought he could not endure + the fatigue of so long a jour-ney, and therefore did not come. The + other did not omit to come for the want of love to his red + brethren; family circumstances rendered it inconvenient for him to + leave home. You see, brothers, that it has pleased the + Great Spirit that two of us mentioned in the letter, should + reach the country of our red brethren. Brothers, we thought it + right in the first place to send for you, and to show you the + letter which has just been read. We are glad that you are now + come, and that we have this opportunity of taking you by the + hand.

+

Brothers, we believe that we have some things to say to you which + are of great importance to our red brothers, to their old men, to + their young men, to their women, and to their children.

+

Brothers, we may now mention that we have not come merely to talk, + but we hope we have come prepared to do a little for the welfare + of our red brethren.

+

Brothers, in looking over our business, we have thought that we + should be glad to have an opportunity of seeing our red brethren + together, and are willing to propose for your consideration, + that you should now fix upon some place, and agree upon some time + to meet us again, and that our brothers invite their old men, their + young men, their women and their children to meet us, when we + shall have something to say which it may not be necessary now to + say.

+

Brothers and Friends,- Should you think that the proposal which we + have now made is proper, and conclude to meet us in the manner + we have pointed out, we expect we shall have but little more to say + at present.

+ +
+

Here a pause for some minutes took place, when the Little Turtle inquired, If + the Friends had more to say. He was answered in the + negative.

+

After a further pause and some conversation between the two chiefs, they + rose from their seats, and perceiving that they were advancing toward + us, we also arose from our seats. On meet-ing them, they took us by the + hand, and with countenances indicative of great gravity, shook hands + with us and returned to their seats.

+

The Five Medals then commenced a speech as + follows:-

+ + + +

Brothers and Friends: My friend, the Lit-tle + Turtle, and myself, together with my two sons, who + are present, rejoice to have this oppor-tunity of seeing you, and + of taking you by the hand.

+

My Brothers: We are glad to be informed, that you received our talk + sent to you last fall, and to find that you are now come to the + country of your red brethren.

+

My Brothers and Friends: We rejoice that the Great Spirit has + conducted you safely to our country, and figure to ourselves that + in you we see the rest of our brothers and friends of Balti-more, and that in taking you by + the hand, we take them by the hand.

+

Brothers: We know that you have come a long distance to see the + situation of your red brethren. We have no doubt that you have + things to say which are of great importance to + us, and which do not belong to a few only but to many.

+

Brothers: Your brethren the Indians do business not as the white + people do. We con-vene our chiefs, and things of importance + are considered by them. But, brothers, you have come to see + the situation of your red brethren. It is our wish that you should + see it. You shall not be disappointed. The proposal you have + made to us we think right, and have concluded that this place + (Fort Wayne,) is the best + place to be fixed upon for the purpose you wish. We are + pleased to find that you have a desire that our young men should be + present to hear what you have to say, and as it is your wish to see + our women and children, we desire that you may have an + opportunity of seeing them.

+

Brothers and Friends: Our young men are out hunting, and our women + and children are now at work at their sugar camps. The time is + not far off when they will all return to our towns, when it is + usual to meet together. We hope, brothers, that you will not be in + a hurry, but will allow us time to collect our people + to-gether.

+ +
+

Here a pause took place, when we inquired if they had any thing further to + add. And being answered in the negative, we addressed them again in + substance as follows:

+ + + +

Brothers and Friends: When we left our homes, we knew + it was early in the season, and expected that we should ge to the + country of our red brethren at a time when their young men, + their women and children would be busy. But brothers, a part of the + service* *The Friends were desirous that their + agricul-turist, Philip + Dennis, should arrive amongst the Indians in time to + plant corn. T. which we de-sign to render to you, + required that we should come early, and makes it also necessary + that we should now be in a hurry.

+

Brothers: We will also add that when we were chosen by our friends + at home to pay a visit to our red brethren, our women and + chil-dren consented that we should leave them, but charged us + that we should not stay away from them longer than circumstances + really required. A long time has already past since we left + them, we therefore hope, brothers, that in three or four days + it will be in your power to get together some of your people. Those + that are far from home we do not wish that you should send for.

+ +
+

The Little Turtle then observed that the + res-sons we had given were good. The Five + Medals next remarked that at the time proposed, they + could easily convene a considerable number of their indolent people, who + were too lazy to hunt or make sugar, but such they did not wish us to + see. Their industrious young men and women + were too far from home to be convened in so short a time.

+

Here a short conversation took place between the chiefs, and afterwards they + proposed seven day's hence as the time; desiring that to-morrow might + not be counted, as it would take them a day to return home. To this we + consented.

+

The Five Medals then expressed as follows:

+ + + +

Brothers, it would have been very desirable to us if you could have + met us at the time of our counsel. We have very often told our + people of the Quakers. They listen to us, but are at a loss to + know what sort of people the Quakers are. If you could stay, + brothers, they would have an opportunity of seeing the Quakers, + and of hearing words from your own mouths.

+ +
+

After this the Little Turtle added:

+ + + +

Brothers: We hope the words that you may say to us at the time we + have appointed to meet will be upon paper. From that paper we + can at some future time have your words de-livered to our people. + This, brothers, will in some measure answer the end.

+ +
+

During a pause which occupied several minutes we asked them if we understood + each other. The Turtle replied, Yes, perfectly; we have nothing further to do now than to + look for-ward to the day appointed.

+

After this we took each other by the hand and very cordially bade farewell. + We then re-turned to our lodgings.

+ +

In the evening we again had the company of the chiefs, they having been + invited by our landlord to take supper with us.

+
+
+ 3d. +

This day rainy, and spent chiefly atWilliam + Wells'.

+

Besides the garrison stationed here, there is a large store of goods + established by the United States, for the purpose of suppplying the + Indians. The store is kept by our landlord. Several Canadian traders + also reside here, who exchange goods with the Indians; some of them have + re-sided here for more than thirty years. The In-dians are daily + arriving with their peltry, some of them exchange them for goods, others + re-quire money. The women bring sugar, which is generally neatly + packed in a square box made of bark, containing about fifty pounds. It + is made from the sugar tree. This art has long been known to the + Indians. They make and use large quantities of sugar. We have seen + very white and clear looking sugar of their manu-facture.

+
+
+ 4th. +

Rode about two miles up the St. Mary's + river and viewed the remains of old Indian houses, also the + fields on which they cultivated corn, where the corn hills are still + discernible. We also observed large numbers of Indian graves. These + are now discernible only by the sunken cavities in the surface of the + earth. In the course of our route we have seen many Indian graves of + more recent date. They bury their dead about three feet below + the surface of the earth; and over the grave they either place a heap + of stones or a pen of logs. If the de-ceased has been a person of + distinction, they plant posts at the head and foot which they + orna-ment very curiously.

+

In a review of the many circumstantial evi-dences which have fallen under + our observation of the former population of this western world, I am + ready to adopt the expressions of pious author:

+

Where is the dust that hath not been alive!The spade, the + plough, disturb our ancestors; From human mould we reap our daily + bread. + Young's Night Thoughts.

+
+
+ 4th month 5th. +

Spent the day with Captain Wells. We + walked with him up the St. Joseph's river, + and were shown the ground upon which the Indians under the command of the + Little Turtle defeated a part of the + United States army under General Harmar, + killing 300 out 500 men. We also followed for a considerable dis-tance + the route which the soldiers took in their retreat, and saw many of their + bones. Amongst these were skulls which had marks of the tomahawk and + scalping knife. Many of them had fallen on the east bank of the river, + and also within the river. The Indians being sta-tioned behind trees + on the west side shot them in their attempt to get across.

+

We were shown the tree behind which the + Little Turtle took his station, as also a tree + near it behind which his nephew fell. This + was a second defeat, the United States troops having been routed the + day before on Eel river.

+
+
+ 6th. +

Spent the day in the neighborhood of + Fort Wayne, in the course of which we visited + Captain Whipple. This afternoon several + In-dians from different tribes arrived, bringing with them skins and + furs. These are mostly brought by the women upon their backs, the men + thinking it sufficient to carry their guns and hunting equipments.

+

We saw this evening a white woman, who, when a small girl, had been taken + captive, and has ever since lived amongst the Pottowatamy tribe of Indians. She tells us (through an + in-terpreter) that she has no knowledge of the part of the country + from which she was taken, nor of her family. That she remembers her + name was Dolly, which is the only distinct recollec-tion she retains + of herself previous to her cap-tivity. This woman is dressed in Indian + habit, is painted after the Indian order, and has so effectually + adopted Indian manners, that a nice observer would not discover from + external ob-servation her origin, except from the color of her eyes, + which are grey.

+
+
+ 7th. +

Visited William Wells, and rode with him + up the St. Mary's about five miles. On our + way we passed several sugar camps, at which were Indian women and children + who were em-ployed in making sugar. Their huts were large, + and covered with the bark of the Buck Eye wood. Their troughs for catching + the sugar water as it is called, are made of the bark of the red elm, + they are made thin, and the ends tied together. We were shown the places + where stood the houses of several distinguished char-acters amongst + the Indians. Captain Wells also took us + to the ground, where the Little Turtle + reviewed his men, and gave them their orders before going against the army + of General St. Clair. It is an extensive + plain near the river.Wells was then one + of the number, and says theLittle Turtle + had one thousand four hundred men; St. + Clair's army consisted of a much larger number, and were + about fifty miles distant at the time. The Little + Turtle divided his men into bands or messes, to each mess + twenty men. It was the business of four of this number alter-nately to + hunt for provisions. At 12 o'clock each day it was the duty of the hunters + to re-turn to the army with what they had killed. By this regulation, + his warriors were well supplied with provisions, during the seven day's in + which they were advancing from this place to the field of battle. It + is well known that at day break the Indians commenced an unexpected + attack upon St. Clair's forces, killed + nine hundred of his men, and put his whole army to flight.Wells says, that only about thirty Indians were + killed in the battle, and that about twenty died afterwards of + their wounds. He also related the following anecdote:

+

A considerable altercation arose amongst the Indians on the review ground, + relative to a Commander-in-Chief. Some were in favor of + Buckangehelas, a principal chief amongst the + Delawares, whilst others were in favor of the + Little Turtle. At length Buckangehelas himself decided the controversy + by yielding to the Little Turtle, saying + that he was the youngest and most active man, and that he preferred him to + him-self. This reconciled the parties, and the Little Turtle took the command.

+

We also rode to view a prairie which extends from the St. Mary's river to the Little + river, a branch of the Wabash. The distance from one to the other is not more than + four miles, and the highest ground is not more than five feet above + the water in either river. The Indians say that in high freshets they have + passed from one water to the other in their canoes. A canal might + easily be cut here, and at a small expense, by which the waters of the + lakes and the waters of the Ohio, (and of + course the Mississippi) would be + connected. An abundance of furs and skins taken on the waters of the + Ohio and the Wabash, are brought up the latter river in boats by the + Canadians and the Indians, and thence taken across a portage of eight miles + to the Miami of the Lakes,* *The Maumee river. + whence they are + again conveyed by water to Detroit; goods suit-able for the Indian trade are also + transported back again by the same route.

+

After spending some time in viewing the re-mains of several old Indian + towns, graves, hiero-glyphics, &c. &c. &c., we returned to + William Wells' house, where we dined, + and in the even-ing returned to our lodgings.

+
+
+ 8th. +

Paid a visit to the carpenter and black-smith who accompanied us as before + mentioned. They are both at work. The blacksmith is re-pairing Indian + guns, and the carpenter is at work upon a council house which the + govern-ment has ordered to be built for the Indians at their request. + The house is to be built of hewn logs, fifty feet in length, and + twenty-five in width. We also amused ourselves in attending to the + manner of packing furs and skins. Our friend Jonathan has several Canadians + now employed in that business. They are packed by a ma-chine + constructed for the purpose, by which the work is performed expeditiously. + The packs are made in squares of about two and a half feet, and + contain from thirty-five to forty deer skins, or about two hundred raccoon + skins.

+
+
+ 9th. +

On the evening of this day, we received a message from the Little Turtle, informing us that the Indians + had arrived, and that they would be ready to meet us at 10 o'clock the + next morning.

+
+
+ 4th mo. 10th. +

At 10 o'clock this morning we proceeded to William Wells', who, as we before observed, is + interpreter for the Indians. We were accompanied by our friend John Johnson,Captain + Whipple, Lieutenants Campbell + andSimms, and several other reputable persons, + and were met by the following chiefs:

+

O-bas-se-a, (or the Fawn,) a village chief + of great distinction in the Miami + nation.

+

Os-so-mit, a village chief of the Pottowattamy nation, and brother to the Five Medals.

+

Me-she-ke-na-que, or the Little Turtle, a war chief of the Miami nation.

+

They were attended by a considerable num-ber of their principal young men, + and by several women.

+

The Five Medals was not present. He had + informed us on taking leave, that circumstances required him to return to + his town, and that the distance would be too great for him to return + in time to meet us, his infirmities occasioning him to travel slowly, + but that he would send his brother, who would report to him faithfully + all the proceedings of the council.

+

After we had taken each other by the hand, the chiefs took their seats by + the side of each other. Their principal people next seated them-selves + according to the rank or distinction which they held. After them, their + young men in circular order, seat after seat,- and lastly, the women,- + who occupied seats separate from the men, being placed near the centre of + the room.

+ +

We took our seats on the opposite side of the house and in front of the + Indians.

+

Being all thus seated- I speak literally, when I say my heart palpitated- I + felt the importance and dignity of our mission; I wished our heads + were wiser, and feared for the result of so in-teresting an + opportunity.

+

After a few minutes had passed, the Little + Turtle observed, that when we met before, they had informed + us of the difficulty there was in convening the Indians at so early a + period in the season, and that those of their people then present with + him were all who were likely to attend to listen to what we had to say.

+

We then proposed that the letter from our friends and brothers at home, read + to the Five Medals and the Little Turtle at the time of our first meeting, + should be again read for the in-formation of our Indian brethren now + attend-ing.

+

This proposal was deemed proper, and the letter was accordingly read.

+

After a short pause, we addressed them as follows:

+ + + +

Brothers and Friends: We know that the most of our Red Brethren are, + at present, at their hunting and sugar camps, and did not + ex-pect to see a large number at so short a notice. We have, + therefore, agreeably to your request, put upon paper the things we + have to say, and hope you will not fail to have them communi- + cated, when, at some future time, you may be more + generally assembled.

+ +
+

One of us, then standing up, read to them the following address: The + interpreter, also standing between us and the Indians, interpreted our + com-munication:

+ + + + The Address of George + Ellicott and Gerard T. + Hopkins, delivered to the Little Turtle and the Five + Medals, Chiefs of the + Miami and Pottowattamy nations of Indians, and + others. +

Brothers and Friends: When we were to-gether, eight days ago, with + the Little Turtle and the + Five Medals, the letter was read + to them, which has just been read. That letter, you observe, + says that we were appointed by the people called Quakers, of Baltimore, to visit you, and to take you by + the hand on their be-half, desiring that you would receive any + com-munications from us, as coming immediately from them.

+

Brothers: After that letter was read, our hearts were filled with so + much love for our Red Brethren, that, on looking over and + considering the business upon which we had come, we felt a + desire to see as many together as could be convened- and this day + was that agreed upon for us to meet you.

+

Brothers: We believed that the things we had to say were of great + importance to our Red Brethren, and therefore it was that we + request-ed to see you together, that you all might have an + opportunity of hearing what we have to say.

+ +

Brothers: Our hearts are filled with thank-fulness to the Great + Spirit, that He has brought us safely to the country of our + Red Brethren, and protected us through the journey. We also + rejoice that He has given us this oppor-tunity of seeing you, and + of taking you by the hand.

+

Brothers: It is now a little more than two years since your Brothers + of Baltimore had an opportunity + of becoming acquainted with theFive + Medals, the Little + Turtle, Tuthinipee, + and some other chiefs. They were glad of that op-portunity of + having a talk with them, and of enquiring after the situation of + their Red Brethren.

+

Brothers: We had for some time entertain-ed apprehensions, that the + many changes which were taking place in circumstances, must + greatly change the situation of our Red Brethren, and that the + time was fast approaching, in which it would be necessary for them + to alter their mode of living.

+

Brothers: After our talk with the chiefs whom we have just + mentioned, we were fully con-vinced that the time was come, in + which our Red Brethren ought to begin to cultivate their + lands; that they ought to raise corn and other grain, also + horses, cows, sheep, hogs, and other animals. We then proposed to + afford them some assist-ance. They appeared to be glad of the + proposal, and informed that many of their people + were disposed to turn heir attention to the cultiva-tion of + the earth. They also expressed a desire to be assisted by their + Brothers of Baltimore.

+

Brothers: Having been encouraged by the opportunity which we then + had, we sent to the care of the Agent for Indian Affairs some + ploughs, harness for horses, axes, hoes, and other imple-ments + of husbandry, which were made for the use of our Red Brethren, and + desired that they might be distributed amongst them as tokens + of our friendship.

+

Brothers: We received last fall, through the hands of the Agent for + Indian Affairs, a talk from the Little + Turtle, the Five + Medals, and others, informing us that they had + received the implements of husbandry, and requested that their + Brothers of Baltimore would + send some of their people into the country of their Red + Brethren for the purpose of seing their situation, and showing them + how to make use of the tools, saying they did not know how to + begin.

+

Brothers: It is for these purposes that we have now come; and we + again repeat, that we rejoice we have the opportunity of seeing + you, and of taking you by the hand.

+

Brothers: In coming into the country of our Red Brethren, we have + come with our eyes open. And although we are affected with sorrow, + in believing that many of the Red Brethren suffer + much for the want of food and for the want of clothing, yet our + hearts have been made glad, in seeing that it has pleased the Great + Spirit to give you a rich and valuable country. Because we + know that it is out of the earth that food and clothing come. We + are sure, brothers, that with but little labor and attention, you + may raise much more corn and other grain than will be + necessary for yourselves, your women and chil-dren, and may also, + with great ease, raise many more horses, cows, sheep, hogs and + other valuable animals, than will be necessary for your own + use. We are also confident, that if you will pursue our method + in the cultivation of your land, you will live in much greater ease + and plenty, and with much less fatigue and toil, than + attend hunting, for a subsistence.

+

Brothers: We are fully convinced, that if you will adopt our mode of + cultivating the earth, and of raising useful animals, you will find + it to be a mode of living, not only far more plentiful and + much less fatiguing, but also much more certain, and which will + expose your bodies less to the inclemencies of the weather than is + now attendant upon hunting. It will lead you, brothers, to + have fixed homes. You will build comfortable dwelling-houses for + yourselves, your women and children, where you may be + shelter-ed from the rain, from the frost, and from the snow, + and where you may enjoy in plenty the rewards of your labors.

+ +

Brothers: In laying these things before you, we have no other motive + than a desire of heart for the improvement, the benefit and + the welfare of our Red Brethren- and therefore it is that we + speak with freedom, and we hope, that what we have to say, will go + in at one ear, and not come out the other, but that it will be + remembered by our Red Brethren. For we know, brothers, that we + shall not be ashamed of what we say, when, in time to come, you + com-pare the things we are saying to you with your experience + in practising them.

+

Brothers: We will here mention, that the time was, when the + forefathers of your brothers, the white people, lived beyond the + great water, in the same manner that our Red Brethren now + live. The winters can yet be counted when they went almost naked, + when they procured their living by fishing, and by the bow and + arrow in hunting- and when they lived in houses no bet-ter + than yours. They were encouraged by some who came from the + sun-rising, and lived amongst them, to change their mode of living. + They did change- they cultivated the earth, and we are sure + the change was a happy one.

+

Brothers and Friends: We are not ashamed to acknowledge that the + time was when our fore-fathers rejoiced at finding a wild plumb + tree, or at killing a little game, and that they wandered up + and down, living on the uncertain supplies of fishing and hunting. + But, brothers, for your encouragement, we now mention + that, by turn-ing their attention to the cultivation of the + earth, instead of the plumb tree, they soon had orchards of many + kinds of good fruits- instead of wild game, they soon had large + numbers of cattle, horses, sheep, hogs, and other valuable + animals,- and in many places, instead of their forests, they had + large fields of corn and other grain, as also many other valuable + productions of the earth.

+

Brothers: We hope your eyes will be open to see clearly, the things + which are best for you, and that you will desire to pursue them. + We believe, brothers, that it is in the heart of your father, + the President of the United States, to assist his red children in + the cultivation of the earth, and to render them services which + will be greatly for their benefit and welfare. We hope that + your exertions to change your present mode of living will be so + plain to him, that he will see them. This will encourage him to + continue to aid you, in your endeavors.

+

Brothers, we have spoken plainly; we de-sire to speak plainly. We + will now tell you that we have not come merely to talk to you. + We have come prepared to render you a little assistance. Our + beloved brother, Philip Dennis, + who is now present, has come along with us. His desire is to + cultivate for you a field of corn; also, to show you how to raise + some of the other productions of the earth. He knows how to + use the plough, the hoe, the axe, and other + imple-ments of husbandry.

+

Brothers, we here ask you, are you still de-sirous to be instructed + by us, in the cultivation of your lands? If you say you are, our + brother, whom we have just mentioned, will continue with you + during the summer. We shall leave it to you to show him the spot + where to begin to work.

+

Brothers, he has left a farm, he has left a wife, and five small + children, who are very dear to him; he has come from a sincere + desire to be useful to our red brothers. His motives are pure, + he will ask no reward from you, for his services, his greatest + reward will be in the satis-faction he will feel in finding you + inclined to take hold of the same tools which he takes hold + of, to receive from him instruction in the culti-vation of your + lands, and to pursue the example he will set you.

+

Brothers, we hope you will make the situa-tion of our brother as + comfortable as circum-stances will admit. We hope, also, that + many of your young men will be willing to be taught by him, to + use the plough, the hoe, and other implements of husbandry. For we + are sure, brothers, that as you take hold of such tools as are + in the hands of the white people, you will find them to be to you + like having additional hands. You will also find that by using + them, they will enable you to do many things + which, without them, cannot be performed.

+

Brothers, there is one thing more which we wish to add. The white + people, in order to get their land cultivated, find it necessary + that their young men should be employed in it, and not their + women. Women are less than men. They are not as strong as men. They + are not as able to endure fatigue as men. It is the business + of our women to be employed in our houses, to keep them clean, + to sew, to knit, spin, and weave, to dress food for themselves and + families, to make clothes for the men and the rest of their + families, to keep the clothes of their families clean, and to take + care of their children.

+

Brothers, we desire not to mention too many things to you, but we + must add a little further. We are fully convinced that if you will + turn your attention to the cultivation of the earth, to + rais-ing the different kinds of grain, to erecting mills for + grinding grain, to building comfortable dwell-ing houses for your + families, to raising useful animals- amongst others, sheep, for the + advan-tage of the wool, in making clothing- to raising flax + and hemp for your linen; and your young women learn to spin and + weave, that your lives would be easier and happier than at + present, and that your numbers will increase, and not continue + to diminish. As we observed, brothers, your land is good. It is far + better than the land the white people near the great water cultivate. We are persuaded that your land will produce + double the quantity of any kind of grain, or of flax, or of hemp, + with the same labor necessary near the great water.

+

Brothers and Friends: We shall now end what we have to say, with + informing you thatall the corn, and other productions of the + earth, which Philip Dennis may + raise, we wish our red brethren to accept of, as a token of + our friendship. And it is our desire that the chiefs of + Pottowatamy and Miami nations, who are now present, added to our + brothers, the Five Medals, + Tuthenipee, and Philip Dennis, make such a distribution + thereof as they may think proper. * The + address was published in pamphlet form in + Baltimore, by the Indian Committee in 1804, and also appeared in the newspapers of the + period, and was much commended for its earnest and + enlightened simplicity. T.

+ +
+

The Indians observed great gravity and de-corum, during the time of our + addressing them, and seemed to reiterate the sentiments delivered by + repeated shouts.

+

At the close of our communication, a short pause took place, during which we + informed them that we had no more to add at present, but wished them + to speak freely. After which a conversation, occupying several minutes + took place between the chiefs, and some of their principal + men, which being in the Indian lan-guage was to us unintelligible. They + then rose upon their feet, and shook hands with us with great + solemnity, and returned to their seats.

+

In a few moments the Little Turtle arose + and delivered the following speech, which one of us* Gerard Hopkins, who was a + fine short hand writer. T. wrote in short hand, from the + mouth of the In-terpreter.

+ + + +

Brothers, it appears to me to be necessary that I should give you an + immediate answer, as you are about to return to your families + from whence you came.

+

My Brothers and Friends, we are all pleased to see you here, and to + take our brothers, the Quakers, through you by the hand. We + re-joice that the Great Spirit has appointed that we should + this day meet. For we believe, that this meeting will be of the + utmost consequence to your red brethren.

+

Brothers, what you have said, we have care-fully gathered up, we + have placed it in our hearts, in order that it may be communicated + to our posterity. We are convinced that what you have said is + for the good of your red brethren. We are also convinced that our + chiefs and war-riors, our women and children will be all of our + opinion, and will be glad when they have + heard what you have said.

+

Brothers, we take you now by the hand, and through you we take the + people who sent you here by the hand, and assure you we are + pleased that the Great Spirit has let us see each other, and + converse together upon the subjects which you have communicated to + us.

+

Brothers, you see there is not a large num-ber of us here. What you + have said to us will not remain with those who are here alone. + It will be communicated to all your red brethren in this + country. And I again repeat, that I am convinced they will be glad + to hear what you have said to us, to our women and children.

+

Brothers, when we saw you with the rest of our brothers in + Baltimore, upwards of two + years ago, I expect you recollect perfectly the conver-sation + between us at that time and place. I, there with my brother chiefs, + told you that we were glad to find you so much disposed to + assist us, our women and children. We told you that your good + wished should be made known to all your red brethren in this + country, which has been done.

+

Brothers, ever since that time, I, as well as some others of my + brother chiefs, have been en-deavoring to turn the minds of our + people to-wards the cultivation of the earth, but I am sorry + to say we have not yet been able to effect any thing.

+ +

Brothers, there are so few of our chiefs now present, it would not + be proper for us to under-take to give a pointed answer to your + talk. We expect that in a few moons there will be many of our + people together. At that time it will be proper that we should + return an answer to all the subjects you now mention to us.

+

Brothers, the things you have said to us re-quire the greatest + attention. It appears to me to be really necessary to deliberate + upon them. In order to do so, we must beg to leave the paper + upon which they are written, that we may com-municate them to our + chiefs when they assemble.

+

Brothers, all the words which you have said to-day were certainly + calculated for our good. You have enumerated to us the different + kinds of grain and animals we ought to raise for our comfort. + You have told us that if we all adopt the plan you have proposed, + we should want for nothing. This, brothers, myself and many of + our people believe is true, and we hope we shall finally be + able to convince our young men that this is the plan we ought to + adopt to get our living.

+

Brothers, you have come a long distance to render service to us. We + hope that you will meet with the success you wish, you have + been very particular in pointing out to us what will be for + our good. You have also been very par-ticular in pointing out to us + the duties of our women, and you have told us that in adopting + your mode of living, our numbers would increase and + not diminish. In all this I perfectly agree with you. And I hope + the other chiefs will also agree with you.

+

Brothers, we are pleased to hear you say you are going to leave one + of your brothers with us, to show us in what manner you cultivate + the earth. We shall endeavor, brothers, to make his situation + amongst us as agreeable to him as will be possible for us.

+

Brothers, we are convinced that the plan you propose will be highly + advantageous to your red brethren. We are also convinced that + you have observed very justly that we shall not then be liable + to sickness. We are certain that we shall then be able to make a + more comfortable living with less labor than at present. And I + hope that this will be the opinion of us all.

+

Brothers, assure your people who sent you here, tell your old chiefs + that we are obliged to them for their friendly offers to assist us + in changing our present mode of living; tell them that it is a + work which cannot be done immediate-ly,- that we are + that way disposed, and we hope it will take place gradually.

+ +
+

Here the speaker sat down for a short time, and then rose again, saying,

+ + + +

Brothers, my heart is so overjoyed and warmed with what you have + said, that I find I had forgot to mention one of the most + important things.

+

Brothers, at the time we first met at this place, the Five Medals and myself formed some idea + of your business. We expected you had come to do for us the things + you had proposed to us when in Baltimore. We consulted each other upon the answer + necessary to return to you in every respect, and I now find that + our idea was right.

+

Brothers, the sentiments which I have de-livered to you were his + sentiments. You have now told us, that your brother has a mind + to live amongst us to show us how to cultivate the earth, and + have desired us to show him the spot where to begin. We agreed + then, that he should be at neither of our villages, lest our + younger brothers should be jealous of our taking him to + ourselves. We have determined to place him on the Waash, where some of our families will + follow him,-where our young men I hope will flock to him, and where + he will be able to in-struct them as he wished. This is all I have + to say. I could all day repeat the sentiments I have already + expressed; also how much I have been gratified in + seeing and hearing my brothers; but that is not necessary. I am + sorry, brothers, that the chiefs of our country are not all + present, that they might all hear what you have said, and have + an opportunity of talking to you.

+ +
+

At the close of this speech we were informed that nothing would be added by + the Indians to the communication made by the Little + Turtle. We then told them that the words spoken by the + Little Turtle should be carefully + carried home to our brothers and friends who had sent us. We also + informed them that notwithstanding we were now desirous to return to our + homes as soon as possible, yet we wished to see the place which they + designed to be the station of our brother, Philip + Dennis, and hoped some of them would show it to us. We + further added, that this did not arise from any jealousy in our minds + that the place fixed upon was not suitable. On the contrary, we had no + doubt that they had judged wisely; but that the love and respect which + we bore to our brother, led us to desire to bear him company to the place, + and also to ren-der him every assistance in our power before we left + him.

+

They then informed us that they would con-sult and fix upon some one to go + with us. The business of the council being then at an end, we in turn + rose from our seats, and shook hands with them, which concluded the + formalities of the opportunity. After entering into a little conversation, we told them we should now bid them farewell, as we + expected we should not see them again. They then took us separately by + the hand, and with marks of great affection and friendship bade us + farewell, and we returned to our quarters.

+
+
+ 4th month 12th. +

Being a fine pleasant morn-ing we set out for the place on the Wabash as-signed by the Indians to Philip Dennis. We were accompanied by Wiliam Wells and Mas-sanonga, (or Clear Sky,) a handsome young man of + the Wea tribe, deputed by the Indians to pilot + us, who (by the bye) says he shall be the first young man to take hold of + Philip Dennis' plough.

+

After riding eight miles, we came to the place called the Portage, on the Little + river, a navigable water of the Wabash. Then down the margin of the river, leaving it to + our left. At the end of four miles, crossed Sandy + Creek, another navi-gable water of the Wabash; then proceeded through the woods, and at the end of + thirteen miles further again came to Little + river, at a place called the Saddle. This name is derived from a large rock in the bed + of the river in the shape of a saddle. From the Saddle we pro-ceeded six miles along the margin of the + river to its junction with the Wabash.

+

The bed of the Wabash here is of limestone. + After riding five miles further, we came to a vein of land + about one mile in width, the sur-face of which is covered with small flint + stones, and which we are told extends for several miles.On examining + these flints, we found them of excellent quality.

+

Here the Indians supply themselves with flints for their guns and for other + purposes, and here formerly they procured their darts. It has + cer-tainly been a place abundantly resorted to from time immemorial. + This is evident from the sur-face of the ground being dug in holes of two + and three feet in depth, over nearly the whole tract. This flinty vein + is called by the Indians Father Flint. + They have a tradition concerning its origin which is very incredible. From + this we proceeded, and after riding two miles, reached the place + proposed by the Indians.

+

This place is thirty-two miles rather south of west from Fort Wayne, and is situated on the + Wabash, at a place called the Boat-yard, + which name it obtained from the circumstance of + General Wilkinson having built some flat, + bottomed boats here, for the purpose of tran-sporting some of the baggage + of the American troops down the river. It was formerly the seat of an + Indian town of the Delawares, and we are + pleased to find there are about twenty-five acres of land clear. The + Wabash here makes a beau-tiful + appearance, and is about sixty yards wide. A little above is an island in + the river, on one side of which the water runs with a strong cur-rent, and affords a good mill seat. We viewed the land in this + neighborhood for a considerable distance, and found it high and of + superior quality, being covered with sugar trees of enor-mous size, + black walnut, white walnut, hack-berry, blue ash, oak buckeye trees, + &c., all very large. The land appears to be equal in quality to + any we have seen, not excepting the bottoms of the Scioto and Paint Creek. About + half a mile below, a handsome creek falls into the river from the + north, which we traced for a consider-able distance, and are convinced it + affords a good mill seat. This creek bearing no name, we called it + Dennis' Creek in honor of Philip Dennis.

+

As night approached, Massanonga, taking + his knife, left us, and in about fifteen minutes re-turned with a + remarkably fine turkey. This he prepared and roasted for us in a very nice + and expeditious manner, on which we fared sumptu-ously. At 9 o'clock + we wrapped ourselves in our blankets, and laid down to sleep before + the fire, having no shelter. The night was frosty; we, however, slept + tolerably and took no cold.

+

In the night the otters were very noisy along the river, the deer also + approached our fire and made a whistling noise; the wolves howled, and + at the dawn of day turkies gobbled in all direct-tions.

+
+
+ 13th. +

Early this morning we arose, and breakfasted on the remains of the turkey + cooked last evening, after which we fixed upon the place + for Philip Dennis' farm; we also staked out + the situation for his wigwam, which is about one hundred feet from the + banks of the Wabash, and opposite to a + fine spring of excellent water issuing out of the bank of the river.

+

We are told by several persons well acquainted with the country, that from + hence to St. Vin-cennes, on the + Wabash, a distance of two hun-dred + miles by land, and three hundred and fifty by water, the land on both sides + of the river embracing a very extensive width, is not inferior to the + description given of this location in yes-terday's notes.

+

At Mississinaway, a large Indian town of the + Miami's, situated about thirty miles below + us, on the Wabash, stone coal is found, + which with limestone continues for two hundred miles down the + river.

+

There are no Indians between this and Fort + Wayne, neither any between this and Mississin-away. Philip + Dennis' nearest neighbors will be at the Little Turtle's town, eighteen miles + dis-tant. Whilst here we have seen four peroques loaded with peltry, + manned by Canadians and In-dians, on their way up the river to be + tran-sported to Detroit.

+

I may here observe that the Wabash affords + an abundance of large turtles, called soft shelled turtles, the outer coat + being a hard skin, rather than a shell. They are esteemed excellent + food. It affords a great variety of fine fish, and we saw + ducks in abundance; we are told it is re-sorted to by geese and swans.

+

About 8 o'clock in the morning we set out for Fort + Wayne, where we arrived about 3 o'clock in the afternoon, + and after dining with William Wells + returned to our lodgings.

+
+
+ 14th. +

I may here observe that some days ago we came to a conclusion to return home + by the way of the lakes; to this we have been induced from a hope that + we shall be subjected to fewer difficulties and much less fatigue than to + retrace the way by which we came; and I may also add, that we have + been encouraged to this by the advice of our kind friends heretofore + named, who have with much apparent cheefulness offered to prepare a + way for us; and this morn-ing being informed by our worthy friend, + Cap-tain Whipple, that the boat + intended for us would be in readiness against to-morrow, we spent the + day in making preparations, and in writing to our families.

+
+
+ 15th. +

This morning we bade both a joyful and sorrowful farewell to Philip Dennis, and the two young men who + accompanied us out. We also took leave of those generally with whom we + had formed an acquaintance, first breakfast-ing with Captain Whipple, whose hearty kind-ness to us has been so + often repeated, that his name will deservedly claim a place in our + re-membrance. He has fitted out a perogue for us and + manned it with a corporal and private soldier from the fort; and, joined by + John John-son and William Wells, has stocked it with an apparent + superabundant supply both for eating and drinking.

+

About 8 o'clock we embarked for Detroit, + pro-ceeded about thirty miles down the Miami of the lakes, and in the evening encamped under a + tent near the margin of the river. With respect to the appearance of + the country, the same old phrase must be continued; land of + excellent quality. We several times went ashore to view the + river bottoms, they were extensive and ap-peared to be first rate land. The + timber, buck eye, ash, elm, sugar tree, oak, hickory, black and white + walnut, &c. We saw ducks in abun-dance, and Corporal + King says they breed here in great numbers. This river + affords a variety of fine fish, and mostly of descriptions very + dif-ferent from those found in our salt waters. Of these the following + are some of the names; black, yellow, and white bass, covers, + pickerel, suckers, herrings, muscanago, gar, pike, catfish, + sheeps-head, carp, and sturgeon. These are all caught with the hook except + the two last.

+

The sturgeon are now on their way from the lake to the head waters of the + St. Joseph's and + St. Mary's rivers. In company with the + Little Turtle, our friends, John Johnson, William + Wells, and some others, whilst at Fort + Wayne, the conversation turned upon fish, and the + then running up of the sturgeon; the Little Turtle very humorously proposed to Johnson a project, which was to join in + building a stone dam at the junction of the two rivers, to prevent the + sturgeon from getting back again to the lake, and then said he you and I will live on them this summer.

+

We observed to-day (15th,) several hunting + and sugar camps, and went on shore to visit two of the latter. The camps + were well supplied with jerk venison, dried raccoon, sturgeon, + &c.; one man only was at the camp, and he was em-ployed with his + knife in making a paddle for his canoe. A squaw was knitting a bag, and + an-other was preparing the bark of the buckeye for thread, strings, + &c., by beating it with a piece of wood. We saw amongst them several + fat and healthy looking children, who were playful and did not appear + to be afraid of us. The children presented us with a quarter of fresh + venison, for which we returned them some salt meat and bis-cuit, with + which they were pleased. Here we saw a child about six months old fixed to + a board in the genuine Indian fashion. The board was straight, about + fifteen inches in width, and two and a half feet in length, having at its + head a circular handle, and at the foot a small ledge To this the + child was lashed by cloth bandages, and so tight that it could not move + hand or foot. The board was placed against a tree, almost + per-pendicularly, and the infant asleep- of course in a standing + position. The child was painted very red, and had silver + bandages about its wrists, and ornaments of the same metal in its + ears. The Indians are very fond of their children, and put about them + very costly silver ornaments.

+

I have seen Indian children dressed in a calico frock which was stuck with + silver broaches from neck to heel, besides ornaments on the wrists, in + the ear, and about the neck and head.

+
+
+ 4th month 16th. +

Proceeded very pleasantly down the river about fifty miles, and at + night encamped under our tent. In the evening a severe thunder gust + came on, with heavy rain, which continued for several hours after + night, but having a good tent we did not get much wetted. In the + course of the day we saw wild fowl in abundance, also passed by several + Indian hunting and sugar camps. Our Corporal is very fond of saluting + the camps with an imitation of an Indian whoop, which they are sure to + answer by a similar not. This whoop very nearly re-sembles the shrill + yelp of a dog. The land ap-pears to be of an excellent quality, and deer + and turkies are very numerous. Here also + The prowling wolf howls hideous all night long, And owls vociferate the + dread response.

+
+
+ 17th. +

Proceeded about thirty-five miles, and at night encamped under our tent. We + have been entertained to-day with a diversified scene. The river + covered with wild fowl, fish jumping up around us, and turkies flying.

+ +

We stopped a short time to view the remains of Fort + Defiance. This fort was built by Gene-ral Wayne, in the course of his march to attack + the Indians. The situation is very beautiful and commanding, at the + junction of the river Great Au Glaize with + the Miami. The two rivers make a large + body of water, the width being about two hundred yards. A Canadian + trader only resides here. We also went on shore several times to visit + Indian towns and camps. Great numbers of Indians are settled upon the + banks of the Miami; they are chiefly of the Ottoway and Shawnese + tribes. They appeared pleased at receiving visitors. Their children were + very antic, and seemed to leap for joy on seeing us land; doubtless + from a hope of receiving some presents. The hunters are returning to + their towns, and many of their wigwams are stocked with peltry, dried + raccoon, and jerk venison. They are on their way to the foot of the + rapids. The women are mostly employed in knitting bags and belts and + in making moccasins. A considerable number of Indians are on the river + in bark canoes loaded with peltry. They are on the way to the foot of the + rapids and other places for the purpose of exchanging their peltry + with the traders for goods. Most of the wigwams we have seen to-day + are covered with rushes sewed together, which are procured from the shores of + Lake Erie, and so put together, that the + covering will turn any fall of rain. An Indian house is + constructed by putting two forks into the ground, and a horizontal piece + from one fork to the other. Upon this piece rest long pieces of bark, + with the other end upon the earth at a conveni-ent distance, thus + sheltering them from the weather. Sometimes they make circular + wig-wams, by putting small saplings into the ground in circular order, + then bringing the other ends to a point, they tie them together. These + they either cover with bark or with the rush mats before + described.

+

To-day we passed a place called Girty's + town, noted for the former residence of Simon Girty.

+
+
+ 18th. +

Proceeded about thirty-three miles. In the earlier part of the day we passed + several creeks and small streams, and at length reached what is called + the head of the rapids. The river is here + about four hundred yards wide. The noise of the falls informed us of our + approach, long be-lieve that our peroque was manned by careful hands, + we resolutely entered the rapids and + de-scended with great velocity down the fall for the distance of + eighteen miles to the foot of the + rapids. The whole of this distance is a + continued fall, the land falling with the same regularity, and + generally elevated but a few feet above the surface of the water. It is + needless to say that we went swiftly down, when I add, that it is a + trip occupying but one hour and a half.

+

The bed of the river is a solid limestone rock,At the foot of + the Rapids we lodged all night at the + house of a Canadian trader, who treated us with great respect, and, though + a tavern-keeper, would receive no pay from us for our supper, + lodgings, or breakfast. A considerable encamp-ment of Indians, who had come + to trade with him was near his house. They were very merry for a great + part of the night, keeping up a con-tinued sound of their favorite + instruments of music, amongst them the drum and fife. The former is + made of part of the body of a hollow tree, with the ends covered with deer + skin, upon which they beat with sticks, the latter they make of reed + into which they bore holes some-what in imitation of a fife. The foot of the + Rapids is rendered well known in American + his-tory, as having been a place of frequent ren-dezvous by the + Indians, previous to their defeat by General + Wayne. Here also the Indians burnt many of the white men who + were taken prisoners by them. To this place Wayne marched, and here he met and defeated the Indian + army.

+

About eight miles above the foot of the Rapids and near the centre of the river, in a very rapid + situation, is a noted rock called by the Cana-dians, Rochede Bout, (or standing rock.) This rock is about thirty + feet in height above the surface of the water, and the same in + diameter. The top has the regular appearance of the roof of a house, + and the body of the rock is circular. Its appearance is additionally + handsome from the circumstance of the roof, as it is called, + being covered with cedar.

+

Fish are now passing up the Rapids in + great numbers from the lakes, in so much that the water smells + strongly of them. They are taken very abundantly by the Canadians and + Indians. The fisherman without seeing them strikes his barbed spear to + the rocks, which often passes through several at a time, and frequently of + different kinds. The muscanonje are taken here in great numbers; they + are a fish from three to five feet in length.

+
+
+ 19th. +

This morning we proceeded with diffi-culty ten miles; owing to high winds, + and a raincoming on, prudence seemed to dictate that we should put + into a harbor, which we did at the mouth of Swan + creek, where is a small fort and garrison lately established + by the United States. Introductory letters were given us at Fort Wayne, to Lieutenant Rhea, the Commandant, which we delivered. He + treated us with respect, and with him we spent the remainder of the + day and lodged. On our way we stopped to view an old fort, called + Fort Miami, which was garrisoned by + the British at the time Wayne defeated + the Indians.

+

Many Indian villages and wigwams are seated on both shores of the river, and + many Canadian traders are to be found residing amongst them. They have + generally intermarried with the In-dians, and adopted their manners. Some + of the Indian houses which we passed to-day are built of + small round logs, and are roofed with bark. Near the mouth of Swan creek is an extensive valley of which we + took a particular view. Here the Indians placed their wives and children + at the time they agreed to make battle with Gene-ral Wayne.

+

The river increases in width from the foot of the Rapids toward the lake. It is more than half a mile wide + opposite Swan creek, and at present has + the appearance of tide water; a strong east wind having brought a heavy + swell from the lake, which has in a short time raised the river more + than three feet in perpendicular height. We saw to-day geese and swans + in great abundance.

+
+
+ 20th. +

This morning notwithstanding the very unfavorable appearance of the weather, + it being rainy and wind high, we again proceeded. At the end of three + miles we reached the mouth of the river, where we entered a beautiful + circu-lar bay, about six miles in diameter, called Miami bay.* Now called Maumee Bay. The wind continuing high, we + proceeded along the margin of the bay, for about ten miles to a point + called Bay Point. This is the ex-treme + point of land, between Miami Bay and + Lake Erie. We attempted to turn the point + in order to enter the lake, but the situation being bleak and the wind + high, occasioned a heavy swell, and apprehending danger, we + thought it most advisable, however reluctantly, to put to shore and + encamp.

+

The shore of that part of the bay which we have passed, as also of the lake + now in view, is elevated but a little above the surface of the water. + The country is level and appears rich. The bay is resorted to by vast + numbers of wild fowl.

+
+
+ 21st. +

The last night has been very stormy and rainy. Our tent, though a good, one + did not shelter us altogether from the rain. The high swells in the + course of the night, breaking over our peroque, filled and sunk her, which + has oc-casioned our men much labor and difficulty. And during this day + the storm continuing, we have been obliged to remain under our tent.

+
+
+ 22d. + +

About midnight the clouds dispersing, wind becoming calm, and the moon + shining very refulgently, we were encouraged again to embark, + notwithstanding a considerable agitation of the lake from the storm, and + were successful enough to turn Bay + Point, after which we proceeded without difficulty to + Point Raisin, near the mouth of the + river Raisin, (or Grape river,) making + a distance of about twelve miles, when the wind rising we made an + unsuccessful attempt to get round the Point, and were again obliged to seek a harbor and wait + for a calm. Shortly after we had put into harbor a fish approached the + shore very near to us and seemed to be at play. One of + our men advanced toward it very cautiously, and with an oar, gave it a blow + upon the tail, which so disabled it that he caught it. We found it to + be a muscanonje, measuring four feet two inches in length and + proportionally thick. The muscanonje is from head to tail very + beau-tifully spotted, and is I think not inferior to any fish I ever + tasted.

+

For several days past we have been not a little mortified at being confined + to a harbor, whilst the Indians are passing us very frequently in + their bark canoes. It is astonishing to see these canoes riding large + swells without danger. It is certain that they will ride waves whose + height exceeds their length.

+

Many of the bark canoes of the Indians have fallen under our observation. + They are gene-rally made of the bark of the birch tree, and shaped + differently. We have seen bark canoes loaded with two thousand five hundred + weight, which were so light that two men could carry them on their + shoulders with great ease. The construction of the smaller description of + these boats is so simple, that in an hour they will have a canoe made + which will carry several per-sons across their rivers. We have also seen + many of their rafts. These are made for crossing rivers at those + seasons of the year when it is not easy to strip the bark from the trees. + In all the river bottoms the buckeye wood is to be found. + This they prefer for making a raft, on account of its lightness when dried, + it being a wood nearly as light as cork. The Indians tie together + small logs of the buckeye wood, to form a square of about five or six + feet, this they cross by pieces of any other description of wood, confining + piece to piece by bark strings, splits of hoop ash, &c. Upon a + raft of this description, three or four persons will cross their rivers + even though the currenthe against them.

+

We had not been long in harbor, before our anxiety to proceed exceeded our + patience, and observing in view at an apparent distance of one and a + half to two miles from us, about fifty houses resembling a village, we + concluded to abandon our peroque, walk to the settlement, and then + endeavor to procure horses to take us to Detroit.

+

At 11 o'clock this morning we set out for this purpose, followed by our men + with our baggage on their backs, and after walking over a wet prairie, + through mud and water, half a leg and more in depth, for the distance of + nearly six miles, we reached the place. Viewing this set-tlement from + the lake, and over a tract so level that the elevation between it and us + did not ex-ceed two feet, occasioned us to be so greatly de-ceived in + the distance. On arriving we found that, instead of a village, it was a + settlement of French farmers situated along the river + Raisin, and presenting a very beautiful scene. The farms contain from sixty to eighty acres, laid off in + parallelograms. The buildings are good, and the gardens and orchards + handsome. We un-derstand that about two miles higher up the river + there is another settlement composed of about forty families, and upon + Otter Creek, about four miles + distant, a third settlement containing about thirty families. These people + are Roman Ca-tholics. We were soon informed that the dis-tance from + here to Detroit was thirty-six miles by + land, and that the road passed through so flat and wet a country, for the + greater part of the way, that at this season of the year, it was + almost impossible to travel it on horseback, and were advised to wait + on the wind for a passage by water. We, therefore, concluded to take + lodgings at the house of John Bedient, + who has offered to entertain us, and dispatched our men to the boat, + with instructions to come up the river Raisin + for us, as soon as wind and weather permitted; being so wearied and + overcome with our "Jack-o-Lan-tern" excursion, that we could not consent + to retrace our steps to the boat.

+
+
+ 23d. +

A strong west wind, attended with heavy rain last night and this day, have + prevented our men from getting to us. It is a fact well-known here, + that northwest and west winds are as certain to produce cloudy weather as + easterly winds with us. This is doubtless owing to the humidity of the + vast western lakes. The same winds are severely cold in winter, no doubt + from the im-mense bodies of ice then accumulated upon + those lakes.

+
+
+ 24th. +

This morning our men arrived about 8 o'clock, with the peroque, the wind + having abated and weather fair. We again embarked, and on our way down + the river Raisin were amused with the + great numbers of wild geese, which were at play in the ponds near the + margin of the river. They feed here so undisturbedly, that though we + were within gun shot of them, they took but little notice of us. We again + entered the lake, and encouraged our men + to make the best of its smooth surface. They proceeded with great + industry, and at night we reached a Wyan-dot + town, called Brown's town, + making a distance of about thirty miles. Here we concluded to lodge at + the house of William Walker, who is + interpreter for those of the Wyandot nation + who are settled on this side of the lake. He is married to an Indian + woman who speaks good English, and is very conversible. She gave us + for supper bacon, bear's meat, and eggs fried, also a dish of tea.

+

Brownstown is situated at the mouth of the + Detroit river, and on the American side. The + river Detroit is a vast body of running + water. Its mouth is two miles in width, and the water passes out of it + into the lake with a strong cur-rent. Its channel is wide, generally ten + fathoms in depth, and in many places much deeper. The name Detroit river is a corruption. Detroit, a French word, signifies the Strait, a name much more appropos, + it being but an outlet from the waters of the western lakes to Lake Erie.

+
+
+ 25th. +

This morning our curiosity led us to take a view of Brownstown. The village contains about one hundred houses, + which are generally built of small round logs, and roofed with elm + bark. These Indians cultivate a considerable quantity of corn, and their + fields are enclosed with rails of their own splitting. We saw a sample + of the wheat which they had raised the last season, which looked well. They + have gar-dens and a considerable number of fruit trees. They have a + small number of cattle, and raise a large number of hogs. The interpreter + says they are greatly disposed to civilization, and have re-quested of + the United States to furnish them this year with cattle, instead of goods + or money for their annuity.

+

After taking breakfast, we again embarked and proceeded up the river Detroit, passing by another Indian town + called Walk-in-the-Water village, a name + derived from the principal chief of the settlement. The village contains + about twenty houses, and bears the same civilized ap-pearance as + Brownstown.

+

After passing the river Le Cas and the river Range, we came opposite to a British + town called Sandwich, where, upon an + elevated position, we beheld the horrible spectacle of two men hanging + in gibbets.

+ +

The white settlements, on both the American and British shores of the + Detroit, are so near together, that + the farms resemble villages. Nearly opposite Sandwich is Detroit, which + we reached about 5 o'clock in the afternoon, and proceeded to the + boarding house of the widowHarrison, to + whom we had been recommended, having come eighteen miles. In the evening, + Charles Jewett and several others came to + see us; they told us they had heard of the arrival of some strangers, + and expected we were from the interior of the United States; that for a + long time they had received no account from the seat of government, + and were anxious to hear the news. Having an open letter from the + Secre-tary of War, directed to Charles + Jewett, and to the commanding officer at Detroit, we embraced the opportunity to present + it. The letter was as follows: +

+ + + War Department, February 20th, 1804. + Gentlemen,- +

This will be handed you by + Joel Wright, George Ellicott, and Gerard + Hop-kins. They are amongst the most respectable + members of the Society of Friends in Maryland. Their object is + to visit some of the western In-dians, for the laudable purpose of + encouraging and aiding them in the introduction of + agricul-ture and other improvements essential to the happiness + of the red people. They are men of science, information and + property, and are en-titled to the civilities and + attention of all good men. You will please to afford them every + aid, and should they wish to cross the lake from De-troit to Niagara, and a public vessel being about to sail + for that place, accommodations should be afforded them free of + expense, and letters of in-troduction given them to Major Porter.

+ I am respectfully Your humble servant, + H. DEARBORN.. + To the Commanding Officer at Detroit, and Charles + Jewett, Esq., Indian Agent. + +
+

Charles Jewett received us with great + civility, and has invited us to dine with him to-morrow, to which we + have consented.

+
+
+ 4th month 27th. +

This morning Charles Jewett again called + upon us, and at his request we accompanied him to the garrison, and + were introduced to the commanding officer, + Major Pike, who appears to be a genteel + and clever old man. He informed us that a public vessel would sail for + Niagara, about the first of the + ensuing month, and recommended us very strongly to take passage in her, in + preference to any other vessel, she being in good order, and under the + management of mariners well ac-quainted with the lake. This vessel is under + his superintendence.

+

Agreeably to engagement, we dined to-day withCharles + Jewett. The revenue officer for the port of Detroit, Captian + Ernest, also dined with us.

+
+
+ + 28th. +

This day we dined with Major Pike, in + compliance with an invitation which he gave us yesterday. He treated us + with great respect and attention, and appeared to be pleased with our + company. New Jersey being the place of + his nativity, he has considerable knowledge of our Society. In the + course of conversation he in-quired after Peter + Yarnall, and says that Peter and himself were in the same military company during + the Revolutionary war; he had not heard of his death.

+

The following circumstance, as related by him, making at the time + considerable impression upon me, I have thought proper to record it. He + told us that several officers with Peter + and himself were lodging together; that one night Peter alarmed them all with loud screams to such a + de-gree that on first awaking he supposed the enemy had fallen upon + their army with bayonets. Peter was on + his feet, and appeared to be awake. They spoke to him repeatedly, and + endeavored to ap-proach him, but every advance they made in-creased + his alarm. Finally he recovered himself and became composed, and for + several days after-wards, instead of satisfying their inquiries, + ap-peared to be sunk in distress and gloom. He afterwards told them he + considered his alarm as a warning to him, and that his fright arose + from a plain representation of the devil, come to take him off. + Peter in a short time left the army, + and (said the Major) I always believed that + his reformation had its rise from that circumstance.

+
+
+ 28th. +

This day we dined with Robert Monroe, + factor of the United States in the Indian Depart-ment. At his table we met + our friend Charles Jewett, the revenue + officer before named, Judge Henry and + Lawyer Sibley.

+
+
+ 29th. +

This day we dined with Frederick Bates, at + his lodgings. He is descended from Friends, and discovers great partiality + for our company. He is a young man of superior under-standing, and is + much esteemed in Detroit. I feel and + fear for the situation of this young man. It is not in human nature to + support good principles unblemished, when left alone to stem the + torrent of fashionable and fascinating vices.Detroit is a place of great corruption.

+
+
+ 30th. +

This day we rode nine miles up theriver + Detroit to take a view of Lake St. + Clair. This lake is thirty miles in length, and twenty + miles in width. We had a beautiful prospect of it, from a commanding + situation. I ought to have mentioned that bordering the river, the + whole distance from Detroit to the lake, the + land is handsomely improved. The houses are so near each other that + the margin of the river looks like a village. These farms are grants + made by the French government nearly a cen-tury ago. They uniformly lie in + parallelograms containing about one hundred acres. Added to tolerable + dwelling houses are the handsomestapple orchards I ever saw. The + extraordinary healthfulness of the trees, indicates a + suitableness of climate or soil, or both.

+

The pear trees also are very large and hand-some; but their cherry and peach + trees do not thrive well, the climate being too cold for them.

+

In this little excursion we were accompanied by Frederick Bates, and returned in time to com-ply with an + invitation we had received to dine with Doctor + Davis. Major Pike, and + several others, dined with us.

+
+
+ 5th month 1st. +

We this day dined with Dr. Wilkinson, who + removed from the lower part of the State of Maryland. Were we as fond of eating and drinking as the + people of Detroit ap-pear to be, it + would be no marvel if we should forget our homes, and think ourselves well + enough entertained where we are; but whilst we have been under an + apparent necessity of yielding to the invitations we have received during + (shall I say?) our imprisonment here, we know we have been very + anxious for the time to arrive, in which we may embark homewards, and hope + that to-morrow morning the vessel for which we have been waiting will + sail.

+
+
+ 2d. +

This morning, wind and weather appear-ing to permit, we were informed that + at 9 o'clock the vessel would sail. We accordingly badefarewell to our + acquaintance, and went on board the United States brig called the John Adams, commanded by Commodore Brevoort. About 9 o'clock sail was hoisted, and + we proceeded to the mouth of the river + Detroit, when night com-ing on, and the wind being + unfavorable, we anchored near the British shore, and opposite to the + town of Malden.

+
+
+ 3d. +

Weighed anchor. Winds light and op-posite; anchored again about 8 o'clock in + the evening, near an island called the Middle + Sister.

+
+
+ 4th. +

About 4 o'clock this morning again weighed anchor, and a calm coming on + about 10 o'clock, we anchored again near Middle + Bass Island, where we were confined the remainder of + the day. In the afternoon some of us amused ourselves with fishing. The + small boat was rowed by several hands around the island, whilst we + cast our lines, about thirty feet in length, hav-ing hooks baited with the + skin of pork and covered in part with the skin of pork and covered in + part with a piece of red cloth. In a short time we caught upwards of five + dozen black bass, justly esteemed an excellent fish, and weighing from + four to six pounds. The lake water is so clear, that fish can be seen + from twelve to fifteen feet below the surface. Many of the fish we + caught, we saw advancing to our hooks.

+
+
+ 5th. +

At 4 o'clock this morning again hoisted sail. Weather windy, attended with + rain. We had not proceeded far before a head wind opposed our sailing, + and we cast anchor at an island called Middle + Island. At 4 o'clock in the after-noon a heavy rain and + thunder gust coming on, it was deemed safest to return back a few + leagues to a harbor called Put-in-Bay, where we lay dur-ing the night.

+
+
+ 6th. +

This morning at 6 o'clock we again hoisted sail; wind and weather clear and + pleasant. We are now, 9 o'clock at night, under sail.

+
+
+ 7th. +

Have been under sail last night and this day until evening, when we cast + anchor opposite to Presqueile, for the + purpose of landing a part of our passengers.

+
+
+ 8th. +

During last night lay at Presqueile, + and this morning put on shore the passengers bound for that place, + after which, the wind heading us, we lay at anchor the rest of the day. + Presqueile is a town on the + American side of the lake, con-taining about forty houses, several of which + are stores. A small garrison of the United States is stationed + here.

+
+
+ 9th. +

About 10 o'clock last night, a light favor-able breeze sprung up, which + encouraged us to proceed. The vessel has been all night and du-ring + the day under sail. At 8 o'clock in the evening we dropped anchor, within + four miles ofNiagara river. Our commander + says that the channel leading into the harbor, is rocky and dangerous, + and deems it imprudent to attempt an entrance at night.

+

It is a pleasing reflection, that we are so near to the end of our passage + over the lake; and we are gladdened with the hope, that we shall + shortly prosecute the remainder of our journey over terra firma, where + we shall not be subject to the impediments of opposing winds, + and be freed from the dangers of storms. Lake + Erie is a very beautiful body of water, 300 miles in + length and generally from 50 to 60 in width. Much of the distance we have + sailed has been out of sight of land. The water of the lake appears to + be of a beautiful deep green color, but when taken up in a glass vessel, is + to be admired for its transparency. I think it is, without exception, + the sweetest water I ever drank.

+
+
+ 10th. +

At 4 o'clock this morning our anchor was again hoisted, and in about half an + hour we were safely moored at Fort Erie. + This is a small fort on the Canadian shore of the lake, garrison-ed by + the British. Immediately on our arrival, we set out on foot for Buffalo, distant 5 miles, a town situated at + the junction of Buffalo Creek with + Lake Erie, and near the commencement + of the outlet of the lake, commonly called Niagara river. The object of this excursion was to + ob-tain a conveyance across the country to the near-est line of public + stages. We were successful in an application to one of the inhabitants, + who agreed to furnish us with a light wagon, to be in readiness two + day's hence. Here we met withErasmus + Granger, an agent of the United States, in the Indian + Department. We had conversa-tion with him at considerable length on + Indian affairs. He tells us that many individuals amongst the Indians + of his district, (who are of the Six + Nations,) are turning their attention to agriculture.

+

About mid-day we returned in a small boat to our vessel. After dining on + board, we went on shore at Fort Erie, + and joined by our Commodore and Lieutenant Cox, a passenger with us from + Detroit, we engaged a light wagon to return + with us at 4 o'clock to-morrow morning, to view the + Falls of Niagara, distant about eighteen miles. + We extended our walk for a considerable distance along the shore of + Lake Erie; it is here composed of a + solid body of limestone, beautifully marbled.

+
+
+ 11th. +

This morning we sat out for the Falls of + Niagara; our road passed near the margin of + Niagara river, from the lake to the Falls, a dis-tance of 18 miles, which afforded + us a view both of the river, and of the adjacent improve-ments. The + land is generally under cultivation, and is tolerably improved. The soil + appears rather cold and stiff; but some of the meadows are nearly + equal to the best I ever saw; some of the farms belong to members of our + society, and we are told that there is a meeting of Friends not far + distant from the Falls. Considerable emigrations are making from the United + States, to this as well as other parts of Upper Canada, owing to the very advantageous terms upon + which the British Government dispose of the land, being scarcely removed + from a gift.

+

We reached a Canadian town called Chippewa, + to breakfast, after which we walked to the Falls, a distance of two miles. This was a + walk, of which every step seemed to increase curiosity and surprise. + Our attention was soon arrested by a cloud which hangs perpetually over the + Falls for the height of 600 feet, arising from + the dashing of the waters.

+

As we advanced to the Falls the solid earth + and rocks shook, or seemed to shake, under our feet, whilst the roar of the + waters so overpowered every other sound that, notwithstanding we were + tete-a-tete, it was necessary to raise the voice to a very loud key in + order to be heard. Mean-while the cloud above mentioned issued + contin-ually in what we sometimes hear called a Scotch mist.

+

There is a common saying, Those who know no danger, fear none. This + was our case on re-turning to the extremity of an overjutting rock, + called Table Rock, opposite to the great + cataract, in order to gratify our curiosity, in a peep down the + precipice which is more than 150 feet per-pendicular. In passing afterwards + a short dis-tance below this rock, we were alarmed with the discovery, + that the place on which we had stood was but a thin shell, the Falls having under-mined the rock for many feet. + Proceeding a little lower down the Falls, + we again found that our second stand was almost as baseless. We + however supposed that the danger was not equal to our apprehensions, as the + names of great num-bers of visitors were cut in these rocks, near + their extremities. I shall not attempt to give a + par-ticular description of the Falls of + Niagara, which has been done by persons who have visited + them, for the especial purpose of gratifying the curious. After we had + gratified our curiosity in a view of them we returned to Fort Erie, and after night were rowed in a + small boat to Buffalo town, in order to + be in readiness for setting out home-ward in the morning.

+
+
+ 12th. +

The person who has engaged to take us on our journey this morning has + disappointed us. The circumstance is a trial, as we have become very + anxious to reach our homes. Being at lei-sure we accompanied the Indian + agent in a ride, four miles above Buffalo + Creek, to an Indian vil-lage of the Senecas, one of the tribes of the Six + Nations.

+

They are making considerable progress in agriculture, live in tolerable log + houses, and have a number of cattle, horses and hogs. We saw many of + them at work; they were preparing the ground for the plough by rolling + logs, taking up stumps, &c.

+

We also saw among them a large plough at work, drawn by three yoke of oxen, + and attended by three Indians. They all appeared to be very merry, and + to be pleased with our visit. The land upon which these Indians are settled + is of a superior quality. We saw amongst them Red Jacket, Farmers + Brother, and several other dis-tinguished Chiefs. Many of + these Indians wor- in their ears, and round their necks, + strung upon strings, several descriptions of Lake shells. Here we met + with Saccarissa, a principal chief of the + Tuscarora tribe. He has come for the + purpose of being assisted by the agent in vesting fifteen thousand + dollars in the purchase of land from theHolland Land + Company. They have greatly de-clined hunting, and are + becoming agriculturists. The Tuscarora + Indians removed from North + Caro-lina many years ago, and were received into the + then Five Nations, or Iroquois Indians, who + gave them a small tract of country, which they now think wants + enlarging. It is a fact, that theSix + Nations have stock in the Bank of the United States to the + amount of more than one hundred thousand dollars, from which they draw + regular dividends. This is money which they received some years ago from + our Government for the sale of their lands.

+

The Chiefs and principal people took the advice of General Washington, in making bank stock of their + money.

+
+
+ 13th. +

This morning we set out from Buffalo in a + farm wagon drawn by two horses, and tra-velled 32 miles through a rough and + inferior country.

+
+
+ 14th. +

Proceeded 23 miles and reached Bata-via, + a new town, handsomely situated. We have had a muddy, disagreeable road, + through a coun-try too flat to be desirable. The land is pretty rich, + and very heavily timbered. We have been all day followed by + millions of mosquitoes; crossed a handsome stream called the Tantawan-tae, and were told at the Ford that a + little dis-tance above us 120 rattle snakes lay dead. These snakes + were killed by some fishermen with their spears, the warm weather having + brought them out of their dens. People are making settle-ments here + very rapidly.

+
+
+ 15th. +

Travelled 33 miles, and lodged at War-ner's + Tavern. The land for the most part tol-erable. The New + England people are making many handsome settlements here. They have + built fine farm houses, planted handsome or-chards, and emigration is + increasing. The stone is mostly limestone. We passed for several miles + over a tract covered with limestone, which con-tained a great variety of + curious marine shells. The country affords many fine springs; one + which we passed contains water sufficient to turn a mill. We also passed + through a large Indian town, near the Genesee + river, and to-day crossed that river, where its width is + about 100 feet.

+
+
+ 16th. +

At 6 o'clock this morning we again proceeded; passed near Hemlock lake, and + Honey lake, of which the waters empty into the + Genesee river. The face of the country is + gen-erally tolerable, but stony. We to-day also saw the same + appearances of marine shells as yesterday. About mid-day we reached the + town of Canan-daigua; situated upon a + lake of that name, about 20 miles in length, and from one to two miles in width; its waters empty into Lake Ontario. The improvements on this tract are + astonishingly handsome for a new country, par-ticularly through a + settlement called Bloomfield. At + Canandaigua, we exchanged a rough + wagon, for the public stage, a circumstance additionally gratifying to + us from the hope that we shall now proceed homewards with expedition. At 2 + o'clock set out in the stage, and reached the town ofGeneva where we lodged. This is a handsome new + town situated upon Seneca lake, a body of + water forty miles in length, and from three to three and a half miles in + width.

+
+
+ 17th. +

Travelled about fifty miles and lodged at the village of Onandagua. On our way we reached a handsome + wooden bridge one mile in length, over Cayuga + Lake.

+
+
+ 18th. +

Travelled fifty miles to the handsome town of Utica, situated on the Mohawk + river. Passed near Oneida + Lake, and through a large settlement of Indians of the + Oneida tribe. Their town consists of + about seven hundred Indians. They have good houses, a meeting house, + barns and orchards. Their land is under cultivation, is level, and + appears to be of good quality. We saw many of them in their fields + preparing for corn. These Indians have been greatly aided in + agriculture, by the Friends of Philadelphia.

+
+
+ 19th. +

This morning we again proceeded, and at night lodged at a small village + called George-town, making a distance of + fifty miles. Our road led us the whole distance along the + Mohawk river.

+

The Bottoms along this river are called theGerman + Flats, and are very rich and handsome. They were settled + many years ago by the Germans. We stopped to view the Falls in the river, + where the navigation is made easy by locks; a very romantic place, + there being limestone rock of enormous size, both in the water and upon + the hills. In proceeding along the bottoms of this river there are + many marks which indicate that at some period of time there was a vast body + of water covering these Flats. The Flats + are gen-erally from half a mile to a mile in width; theirmargins are a + continuation of hills on each side,which are from two to three hundred feet + inheight; the surface of the hills show stones of great size, which + are washed into all shapes; added to this, the hills discover evident + appear-ances of those indentures common to river shores.

+
+
+ 20th. +

Again prosecuted our journey, passing along the Mohawk + river to the town of Schen-ectady, where we crossed the river, and in the + evening reached the town of Albany upon the + North river, making a distance of forty + eight miles. I cannot but observe here, that in pro-ceeding along the + Mohawk river to-day, we came to the + end of those high chains of hills mention-ed yesterday, where the country + made quite a level appearance; so that we were puzzled to conjecture + what became of the earth which had enclosed so great a body + of water, as the hills seem to declare once washed their summits. I + may add, in humble confession, that in the course of our long journey, I + have had frequent occasions to acknowledge, in a view of those + extraordinary and inexplicable natural curiosities, which have fallen + under our observation, the truth of that excellent sentiment of a religious + poet, Nature is wrapt up, In tenfold night, from + reason's keenest eye.-YOUNG.

+

Between Schenectady and Albany the coun-try is the poorest I ever saw. The surface + is a body of sand, producing scarcely a tree. Surely one of + Churchill's lines, relative to a part of + Scotland, may with propriety be applied to + this tract, Here half starved spiders feed on half starved + flies.

+
+
+ 21st. +

Having concluded to go by water fromAlbany to New York, at 3 + o'clock this afternoon, we set sail, and at six o'clock in the evening + of the 23d reached New York, a distance of one hundred and sixty miles.

+
+
+ 24th. +

At 8 o'clock this morning, we took public stage, and passing through the + city ofPhiladelphia, reached Baltimore on First-day the 27th of 5th month, 1804. Here reader, allow me + to add I was gladdened with the favor of being permitted safely to return + to my home, and grateful for the additional blessing of + finding my dear wife and infant children all well.

+

We were absent on this visit three months and four days, and travelled about + two thousand miles.

+ +
+ + +
+ + APPENDIX. +

Whilst engaged in taking a copy of the pre-ceding journal, I have been + induced to examine the manuscripts left by the late George Ellicott, of Ellicott's + Mills, the companion in this em-bassy of the author of the + narrative, to discover if I could find amongst them any matter + concern-ing the Indians, and of the care manifested by the Friends of Baltimore Yearly Meeting on their + behalf. In the course of this investigation a variety of material on the + subjects mentioned has presented, from which I have gleaned some + fragments, which, as they promise to be inter-esting to the readers of the + present day, are herewith presented.

+

The first extracts are from the unpublished account of a journey to + Upper Sandusky, in 1799, performed by some of the members of the In-dian Committee of Baltimore Yearly Meeting, and written by George Ellicott. He appears to have considered + that any narrative of the kind should be preceded by information + con-cerning the Indians, as they were in former years; and had + therefore prepared a preface to this work, compiled from the writings of + Jeffer-son, and other authorities, + from which the fol-lowing is taken:

+ + + + +

When the first effectual settlement was made in Virginia,* *See + Jefferson's Notes on + Virginia. which was in + the year 1607, the country from the sea + coast to the mountains, and from the Potomac to the most southern waters of James river, was occupied by upwards of + forty different tribes of Indians. Of these, the Powhatans, the Mannahoacs, and Mona-cans, were the most powerful. Those + between the falls of the rivers and the mountains were divided + into two confederacies; the tribes in-habiting the head waters of + the Potomac and + Rappahannock being attached to the + Manna-hoars, and those on the upper part of James river to the Monacans. But the Monacans + and their friends were in amity with the Mannahoars and their friends, and waged joint and + perpetual war against the Powhatans. + We are told that the Powhatans, + Mannahoacs, and Monacans, spoke languages so radically different, + that in-terpreters were necessary when they transacted + business. Hence we may conjecture that this was not the case + between all the tribes, and prob-ably that each spoke the language + of the nation to which it was attached, which is known to have + been the case in many particular instances. Very possibly there may + have been anciently three different stocks, each of which + multiplying in a long course of time, had separated into so + many little societies. This practice results from the + circumstance of their never having submitted themselves to any + laws, any coercive power, or any shadow of government. Their only + con-straintstrasts are their + manners, and that moral sense of right and wrong which, like the + sense of tasting and feeling in every man, makes a part of his + nature. An offence against these is punished by contempt, by + exclusion from society, or, where the case is serious, as that of + murder, by the in-dividuals whom it concerns. Imperfect as this + spe-cies of coercion may seem, crimes are very rare amongst + them, in so much that were it made a ques-tion whether no law, as + among the native Ameri-cans, or too much law, as among the + civilized Euro-peans, submits men to the greatest evil; one + who has seen both conditions of existence would pro-nounce it + to be the last, and that the sheep are happier of themselves, than + under the care of wolves. It will be said that great societies + can-not exist without the aid of government. The savages + therefore break themselves into small ones. The territories of the + Powhatan confede-racy south of + the Potomac, comprehended about + 8000 square miles, 30 tribes, and 2400 hundred warriors. Captain Smith tells us that within 60 + miles of Jamestown were 5000 people, + of whom 1500 were warriors. From this we find the proportion + of their warriors to their whole inhabitants was as 3 to 10. + The Powhatan confederacy then would + cosist of about 8,000 inhabitants, which was one for every + square mile; being about the twentieth part of + our present population in the same territory, and the hundreth + of that of the British Islands. The numbers of some of them are + stated as they were in the year 1669, when + an attempt was made by the Assembly to enumerate them. + Probably the enumeration is imperfect, and in some measure + conjectural, and that a further search into the records would + furnish many more particulars. What would be the melancholy + sequel of their hsitory, may, however, be augured from the census + of 1669, by which we discover that the + tribes therein mentioned and enumerated, were, in the space of 62 + years re-duced to about one-third of their former number. + Spirituous liquors, the small pox, war, and an abridgment of + territory, to a people who lived principally on the spontaneous + productions of nature, had committed great havoc among them. + That the lands of this country (Virginia,) were taken from them by conquest, is + not so general a truth as is supposed. We find in our + histo-ries and records, repeated proofs of purchase which + cover a considerable part of the lower country, and many more would + doubtless be found on further search. The upper country, we + know, has been acquired altogether by pur-chases made in the most + unexceptionable form, westward of all these tribes, beyond the + moun-tains, and extending to the great lakes on the + Massawomics, a most powerful + confederacy, who harassed unremittingly the Powhatans and Man-nahoacs. These were probably the ancestors + of the tribes known at present by the name of the Six Nations. Very little can now be + dis-covered of the subsequent history of these tribes + severally. The Chickalaminies removed about + 1661 to Mattapony + river. Their chief, with one of each of the tribes + of the Pamunkies and Mat-tahonys, attended the meeting at Albany, in + 1685; this seems to be the last chapter in + their history. The Monacans and + their friends, better known latterly by the name of Tuscaroras, were probably connected + with the Massawomics, or + Five Nations; for though we are told + that their languages were so different that the interven-tion + of interpreters was necessary between them, yet we also learn that + the Erigas, a nation for-merly + inhabiting the Ohio, were of the + same original stock with the Five + Nations, and that they partook also of the Tuscarora language. Their dialects + might, by long separation, have become so unlike as to be + unintelligible to each other. We know, that in 1712, the Five Na-tions + received the Tuscaroras in their + confede-racy, and made them the Sixth + Nation. All the nations of Indians in North America, + lived in the hunter's state, and depended for subsistence on + hunting, fishing, and the spontaneous fruits of the earth, and a + kind of grain, which was planted and gathered by the women, and is + now known by the name of Indian corn. Long po-tatoes, pumpkins, and squashes of various kinds were also found + in use among them. They had no flocks, herds, or tamed animals of + any kind. Their government a kind of patriarchal confede-racy. + Every town or family has a chief, who is distinguished by a + particular title, and whom we commonly call Sachem. + The several towns or families that compose the tribes have a + chief who presides over it, and the several tribes com-posing + a nation have a chief who presides over the whole nation. Those + chiefs are generally men advanced in age, and distinguished for + their prudence and abilities in council; the matters which + merely regard a town or family, are settled by the chief and + principal men of the town, those which regard a tribe, such as the + appoint-ment of head warriors or captains, and settling + differences between tribes and families, are reg-ulated at a + meeting of the chiefs from the differ-ent towns; and those which + regard the whole nation, such as making war, concluding peace, + or forming alliances with the neighboring nations. are + deliberated and determined in a national council, composed of the + chiefs of the tribes, at-tended by their head warriors, and a + number of chiefs from the towns, who are his counsellors. In + every town, there is a council house, where the chiefs and men of + the town assemble when occasion requires, and consult what is + proper to be done. Every tribe has a fixed place for the chief + of the towns to meet and consult on the business of + the tribe. And in every nation, there is what they call the central + council house, or council fire, where the chiefs of the + several tribes, with the principal warriors, convene to + consult and determine on their national affairs. When any matter is + proposed in the national council, it is common for the chiefs of + the seve-ral tribes to consult thereon apart with their + counsellors, and when they have agreed, to deliver the opinion of + the tribe at the national council. And as their government seems to + rest wholly on persuasion, they endeavor by mutual + conces-sions to obtain unanimity. Such is the govern-ment that + still exists among the Indian nations bordering on the United + States. To the north-ward of these, there was another powerful + nation, which occupied the country from the head of the + Chesapeake Bay, up to the + Kittatinny mountain, and as + far eastward as Connecticut + river, comprehending that part of New + York, which lies between the Highlands and the + ocean. All the State of New + Jersey, that part of Penn-sylvania which is watered below the range of + Kittatinny Mountains, by the rivers or + streams falling into the Delaware, + and the County of + New Castle, in the State of + Delaware as far as + Duck Creek. It is to be observed that + nations of Indians distinguish their countries one from + another, by natural boundaries, such as ranges of mountains or + streams of water. But as the heads of rivers frequently interlock + or approach near to each other, as those who live upon + a stream claim the country watered by it, they often + en-croached on each other, and this was a constant source of + war between the different nations.

+

The nation occupying the tract of country last described, called + themselves Lenapi, and among us + they are better known as Delawares; this nation consisted of five tribes, who all + spoke one language; first, the Chihohocki, who dwelt on the west side of the river, + now called Dela-ware, a name + given to it by Lord De-la-War, + who put into it on his passage from Virginia, but which was called by the Indians, + Chicho-hocki. Second, the Wanami, who inhabited + the country called New Jersey, + from the Raritan to the sea. + Third, the Munsey, who dwelt on + the upper streams of the Delaware, + from the Kitta-tinny mountains + down to the Raritan. Fifth, the + Mahicon or Mahattan, who occupied + Staten Isl-and, York Island, (which, from its being the + prin-cipal seat of their residence, was formerly called + Mahattan.) Long Island, and that part + of N. York and Connecticut, which lies between Connecticut and Hudson rivers, from the highlands, which is a + continuance of the Kittatinny ridge + down to the sound. The nation had a close alliance with the + Shawanese, who lived on the + Susque-hanna and to the + westward of that river, as far as the Alleghany mountains, and carried on a long war with another powerful nation of Indians, who + lived to the north of them, between the + Kittatinny mountains, or highlands, + and Lake Ontario, and who call + themselves Mingoes, and are called + by the French writers, Iroquois, by the English, Five Nations, and by the Indians to the + southward, with whom they were at war, + Massawomic; this war was carrying on in + its greatest fury, when Captain + Smith first arrived in Virginia. The Mingo + warriors had pene-trated down the Susquehanna to the mouth of it. The Mingo nation consisted of five tribes; + three, who are called the Elder, to wit: the + Senecas, who live to the west, the + Mohawks, to the east, and the Onondagoes between them; and two, who are called the + younger tribes, namely, the Cayugas and Oneidas. All + these tribes spoke one language, and were thus united in a + close confederacy, and occupied that tract of country from the last + end of Lake Erie to + Lake Champlain, and from the Kittatinny and highlands to the + Lake Ontario and the river + St. Lawrence. This nation turned their + arms against the Lenapi, and as + this war was long and doubtful, they, in the course of it, not + only exerted their whole force, but put in practice every + measure which prudence or policy could devise to bring it to a + successful issue. For this purpose they bent their course down the + Susquehanna, warring with the + Indians in their way, and having penetrated as far as the + mouth of it, they, by the terror of their arms, + engaged a nation, known by the name of the Nanticocks, + Coneys and Lutetocs, + and who lived betweenChesapeake + and Delaware Bays, and bordering + on the territory of Chihohocki, to enter + into an alliance with them; they also formed an alliance with + the Monahans, and stimulated them to + war with the Lenapi, and their + confederates. At the same time the Mohawks carried on a furious war down the Hudson against the Mo-hiccons and river Indians, and compelled + them to purchase a temporary and precarious peace, by each + acknowledging them to be their supe-riors, and paying an annual + tribute.

+

The Lenapi being surrounded with + enemies and hard pressed, and having lost many of their + warriors, were compelled at last to sue for peace, which was + granted them on the condition that they should put themselves under + the protection of the Mingoes, + confine themselves to raising corn, hunting for the subsistence of + their fami-lies, and no longer have the power of making + war.

+

This is what the Indians call making them women. Under this + condition the Lenapis were when + William Penn first arrived, and + began the settlement of Pennsylvania in the year 1682.

+

In Sept. 1700, the Indians residing on the + Susquehanna, granted to William Penn all their lands on both + sides of the river. The Indians living on the Susquehanna and Potomac and the Shawanese, enetered into articles of agreement with + Wm. Penn, by which, on certain + conditions of peaceable and friendly behaviour, they were + permitted to settle about the head of Potomac, in Pennsylvania. The Conestoga chiefs, also, in 1701, ratified the + grant of the Susquehanna + Indians made the preceding year of 1700. + Wm. Penn obtained from the + Sachems of the country a confirmation of grants made by former + Indians of the lands from Duck + Creek to the mountains, and from the Delaware to the Susquehanna; in this deed the Sachems declared + that they had seen and heard read divers prior deeds which had + been given to Wm. Penn by former + chiefs.

+

In the year 1672, Gov. + Lovelace, of New + York, by proclamation, ordered that four white + grains or beads, and three black ones shall pass for a penny or + stiver; this proclamation was published at Albany, Esopus, + Delaware, Long Island, and at the ports adjacent; + and that wampum was a passing medium of the country at that + time.

+

A treaty was entered into at the mouth of the Great Miami, between the United States and the + Shawanese Nation, in the year 1786, by which the United States do allot + them lands with their territory to live and hunt upon. + Be-ginning at the south line of the lands allotted to the + Wyandots and Delawares, at the place where the main + of the Great Miami and of the + Ohio intersects said line, then down + the Miami to the forks of that + river below the old fort taken by the French in 1752, thence due west to the river De-la-Panse; thence down that river to the + Wabash, beyond which line none of + the people or citizens of the United States shall settle or + disturb the Shawanese in their + settle-ment and possessions; and the Shawanese do relinquish to the United States all + title they ever had to lands, east, west, and south, of the + east, west, and south of lines before described. Signed by + G. Clark, Richard Butler, Saml. H, + Parsons, and eight Indians, and witnessed by a + number of Indians and whites. The Indian witnesses were of the + Delaware and Wyandot nations; Isaac Zane (a Wyandot), + and the Crane of the Wyandots are among them.

+ +
+

The first movement made by the Society of Friends of Baltimore Yearly Meeting for the benefit of the Indians, + after the conclusion of the Revolutionary was, was commenced about one + year subsequent to the treaty of Grenville; + whereby a peace had been concluded between the United States and the + hostile tribes, north-west of the river + Ohio. For many years those Indians had proved themselves to + be the for-midable enemies of the white emigrants who settled near + them, and of the armies of the United States, sent out to compel them to + sub-mit to the occupation of a territory which they continued to + regard as their own property. Hav-ing been greatly improved in + warlike discipline, and in the use of European firearms, by serving + under the French commanders in former wars, they adhered to any pacific + agreements no longer than their fears or their interests restrained + them; and rested in the determination never to abandon their lands + northwest of the Ohio river. They had + defeated General Harmer, with the loss of + the greater part of his army, on the banks of the St. + Joseph's river in 1791; and an + ex-pedition sent against them shortly after, under the command of + General St. Clair, was com-pletely + routed. In this engagement the Little + Turtle,* * Michikiniqua, was the Indian + name of this chief. so often alluded to in the foregoing pages, + was the commander-in-chief of the Indian forces, and displayed feelings of + humanity to-wards his retreating foes, of which few exam-ples have + been furnished in the history of Indian warfare, and which reflects honor + on his cha-racter.

+

On beholding the white soldiers fleeing before the exasperated Indians, and + at every moment cut down by the weight of their tomahawks, his heart + revolted at the sight, and ascending an eminence, he gave the singular signal cry, which com-manded his men + to cease from further pursuit and return to their camps; he also sent out + mes-sengers to inform them, wherever scattered, that they must be satisfied with the carnage, + having killed enough. By this effort on his part many lives were + spared.

+

After this defeat, so unlooked for by the United States, General Wayne, who had suc-ceeded General St. Clair, arrived with his army upon + the location where that officer had been defeated, in the 9th month, (Sept.) 1793, and immediately built + Fort Wayne. The next year he brought + the Indians to a decisive engage-ment in the vicinity, in which they were + over-thrown with great slaughter. This humiliation lessened their high + estimate of their own strength and disposed them to peace, and a treaty + was concluded between them and General + Wayne, who acted as a commissioner of the United + States, at Grenville, (1794), by which the tribes northwest of the river Ohio, gave up the lands so long the object + of contention, and accepting a reservation in the neighborhood of the + Lakes, came under the protection of the United States, upon terms at + that time considered mutually satisfactory and beneficial.

+

The Little Turtle, who appears to have had + a just idea of the importance of the lands about to be ceded to our + government, remained for a long time inflexible, resolved upon + procuring more favorable conditions. He was deeply at-tached to the + country which had been his birth-place, and in common with all his + brethren considered it belonged to the Indians by right of possession + from the Great Spirit, who, they believed, after he had made + the earth, sun, moon and stars, had placed the red man on this + continent, and bestowed it upon him and his children. He knew also, that + the whole region around was made dear to them by every cher-ished + remembrance; their recollections of the happy abode of the red people + therein for many generations before the coming of the white men to + settle amongst them; as connected also with the sports and pastimes of + their youth, and with the enjoyments of their more manly pursuits in + maturer years, and moreover as containing the graves and other monuments of + their fathers. These recollections were all quickened and in-creased + in importance by the knowledge that, in relinquishing the possession of + this fine territory, they yielded up forests filled with herds of + deer, and other game which, by the addition of the fruits of their + grounds, rich and fertile almost without precedent, gave them, even with + their rude mode of tillage, an ample supply for their simple wants. He + seemed also to be filled with apprehension, lest when settled within the + con-fined boundaries, which were to be theirs by the conditions of the + treaty, that his countrymen would be too slow in adopting the habits of + civil-ized life; and as the supply of wild animals must soon be + exhausted, would suffer many privations in consequence of the change. As + such were his feelings, can any thoughtful person be as-tonished at + his resolutions?

+ +

Convinced at last, that no alternative awaited him, he consented to sign the + compact, remark-ing to the officers present, as he affixed his + sig-nature, I have been the last to consent to this + agreement; I will be the last to break it. He remained true to + his affirmation.

+

The following extracts are selected from a brief account of the Indian Committee of Balti-more Yearly Meeting, from its appointment in1795 to the completion of the journey to Fort Wayne, by G. T. + Hopkins and George + Ellicott, in 1804.

+

The Yearly Meeting of Baltimore, and, also, + that of Philadelphia, appear to have directed their + attention almost simultaneously to an effort for the improvement of the + Indians, and a com-mittee was accordingly appointed in each of these + Yearly Meetings, in the autumn of 1795, to take + the subject under care.

+ + + +

In Baltimore Yearly Meeting, held by + ad-journments, from the 12th day of the + Tenth month to the 16th of the + same, inclusive, 1795, + Evan Thomas being clerk, and John Cox assist-ant clerk, the exercise + with regard to the In-dians commenced by a weighty concern + being opened, concerning the difficulties and distress to + which the Indian natives of this land are sub-ject; and many + observations were made on the kindness of their ancestors to the + white people, in the early settlement of this country, + exciting a deep consideration and enquiry, whether under the influence of that exalted benevolence and good + will to men, (which our holy profession re-quires,) anything + remains for us to do to pro-mote their welfare, their religious + instruction, knowledge of agriculture, and the useful + me-chanic arts. A solemnity and uniting calm prevailing over + the meeting, the further consid-eration of the subject was referred + to another meeting, when the condition of the distressed + Indian natives being again revived, the senti-ments of many + brethren expressed, and a pre-vailing sympathy felt, it appears to + be the united sense of this meeting, that it be recommended to + our Quarterly and Monthly Meetings to take this concern into + serious consideration, and open subscriptions among our members for + their relief and the encouragement of school education, + hus-bandry, and the mechanic arts, amongst that people. As it + appears their situation demands immediate attention, we hope a + spirit of liber-ality will be manifested;* * + This call of Baltimore Yearly Meeting + upon its members was promptly met. But the sums of money, + thus collected, do not appear to have been often used to defray + the travelling expenses of the Friends appointed by the + Indian Committee to + visit the tribes North-west of the river + Ohio. Those who accepted such commissions + prepared their own out-fit and defrayed their own charges, + except in one, two, or at the most, three instances, where such + an expenditure would have been oppresive to the + indi-viduals concerned, on which occasions the necessary + funds were supplied by the committee. and those who find + freedom to subscribe, are desired to put their + contributions into the hands of the following Friends, who are + appointed to receive and apply the same, in such manner as will + best answer the benevolent designs of this meeting, carefully + guarding against giving offence to gov-ernment, viz:-

+ + + John Wilson, + Joseph Bond + + + John M'Kim, + Joseph Beeson, Bianson + + + John Branen, Brown + John Butcher, + + + Evan Thomas, + Benjamin Walker, + + + Allan Farquhar, + Israel Janney, + + + John Love, + David Branen, Brown + + + Caleb Kirk, + Gouldsmith Chandlee, + + + Jonathan Wright, of + Moses Dillon, + + + Monallen, + Elias Ellicott, + + + Thomas Matthews, + Nathan Heald, + + + David Greane. Greaves + +
+ +
+

The Friends above named composed the first + Committee of Baltimore Yearly + Meeting for In-dian Affairs, and their + appointment was witnessed by John + Wigam, a minister from North + Britain, who attended with a certificate from + Aberdeen Monthly + Meeting, dated 17th of Fourth + month, 1794, and endorsed by the Half-year's Meeting, held + at Edinburgh, 28th + of same month; and, also, a certificate from the + Yearly Meeting of Ministers and Elders, held in + London, dated 17th of Fifth month, 1794, all expressive of the unity of the Friends of those meetings in his + visit to these parts.

+

Deborah Darby and Rebecca Young also produced certificates to the Yearly Meeting at the same time, both from the + Monthly Meet-ing held at Coalbrookdale, in Shropshire, En-gland, dated the 20th of Third + month, 1793, endorsed by the Yearly + Meeting for Wales, + held at HCarmarthan, the 25th of + Fourth month, 1793. Also certificates from the Yearly Meeting of Ministers and Elders, held in + London, the 18th, + 20th, 23d and + 29th of Fifth month, 1793. + The company and labors of love of these Friends from Great Britain, are acknowledged to have been satisfactory + to Baltimore Yearly Meeting.* * The records of Baltimore Yearly + Meeting for 1796, contain + minutes, almost precisely similar to those given above, of the + appointment of the Indian + Com-mittee, and the presence of the Friends from Great Britain at the time. They were + partakers with them in their exercises for the advancement of truth + and righteousness, and sympathized in all their concerns.

+

The first important meeting of the Indian + Committee was held at Pipe creek, + (where theMeeting for Sufferings of Baltimore Yearly Meet-ing then frequently + convened,) the 22d of the Fifth month, 1796; + ten members being present. The meeting was opened by the expression of + a desire, by one of the committee, that every mem-ber + of the Society of Friends would be willing to give sanction to the + benevolent experiment recommended by the Yearly + Meeting; a senti- ment which was united with by all + present. These good resolutions were much strengthened and encouraged + by a letter they then opened and read, from the Indian Committee of Philadel-phia, dated Third month 24th, 1796* * Rebecca Jones, in a letter to a son of Catherine Phillips, of England, dated in the autumn of 1795, mentions the appointment of the Philadelphia + Com-mittee for Indian Affairs. + which set forth that they had addressed their Quar-terly and + Monthly Meetings, and, also, Particular Meetings, on the sufferings of + Indians, and had sent them, with the minutes from Philadel- hia Yearly + Meetings extracts from divers speeches and letters from + Indian Chiefs; all tending to spread useful information, and draw + the attention of our members to the situation of these distressed + people; some of them had also visited the President of the + United States, + George Washington, (at the time in Philadel-phia,) and acquainted him with the + views of our religious Society, on behalf of the Indians. They had, + also, conferred with the Secretary of State, who had manifested a desire to + co-operate with the Friends, in promoting the interests of the + In-dians. They had addressed a circular letter to + the different tribes of those called the Six + Na-tions, representing a desire to assist + them in attaining a more comfortable, quiet, and peacea-ble mode + of life, and expressed an opinion that the distresses and + difficulties the Indians labor under may, in a great degree, be + attributed to their propensity to the use of spirituous liquors, + introduced among them by traders and evil-minded persons, and suggested a + plan by which the trade in liquors might be checked in part, if not + fully. They conclude:-As, in our attention to this concern, anything + shall arise that may be deemed useful and proper to communicate, + we mean to impart the same, de-siring like care may rest with you, that + what may occur useful herein may be intimated to your loving + friends.

+

Addressed to John Brown, Elias Ellicott,John + M'Kim, and others, Members of the Com-mittee of the Yearly Meeting of Maryland, on the Indian + Concern, &c.

+

Signed by

+ + + John Parrish, + William Savery, + + + Henry Drinker, + John Hunt, + + + Benjamin Sweet, + John Pierce, + + + Warner Mifflin, + John Biddle, + + + Thomas Harrison, + Joseph Sansom, + + + John Elliott. + +
+

Any communication to the Philadelphia Com-mittee on Indian Concerns, + was to be addressed to Thomas + Wistar, Clerk of the Committee, who had authority to call a + meeting of their Sub-Committee of fifteen Friends, on necessary + occasions.

+

The committee remained two days in session at Pipe + Creek, deliberated on their benevolent purposes, addressed a + reply to their Friends, + John Parrish and others, in Philadelphia, through Thomas Wistar, and appointed John Brown, Jonathan + Wright, Israel Janney, + Moses Dillon, and Joseph Bond, to pay a visit to the + Delawares, Shawanese, Wyandots, and + other nations northwest of the river + Ohio, or to such parts of them as they shall find + freedom; appro-bation of the government being first + obtained. They also addressed a letter to the Indians to whom + they were about to send a mission, in which they informed them that the + Quakers, at their general religious council in Philadel-phia, having agreed to take some of the + Six Nations, who live in the + North, by the hand, our religious council held last fall in Baltimore were also concerned for your + welfare who reside in the West.

+

They have told us to endeavor to speak with you and get acquainted + with your nations. For this purpose we have sent our beloved + bro-thers, John Brown, Israel Janney, Jonathan Wright, Moses + Dillon, and Joseph Bond, + to shake hands with you in your tent, and to ask if you wish to be + instructed how to raise corn and wheat for bread, on your + own land, as we do; and to get meat at home without hunting, and + to weave blankets and clothes for yourselves, your wives, and your + children; and also to en-quire whether you wish to have your + children taught to read and write, and to do such other things as + will make you live comfortably under the shade of the great tree of + peace. We wish you to speak to us freely with the mouths of your + na-tions, and if it is agreeable to you we will talk to you again. + Farewell. +

+

Signed on behalf of our aforesaid Religious Council of the people + called Quakers, the 23d of 5th month, + 1796, by + + Allen Farquhar, + Benjamin Walker, + David Brown, + Elias Ellicott, + Caleb Kirk. +

+ +

Previous to the departure of this delegation to the Indian settlements, they + were furnished with permission for the purpose by the United + States government, expressed in two let-ters from the Secretary of + State, and addressed to Governor St. + Clair, and to General + Wayne, being as follows.

+ + + DEPARTMENT OF STATE, + Philadelphia, May 31st, 1796. + SIR,- +

Mr. Henry Drinker of this city, + whose respectable standing among the Society of + Friends, and as our fellow citizen, you well know, has informed me, + that a delegation of five pru-dent, judicious men, of religious + character, have been deputed by their brethren of that Society + in Maryland to visit the Indian + Tribes N. West of the river Ohio, + for the purpose of learning their situation and disposition, and + thence to judge of the practicability of introducing among + them the simplest and most useful arts of civil life. The result of + their inquiries and observa-tions they are to report on their + return to the Society.

+

The approbation of the President has been asked and obtained. The + object of this letter is to communicate the same to you, and + request of you to afford the delegation all the protection and + countenance to which their respectable char-acters and + philanthropic views entitle them. Most of the attempts at + civilizing the Indians, which I have heard of, have been + preposterous. We have aimed at teaching them religion and the + sciences, before we have taught them the simple and essential + labors of civil life.

+ I am very respectfully your most obedient + servant, + TIM. + PICKERING. + +
+

The delegation proceeded to the Indian coun-try, but found the chiefs, the + hunters and war-riors of the tribes with whom they desired to confer, + much dispersed over the country, engaged in their various pursuits, and + consequently were unable to hold any communication with + them collectively; under this disappointment they made their report to + the Committee on Indian Affairs.

+

During the next Baltimore Yearly Meeting, the + Indian Committee suggested, (in a + report they made to that body, in which they alluded to the inability + of their late mission to obtain an interview with the tribes whose + improvement and preservation they desired,) that if a notice of + the intention of Friends was intimated to the Indians in a suitable + manner, and they were re-quested to fix a time and place of meeting, + a satisfactory conference might be obtained; as the disposition of + such of them as they had had an opportunity of conversing with appeared + fa-vorable.

+

The report was dated 10th mo. 13th, 1796, and + signed by + EVAN THOMAS, + JOHN WILSON. +

+ +

On the 15th of 10th month, 1796, the Com-mittee on Indian Affairs was officially + informed that the Yearly Meeting had made an + addition to that Committee, by the + appointment of Reese Cadwallader, + Thomas Farquhar, Joel Wright,James + Mendenhall, George Ellicott, + and James M'Grew.

+

At the next meeting Joel Wright was + ap-pointed Clerk of the Committee, and + no busi-ness presenting, adjourned.

+ + +

At a meeting of the Indian Committee, + held at Pipe Creek the 20th of 5th month, 1797, im-mediately after + the conclusion of the Meeting for Sufferings, + which convened at that place, a very serious consideration of the + important charge entrusted to them impressed the minds of the Friends + in attendance, and Joel Wright + expressed a willingness, if provided with suita-ble company to + undertake a journey to the N. West of the river + Ohio, for the purpose of fur-nishing the Committee with more full informa-tion + respecting the situation and disposition of the Indians. The + Committee approved his proposalm and + he was left at liberty to make the journey.

+ +

The Committee on Indian Affairs met again + on the 7th of Tenth month, 1797, and + received a most interesting account from Joel + Wright and the companions of his journey,-Reese Cad-wallader and David Greaves,-of their visit to the Indian country, dated + the 15th of Ninth month, 1797, from which + communication the following extract was copied:* * On + a recent examination of the Records of the + Indian Committee of Baltimore Yearly Meeting, in order to test the + correctness of the abridgment now published, the incidents, dates and + names were found to be exactly similar. +

+ + +

In the course of this journey, after having visited a number of + Indian hunting camps and several of their towns, we had a large + oppor-tunity to discover their present situation; + often exposed to the inclemency of the seasons, with a very + precarious and frequently a scanty sup-ply of food and clothing. + From the knowledge we have obtained of the extensive and + valuable country they have lately given up to the United + States, and of the narrow strip of land yet re-served for their own + use, between the line of the American garrisons and from Detroit to the mouth of the Kentucky river, we were im-pressed with + a belief that the Wyandots, Shawa-nese and Delawares who dwell there, will, unless they alter + their present mode of living, be re-duced, in a few years, from the + scarcity of game, to a state of extreme want and distress.

+ +
+

At the upper end of Sandusky Town, they + held a council with two of the principal chiefs of the Wyandot nation and several of their former + warriors and young men, when Isaac Zane + interpreted to them the address prepared by the Friends of Baltimore Yearly Meeting. He also interpreted the + reply of one of the Chiefs, which was brief but friendly.

+

They found that the Wyandots were the + principal nation; that everything of importance must be transacted in + their council; they can transact business by themselves, but the + Dela-wares and Shawanese have to apply to them when any + business of consequence is laid before their people.

+

This reply of the Indians, was presented to + Baltimore Yearly Meeting of Friends with the + Report of the Committee on Indian + Concerns, and was published in the newspapers of the day.

+

Afterwards, at a meeting of the Indian + Com-mittee in Baltimore, + the 16th of Eighth month, 1798, they + received a letter from John Hecke-welder, + agent for the Moravian Society, + repre-senting the distressed condition of the Indians under his care, + in consequence of their having been driven from their settlement on the + Mus-kingum river, during the late war, + and were now returning thereto in want of provisions and necessary + implements of husbandry; whereuponReese + Cadwallader, Nathan Heald and + Joel Wright were appointed to + inspect into the circumstances of those Indians, with liberty, if + they shall believe it necessary, to afford them some assistance by + furnishing them with such articles as they may be in immediate want + of. This delegation reported to the Indian Commit-tee, at a meeting held in Baltimore the 2d of + Fourth month, 1799, in a communication bear-ing date, Redstone, Twelfth month + 21st, 1798, and signed by Reese + Cadwallader and Joel + Wright. They had proceeded on their mission as far as + Georgetown on the Ohio, sixty-five miles from Redstone, but ascertaining that John Heckewelder had lately gone to Bethlehem, and had procured the Indians under his charge + a supply of provisions for the winter before his departure, and that + the principal Indians of the settlement were then dispersed, + and at their hunting camps (no date given), they turned their + attention to eight of ten families of other Indians of the Tuscaroras, who were very de-sirous of being + instructed in farming, but were without agricultural implements, and were + also in want of provisions; these they would have visited, in order to + meet their active men, who had invited them to an interview, + but were prevented from doing so by the situation of the + Ohio river, which was in flood, with vast + masses of ice passing down it. They, however, left a supply for their + relief with Thomas Smith, who lived near + Georgetown, and also engaged a + black-smith to make them some farming utensils.Reese Cadwallader and Joel + Wright, from all they had heard and seen on their journey, + be-lieved it would be right for the Indian Com-mittee to send a deputation to the + General Council of the Indians to be held the next spring.

+

The Committee on Indian Concerns met + again on the 23d of Third month, 1799, being + a spe-cial meeting; when a letter from Thomas + Wistar and a speech from the principal chief of the Wyan-dot nation, called Tarhie (the Crane), was read. This chief, in his speech, + which was delivered at + Detroit on behalf of the whole Wyandot nation, on the 8th day of September, 1798, reminds the Friends that they once + met the Indians at a certain place where a great many + good things were said and much friendship professed + between them; that they had no place of security for their + speeches, as their white brethren had, and that their belts of wampum + were their only re-cords; and adds, but, if + you examine your books and papers, you will there find written all + that passed between your forefathers and ours. He speaks further + of a belt of wampum given to us by your forefathers, with + a piece of parch-ment affixed thereto; when you see the belt of + wampum and read the writing on the parch-ment, you no doubt will then + perfectly know us, and will consider us as brethren united by a + chain of friendship which can never be broken whilst memory + lasts. He informed the Friends that he understood some of them + wished to pay his people a visit, and adds, We are much + pleased to hear that you still hold us in remembrance.

+

The letter of Thomas Wistar,* Notwithstanding friendly relations continued ever after + to be maintained between the Indian Committee of + Philadelphia and + that of Baltimore, the manu-scripts I have + overlooked furnish no account of fur-ther correspondence between them, + until some years after the date of this letter of Thomas Wistar. clerk of the + Committee on Indian Concerns in Philadelphia,was dated 27th of Second month, 1799, and states that + the Miami nation had made + a re-quest of their Committee for some + Friends to settle amongst them, and a speech from theDelawares left no doubt that a similar request + would be made from them; that they had + proceeded no further than to furnish the Mi- + ami's with two ploughs, a harrow, gears and other articles, + but had no prospect of making an early settlement amongst them. Thomas Wistar mentions that he was informed by + Jonathan Shefflin that the Wyandot speech was in answer + to a few lines left (and signed by two or three Friends) at their + village, and supposes it must have been the + Friends of your Committee who were + in that country, as from us none have been sent as yet amongst the + nations west of the River Ohio. He + con-cludes with the following caution to the Balti-more + Committee: We are aware that Indians very + generally take as promises what may be suggested to them for their + consideration, as probable to take place, if they unite with it; + we have of late been very guarded in our com-munications with them, as + the more we become acquainted with the Indian character the + greater necessity we perceive for it.

+

On considering the speech of the Wyandot + cheif, the Baltimore + Committee on Indian Con-cerns made an + enlargement on their former ap-pointment by the addition of Evan Thomas and + George Ellicott, who were directed to + co-operate with Reese Cadwallader, + Joel Wright and Na-than Heald. They were desired to endeavor to visit + those Indians in order to cultivate their friendship, and, if way should + open, to offer them assistance.

+ +

A reply was also written and forwarded to the Indian + Committee of Philadelphia Yearly Meeting in part as + follows:

+ + + Dear Friends,- +

The correspondence has, on our part, been suspended till the + account should be received from the Western Indians, which is + now communicated by you; they pro-bably conceiving that Friends, + wherever situ-ated, act as one body united. As the Friends of Pennsylvania have had a correspondence + with them at times, from the first settlement of the country, + and as they, in their present address, have alluded to former + transactions, it seems the more necessary for us to apply to you + for information on that head. We have been aware of our own + inability at present to do any great matters, and have endeavored + to guard against raising their expectations. A speech was some + time ago communicated to some of the chiefs of the Wyandot nation, at the Upper Sandusky, with a view to inform + them that we were de-sirous of turning their minds to some of + the most simple arts of civil life; and we wished to know of + them whether it would be agreeable to them to make such a movement. + They in-formed us that they would lay the subject be-fore + their council and return an answer. A copy of the speech was left + with them addressed to the chiefs of the Wyandot, Shawanese and + Delaware nations, and of which we + herewith hand you a copy also.

+ +

We should have been pleased with the re-ception of the original + speech of the Wyandot Chiefs and + the belt of wampum they speak of, with a copy of that from the + Delawares and + Miamis, the latter being, we suppose, of + theShawanese nation. Five of + our number are ap-pointed to attend at Sandusky at the time of the great Indian Council, + of which you will please inform the Superintendent,* * The seat of Government of the United States + had not then been removed to the City of Washington.The Superintendent resided in + Philadelphia. and + com-municate such further information on the sub-ject as you + may conceive to be necessary. We also suggest the propriety and + usefulness of your appointing a few Friends to unite in the + visit, since the prudent conducting of the mat-ter may be of great + importance.

+

As you are better acquainted than we are with the mode of conducting + business with the Indians, if you think a belt of wampum will + be necessary on our part, you will please to pro-cure one for + us suitable for the purpose, to be forwarded with the original + speech and belt received by you, and we will remit the amount + so soon as you advise us thereof.

+ Signed on behalf of the Indian + Committee of Baltimore, by + JOEL WRIGHT, Clerk. + BALTIMORE, Third month 24th, + 1799. + +
+ + +

The deputation left their homes on the 7th of 5th + mo. 1799, on horse-back and with pack horses to carry a tent, + provisions for the jour-ney which would be necessary after leaving the + settlements of Friends of Ohio, and useful + pres-ents to the Indians. It may be as well to men-tion at this point, + as the subject has not been al-luded to before in this Appendix, that of + all the missions we have referred to as sent out by the + Indian Committee of Baltimore Yearly Meeting, the Friends engaged in them + travelled on horse-back, and experienced privations which in this day + of railroads and telegraphs cannot be appre-ciated. Valuable gifts for + their Red brethren, their wives, and children, were never omitted on + these occasions.

+ +

At the next meeting of the Indian + Commit-tee, which was held in Baltimore, the 15th and + 16th of 10th month, 1799, the Friends who + had been appointed to visit the Indians made their report, viz: + Pursuant to our appointment we sat out on a visit to the Indians, + the 7th of 5th month last, and arrived + the 3d of the next month at Upper Sandusky, the principal village of + the Wyandots; we were met there by a + friendly reception from Tarhie, (the + Crane,) the head chief, and others of the nation who + hap-pened to be at the village.

+

On conferring with them they found that a mistake in translating their + language had led to a misunderstanding respecting the time of hold-ing the Grand Indian Council, which they now understood began + every year at the full moon, in the 6th month; they were, therefore, + too early in their visit, and with the impossibility of collecting the + other Indians who would not be likely to assemble until the council, + they concluded to hold a conference with Tarhie and the other chiefs then at Sandusky, in his house; and had a free conference with + them on the sub-ject of their visit. Their communication was kindly + received, and an answer delivered on four strings of wampum, expressive of + their gratitude for the care and friendship of the Quakers;* *Tarhie continued ever + after to devote himself to the improvement of his people, and lived to + be the oldest Indian in the West. He had signed a treaty between + the United States and the Indians as early as 1786, and although obliged by his warriors to take part in + the revolt which soon after took place, and in the battles subsequently + fought, he appears to have been the first to persuade the Indians to + make a virtue of neccesity, to bury the hatchet, and + yield to the superior power of the white men. He was cruelly executed + by the order of Tecumseh, in1810. and as soon as the Grand Council + met, they would communicate to it the concern the Friends now felt for + their improvement, and inform us by a written speech of their + conclu-sion thereon.

+

They conclude their report by remarking:

+ + +

While we were at Sandusky and in other + In-dian villages, our minds were often deeply + af-fected under the sorrowful consideration of the baneful + effect of spirituous liquors on them, being abundantly supplied + with it in almost every vil-lage by Canadian traders residing among + them; and we are confirmed in the opinion, that unless the + traders can be restrained from furnishing them with this + destructive article, in exchange for their skins and furs, they + will not easily be persuaded to turn their minds towards + agricul-ture and the useful arts. At the same time, we have no + doubt that these unprincipled men will make use of the great + influence they have over the Indians to keep them in their present + mode of living, as most conducive to their own in-terests. + Notwithstanding this cause of dis-couragement, the great affection + which the In-dians have always manifested for our Society, + induces us to desire that Friends may endeavor to keep under the + weight of the concern, and be prepared to proceed in the benevolent + work before them, whenever the way may open for service among + them.

+ Signed by + EVAN THOMAS, + JOEL WRIGHT, + REESE CADWALADER, + GEORGE ELLICOTT. + Dated Monongahela, 6th mo. 26th, 1779 + +
+

In the manuscript journal of George Ellicott + to the Plains of Sandusky, the following relation of the interview between + the Friends and theWyandot Chiefs is + preserved:

+ + +

After Evan Thomas had concluded his + dis-course, which was delivered by paragraphs through an + interpreter, Tarhie, (the Crane,) + the principal chief, took into his hand four strings of + wampum, and began his speech. As he proceeded, he continually kept + the strings of wampum moving, and spoke in a methodical way, + and with the force and manner of an orator. I make no doubt, if the + interpreter had been able to do justice to the sentiments + expressed, we should have pronounced a verdict highly in favor + of the eloquence of this son of the forest.

+

After he had finished his speech, he desired his wife (who occupied + an apartment above the council room, so situated that she could + hear what passed), to hand down to him the papers, which he + had; which she did. We read them, and found among them Wayne's treaty, and a long paper + containing much good advice from the Secretary of War.

+

When the Indians hold a council, they have some of their principal + women placed in a little room, either adjourning or overhead, where + they can hear perfectly all that passes. This they treasure up + in their minds, and as they are apt to have retentive memories, + their traditions are faithfully preserved.

+ +
+

The manuscripts in my possession furnish no record of the + proceedings of the Indian Com-mittee, + from the reception of this report to the + 17th of 4th month, 1801, when an account is + given of a meeting, at which a committee was appointed to draft a letter to + Tarhie, Buck-ingehelas, and other chiefs of the Wyandot and + Delaware nations of Indians, in return for a + let-ter and speech which had been received from them, which did not + contain a full reply to the proposition made to the Indians in 1799. The committee supposed their communication + had not been faithfully translated, and again inquired of their Red + brethren:

+ + +

Are you willing to have your children instructed at home, on + your own lands, how to raise plenty of corn, to make clothes, + and to build houses; to keep your old men, your women and children + warm when the weather is cold; and that you may not suffer + from want when the game gets scarce in your country?

+ Signed by + GEORGE ELLICOTT, + JOEL WRIGHT, + ISRAEL JANNEY, + GOULDSMITH CHANDLEE. + Dated Baltimore, 4th month 17th, + 1801. + +
+

At their next meeting the Indian Committee of + Baltimore was informed by + a communication from Joel Wright, that + nothing had been re-ceived from the Indians since the last meeting, + and no business was transacted.

+ + +

The next meeting of the committee was a + special one, and held at Pike Creek, the 24th of the 5th month, 1802. This meeting was + called in consequence of a part of the committee hav-ing had a conference with a number of + Indian chiefs in Baltimore. The chiefs + were on their way to Washington, the seat + of Government, and were waited on at their lodgings, the Fountain Inn, + Light Street, by the members of the Indian + Committee of Baltimore and + Ellicott's Mills, to confer with + them on subjects of deep im-portance to their Red brethren, viz: the + introduc-tion into their tribes of some of the arts of civil-ized + life, and to remonstrate against the use of spirituous liquors. The + Baltimore members pre-sented to the + General Indian Committee the whole account of their conference, and + the memorial they had presented to Congress against the introduction + of spirituous liquors into the Indian settlements. As the account of + the conference was published in several of the newspapers, I give the + following extract from one of them:

+ + + +

The editors having obtained a genuine copy of the proceedings of the + committee appointed by the + Yearly Meeting of the respectable So-ciety + of Friends, in two conferences with the Indian Chiefs + from the banks of the Wabash, + Lake Erie, and Lake Michigan, being from the + Pottowattomy, Miami, Delaware, + Shawanese, + Weas, Eel + River, Piankshaw, Kickapoo and Kaskaskia tribes of Indians, who lately + passed through this city on their way to the Federal Government, + feel no small degree of pleasure in having it in their power to + gratify an inquisitive public with the interesting + con-tents.

+ +
+

Besides the members of the Society of Friends, many respectable persons of + different religious persuasions were present, and the communica-tions + were taken down with accuracy by Gerard T. + Hopkins, a stenographer of great ability. + William Wells, agent for the United + States amongst the Indians North-west of the Ohio, was the interpreter. He was a native of Ken-tucky, and had been taken captive by the + Miamis when only eight years of age,-had + afterwards been adopted by one of the chiefs, and continued to reside + amongst them. On this occasion he had attained his thirty-fifth year, + and being possessed of good talents, not only spoke the language of the + Tribes represented by the Little Turtle, + the Five Medals, and other Indians + present, but also the English language with fluency, and wrote well.

+

On the first interview of the committee with the Chiefs, which was on the + 26th of the 12th month, 1801, the + exercises commenced by the following short, but expressive address from + Elisha Tyson, in whose house the Indian + Delega-tion, the Indian Committee and + their friends, were convened; he was not at the time a member of the committee, but was interested in all philan-thropic + movements.

+ + + +

Brothers and Friends: I am desirous in the early part of this + opportunity, that you may be informed, that the people called + Quakers con-sider all mankind as their brothers: that they + believe the Great Spirit and Father of all man-kind created all men + of one blood; and that it is the will of Him who also created the + sun, the moon, and the stars, and causes them to give us + light,-the Great Spirit and common Father of all mankind,-that we + should not do one another hurt, but that we should do one another + all the good we can; and it is on this ground, and this + principle, that we believe it right to take you by the hand.

+ +
+

Then after a short time spent in silence, an-other member of the Society of + Friends, John M'Kim, spoke, declaring + that the Quakers be-lieved it required of them to + love all men, without reference to location or complexion; that + they were convinced it was not in their power to perform their + religious duties to the Great Creator of all things without his + assistance, and therefore felt it their duty, when entering upon + such important business as that in which they were about to engage, to + sit down in stillness and wait upon Him. After some-thing + more on this subject, and a reference to the Yearly + Meetings of Philadelphia and + Balti-more, he proceeded to say that the Friends re-membered the friendship which + had subsisted between their Society and the Indians, from their + first settlement in America; and recollect-ing that the Western country + was fast filling up with white people, and that game would + ne-cessarily become scarce, they feared the Indians would be + brought into a state of suffering. That, in consequence of the long + wars that had subsisted between them and some of the white people, + the Friends for a long time had not had an opportunity of taking them + by the hand. That so soon as an opportunity had presented, after a + peace was effected, a concern had arisen in their council, and several + Friends were ap-pointed to go out into the wilderness and have a + talk with them. He then called upon the Friend who sat at his + right hand, Evan Thomas, who had been one + of the mission to the Plains of Sandusky, + to give an account of the move-ment in this concern. Evan Thomas then gave a very concise relation of the + journey, and the conference with the Wyandot Chiefs, (which has been before alluded to, and of + which a narrative was published some years since by + Philip E. Thomas,) and proceeded to inform + the deputation that the Friends had received no re-sponse to the + proposals then made to the In-dians; but a belt of wampum and a speech + had been sent them from a council held at Detroit, and an invitation to attend their General + Coun-cil. After he had concluded, another member of the + Indian Committee, George Ellicott, + ad-dressed the chiefs as follows:

+ + + +

Brothers and Friends: We were glad when we heard that some of our + Red brethren were coming to this city, and felt our minds + drawn to take them by the hand, and have an oppor-tunity of + knowing them. As we have not been made acquainted with their + circumstances, we have not been able to judge whether any + thing we have had to propose to do for them would be accepted? + Whether they are really under the necessity of applying to some + other mode of living to obtain a livelihood, and whether game + in their country is yet plenty? We have thought, brothers, + that if it should not yet be the case, that game is scarce, at the + present time, it will probably be the case in some future time; + and, therefore, we have thought it would be best for our Red + brethren to give some attention to the cultivation of the soil. + This is one of the subjects which has claimed our attention; and as + we feel in our hearts that we love the Indians and desire + their welfare, we wish to turn their attention to the subject; we + also believe, brothers, that we derive a very great advantage from + reading books which contain instruction, we wish that our + brethren, the Indians, should partake of the same means of + instruction with ourselves. We wish you to let us know with candor, + whether you desire these things, and if you do so, that we may + do for you whatever may be in our power.

+ +
+ +

After a short pause, the Little Turtle + inquired if the Friends had any thing more to say, and being told that + we were all willing to listen to him, he rose up and said:

+

Brothers and Friends: My heart returns thanks to the + Great Spirit above, that has put it in our power to speak to each + other. My brother chiefs and myself are glad that our Friends and + brothers, the Quakers, have such great compassion for their Red + brethren. He then spoke of the belief of the Indians, in one Great Creator of all the men upon the earth, + and who were made when the earth, the sun, moon, and stars were also + made, to be useful to them and give them light. After + referring to the desire of the Friends to benefit the In-dians, and + their need of that assistance, he added: You have been + kept in the straight path by the Great and Good Spirit. We have + been led astray by inferior spirits: we now hope that we may come upon + your track, and follow it. He then said the + long and destructive wars that have raged in the country of our + Red brethren, since your fathers first came amongst them, have caused + their numbers to be greatly diminished. Those that have come among + us, have very much cheated and imposed upon us. They found us simple + and ignorant, and have taken great care to keep every thing from + us, in order to profit by our ignorance.

+ + + +

Friends and Brothers,-We find you are now disposed, + with open arms to receive us, and we hope the Great Spirit will + assist you, together with the Great Chief of the White People, + to whom we are about to apply for help.

+

Brothers and Friends,- At the Treaty of + Grenville, which is now a little + past six years, we received some presents by the hand of the + Great War Chief of the Americans (General + Wayne)-said to be sent to us by our brothers the + Quakers. After this Treaty I was invited by the Great War Chief of + the Americans to visit them. It is now four years since I + visit-ed them in Philadelphia, + whilst the Great Coun-cil was held in that city. I had there an + oppor-tunity to see our brothers the Quakers, and re-ceived + from their mouths some of their talks: all these talks I wrapped up + in my heart, and when I returned home to my brothers I told + them all those good things which you had told us you were desirous + to do for us.

+

Brothers and Friends,-I am happy to say that these my Red Brothers + now present with me are Chiefs, who in their own country are + equally great with myself; they were rejoiced to hear your words + delivered to them through me four years ago; and they are equally + glad with myself to hear from the mouths of our brothers the + Quakers the same good words again. If we understand you right, you + wish to add comfort to our women and children by teaching us + and them some of your ways of living. I am + glad that the Great Spirit has put it into your hearts, and am + sorry that your efforts have not yet been successful.

+

Brothers and Friends,-I now assure you, that you hear the voice of + the Potowatomy, Miami, + Delaware, Shawanese, Weas, Eel River, Pianka-shaw, Kickapoo, and Kaskaskia Tribes + of Indi-ans, and if you wish to do any thing for any of these + nations we will at all times be ready to render any assistance in + our power.

+ +
+

The Little Turtle then again alluded to the + plea-sure they had received from the words of theFriends of Philadelphia, and were equally pleased to hear + the same good words from the Friends of of + Baltimore. He then mentioned that the Friends of Philadelphia + had given them some tools, among which were two + ploughs.* * Alluded to in the letter of + Thomas Wistar. + I used them, and did all I could to keep them from + wearing out; I was pleased with them; they now need repair; we + have nobody among us that can mend them, and they are now useless to + me. He then referred to a visit they had made to Phila-delphia five days since, and the talks + they had had together with the Quakers there, had concluded by + inviting the Friends of Baltimore to meet the Indian tribes at their + next Great Council, held annually at Fort + Wayne, at the time the Indians receive their annuities from + the United States; and requested that any information intended + for them should be conveyed to them through their interpreter, + William Wells, Indian agent at Fort Wayne.

+

After taking his seat, this chief appeared to have reflected that he had not + answered fully the questions proposed to them, and rising again, + said:

+

Brothers and Friends: It is the real wish of your + brothers, the Indians, to engage in the cultivation of our lands, and + although the game is not yet so scarce but that we can get enough + to eat, we know it is becoming scarce, and that we must begin to take + hold of such tools as we see are in the hands of the white + people. After-wards he alluded in forcible language to the + con-fidence which the Red men had in the Friends, and that they knew + they desired no compensa-tion for their services to them, and added, Bro-thers, we are a jealously disposed + people-almostevery white man that comes among us endeavors to + cheat us; this has occasioned jealousy among us. But your talks, + brothers, are different, and we believe you.

+

The Five Medals then made a speech, in + which he reiterated much that the Little + Turtle had spoken, and continued:

+ + + +

Friends and Broth-ers, the talks that you have now delivered to + us shall be carefully collected, wrapped up and put in our + hearts,-we will not forget them. On our return home, we will have + them com-municated from the head to the mouth of + the Wabash,-from this to the Mississippi, and up that river until it + strikes the lakes, thence round by Michillimackanack until they come back again to + the same place. What we say to you does not come from one, but from + many, and what you have now said to us, you speak it to but a + few, but it shall be communicated to many.

+

Brothers and Friends, I observed to our friends, the Quakers of Philadelphia, five days ago, what I say + now to you, that we wish our brothers, the Quakers, to render us + those services they have proposed. We promise that nothing + shall be wanting on our part to give aid to so desirable a thing in + our country. Our situation at present will not admit of carrying + such a plan so fully into execution as we could desire, but I + hope you may not be prevented from ma-king trial. If we had such + tools as you make use of, and which add so much to your + comfort- for we have been lost in wonder at what we have seen + among you,-if we had these instruments, we should, I hope, be + willing to use them.

+

From the great things, and astonishing wonders, which we have seen + among you, and finding they all come out of the earth, it + makes me anxious to try if I cannot get some for my-self.

+ +
+

He then expressed his regret that the move-ments of the Friends towards the + Indians had not met with the success which they deserved, + allu-ding to their having received no satisfactory re-ply from the + Wyandots and Delawares, and concluded with observing, There is a great deal, brothers, in having a good interpreter, + and beginning at the right end of the business. [The Indian + Committee who had had the inter-view with Tarhie, + (the Crane,) and a few of his chiefs at Sandusky, were under the impression that their + speech to the Indians was not clearly translated, of which a hint had been + given, and hence the remarks of the Five + Medals.]

+

Here the interview with the Indians closed.

+

After reflecting on the subject of their con-ference with the Indian Chiefs, + the members of the Indian Committee + regretted that they had not made use of that opportunity to express + their opinion on the subject of the use of spirit-uous liquors. Another + meeting of the Com-mittee and their + friends was accordingly called, and the chiefs were invited to attend. They + met again at the dwelling of Elisha + Tyson. After a brief representation of the reason for + another interview given by a friend, Evan + Thomas ad-dressed the chiefs in a forcible + communication, which was full of feeling; after assuring them that the + love he felt for the Indians, and his interest in their welfare, had taken + away all fear of giving them offence, he proceeded to ac-knowledge + what he had witnessed in his visit to the Wyandot + Nation, and his belief that the too frequent use + of spirituous liquors was more in the way of their improvement than + anything else, and appealed to them thus: Are you + ofthe same mind with us who are your friends, and have your good + at heart; that it would be right for us to take the subject into our + serious con-sideration, to endeavor to discover whether there may + not be some steps taken that would put a check upon this pernicious + thing?

+

After calling upon the chiefs to express them-selves freely in regard to the + concern, theLittle Turtle inquired if any + of his broth-ers, the Quakers, had any further communica-tion to make, + and being desired to proceed, rose up and said:

+ + + +

Brothers and Friends, I am happy to find it has pleased the Great + Spirit, that we should again meet in the same house in which + we held our council yesterday. I am happy to find that it is the + will of the Great and Good Spirit that we should discover that + there was something omitted yesterday, that was highly necessary + for your red brethren.

+

Friends and brothers, I am glad to find that it has pleased the + Great Spirit to put a wish in your hearts on the subject you have + mentioned; a subject of the greatest importance to us. What + you have said relative to our being one flesh and blood is true. + Your brothers, the In-dians, believe that it is in this light the + Great Spirit considers all mankind.

+ +
+

He afterwards remarked, that the Indians had long been aware of the great evils which had raged in + their country, but could obtain no redness; that since the + introduction of spirituous liquors among them, their numbers were greatly + diminished, and taking advantage of the request which had been made, + that they should express themselves freely, added:

+ + + +

I will now take the liberty to mention, that most of the evils + existing among the Red people, have been caught from the white + people; not only that liquor which destroys us daily, but many + diseases that our forefathers were ignorant of, before they saw + you.

+

Brothers and Friends:-I am glad you have seen this business as we + do, and rejoice to find that you agree in opinion with us, and + express an anxiety to be, if possible, of service to us, to + remove this great evil out of our country; an evil that has had so + much ruin in it,-that has destroyed so many of our lives, that it + causes our young men to say, We had better be at war + with the white people. This liquor that they introduce + into our country, is more to be feared than the gun or the + tomahawk; there are more of us dead since the treaty of Grenville, than we lost by the years + of war before, and it is all owing to the introduction of this + liquor among us. This subject, brothers, composes a part of + what we intend to make known to the Great Council of our White + brethren. On our arrival there, we shall endeavor to explain to our + Great Father, the President, a great many evils + that have arisen in our country, from the introduc-tion of + this liquor by the white traders.

+

Brothers and Friends: In addition to what I have observed of this + great evil in the country of your red brethren, I will say + further, that it has made us poor. It is this liquor that + causes our young men to go without clothes, and our women and + children to go without anything to eat, and sorry I am to mention + now to you, brothers, the evil is increasing every day, as the + white settlers come nearer to us, and bring those kettles they boil + that stuff in they call whiskey, of which our young men are so + extremely fond. Brothers, when our young men have been out + hunting, and are returning home loaded with skins and furs, on + their way, if it happened that they come along where some of this + whiskey is deposited, the White man who sells it, tells them + to take a little drink; some of them will say no, I do not want it; + they go on until they come to another house, where they find more + of the same kind of drink; it is there again offered, they + refuse, and again the third time; but finally the fourth or fifth + time, one accepts of it and takes a drink, and getting one, he + wants another, and then a third, and fourth, till his senses + have left him. After this, reason comes back to him; when he gets + up and finds where he is, and asks for his peltry, the answer is, + you have drunk them. Where is my gun? It is gone. + Where is my blanket? It is gone. Where is my shirt? You have sold + it for whiskey! Now, brothers, figure to yourselves what a + condition this man must be in; he has a family at home, a wife and + children, who stand in need of the profits of his hunting, + what must their wants be, when he himself is also without a shirt. +

+ +
+

After expressing his hope that the Great Spirit would aid the Friends + in their efforts to assist the Indians, and that they would use any + influence they possessed with the great council of the United States + on their behalf, and again alluding to the baneful effects of + spirituous liquors, and the bad advice of wicked men who wished to keep + them in ig-norance, he finished by declaring that he desired all that + he had said should be made public, provided the Friends had no objection + thereto.

+

The Five Medals then rose and said:-My Brothers and Friends: I have nothing to say on the + subject we have now been talking over. My friend, the Little Turtle, has given you a full answer + to those things you have mentioned to us; we are but one people, and + have but one voice. We hope, brothers, that your friendship and + ours may never be broken.

+

Evan Thomas, then adressed them again as + follows.-Friends and Brothers: What you have + communicated at this time, has been clearly understood, and we are glad + to find we see things in the same light that you see them. The several matters you have mentioned, and the + difficulties you have stated, claim our sym-pathy and solid + consideration, and we shall, I trust, take the subject up, and if way + should open for us to move forward, in aiding you in your + application to the General Government, we shall be willing, either on + this occasion, or any other, to render you any service in our + power. The conference then broke up, and the Indian Committee prepared and forwarded to + the Con-gress of the United States, the following me-morial.

+ + + To the Congress of the United States: +

The memorial of the Committee appointed for + Indian affairs by the Yearly Meeting + of Friends held in Baltimore, respectfully + repre-sents:

+

That a concern to introduce amongst some of the Indian tribes + north-west of the river Ohio, the + most simple and useful arts of civil life, being several years + since laid before our Yearly Meeting, + a Committee was appointed by + that body, to visit them, to examine their situation, and + endeavor to ascertain in what manner so desirable a purpose could + be effected. A part of that Committee, after having obtained the approbation of + the President of the United States, proceeded to perform the + service assigned them, and the result of their enquiries and + ob-servations, as reported to the Yearly + Meeting, was, that the quantity of spirituous liquors + with which the Indians are supplied, by traders, + and frontier settlers, must counteract the effect of every + measure, however wise and salutary, which can be devised to improve + their situa-tion.

+

The truth of this assertion is abundantly confirmed by a speech made + before us, by aMiami chief, the + Little Turtle, (of which we + herewith transmit a copy for your consideration.) and we also + acknowledge our belief, that the evil is of such magnitude, that + unless it can be altogether removed or greatly restrained, no + national hope of success in the proposed under-taking can be + entertained. We are therefore induced to solicit the attention of + the National Legislature to this interesting and important + subject; a subject which we consider involves, not only their + future welfare, but even their very existence as a people.

+ Signed on behalf of the Committee, by + + + + Evan Thomas, + John M'Kim, + + + Elias + Ellicott, + Joel Wright, + + + John Brown, + George + Ellicott, + + + David Brown. + +
+
+ Baltimore, 1st month, 1802.
+ +
+

These Friends soon after repaired to the seat of government, presented their + memorial to Congress, and were gratified by the passage of the law, + which they so much desired. Whilst in Washington they waited on the Secretary of + War. The law passed by Congress, authorized the President of the United + States to take such measures from time to time, as + to him may seem expedient, to prevent or restrain the vend-ing or + distributing of spirituous liquors, among all or any of the Indian + tribes.

+

On the subject of civilization the law states + that in order to promote civilization amongst the + friendly Indian tribes, and to secure the con-tinuance of their + friendship, it shall be lawful for the President of the United States + to cause them to be furnished with useful domestic ani-mals, and + implements of husbandry, and with goods or money as he shall judge + proper, and to appoint such persons from time to time, as + tem-porary agents to reside amongst the Indians, as he shall think + fit; provided that the whole amount of such presents and allowance to + such agents shall not exceed fifteen thousand dollars per + annum.

+

The Committee reported their progress to + a general meeting of the Committee on Indian concerns, which was held + in Baltimore, 13th + of 10th month, 1802,* *During the session + of Baltimore Yearly Meeting. The general + meeting of the Indian Committee, of + Baltimore Yearly Meeting, in consequence of the + re-mote residence of some of the members, met once a year. + and informed them of the conferences which had been held with the + Indian chiefs; the chiefs of those nations whom Balti-more Yearly Meeting had it in + contemplation to visit. Their report presented the speeches of the + chiefs, the memorial of the Committee to + Congress, a copy of the law passed by Congress, and an account of their + interview with the Sec-retary of War, with the information received + from him. The War department at this period of the government of the United + States had the care of Indian affairs, and the Secretary informed the + Friends that, agreeably to the request of the Indians, the government had + established a tra-ding house at Fort + Wayne, that they were in want of several persons of our + Society; black-smiths, carpenters, and superintendents, men that could + make and mend ploughs, looms, farm-ing utensils, &c., and wished to + employ such as were of exemplary conduct, and concerned for the + promotion of the work in prospect; to such the United States offered a + liberal compensa-tion.

+ +

At the next meeting which was held in Bal-timore the 7th of 2d month, + 1803, the Commit-tee on Indian + Concerns agreed to make the following application to the + Meeting for Suffer-ings of Baltimore Yearly Meeting:

+ + + +

We of the Committee on Indian affairs + ap-pointed by Baltimore Yearly + Meeting, impressed with an idea of the importance of our + appoint-ment, and with a full persuasion, that the situa-tion + of our business requires speedy attention, as the obstructions that + have heretofore prevented Friends from moving forward, + in extending to the Western Indians the benefits some years + ago contemplated by the Yearly Meeting, + are now removed, and considering the distant situa-tion of + many of our members from each other, and the difficulty and even + impracticability of ob-taining a general meeting; we have been + in-duced to believe it right to submit the subject to the + consideration of the Meeting for + Sufferings for their cordial sympathy and advice, and + if they may believe it right, for their co-opera-tion also. + Signed by

+ + + + Evan Thomas, + Moses Dillon, + + + John M'Kim, + Jonathan Wright, + + + David Brown, + George Ellicott, + + + Elias Ellicott, + Joel Wright. + +
+
+ +
+

The Meeting for Sufferings entered cordially + into sympathy with the members of the Indian + Committee in their benevolent enterprise, and they were + encouraged to appoint a Committee to procure agricultural, and other useful + implements, and have them conveyed in seasonable time to + Fort Wayne.

+ +

The Committee on Indian concerns met + again in Baltimore the 10th of 10th month, 1803, and drew up a report + for Baltimore Yearly Meeting; in which they + related that in consequence of information received from the Western + Indians, and the prohibition by the President of the United States of + the sale of spirituous liquors amongst them, the Committee had been + im-pressed with the belief that the time for an earnest + commencement of the benevolent inten-tions of the Yearly Meeting had arrived; they had accordingly + purchased for the use of those Indians agricultural implements + of various kinds which were sent in packages to + Pittsburg, from whence they were + to be immediately con-veyed to Fort + Wayne, and delivered as a present from the Society of + Friends of Baltimore Yearly Meeting, to + the Little Turtle, and other chiefs; + to be disposed of by them, to such of their peo-ple as they knew were + desirous of using them. They also reported that they had had + some cor-respondence with William Wells, + the Indian agent at Fort Wayne, but had + not yet heard of the arrival of the agricultural implements at their + destination. William Wells had replied to + their enquiries on behalf of the Indians, and in-formed them as his + opinion, that the suppres-sion of liquors in that + country is the best thing that has ever been done for the Indians, by + the United States; that within a year, not one In-dian had been + killed; whilst there had never been a year before since the treaty of + Gren-ville in which there were + less than ten killed, and some years as many as thirty.

+

The report was signed on behalf of the Com-mittee, by Evan + Thomas, Joel Wright, and + James Mendenhall.

+

To this report a postscript was added, that in consequence of + the decrease of some of the first members of the Indian Committee (their names, however, not given,) and a + distant situation and other causes preventing the attendance of many, + it was believed a benefit might arise from the + discontinuance of the present Committee, + and the appointment of another.

+

Their report was read, and their request for a new Committee considered at Baltimore Yearly + Meeting, held by adjournments from the 10th day of 10th month, to the 14th of + the same in-clusive, 1803; and at the next meeting of the + members of the Committee, on the 14th of 10th month, 1803, a minute of the + Yearly Meeting informed them of the + appointment of the follow-ing Friends to constitute a Committee on Indian Affairs; they were + desired by the minute of their appointment, to pay + such attention to the interesting concern as they may be enabled + to render, to wit:

+ + + Evan Thomas, + Isaac Tyson, + + + Joel Wright, + Israel Wilson, + + + Elisha Tyson, + Henry Mills, + + + Edward Stabler, + Jonas Cattell, + + + George Ellicott, + David Greave, + + + Jonathan Wright, + Elias Ellicott, + + + Gerard T. Hopkins, + Jonathan Ellicott, + + + John Ellicott, + Benjamin Ellicott, + + + Asa Moore, + Philip E. Thomas, + + + Caleb Bently, + Thomas Moore, + + + William Kirk, + Samuel Snowden, + + + Wm. Stabler. of Sandy Spring. + +
+ +

Immediately after their organization Philip E. + Thomas was appointed Secretary, and Elias + Elli-cott Treasurer of the Indian + Committee. Philip E. Thomas + continued to perform the duties of Secretary to the Committee, with untiring zeal and ability, + from the date of his appointment to the time of his decrease, which took + place the 1st day of 9th month, 1861, + Elias Ellicott had been Treasurer of + the Indian Committee from the period of + its origin in the year 1795. After this + reappointment he continued faithfully to perform the trust confided to him, + until his de-cease in 10th month, 1827.

+ +

At the next meeting of the Committee on In-dian + affairs, held the 6th of 2d month, + 1804, a letter was received from the Little Turtle, and the Five + Medals, Miami, and Wyandot chiefs, which resulted in the + appointment of a delega-tion to visit them, of whom Gerard T. Hopkins and George + Ellicott alone performed the ser-vice.

+

The Friends who accomplished this journey together have now for many years + been num-bered with the dead. George + Ellicott departed this life the 9th + of 4th month, 1832, aged 72 years, and Gerard T. Hopkins died nearly two years afterwards on the + 27th of 3d month, 1834, in the 66th year + of his age.

+

Philip Dennis, who accompanied them to + Fort Wayne with the intention of + instructing the Indians in agriculture, faithfully performed the duty, so far as he alone was concerned. The + Little Turtle had in one of his interviews + with the Friends told them our young men are not so + much disposed to be industrious as we could desire. + Philip Dennis found this represen-tation + of them fully verified in his experience. After he had, with some + assistance from the In-dians, enclosed his plantation with a rude + fence, only one, or at the most two of the red men evinced any + disposition to labor. They would take a seat either on the fence, or in the + trees, near the premises, and watch him with apparent interest in his + daily engagement of ploughing and hoeing, but without offering to lend a + help-ing hand. He found the land very fertile, and raised a large crop + of corn and other products, which, after gathering into a storehouse he + built for the purpose in the autumn, he left in charge of some of the + neighboring chiefs for a winter supply for the necessitous members of the + tribes for whom he had labored, and returned to his home at Ellicott's Mills.

+

Philip Dennis lived some years afterwards, + a respectable member of the Society of Friends, and died on his farm in + Montgomery County, + Maryland.

+ +

The promise made at the commencement of the foregoing brief history of the + Indian Com-mittee of Baltimore Yearly Meeting, from its appointment in + 1795 to 1804, has thus + been performed, and the limits I had prescribed for + this Appendix have been already exceeded; but the very interesting + character of the concern in-duces me (before producing a copy of the + Trea-ty of Grenville, which from its + influence on the condition of the Indian Tribes ought to be pre-sented + to the reader) to add the following ac-count.

+

From the last meeting of the committee, as above related, in 1804, to the commencement of the war with Great Britain, the affairs of the Indians + continued to increase in importance, and their friends were frequently + flattered with the hope of a successful and permanent settlement of + the Tribes, to whom the United States under certain conditions had + guaranteed their lands, in the neighborhood of the Lakes. + Philanthropists, not only in our country, but, also, of the more + enlightened European nations, continued to accord to the efforts of the + Friends of this country the meed of their approbation, and from + members of the Society of Friends in Great + Britain, the Indian Committees of + Phila-delphia and + Baltimore recieved donations of money, paid to + them in two instalments of several thousand dollars each, to be applied to + the im-provement of the condition of the Indians, which greatly + increased their opportunities of useful-ness; to these donations was + afterwards added a bequest from a friend of Ireland, of much less amount, it is true, + but, nevertheless, a valuable contribution to the cause of humanity.

+

Portions of these different sums of money were faithfully applied, with + those collected from their own members, in giving encouragement to the + civilization of the Indians; in the pro-motion of a good system of + agriculture; in sup-porting schools; in building small mills for + grinding Indian corn, and in endeavoring to discountenance the hard + servitude of their women.

+

On the establishment of the Yearly Meeting of Ohio, in 1813, + which had originally formed a part of that of Baltimore, the Indian + Com-mittee of Baltimore Yearly + Meeting faithfully divided the money remaining on hand, with the + Indian Committee of Ohio Yearly Meeting, + to be applied in accordance with the instructions received for its + expenditure; but the unsettle-ment produced in the neighborhood of the + Cana-dian frontier, by the war with the British na-tion, produced its + effect on the friendly tribes, and, after much consultation among + themselves, and repeated visits of Chiefs to Washington, they concluded to cede all the lands to + which they had any title, in Ohio, to the + United States, and remove further west. This was in 1817.* * Emma + Willard's American Republic. + The Indians were at their option to remain on the + ceded lands, subject to the laws of the State or country.

+ + + + + Recollections of the Little Turtle + and other Indians. +

The Little Turtle, with several other + Chiefs, spent two days at Ellicott's + Mills, during Christ-mas week of 1807, attended by Wm. + Wells, the United States Agent for Fort Wayne, as inter-preter. They had + been to Washington on busi-ness, + had had an interview with the Indian + Com-mittee in Baltimore, and were returning home through the + State of Maryland.

+

George Ellicott called to see them soon + after their arrival, and gave them an invitation to dine the + next day, at his house, which was not far distant from the hotel + where they lodged. The delegation was composed of the + following persons:-The Little + Turtle and Rusheville, Chiefs of the Miami nation; the Beaver and + Crow of the Delawares; two Shawanese + Chiefs, and Marpau and the + Raven, Chiefs of the + Potowatomies; of the two last named each + was accompanied by his wife. All accepted the in-invitation + but Marpau, who positively + declined both for himself and his wife. He was of a very + warlike disposition, and the brother of Tecumseh, and the + Prophet, who, in 1811, openly + revolted from their allegiance to the United States, and were + the cause of much bloodshed on the Cana-dian frontier. Already the + spirit of disaffection had taken hold of his mind; he refused to + wear any article of clothing manufactured by the + white people, and was by no means reserved in his expressions of + hatred toward the whole race, who, he maintained, had violently + wrested from them all their most valuable possessions. Nor did + he hesitate to express his determination, with aid of his two + powerful brothers, to regain all the lands which had originally + belonged to them, after putting to death all those who now + occupied them.

+

In order to give him favorable impressions of the power of the + Federal government, and re-lieve his mind of the idea of taking up + arms against it, the other members of the delega-tion, all + friendly Indians except himself and the Raven, had persuaded him to make the journey, + hoping he would discover, as he passed along, so many evidences of + the strength of the people he professed to despise, as to be + induced to prefer peace to war, on any terms. No favor-able + change, however, had been the result. He had refused every civility + tendered him while inWashington, + remaining shut up with his wife, in his apartments, while all the + rest of his com-panions partook of every enjoyment offered + them. He had refused to meet the Indian + Committee in Baltimore, (but was afterwards induced to do so,) + and remained in the same mood on his arri-val at Ellicott's Mills; and although George Ellicott assured him he could + promise him a welcome and kind treatment at his house, he + still declined. The Little Turtle + endeavored to change his purpose; rallied him on his + obsti-nacy, ill-humor and laziness, and told him he was too + large a man to give so poor a display of Indian politeness, and + that he would return to his home in the same state of ignorance in + which he had left it; but all to no purpose. He bore the + raillery with apparent good humor, but re-mained unmoved. Marpau was of very large stature, and in + the prime of manly vigor. His dress was entirely made up of the + skins of wild animals, which had been killed by his own + hands.

+

Having heard so much of the Little + Turtle, I determined to be present when he and + the other Chiefs were introduced at the house, where they were + to be entertained as guests. He was the first to enter the parlor, + and bowed grace-fully as he was introduced to the family, and + made a short address, in which he acknowledged the pleasure it + afforded him thus to meet the wife and children of a friend to whom + he felt obliged, and of whom he entertained the highest + opinion.

+

The interpreter then introduced the rest of the party, who shook + hands, and took their seats. Afterwards a pleasant conversation + took place between the Miami Chiefs, + the Interpreter, and some of the residents of the village, in + which the Indians drew a comparison between savage and + civilized life, and in favor of civilization. The Little Turtle was anxious to have a + flour mill erected in his town, and appeared + earnestly desirous of promoting the improvement of his people. + The Shawanese, the Raven and his wife, and the Beaver and Crow listened in silence.

+

The dress and mantle of the Raven bore + a close resemblance to those worn by Marpau, and were of similar material. He was + esteemed the greatest hunter of the Potowatomies, and occasionally visited the Rocky Mountains in pursuit of game, and + on his last excursion to that distant range, had killed a grizzly + bear of immense weight and size, whose skin, dressed with the + claws and teeth attached, he wore on this occasion, thrown over his + shoulders. His face was painted; the cheeks and forehead + black, and across one of his cheeks was a heavy dash of vermillion, + which looked like a deep and gaping flesh wound. His hair, which + was thick and coarse, was cut about six inches long in front, + and hung about his face, but was its full length behind, and tied + in several places with bands of buckskin, and powdered with red + paint; and he wore on the top of his head, a small coronet of + eagle's feathers, Attached to an embroidered belt hung his tobacco + pouch, made of the entire skin of a beaver, and by its side + his tomahawk and scalping knife.

+

With his large and muscular proportions, ac-companied by the + disfigurements of the paint, he was only saved from the appearance + of a bar-barous and unrelenting savage, by a + countenance expressive of the utmost good humor.

+

The wife of the Raven was a young and + hand-some woman, of a modest and downcast expres-sion. She did + not seem to entertain the preju-dices against civilized + manufactures, which ex-isted in her husband's mind, and wore a + blue cloth habit, though made in Indian style; a hat, covered + with braided ribbon, feathers of different sorts, and tinsel + ornaments. Her moccasins were beautifully embroidered with moose + hair, inter-spersed with plaited rows of porcupine's quills; + her necklace was made of several rows of beads of many colors, and + her ear ornaments, which were drooping, and hung nearly down to + her shoulders, were also of beads; and she wore, wrapped + around her person, a fine Makinaw blanket.

+

The Little Turtle and Rusheville, the Beaver and Crow, + and the two Shawanese, were + dressed in a costume usually worn by our own citizens of the + time: coats of blue cloth, gilt buttons, pantaloons of the same + color, and buff waistcoats; but they all wore leggings, moccasins, + and large gold rings in their ears. The Little Turtle ex-ceeded all his brother Chiefs in + dignity of ap-pearance-a dignity which resulted from the + character of his mind. He was of medium stature, with a complexion + of the palest copper shade, and did not wear paint. His hair + was a full suit, and without any admixture of grey, although from what he said of his age, at Fort Wayne, in 1804, + being then fifty-three, he must at this time have been fifty-seven + years old. His dress was completed by a long, red, military + sash around the waist, and his hat (a chapeau bras) was ornamented + by a red feather. Imme-diately on entering the house, he took off + his hat, and carried it under his arm during the rest of the + visit. His appearance and manners, which were graceful and + agreeable, in an un-common degree, were admired by all who + made his acquaintance.

+

When seated at table they seemed to enjoy the repast which was set + before them. A large dish of hominy- a national dish with the + In-dians- had with a variety of other dishes been served up, + especially in reference to their tastes, and was acceptable to + them. The Raven, on taking his + seat, immediately pointed it out to his wife, who sat at his side, + and spoke for the first time since his entrance, to request to + be helped bountifully to the hominy, having seen nothing he + liked so well since he had left the woods.

+

The visit ended very agreeably; the deputa-tion shook hands with the + Friends who had en-tertained them, and returned to their + hotel. They found Marpau and his + wife quietly seated by the fireside, but soon understood they + had just returned from a walk, having passed the + day on the hills, and in the fields on the banks of the Patapsco.

+

We were told that they spent a part of the day seated upon the + rocks, contemplating the scenery before them; they were afterwards + at-tracted to a point where hickory nuts and per-simmons were + abundant, and the Chief was seen climbing the trees, and gathering + the persim-mons and nuts, and throwing them down to his wife, + who seemed fond of them. Thus, they had passed the day, and looked + refreshed thereby.

+

Both Marpau and the Raven, whilst on their journey, were + careful to present themselves, on all occasions, where there was a + chance of their being seen, painted and adorned in their most + approved style. Thus, while in Washington and Baltimore, although in comparative retire-ment, as + he did not go out, Marpau was said + to spend two or three hours daily, in the duties of the + toilet, painting his face, dressing his hair, and arranging his + appearance, by a small mirror, held up before him by his wife, who + stood near him for the purpose, pronouncing occasionally on + the effect produced, and giving instructions. Similar + attentions were conferred by the wife of the + Raven on her husband, but as he was of + lower rank, and rather older than Marpau, his toilet was less elaborate, and occupied + less time.

+

The next day after this ramble, the Potawo- + tamies all went together to visit the places where + Marpau and his wife had walked the day + before. The other Indians, with the interpreter, + examined all the objects of interest in the neighborhood. They + had begun to be aware of the importance of mechanical operations, + and spoke with as much approbation as an Indian ever speaks of + things which he admires, of the ingenuity ex-hibited in the flour + and paper mills. The next day all the deputation left for their + homes in the west.

+

About a week subsequent to their departure, a member of the Indian Committee on passing by the + hotel at Ellicott's Mills, saw the + western public stage arrive with a party of Indians and their + interpreter, and was much surprised to find among them the Delaware Chief, the Beaver. The Beaver, according to the statement of the, interpreter, + had left his party at Cumberland, + and had joined the present deputation in order to present the + grievances of his nation to the atten-tion of the President of the + United States. For several years their annuities, both as + regarding goods and money, had been badly paid, and during his + recent visit to Washington, William Wells had uniformly objected to + allude to the subject, under various pretexts. The Beaver thought there was something wrong + somewhere, and was determined to seek redness. The interpreter + asked advice of the Friend who met him at the hotel, and was + encouraged to make a faithful statement of wrongs done to the + Delaware + tribe. An investigation was made in Washing-ton by the President's + orders.

+

William Wells was found to be a + defaulter to a large amount, and was discharged from the + agency at Fort Wayne; he shortly + after went to live in Canada, + and in 1811, joined the party ofTecumseh and the Prophet, in their warfare against the United + States, very contrary to the desires of the Little Turtle, who with his allies had remained + deaf to all the arguments of Te- + cumseh, loyal to the government of the United + States, and faithful in his friendship to his friends the + Quakers.

+

William Wells after a short residence in + Canada, was taken prisoner by the + Indians whom he had defrauded in his agency, and was put to + death with great barbarity. The Little + Turtle had died a short time before, of an attack of + the gout in the chest.

+ +
+ +

The following matters of interest in the his-tory of the Indians, together + with the copy of the Treaty of Greeneville, has been kindly fur-nished from the records + of Washington, by a gentleman of that + city.

+

The treaty of Grenville* *The treaty purports to have been made at + Greeneville, but the place is frequently, + perhaps most generally, written Grenville. was concluded + on the 3d day of August, 1795, at the Head + Quar-ters of General Anthony + Wayne, commanding the army of the United States, northwest + of theOhio, between that officer, acting + as Commission-er for the United States, and the Sachems, Chiefs and + warriors of twelve tribes of Indians. The treaty was mainly the result of a + victory ob-tained by General Wayne over + the Indians in a battle fought the previous year, near the Mau-mee* * At the time of + the treaty called the Miami of the + Lake. river, and terminated the hostilities which + for nearly twenty years had been carried on be-tween the Indians, northwest + of the Ohio, and the white settlers in + Kentucky and western Vir-ginia. Sundry abortive efforts had been + made by the government to procure peace. Partial treaties were entered + into, which had no effect in restraining the great body of the tribes, + and several military expeditions, which had been sent into their country to + subdue them, met with disasters, and by their failure only + strengthened the Indians. In April, 1793, three + Commission-ers, with ample powers, were sent to negotiate a treaty, + and were intrusted to offer much better terms than were afterwards granted + the Indians by the treaty of Greeneville. In the instructions given them it was stated, + that the Society of Friends had, with the + approbation of the President of the United States, decided to send some + of their respectable members in order to contribute their + influence to induce the hostile Indians to a peace, + but I do not find from the Journal of the Commissioners that any Friends + attended.

+

The negotiation failed. The Indians insisted upon the removal of the white + settlements and Forts from the country northwest of the Ohio, which the Commissioners refused to accede + to, maintaining the claims of the United States to certain portions of + the country under treaties from other tribes who were believed + competent to make title to it.

+

By the treaty of Greeneville the Indians + ce-ded to the United States a tract of country com-prising about + twenty five thousand square miles, or sixteen million acres, some of which + however was included in previous grants from other tribes. They also + ceded sixteen smaller tracts as sites for Forts, trading stations, &c. + They received in consideration of the cession, twenty thousand dollars + in goods, and permanent annuities amount-ing to eleven thousand dollars; + $9,500 in goods delivered, the cost of delivery and distribution being + $1,500. The annuities, at 5 percent re-presents a capital of $220,000; thus + the entire payment would be $240,000 for 16,000,000 acres of land, or + one cent and a half per acre.

+

The annuities of several of the tribes com-menced at once, and are still + paid regularly under the treaty of Greeneville, and they re-ceive additional annuities under + other treaties. Indeed all the tribes who were parties to the treaty + of Greeneville, received regular + annuities from the Government, but I have not been + able to trace in them the specific amounts granted by that treaty.

+ + + + Mem. of the terms of the Treaty. +

PREAMBLE: that the treaty if to end a de-structive war, settle all + controversies, and restore harmony, &c.

+

ART. 1. Peace re-established.

+

ART. 2. Prisoners on both sides to be re-stored.

+

ART. 3. Indians cede all lands east of a line running from the mouth + of the Cuyahoga, irreg-ularlym to + the Ohio opposite to the mouth of + the Kentucky river. And cede 16 + specified tracts. And free passage to the whites through + certain routes through their country.

+

ART. 4. The U.S relinquish all land west of the boundary, except + 150,000 acres granted Gene-ral + Clarke; the post of Vincennes; the French settlement on the Illinois, &c.; and Fort Massoe, and give $20,000 in goods and + annuities, amount-ing to $9,500.

+

ART. 5. Indians to be protected in the occupa-tion of their lands as + reserved to them; but to sell only to the U. States.

+

ART. 6. Indians may expel settlers from their lands.

+

ART. 7. Indians may hunt on lands ceded to the U.S., [until + settled.]

+ +

ART. 8. Trade to be conducted by licensed traders.

+

ART. 9. Neither party to retaliate injuries, but offenders to be + punished by their own gov-ernment, and Indians are to give notice + of hos-tile designs.

+

ART. 10; All other treaties within the of this treaty cancelled.

+

The following tribes were parties to the treaty of Greeneville; the figures prefixed to the + name of each tribe shows the number of chiefs repre-senting + it, and proves that at the date of the treaty, the Indians were a + numerous people, viz:

+ + + 10 Wyandots, + 17 Delawares, + + + 9 Shawanese, + 7 Ottawas, + + + 11 Chippewas, + 24 Potowatamies, + + + 5 Miamis, + 3 Eel-river, + + + 3 Weas, + 3 Kickapoos, + + + 3 Piankashaws, + 3 Kaskaskias. + +
+

For the United States, Anthony Wayne + was sole Commissioner.

+

The witnesses were:

+ + H. DeButts, Aid and Sec'y to + Gen. Wayne; + W. H. Harrison, afterwards + President of the U.S., Aid to Gen. + Wayne; + J. Lewis, Aid to Gen. Wayne; + James O'Hara, Quarter Master + General; + John Mills, Major, + &c.; + Caleb Soran, P. M. G. U. + S.; + George Demeter, Lieutenant, + &c.; + + Vigo, [an old French settler- a + very remark-able man]; + P. La Fontaine, + Ant. Lasselle, + Jno. Beaubien, + David Jones, C. U. S. A.; + Lewis Beaufait, + R. Lachambor, + James Pepen, + Baties Contien, + P. Navarre; + Wm. Wells, Sonora, Interpreter ; + Jacques Lasselle, do.; + M. Morins, do.; + Bt. Sansfrainte, do.; + Christopher Miller, do.; + Robert Wilson, do., + Abraham Williams, do.; + Isaac Zane, do. + + +
+
+
+
+
diff --git a/static/xml/SW_IC1799.xml b/static/xml/SW_IC1799.xml new file mode 100644 index 0000000..bf403b1 --- /dev/null +++ b/static/xml/SW_IC1799.xml @@ -0,0 +1,3357 @@ + + + + + + + + + + + + + + + Isaac Coates Journal of Journeys to the Indian Country: Electronic + Version + Friends Historical Library of Swarthmore College + + TEI Markup done by + Cara Ehlenfeldt + Emma Remsberg + + + + + ca. 300 KB + + Friends Historical Library of Swarthmore College +
+ 500 College Avenue + Swarthmore, Pennsylvania + 19081 + United States of America
+ +

This work is the property of the Friends Historical Library of Swarthmore + College. It may be copied freely by individuals for personal use, research, + and teaching (including distribution to classes) as long as this statement + of availability is included in the text. It may be linked to freely in + Internet editions of all kinds, including for—profit works.

+

Publishers, libraries, and other information providers interested in + providing this text in a commercial or non—profit product or from an + information server must contact Swarthmore College for licensing and cost + information.

+

Scholars interested in changing or adding to these texts by, for example, + creating a new edition of the text (electronically or in print) with + substantive editorial changes, may do so with the permission of Swarthmore + College. This is the case whether the new publication will be made available + at a cost or free of charge.

+
+ 2014 + SW_IC1799 +
+ + Native Americans and Quakers: An Electronic + Collection + + + + + + + Journal of Journeys to the Indian Country by Isaac Coates of Caln, + Chester County + + + Friends Intelligencer + + Vol. XLIV + Nos. 28-40 + 1887: + 452-54, 468-70, 482-84, + 501-03, 514-16, 530-32, 546-48, 562-64, 577-80, 593-95, 610-12, + 625-27 + + + + +
+ + + + +

This published version of Isaac Coates' journal was transcribed and encoded as + part of the Native Americans and Quakers project of Friends Historical + Library.

+
+ +

This Journal was published in the Friends Intelligencer in 1887. The text is + entered as published. A condensed version was also published in 1906 in the + book, A Genealogy of Moses and Susanna Coates who settled in Pennsylvania + in 1717, by Truman Coates. The location of the original manuscript journal is + unknown.

+
+
+ + + English + + + + + Quakers -- New York (State) + Indian reservations + Indians of North America--Missions + New York (State)--Description and travel + Pennsylvania--Description and travel + + Philadelphia Yearly Meeting of the Religious Society of Friends + Quakers--Pennsylvania--Diaries + Quakers--Political activity + Seneca Indians + Society of Friends--Missions + Voyages and Travels + + + + + +
+ + + +
+ + JOURNAL OF JOURNEYS TO THE INDIAN COUNTRY. -- + I. + BY ISAAC COATES OF CALN, + CHESTER COUNTY.
+
+

[THE following journal, kept by Isaac Coates, a + Friend, of Caln, Chester County, + describes a jour- ney taken to visit "the Indian Country" in Wes- tern + Pennsylvania, Ohio, and New York, in 1799 and + 1803. It gives an animated description of the + coun- try passed through, the experiences of the travelers, etc., as + well as many interesting details concerning Friends and the Indians.

+

Isaac was the son of Samuel Coates, of East + Caln township, and was born Fourth month, 12, + 1748. He married Hannah + Stalker, of the same township, (b. 3d mo. 9, 1752), and lived on a farm that had been his + father's, near the present Caln Station, on + the Pennsylvania Railroad. It was from here, presuma-bly, that he set + off on the journey described below. He was a member of Caln Meeting, and is + buried in that burying-ground. Among his children was Lind- ley Coates, a prominent and esteemed + Friend, active in the anti-slavery movement. Lydia, a daughter, (b. 2nd mo.6, + 1778), was a minister among Friends, and died in 1839. She + married Mark Hughes, and it is their son + William, of Avondale, Chester county, who has handed us the Journal of + his grandfather for publication. It will run through several issues of + our paper. - EDS. INTELLIGENCER AND JOURNAL.]

+
+

6th-day. the 23d of the + Eighth month, 1799, after a solid time in my family I left home + on my journey into the Indian Country and Upper Canada. Dined at + Robt. Moore's fourteen miles. Reached + Wm. Webb's, twelve miles, and lodged + that night; at both places kindly entertained.

+

+ 24th. Dined at + Wm. Wright's, where we were + af-fectionately received With some difficulty crossed the Susquehannah, (the river being low); passed + through York Town to my brother + Caleb Kirk's. This day's ride, + twenty-five miles.

+

+ 25th. Stayed meeting + at York, and lodged at brother Caleb's two nights.

+

+ 26th. Rode to + Warrington, eleven miles; attended + quarterly meeting, after which rode to Thos. + Thorn-burg's, eight miles; lodged and fared sumptuously.

+

+ 27th. Rode over and + through the gap in several mountains, past a furnace known by the name of + Kittera's. The precipices on both right and left of one of them + exhibited a magnificent appearance. After which we entered a limestone + valley of good land, though not improved, as I apprehended, in the + best manner. Fed our horses at the stone tavern, sixteen miles; [then] + to Shippensburg twelve and one-half + miles, part of which, notwithstanding it was in the valley, appeared to be + very poor, covered with pine of small growth and barren oaks. A few miles + before we reached Shippensburg we passed + through some excellent wheat land, being covered with black oak and + hickory. Dined at Shippensburg. The + gen-eral part of the corn thus far very poor; buckwheat, in some + place, pretty good. Then proceeded to a small village called Strasburg, ten miles; through tolerable land + but no water which I thought fit to drink for myself or horse for twenty + miles. Then ascended the mountain called the Blue Ridge, the ascent + and descent of which is three miles, affording a prospect which shows the + wonderful works of the Author of Nature. Crossed a branch of the Conodo-guinet running to the right, and lodged + at Skinner's + in Horse Valley. This day's ride, forty-one and a half miles.

+

+ 28th. In the morning, + ascended and descended two large mountains, the valley between them called + Path Valley, in which is a small + village called Ferris-burg; it being + seven miles across those two moun-tains. In the aforesaid valley is a fine + stream run-ning to the right, called Conogocheak + [Conoco-cheague]; and a pretty good settlement. After + crossing the mountains, very poor broken land thinly inhabited, to + Fort Littleton, twelve miles from + Skinner's; here we breakfasted. In + crossing those mountains and valleys my mind was much em-ployed in + contemplating the wonderful works of an all-wise Creator.

+

To John Skinner's on the top of Sidling Hill, eleven miles, being a tremendous + mountain, on the ridge of which we rode about four miles; at the end + thereof, and descending the mountain, a grand pros-pect opened of the + Allegheny Mountain and what appeared a + tolerably level valley, considerably im-proved with plantations; but in + riding through it we found it to be very hilly, approached to mountains; + then crossed a branch of Juniata, running + to the right, and rode to Hartley's, where + we expect to lodge. The river was frequently on our right hand and + fre-quently near our left hand, and we on an eminence perhaps of one + or two hundred feet, some place ap-proaching near perpendicular. This day's + ride, thir-ty-nine miles.

+

+ 29th. Rode up the + valley through some tolerably good limestone land to Bedford, six miles; crossed two branches of the aforesaid + water. After leaving Bed-ford passed + through a gap in Wills' Mountain and over + Juniata again. Here is some of the best + land and the best improved I have yet seen amongst those mountains. To + our right to Stotler on the ridge, in divers places was oats growing of a + good length; some ripe, some almost ripe, and some standing in shock. + From thence to Berlin, thirteen miles. + On our way we met an old man who had just killed a large buck which + had horns with a number of prongs, covered with the velvet, which he had + skinned and had some + of the meat tied up in it carrying about + his neck in the manner of a knapsack. In riding six miles we came to + the foot of the great Allegheny mountains + where is some good land; buckwheat and oats about of an equal + ripeness, both good, but the buckwheat extraordinary; as much so as I think + I have ever seen. The ascent of this mountain better land than any of + the others, being covered with lofty timber of divers sorts, and on the top + of said mountain got some excellent water, being the first I have met with + since I left home. After we got over the mountains the timber was very + thick but much destroyed with fire. Two or three miles before we came to + Berlin the land appeared to be + excellent, covered with heavy timber, black oak, white oak, red oak, + hickory, and sugar maple, grass and other vegetables very flourishing, it + having been a wet growing season. This day's ride, thirty-six + miles.

+

+ 30th. Took an early + set-off from Berlin, being a village of + about 50 houses; passed through some very rough lands and roads on which I + saw a rattlesnake about three feet long with ten rattles, lying in the + road, appearing to have been just killed by a wagon-wheel running over + it. Part of the way to this stage the land was covered with most beautiful + lofty chest-nuts, and part of the way very thick set with white pine, + being thirteen miles; [reached] a Dutch tavern where we thought best to + breakfast on our own choco-late. From thence to George Bachelor's, fourteen miles in which we crossed what + is called Laurel Hill, being one mountain + after another for seven or eight miles of the way. The ascent of one of + them ex-ceeded all for chestnut timber I ever saw; they stand so thick + together and are so tall that I fully believe there are thousands of acres + that would yield more than 10,000 rails to the acre. Almost all those + moun-tains that go by the aforesaid name are the most fer-tile of any + I have yet seen; the trees and vegetables of every kind are so luxuriant I + could not help feel-ing some attachment to the place; but when I + con-sidered the exceeding rough mountainous face of the surface and + the intolerable road to and from the place, I am content if I should live + to return to spend the remainder of my days in Chester County. Pro-ceeded to Connelstown, being a new settled place of about fifty + houses on the Yoghagena [Youghiogheny] + river. Lodged with our old friends, Thomas and Joshua Gibson, + sixteen miles. Nothing very remark-able the last stage, except in one place + about six miles back, we rose to or on an eminence where a grand + prospect opened to view, to the east, the north, and the west, + particularly to the west where we could see as far as the eye could reach-I + suppose as far as the Ohio river. Here on + the Yoghagena river the people were + employed in building flat-bottomed boats, the stern of which they cover + with thin boards for a shelter. Some of them are thirty, some forty, and + some fifty feet long and twelve wide, in which they will carry 360 + barrels of flour or iron or other pro-duce in proportion, to Kentucky or + New Orleans.

+

+ 31st. Crossed the + Yoghogany, being a small river, + perhaps hal fas large as Schuylkill above + the Falls. About a mile from said river as we rode up a small stream + large enough to turn a mill, we came to a curi-ous limestone rock lying + horizontal, about three feet thick, forming a concave semi-circle of + perhaps 300 feet, near the centre of which the water fell about + twenty-eight feet there being a walk on another rock about twelve feet + below the other, and near the same distance deep back behind the water + where we might safely walk. Just at one side and near the centre ofthe + semi-circle a spacious grist mill is built butting up against the rock. + Then passed over many hills and valleys to Reese + Cadwallader,s, twenty miles. Passed a new paper-mill + occupied by Jonathan Sharpless, on + Redstone creek; also Samuel Jackson's grist mill at the mouth of + said creek, over which there is a large bridge, near thirty feet high, wide + enough for a wagon to cross. We were expecting to find a road in + pro-portion; but immediately after getting over we found ourselves on + a narrow path perhaps not more than five feet wide, and a precipice on our + left hand down to + Redstone creek, and on our right hand down to + the Monongahela river, each of them near + perpen-dicular, which was near 200 feet, which to some of our company + was truly alarming; and I believe would have been more so had it not been + that a bulky woman rode on just before us seemingly with-out care or + fear. Then rode up the last mentioned river through a beautiful town on the + bank of the same, perhaps of forty or fifty houses. This river I think + is larger than Schuylkill, running to the + right. The land thus far through the Redstone settlement is very rough + and mountainous, and appears to be very fertile, producing wheat, rye, + oats, buckwheat, and grass in abundance even on the top of the hills, and + abundance of lofty timber of many sorts, particularly sugar maple and + white oak. But notwithstanding it hath been a very wet growing season and + all kinds of grain in the ground and vegetables look luxuriant, yet + the waters are very low, which induces me to believe that, when the land + comes to be more gener-ally cleared and a dry season takes place (which I + suppose frequently does), the inhabitants will suffer from lack of + water. The reason in part as I take it, of the water's failing so much is a + horizontal rock which lies a little underground, I believe, over much + of the country.

+

+ Ninth month 1st, + being First-day, attended Red-stone meeting. In the afternoon crossed the + Monon-gahela at Bridgetown, the banks of which, I am + in-formed, will average forty feet. Rode five miles of the roughest + road I have yet passed to Francis + Town-send's.

+

+ 2nd. Attended + quarterly meeting at Westland, which + notwithstanding some weaknesses [and] dis-order appeared in the conduct of + the young people, was a comfortable, solid time, there being a number + of well-concerned, valuable Friends engaged in con-ducting the + business of this remote and newly es-tablished quarterly meeting. Here I + met with a number of my former acquaintances who had re-moved to this + country years past, divers of them in low or straightened circumstances, + that now appeared to live in fullness and plenty; many of whom I hope + are in a good measure thankful to their kind Bene-factor who hath + spread them a table in the wilder-ness and provided a comfortable asylum in + this + western country. We were truly glad to + see each other. This night, lodged at my kind friend, Jonas Cattel's.

+

+ 3rd. Passed the time + very agreeably amongst our friends about Bridgeport, on the Monogahela, + in preparing necessaries for our wilderness journey, and lodged at the + same place.

+

4th. Stayed and attended meeting at Redstone, where was a marriages accomplished + between Samuel Jones, hatter, formerly of + York, and Ruth, the daughter of Reese Cadwallader. Dined at our kind friend + Jonas Cattel's. Friends at this place were + ex-ceeding kind, and seemed as if they thought they could hardly do + enough for us. Got well equipped by them for our journey and set off soon + after dinner. Crossed the beautiful river + Monongahela and rode eleven miles to one Graybil's, where we lodged. The most of the way + tolerable; good land though moun- tainous and not equal ot Redstone land + for fertility. About ten miles from the river, on our way we crossed a + considerable stream called Pidgeon's creek, + running to the right.

+

+ 5th. Rode eight miles + to one Barclay's, got break-fast. Nothing + very remarkable occurred on our way this stage, except as we rode a + considerable way up a branch of Mango + creek, in divers places the water fell off a smooth, + horizontal rock, some place four, some six, and some more feet; and up this + narrow valley the greatest quantity of sugar maple with troughs for + collecting sap appeared, of any place I have yet seen, though they abound + through the country in such plenty that I think if the inhabitants are + careful, and frugal they need never import the luxury of sugar. Even if + other timber should fail for firing, the stone-coal is plenty in these + parts; [rode] from thence to Pittsburg, + fifteen miles. About one mile from Barclay's is a sawmill occupied and + owned by one Baldwin who removed from + Newlin, a Friendly man; which I + though might be good quarters if I should ever travel this road again. + No great variations in the land except gradually de-clining towards + poor land. When we arrived on the top of the mountain, where we got the + first sight of Pittsburg, we soon began + to descend the steepest hill I ever saw a wagon road upon, which to me + appeared almost impraticable for a good team to draw an empty wagon + up. Nevertheless the inhabitants say they frequently go up loaded. When we + descended to the bottom we again crossed the beautiful Monon-gahela and immediately entered the town + where we stayed the afternoon in providing some necessaries, in which + I took the opportunity to walk down to the point or junction of the + aforesaid river and the Alle-gheny, which + makes the great and grander River Ohio, it + being a delightful prospect. Also had a view of the remains of the old + French Fort Duquesne and the English + fort, which are both very much demolished and beautiful grass-lots in their + place. This town appears to be a lively place of trade containing + per-haps 200 houses.

+

[To be Continued.]

+

_________________________

+

EITHER we must lay self aside, or God will lay us aside.--GURNALL.

+
+
+ + JOURNAL OF JOURNEYS TO THE + INDIANCOUNTRY.--II. BY ISAAC COATES, OF CALN, CHESTER COUNTY. +

+ Ninth month 6th. [1799]. Set off early + from Pitts-burg and immediately crossed + the Allegheny river, a beautiful stream + about a quarter of a mile wide. For about two or three miles after + crossing, we rode through the richest piece of land I think I ever + be-held, for so much. The stately walnuts [were] four feet through, + and a great length, and other timber in proportion, every herb and plant + appearing as luxu-riant as if it had grown out of a dung heap. Soon + after that, a declension of soil took place and pro-gressed until it + became, as I thought, very poor, rough, and hilly, until we came to one + Duncan's, where we fed our horses and + dined from the supply of our bags, it being eighteen miles; from thence + to one Bovear's, where three of our + company lodged. James Cooper and myself + rode six miles further to my cousin, Abner + Coats's, who is just newly settled in the woods; has got + about ten acres of land cleared and seems in a likely way to make a living. + He was very kind and glad to see me; tied up our horses, fed them with + bran and cut corn-tops, with which they seemed to do very well. All this + stage appeared to me to be very poor, until we turned off the road and + got near Abner's, where the land appears + tolera-bly level and pretty good soil. We crossed one large and one + lesser stream running to the right, called Conyconeys. Divers places the road was intolerable for + short steep hills,--so much so that going down some of them, leading our + horses, we seemed in dan-ger of their falling down upon us. This day, rode + thirty-four miles.

+

+ 7th. Rode from + Abner Coats's to Funk's, seventeen miles; it being a very rainy day, which + made the road so bad, together with the bills, rocks, and sloughs or + little guts descending out of the mountains, that for bad traveling it + exceeded all I have yet met with. We crossed two large streams, the first + called Mud Creek; the second, Slippery Rock. From thence to McClern's, nine + miles. The road tolerably good for this country and the land about + middling, being much covered with white oak. At this place we arrived + about two in the afternoon; appearing to be good quar-ters for + ourselves and horses, we stayed all night, and lodged comfortably in the + barn.

+

+ 8th. Set off early + and rode to Franklin [country seat of + Venango county, Pa.], a small town of perhaps ten or fifteen houses, on + French creek, a small dis-tance above + the fort at the junction of said creek and the Allegheny river, thirteen miles. The most of this stage is + stony chestnut land. About four miles before we got to Franklin, we crossed Sandy + Creek, the descent and ascent of the mountains on each + side being each of them about half a mile, and in some places, I think + near forty-five degrees of eleva-tion. Going down the hill I discovered my + mare had lost one of her shoes, and by the time I got to this place + she began to limp pretty much, and no smith here. The prospect looks dull + to proceed from here to Jonathan Titus's, + on Oil Creek, eighteen miles. Im- + mediately after leaving Franklin we crossed + French Creek, and soon entered very + poor, barren land which continued for several miles; then came to land + more level than any we have seen the west side of Allegheny river, for so much; some bottoms, very + rich abounding with plums, some of it rather too much upon a dead + level to be very good for wheat, and exceeding thick set with small timber, + partic-larly quaking asp. About twelve miles from Frank-lin we came across a cabin and a few acres of + ground cleared, where the people looked clean and decent; had + abundance of watermelons with which they regaled us plentifully without + charge. A few more cabins and small lots cleared we saw on our way + between French Creek and Oil Creek. Rattlesnakes abound here. I saw a + large one of about three feet nine inches long, and about as thick as my + wrist. I alighted and killed it; cut off the rattles, being nine. + Great numbers of wild tur-keys are here; we saw several flocks + containing forty or more and might easily have shot some of them if we + had had guns and ammunition.

+

We arrived at Titus's a little before sunset; + got our horses to good pasture, and lodged comfortably in his barn. + Said Titus being a young man, settled here on + Oil Creek in the woods about two and a + half years ago, has made a great improvement for the time; owns 400 + acres of land, the most of it a rich bottom; has got about twenty-six acres + of excellent corn in the ground, a considerable quantity of wheat in stack; + a spring of excellent water near the door, large enough to turn a + breast-mill; so that upon the whole I think this farm likely in time to be + of most inestimable value, Oil Creek being + boatable this high, which is about eighteen miles from the mouth where it + empties into Allegheny. Oil Creek took its name from the oil + which is skimmed off the water in great + quantities, resembling the Seneca or British oil in smell; its length + being about thirty-six miles from its mouth to the place where it issues + out of a small lake.

+

+ 9th. Being very + rainy, I rode two miles to a black-smith at Oil + Creek mill, got a shoe on my mare and returned to my company + at Titus's, where we remained all this + day, it being very wet, and lodged in the same barn.

+

+ 10th. Being a fine + morning, we set off early and rode twenty-nine miles near the mouth of a + large stream called Brokenstraw, where we + pitched our tent, kindled a fire, and lodged in the woods. I am not + furnished with language or memory to describe the particulars of this day's + journey, but may en-deavor to note some particulars. After leaving + Titus's + we rode two miles to a newly erected mill and saw-mill on a branch of + Oil Creek, which the Holland Company + have erected in order to supply the new settlers with flour, etc., and + divers of them come there twenty, twenty-five, and more miles with bags of + grain on a horse, to be ground; there being no road that any carriage + can pass, and indeed, (to such who have not seen those mountainous new + countries), it would appear to impraticable to pass with a single + horse. After leaving the mill we soon entered aforest of white pine, + hemlock and divers other sorts of timber not necessary to mention, and + great part of our ride this day was through timber of that sort; some + of the way tolerably level, but a great part of it such mountains thickly + set with stones and rocks, which together with the interlocking of the + roots of the timber, a little comparable to a corn-rid-dle, and the + deep swampy guts, it was with difficulty we got along over roots and rock + the cavities be-tween them being so deep and so close together thathad + our horses got their legs in, (and this to appear-ance seemed almost + unavoidable), they must have been broken. But I suppose the way to be much + bet-ter than it was two years ago, being now a cut path all the way, + which was not the case then. In many places the timber is, I believe, from + one hundred to two hundred feet high, and thickly set, insomuch that a + great part of the face of the ground and rocks is scarcely ever saluted + with the luminous rays of the sun, which I think is the reason of the rocks + and old logs being very thick set with coats of moss; and as the seed + of different kinds of trees falls on this moss which the rocks and old logs + contain, there being moisture enough contained in it to occasion a + vegeta-tion, the body or trunk ascends and the roots crawl on the + surface of the rock or log to the edge, and then descend into the gorund, + and great numbers of that description are grown into large trees the roots + of which clasp a rock a little similar to the clasp of an eagles claw; + and on many of these rocks there are several trees. I saw one rock about + twenty feet in diameter, which had seven trees on it, some of which + were two or three feet over and perhaps one hundred and fifty feet high and + the rock ten or twelve feet high. I think we saw neither house nor + improvement for twenty miles; neither can I suppose much of it will be + settled for many years to come, We came on the Brokenstraw about seven miles above the mouth and rode sixe + miles down the stream to the place of our encampment, through a very + rich bottom. As I rode along this day I frequently experienced a transition + of ideas; while passing through the dark shades of the thick and lofty + timber which sometimes appeared like a desolate, gloomy wilderness + comparable to the gloom of eternal night; and other times so great, so + grand, so magnificent that it became truly transporting.

+

+ 11th. Set off early, + without taking breakfast or feeding our horses. Rode down the aforesaid + creek almost to the mouth and with some difficulty got along, the + Indian path up the river being in many places hard to be discovered, to a + place called War-ren [now the county + seat of Warren county], being a newly laid out town, but without much + building ex-cept one cabin and a storehouse built by the Holland + Company near the mouth of another large stream called Connowongo. Here we breakfasted and fed our horses. The + people in the cabin were very kind, made our chocolate for us and gave us + some good pigeon soup. [Distance] nine miles. Here we hired a guide; + rode over the Connowongo, and followed our + guide with undescribable difficulty about sixteen miles to Cornplanter's settlement. The logs, the brush, + and thick-set young timber rendered this stage extremely difficult and + tiresome; almost a continual succession of logs, in many places three or + four in a perch, as high as our horses could step over, and many of + them they had to jump; and the young growth being so thick that if we were + two rods apart we would have to call out to each other in fear of + be-ing lost. About an hour before sunset we reached the new house + which Cornplanter is getting built, and + the schoolhouse where Henry Simmons + teaches the young Indians, at which place we met with Henry, greatly + to our mutual comfort, and where we tarried all night in the schoolhouse. + At this place there are several comfortable houses building, it being about + one mile lower down the river than where Cornplan-ter's village stands, and appears to be on more + suita-ble ground, which with the advice of our young men, the Indian + inhabitants of the town just above, pro-posed to move. Cornplanter and many others of the nation came + this evening to visit us, and appeared to be much pleased with our + coming.

+

+ 12th. This morning + the old chief and some of his connections brought us some cucumbers to help + out our breakfast, and immediately returned to his vil-lage. We then + soon set off up the river, Henry Sim-mons + bearing us company, and in about one mile we came to the town. Stopped a + few minutes with the Indians who gathered around us apparently much + pleased with our arrival. We proposed a council or conference with + them, to be held in two days after that time, to which they readily + assented, and agreed to send out some runners to inform their people. + We then took leave of them for the present and pro-ceeded up and + across the river twice to Genesinguhta, + to our dear friends, Halliday Jackson and + Joel Swayne, whom we met with mutual + joy, and rested pretty much in the house the remainder of this day, + the path from Cornplanter's to Genesinguhta being in some places very difficult passing; + [the distance] being nine or ten miles.

+

+ 13th. Stayed with our + friends and visited several familieis of Indians in their houses and + cabins. One Indian, John, has built + himself a snug house and kitchen, the logs well-hewn and the joists and + boards planed, [with] sash and glass windows. He has mowed and made + two good stacks of hay, fenced in several acres of ground in which he has + good corn; and several others of them are improving in their + buildings, fencing, etc. We have fared very well this day on provision + wellcooked by Halliday Jack-son; also + walked about and reviewed the improve-ment made by our young friends in + this wilderness country, which appears considerable. And althoughI + think the spot they are settled upon is much infer-ior to many other places + in these parts for fertility, yet their corn and buckwheat are good; [they] + had pretty good oats, have a considerable quantity of hay procured, a + large garden of good vegetables, and have about five acres of ground + cleared and plowed ready to sow wheat. They have got a comfortable + two-story house to live in, and several other necessarybuildings.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE + INDIANCOUNTRY.--III. BY ISAAC COATES, OF CALN, + CHESTER COUNTY. +

Ninth month 14th, [1799]. After breakfast, pre-pared + to set off nine miles down the river to Corn-planter's village,[NOTE.--Genesinguhta, where the + travelers met Halliday Jackson and + Joel Swayne, as described last week, + was on the Allegheny Reservation of the + Seneca + Indians, on the Allegheny river, just above the line, in New York + State. Cornplanter had a village and + private reservation of his own,--about 1300 acres,-- down the river, + and below the line, in Warren county, Pennsyl-vania. He called it + Genesedaga. The town of Kinzua is now on the opposite side of the + river.] in order to attend the council be-fore appointed, and + nine of us embarked in a canoe to wit: Indian + John, Halftown, Halliday Jackson, Joel + Swayne, Joshua Sharples, + Thomas Stewardson, James Cooper, myself, and Hugh Hartshorn. Had a pleasant sail down the river, and + arrived at our des-tined port a little before 11 o'clock, divers of the + dis-tant chiefs being collected before we came. Before we sat in + council, walked about, viewing some of the Indian cottages and their dress, + which would take more time to describe than I am at this time + dis-posed to take. About an hour after we arrived, a large horn, + something like a French horn, was blown, in order to collect the chiefs and + others to council; and in a short time they collected in a part of + Cornplanter's house or cabin, perhaps to + the num-ber of thirty or more. We all sat down in stillness a short + space, when the old chief stood up (his son Henry + O'Beil interpreting), and addressed us in sub-stance as + follows:

+
+

"Brothers, I am glad the good Spirit has favored you all with health in + your long journey to come and see us and take us by the hand, so that we + may brighten the chain of friendship; and now some of us are + collected, we should be glad to hear what you have to say to us.”

+
+
+

We then informed them that we had taken a long journey to see our young men + who were settled among our Indian brothers, and that we had not much + that we knew of to say to the Indians; only to know from themselves how + they liked our young men being amongst them, and whether they thought + they were likely to be useful to them or not. We then had our + certificate read and interpreted to them, with which they expressed + satisfaction; and we hav-ing agreed upon a short piece of advice or queries + to lay before them, which we had in writing, it was read by paragraphs + and interpreted to them as follows:

+
+

"Brothers, you have now heard that our coming here was to see how you and + our young men who live amongst you are getting along. We are glad the + Good Spirit has favored us to meet you in health, and given us this + opportunity of taking you by the hand and brightening the chain of + friendship. Now broth-ers, we should like to hear from your own mouths if + you are quite satisfied with our young men living amongst you. They + came here with a hope of being useful, by instructing you in a better way + of manag-ing your land and providing for yourselves and your cattle. + We desire you to speak freely brothers. It has been some satisfaction to us + in riding through your town to see marks of industry taking place; that + you are building better and warmer houses to live in; and that so much + of your cleared land is planted with corn, potatoes, beans, squashes, + cucumbers, etc., and to see these articles kept in good order. Brothers, we + observe where your new houses are building, that the timber is very + much cut off a rich flat which we wish you encouraged to clear and make it + fit for plowing. We believe it to be very good land for wheat, as well + as corn, and as the white people are settling around you, the deer and + other wild game will grow scarce and more difficult to be taken. We + therefore hope that more of your men will assist in clearing land, + fencing it, planting it with corn, and sowing it with wheat. You will + then have a supply of provision more certain to depend upon than hunting. + Broth-ers, we were pleased to see your stock of cattle in-creased; the + rich bottoms on the river will be plenty for them to live on in the summer + season, but as your winters are long and cold, it will require something + for them to live on in the winter. Now the white people keep their + cattle on hay, on straw and on corn-fodder. Straw you cannot get until you + raise wheat or other grain; the rich bottoms, if they were put in + order, would produce a great deal of hay; but for an immediate supply, we + think, if as soon as you gather your corn you would cut the stalks close at + the ground, bind them up in small bundles, and put them in stack, as + our young men do, they would keep the cattle part of the cold weather. + Brothers, we are glad to see a quantity of new fence made this summer, + near where our young men live, and we would not have you get discouraged at + the labor it takes; for if you will clear a little more land every + year and fence it, you will soon get enough to raise what bread you + want, as well as some for grass to make hay for winter. Brothers, we + understand you are desirous to discourage whiskey from being brought + amongst you, with which we are much pleased, and should be glad you could + entirely keep it away; for to get it, you give your money which you + should have to buy clothes with, and to buy oxen and plows with to work + your land; and it does not do you any good."

+
+

After which a solemn silence took place, in which I thought I felt love to + flow to the poor natives, accompanied by a strong desire that they might be + prevailed upon to wholly decline the drinking of distilled spirits; + for truly I think until some reforma-tion in that respect takes place + amongst them, the solid ground on which we can expect their + profit-able civilization is small; and though I felt as I did, it + seemed discouraging to offer anything to them on the occasion, considering + my own inability and the imperfect interpreter we had--being one who hath a + strong inclination to the evil habit himself. So I had liked to have + omitted saying anything, until my friend Joshua + Sharples, whispered to me and told me if I had anything to + say to them not to omit it. I then addressed them in substance as + follows:

+
+

"Brothers, your brothers, the Quakers, who have come a long way to see you, + believe that the Great Spirit made both white men and red men, and placed + them on this great island, gave them many good things to live upon + such as grain, flesh, fruit, etc., and + also gave them understanding hearts. And + we also believe that his design or intention was that we should love + and serve him, and not only love him and our own people but love and be at + peace with all people of all nations and colors. But some white men + became very cunning and sought out new inven-tions, one of which was making + rum, whiskey, brandy, etc., out of the good things that he had given + them, which at first was used in very small quantities as medicine; + but as it became more plenty, many white men got to love it and drink more + of it inso-much that they became drunk and neglected their business; + many of their wives and children suffered in want of food and clothing, and + it seemed to be the beginner or forerunner of almost every bad + practice.

+

Now brothers, some of your friends, the Quakers, many years since were + favored to see the mischief that rum and whiskey had done, and believed it + right for them not to drink any more, and have found by more than + twenty years' experience that they can do better without it than with it. + And seeing the mis-chief it did to others, and how much better they + themselves did without it, believed it right to per-suade others to do + so too; and as we love our Indian brothers, and seeing their land is much + sold and white people settling all round them whereby the deer and + other game is likely to become so scarce that they cannot live by hunting + much longer, we were drawn in compassion to invite some of our young + men to come and live amongst you, in order to in-struct you in the + useful ways of the white people who have now been some time with you. But + we under-stand that some bad white men let Indians have whiskey and + that many of them love it so much that they often get drunk and are wicked. + Brothers, we wish you would not hearken to those bad men who want you + to buy their whiskey, nor give way to your own love for it, but stand + against it and not use any of it; for if you do, your friends, the Quakers, + will be discouraged and hang down their heads and go and leave you. + But if you will stand against it and not use it, become sober men, they + will be willing to assist and instruct you what they can."

+
+

I believe the interpreter endeavored to render it into the Indian language + as well as he could, though he appeared somewhat convicted; and I also + think they understood it pretty well, as there appeared a general + concurrence by their usual nod and sound on such occasions, and by what the + old chief said to us after, on our asking them if they had anything to say + to us, he replied that Henry Simmons had + told him some time ago that he intended to go home this fall, (Henry + having taught school at Cornplanter's + village), and that he could not give us an answer until he knew + whether Henry would go or not. We then agreed to be a little time by + ourselves. They left us a few min-utes and we laid the matter close to + Henry. He then told us that he + believed it was his duty to come here and he now believed it was his place + to go home, which we could not gainsay, though we felt sorry the + Indian children should be left without an instructor. The chiefs were + called in again, and tenderly informed of Henry's intention of returning. + Cornplanter then replied if it was + right, he could not say against it, but was afraid he should not have help + enough to keep away the whiskey, as Henry had been a great help to him + in that, and that he thought the Indians would now mind him more than they + would one of them; and then said that when our young men came first + amongst them some of their warriors did not like it, but now he + believed they all liked it, and all spoke very well of them, and wished the + young men to tell us if any of the young Indians or others behaved bad + to them. They then all rose up and in a friendly manner shook hands with us + and did what they call "cover the council fire." Then one of their + women brought in a large loaf of unleavened wheat bread and a tin cup + full of pretty good butter, on which we dined and took our departure up the + river. Halliday Jackson, James Cooper, and myself walked, the others + all went back in the canoes we came down in. Arrived at the young men's + home just before sunset, and lodged this night with them.[NOTE.--Cornplanter, at the time of + this visit, was about 60 to 65 years old. He was of half-blood only, + the son of a white man named John + O'Bail, a Mohawk Valley + trader. He is believed to have been with the French in the defeat of + Braddock, in 1755, and he + afterwards took part with the British, in the War of the Revolution. + After that, however, he devoted himself to peace, and refused to fight. + In the Indian disturbances from 1791 to 1794, he kept the Senecas friendly, and he + continued to live on his reserva-tion to his death, in 1836, when he + was considered to be about 100 years old. The accounts of him say that + "he deplored the evils of intemperance, and exerted himself to suppress + it."]

+

+ 15th, and first of + the week. Have not gone much out of the house to-day. Sat down with the + youngmen at their usual time of holding their meeting, which to me and + I believe to others was a solid, strengthening time. A little after night, + Joshua Sharples went out of the house + and just as he came in, the trap-door of the cellar being open, he + stepped in it and fell with the back of his head against one of the + joists or sleepers, and so down into the cellar. We all made what haste we + could down, finding him stunned and senseless. We were exceedingly + alarmed, got some camphor, bathed his temples and other places so that + in about two or three minutes he came to so as to speak, but knew not that + any- thing was the matter, or where he was, for a con-siderable time. + At length his understanding re-turned, but he could not all the evening + recollect falling, being a good deal hurt. Our getting away from her + as soon as we proposed, [now] looks doubt- ful; but it is a great comfort + to us to find him as well as he appears to be. Went to bed and I slept with + him in some hopes he may be better in the morning.

+

+ 16th. Joshua quite as + well as we could expect, but not fit to travel. This day we have had a + visit from five or six Indian chiefs who stayed with us the most of + the day and appeared very much pleased in being in our company and viewing + a map which we had with us. Soon got to understand it so that they + could point out almost any of the rivers and lakes. About noon Cornplanter + came and brought us a quarter of venison and two pigeons. Offered to + send some of his people to pilot us to Buffalo, but we could not tell + him when we could go, not knowing when our friend would be able to travel. + About the middle of the afternoon they all took an affectionate + farewell of us for the present.

+ + +

+ 17th. A fine day. + Joshua appearing some better, + eighteen or twenty of the Indians came to see us and bade us farewell. + About one o'clock we set off, Hal-liday + Jackson bearing us company. We took an affectionate farewell + of our other two friends, after an uniting opportunity just before parting. + Rode about four miles up the river through middling good land to the + house of one of the old chiefs who was with us yesterday, and who had his + horse standing hitched ready to pilot us up the river to a small + set-tlement of Indians. On riding along we discovered they had the day + before opened and cut the path wider and better for several miles just on + our ac-count; and on our way we passed a new settlement, made this + summer by Halftown, on some most + excel-lent land. Where he lives he has cleared and fenced two or three + acres and got it in with corn and vines. After crossing the river we rode + to another chief's house where there are several cabins, and pitched our + tent and lodged on the river bank. They were kind to us in their way, + and gave us two very good squir- rels. This being ten miles up the + river.

+

+ 18th. Being a rainy + morning, we set off having Sunfish and + Halliday Jackson for our guides, which + we found to be very useful to use before night, it be-ing a very wet + day and much of the way so swampy and difficult that we should have been + much beset without them. Abundance of the way through, the wilderness + is so stopped up with wind falls of timber, many of which are so large in + low ground and fallen one on another for a mile together, that to a + stranger it would seem altogether impassable. Many of these with great + difficulty we have to jump our horses over, and perhaps in mud half leg + deep; and many of them were so large no horse could leap them. We went + up the river three miles and then took up a valley about twelve miles, down + which a creek of about the size of our branch of Brandywine runs. + Excellent good land all the way up, there being abundance of sugar + maple, beech, ash, birch, and bass. I have seen sugar maple in abundance + that were three feet over and near one hundred feet high; the other + timber in proportion. We then ascended a very high mountain; good land up + it, and on the top still good, being covered with very heavy, lofty + timber some of which is white pine, some poplar, and the other as + before mentioned. Before we as-cended the mountain we came to the heads of + springswithin a few perches of each other, some of whichrun into the + Allegheny and some into the Cattarau-gus. The former empties into the + Ohio; the latter into Lake Erie and so down the river St. Lawrence. In some places, abundance of wild cherry + three and four feet in diameter, perhaps sixty and some eighty feet to + the first limb. But as I do not intend to give a minute description of the + land, water, and timber, only to give a sketch of what appeared remarkable, + suffice it to say that in this day's ride, (which was a very wet one + through abundance of swampy land), I think the land was generally good and + heavy loaded with timber. This day's ride, twenty-four miles. Pitched + our tent by a spring amongst lofty timber, and just after we got our fire + made and tent raised, it began to rain very fast, and was an exceeding wet + night, accompanied with a great wind or storm inso-much that we heard + the tree falling almost all around us. Our situation appeared to be + somewhat trying; but as we had no alternative, soon composed oursevles + and went to sleep.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--IV. +

+ Ninth month 19th, + [1799]. It being likely for a fair day, we set off, though the + bushes were very wet, androde to Lake + Erie, 27 miles, and pitched our tent on the margin thereof. We + passed some very bad, swampy road in the morning. The timber and land + much as yesterday and almost all the way, so far as I have come + through the New York State, there ap- pear to be very few stones. But after + riding 8 or 10 miles this day, we came to abundance of the most + beautiful poplar trees I have ever seen; and about one mile before we + crossed Cattaraugus River we came into a + bottom of very rich land, wherein abun-dance of black walnut stand, many of + them three, four, five, and perhaps some six feet in diameter, and + sixty or severty feet to the first limb. Crossed Cat-taraugus, being ten miles from our lodging, and rode + ten more to an Indian village. Stopped awhile with them, but as their + chief was not at home we soon left them, and rode seven miles through a low + piece of land heavily timbered with hemlock, sugar ma-ple, etc., to + the lake aforesaid, which, to be sure, at first view exhibited a grand + prospect here in the wilderness, appearing both as to motion and sound + like the ocean. Had a good supper of chocolate, cooked by Halliday, who is yet with us; got a + com-fortable night's sleep, and early in the morning, for the first + time, heard a wolf howl.

+

+ 20th. Rode 28 miles + down the lake on the beach or margin thereof to the mouth of Buffalo Creek. Crossed it in a boat and swam + our horses over, it be-ing a very deep channel, about 30 or 40 yards wide. + Lodged at Joseph Elliot's headquarters, + he being the principal surveyor or superintendent of the Holland + Company's business. Were kindly entertained free of cost. This day's + ride down the lake was a de-lightful journey, affording such a variety of + prospect of the wonderful works of nature. Some places the land at the + margin of the lake appeared to be pretty level; in most others there was a + wall on our right hand, in many places 50, some 60, and some near, if + not quite, 100 feet high and almost perpendicular; the beach or margin + from the water to the wall, very diverse for width, some of 20 yards, some + 10, some 5, and in several places the wall butted into the water, + where we several times had to ride in round the points of rocks knee-deep + and sometimes belly-deep; and in one or two places between a large + pyra-mid of rock and the wall on the right, the pyramind appearing + conical or in the form of a sugar loaf about ten feet in diameter at its + base, and about twelve feet high. These cones, I believe, are made by the + dashing of waves, together with the freezing of the water in the + winter, in the smooth joints of the rocks, whereby abundance of them fall + down, parting off from their fellows in smooth, perpendicular points. + The high, perpendicular wall exhibits a curi-ous view; the stone appears to + be principally com-posed of slate and limestone in different regular + strata of layers. The bottom or lowermost rocks that I discovered in + most places are limestone, curiously laid in a horizontal form and nicely + jointed in squares of eight, ten, or twelve feet in diameter, the + joints or vaccuums between them mostly + about an inch wide. Some places we found them to extend into the lake; + other places not quite to the edge of it; and in others not within ten + yards of it. Where they ex-tended to the lake, they formed a beautiful + level to ride upon. The next layer or stratum is slate about ten feet + perpendicular. In some places it appeared very shelly or near rotten; in + many others, excel-lent slate in great quantities either for flagging or + covering for houses. Then one general layer of lime-stone about + fifteen or eighteen inches thick; then pretty generally slate or other + stone to the top of the wall or abutment, all which are curiously jointed + in smooth squares or columnes some two feet square, some five, and + some in oblong squares two or three feet by eight or ten. And as the water + in wet times penetrates down those joints, I suppose it freezes in the + winter and bursts off the columns, which fall down on the margin of the + lake, in many places large bodies of them together as much as several + square rods, and the timber on the top with them. In many places the + trees were hanging by one half of theroots with their tops below a level, + and some right top downwards and not touching the bottom. In many + places by the continual dahsing of the waves against the rocks they are + worn in curious forms.

+

+ 21st. Rode three + miles down on the margin of the lake and river + Niagara to the ferry. No such curious wall on our right hand + as yesterday, but similar beds of limestone. This Niagara River is the great outlet of all the northwestern + lakes and waters, which makes a very great river above a mile wide and of + great depth, running very rapidly. We crossed the river in a boat, + which the heavy current drives across in a few minutes, which to some of + our company ap-peared a little terrifying; and then rode up on the + margin of the lake on the other side about eight miles, which appears to be + pretty level except some very high banks of sand and a general bed of + lime-stone lying in a form similar to the lower bed on the other side. + Then turned off from the lake about a mile to Daniel + Pound's, where four of us dined and left some linen to be + washed (Halliday Jackson and Hugh Hartshorn having part with us at the + ferry and gone down to view the great Falls). + We then rode to Asa Schooly's, where we + met withour beloved friends Wiiliam + Blakey, Nathan Smith + and Jacob Paxson, who we heard had + arrived two days before us. Here we all propose to stay this night, + our kind friend and landlord appearing to have things comfortably + convenient about him. They said they could contrive for bedding for us all; + but Thomas Stewardson and myself were + desirous to sleep on the floor with our blankets, believing it would be + best on several accounts; but we could not do it with-out hurting our + friend's feelings, so consented to take a bed. But when we got to the bed + chamber by our-selves, we found a good clean bed and clothing, which + we examined, and found a thin straw bed on the sacking. We then took + off the feather bed and laid it in the corner of the room, expecting we + should not be discovered. But our kind friend came into the room and + found the bed in the corner, but did not any more insist upon our + compliance with their request.

+

+ 22d. and first of the + week. Stayed and attended their meeting, which is held in the house of our + friend, Asa Schooly, where we lodged, + which to me was a dull time, though some lively communications + therein. After dinner I took an affection farewell of Halliday Jackson, who was returned from viewing + the great Falls and is now about to return through a lonesome + wilderness to Genesinguhta, the place of his present abode. We then classed + ourselves in order to visit the families in this neighborhood, + Nathan Smith, Jacob Paxson, and James Cooper + going in one company, and William Blakey, + Joshua Sharples, Thomas Stewardson, and myself in another. We + then proceeded to and visited the families of John + Cutler, a member; John Harret, + and Azariah Schooly. Neither of the last + two in membership, but hopeful, well inclined people. Returned to lodge at + the same place. I may here note that Joshua + Sharp-les, in getting into the boat at Buffalo Creek, slipped and fell on the edge of + hte boat, which at first did not seem very bad, but [he] hath been + gradually getting worse. We now think some of his short ribs are + broken, and it looks as if he would hardly be fit to travel to-morrow.

+

+ 23d. + Joshua Sharples being too much amiss to + venture out, we set out without him and had religious opportunities in + the families of Daniel Pound, the + widow Morris, and Obadiah Dennis, the second of which in a + particular manner was a favorable one; and then returned to our old lodging + where we all met and had a religious opportunity in the family.

+

+ 24th. + Joshua Sharples being unable to travel, we + left him and rode thirty miles to John + Wills's, where we lodged. On our way we rode fourteen miles + down the river Niagara, crossed Chippeway River and passed the great Falls. Several of our company were + dis-posed to take a view of the great phenomenon, but James Cooper and + myself thought there was not time sufficient to satisfy our curiosity, so + rode on and left them to take a slight view. We all met at the + afore-said Wills's, and had an + opportunity of retirement in the family, in which was some pretty close + work.

+

+ 25th. Set off from + John Wills's, he accompanying us, and + rode eleven miles to Friends' meeting, at the place called the Short Hills, which in the forepart was very + heavy and trying, but more lively before the conclusion. After meeting, + William Blakey, Thomas Stewardson, and myself visited Samuel Taylor and family, and went to + Jeremiah Moore's to lodge, in whose + family we had a solid opportunity.

+

+ 26th. We visited the + families of Enoch Shrigley, Solomon Moore, Jacob + Moore, and Thomas Rice, + noneof them members, but all the descendants [of Friends] and appear + to be thoughtful people. In the evening had a religious opportunity in the + family of John Taylor, whose wife and + children are members, but John was disowned by the Falls Monthly Meeting + and is now desirous of being reinstated, and sent anacknowledgment by + William Blakey; here we lodged.

+

+ 27th. + Joshua Sharples met us yesterday in the + afternoon, being somewhat better, but weakly yet. We visited the + families of Joshua Gillam and Ben-jamin Will, both members, and the family of + Thomas Gillam, not a member, it being + a tender visitation to him. We then + returned to Jeremiah Moore's, where we + met with the rest of our company; had a solid conference among ourselves + respecting the nature of our appointment, which hath felt increasintly + weighty. Four of us lodged here, to wit: Nathan + Smith, Thomas Stewardson, + Joshua Sharples, and my-self.

+

+ 28th. + Joshua Sharples went along with James Cooper to see a friend. Nathan, Thomas, + and myself visited two families who are a little inclined to the + Methodists, and returned to Moore's to + dinner. In the afternoon pad some social visits, and lodged at the + same place, which at present is a temporary home.

+

+ 29th, and the first + of the week. Attended Friends' meeting at their usual time and place. After + meeting, walked four or five miles along with Nathan + Smith + to Samuel Becket's, where Nathan had + appointed a meeting to being at four o'clock, to which the neigh-bors + and many of the Firends from about their meet-ing house came, and which I + hope was a time of prof-itable instruction to some of them. On taking a + view of the earnest desire which many of them have toattend such + places, the compassionate feelings of my heart were very much awakened, + especially for their women, many of them going four or five miles on + foot, some of them with young children in their arms and others in + such a state that I should have thought scarcely fit to travel far on + horseback; yet they would and did walk faster than was easy for me, and + re-turned to their homes in a dark night, the men car-rying lighted + torches in their hands to show them the way along their muddy and rooty + roads. Lodged at the same place.

+

+ 30th. Spent part of + the day agreeably with some of our friends; also had a solid opportunity + with a man who we believed had taken imagination for rev-elation, + which had led him into some strange acts and predictions. I hope his state + was so clearly opened and laid home to him that it may be of use to + him. He acknowledged he had been deceived and followed a lying spirit. In + the evening five of us re-turned to my lodging.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--V. + BY ISAAC COATES, OF CALN, + CHESTER COUNTY. +

+ 1st of the Tenth month + [1799.] We all attended a confer-ence before appointed to be + held at Friends' meeting-house in Pelham + township, otherwise the Short + Hills, with the members of said meeting and the Friends of + Black Creek, which was conducted + with great solem-nity. In this conference I was more fully convinced + that there is a small number of seeking, religiously minded Friends in + both places, and that if they abode in the patience and perseverance, the + way would open ere long for the establishment of a monthly meeting + amongst them. But the rest of my brethren believed the time was already + come; so, after expressing my doubts of their being fully ripe to be + entrusted with the executive part of our Disci-pline at this time, I freely + submitted my feelings to the judgment of those whom I esteem to be deeper + in the religious experience. It was then agree to open a new monthly + meeting to-morrow at eleven o'clock, to be known by the name of Pelham + Monthly Meeting in Upper Canada, to be composed of Friends of Pelham + and Black Creek and to be held alternately at each place the first Fourth + day in every month.

+

+ 2d. Attended the + opening of the new monthly meeting, it being a favored opportunity, which + re-vived a hope that if this small number of Friends composing said + meeting keep in humility and steady attention to the best direction, their + number and experience may so increase that the testimony of truth may + be supported amongst them. After meet-ing took leave of our kind friends + near the meeting-house and rode five miles to our friend, Samuel Becket's, who is a member of said + meeting and who kindly entertained six of us, Joshua + Sharples staying at James + Crawford's.

+

+ 3d. + Thomas Stewardson, James Cooper, Jacob + Paxson, and myself set off, intending for Newark + down the Niagara River. Dined at + Queenstown, thelanding where all the + goods conveyed thus far by water are + unladen, and those intended to be re-shipped and taken into Lake Erie are carted or car-ried by land above + the great Falls. Thence to New- ark, it + being a newly settled town at the mouth of the river + Niagara, containing about one hundred houses. It is a + beautiful place opposite the American fort, called Niagara Fort, and just where the river empties into + Lake Ontario which is another + wonder-ful fresh water sea in this northern country. Lodged at + George Bradshaw's. In this place oats is + 6d. per quart, hay 14d. per night for horses. This day's ride, + twenty-two miles.

+

+ 4th. Rode fifteen + miles up the river to William Lunday's. + Left our horses there are walked about a mile to a meeting appointed by + Nathan Smith and + William Blakey, in a meeting-house near + the Falls, called the Federal Meeting + House, it being built by the inhabitants for any minister of any religious + de- nomination to preach in, but I understand meetings are very rare + in it. No Friends live hereabouts but William + Lunday, and he, by some means, forfeited his right before he + came here, but is kind to us. I thought the opportunity was owned, + particularly to-ward the close. In the afternoon William Blakey, Nathan + Smith, and Thomas Stewardson + set off for Black Creek; Jacob Paxson being very poorly, stayed at + Lunday's; James + Cooper and myself went about five miles down the river to + view a great curiosity called the whirlpool. On our way we met with an + acceptable repast on excellent peaches. We came to the bank of the + river, which I believe is three hundred feet above the water, nearly + perpendicular, on which we had a fair view of that astonishing place, the + river rush-ing with great impetuosity against the bank or wall of + rocks at a short turn in the river and then turning in a cove of perhaps + ten acres in which it whirls round and round, striving to escape at a + narrow pas-sage of perhaps one hundred yards, being all the opening + there is between the high hills. Into this pool abundance of logs and + timber is carried and per-haps cannot get out for some weeks. It is amazing + to behold the whirls that are formed, the logs sucked down and some + time after shooting up (perhaps 100 yards from the place they went down, + end foremost) fifteen or twenty feet perpendicular out of the water; + that upon the whole it is an indescribably agitated place. Returned + and lodged at William Lunday's.

+

+ 5th. + William Lunday accompanied James Cooper + and myself in order to take a satisfactory view of the great cataract. + We went about three-quarters of a mile below the + Falls and then descended a bank of lime-stone rocks, I + suppose nearly 300 feet, which was not quite perpendicular, to the surface + of the water, some times holding by roots, some times by twigs, and + some of the way down a ladder, other times sticking our toes in the + cavities and holding by the craggy parts of the rocks. When down, + clam-bered along the rocks, logs, slabs, and timber up the river to + the place where the water shoots over the rock and falls 160 feet. We went + as far as we though was safe, being as wet, with the spray of water and + sweat, as if we had been in a heavy shower. I had an inclination to + go further in behind the water, but Lunday said it was dangerous; for, as he said, if the wind + were to shift against us we should be in danger of being suffocated with + the spray and sulphur which smelled very strong. I though there was not + quite so much danger as he alleged, believining he was a good deal + timid; however, I thought best to decline, lest I should suffer for my + temerity. On clambering along the rocks by the water with a wall or + mountain of rocks 160 feet high in some place over my head, hanging + twelve or fifteen feet over plumb, it appeared truly awful and dangerous, + which put me upon think-ing what my view was in going into such apparent + danger, as it is evident great columns of them fre-quently break off + and fall down; but as I believed it was not altogether to gratify an indle + curiosity, for the whole of the prospect led me into a reverent frame of + mind, admiring the wonderful works, and in some measure adoring the + Great Author, I then though if I should then be buried in oblivion, perhaps + my soul was as much in a state of aspiration and adoration as it + might be when the unavoidable event should take place. This consideration + led me on without much fear at that time, though naturally timid. I need + not undertake to describe this wonderful phenom-enon, as many pens + have been employed in setting forth its magnitude; but as I have taken a + view of the river in places many miles down, I am fully of the min + dthat the great Falls at some period were nine + miles farther down the river and that they are gradu-ally wearing up, + and perhaps in time may drain the great Lake + Erie. It is wonderful to behold the agi-tation of the water + in the rapids above the falls and also below them, column after column + dashing against each other and rising a great height with such foaming + and confusion that the whole appears truly awful. We were very wet when we + left the place; got on our horses and rode to Chippewa. Fed our horses and took a snatch ourselves, then + rode to Black Creek settlement, + twenty-four miles, and lodged at Anna + Morris', who is a kind, agreeable young widow.

+

+ 6th. Attended the + meeting at Asa Schooly's, it being large + for that place. After meeting we had a conference with the members of that + meeting and laid before them the need we though they had of a house + to meet in, which they seemd spirited to build. On considering their + circumstances,--being most of them new settlers and not in very affluent + life,--we made them an offer of thirty dollars toward purchasing + materials; but they modestly declined accepting it, and said they + could do themselves. I have now pre-pared things in order to set my face + homewards to-morrow, which feels very pleasant.

+

+ 7th. + Wm. Blakey, Nathan + Smith, Jacob Paxson, + Thomas Stewardson, and myself lodged + at our kind friend, Asa Schooly's, last + night, who with his valued wife, equipped us for our journey through the + wilder-ness. Early in the morning, after taking an affec-tionate + farewell of our kind hose, I set off with Thom-as + Stewardson, and rode thirteen miles to the ferry. Had a fine + passage over the river which is a terror to many, then rode three miles up + the lake to the mouth of Buffalo creek, + put up our horses and waited until all the rest of our company came, which + is now augmented to the number of eleven--William + Lippincott, John + Will and _____ Carpenter joining with + us to go to the States. Four of us lodged at Joseph + Elicot's who was very kind, and gave us a good supper and + breakfast.

+

+ 8th. Set off from + Elicot's, it having been a very wet + night and dull morning. Rode eighteen and one-half miles to where + there is a large new house building for a house of entertainment. Fed our + horses and dined on our own provisions. The land the most of this stage + an open plain full of lime-stone which doth not appear to me to be + very valuable, the grass and herbage of an inferior kind; some of the way + pretty good land covered with beech and sugar maple. From thence to + Tonawanda, a large stream running into + Lake On-tario, 11 1/2 miles. Between + those places there is some excellent land covered with beech, sugar maple, + bass, black walnut, shell-bark, hickory, poplar, and divers other + sorts of timber. Just after we crossed the + Tonawanda I rode a few rods to the left hand to + see the memorable and celebrated rock under which Captain Lindley and his men, about two years ago, + en- camped and lodged a very cold, wet night without fire; and just + after I got into the road again, had the mortification to lose a great part + of my horse-feed by means of the bag's coming untied and scattering on + the ground, which my mare may have cause to lament in this wilderness + country. Then rode eleven miles further to a small stream, struck up a fire + and lodged in the woods at the east end of the White + Oak Plains, having passed over some very poor land, some + good, and a large plain pretty much without timber or luxu-riant + herbage. On our way this day we met many people moving from Bucks county and the + Jerseys to Canada. It is + amazing what numbers of people emi-grate from those two places over the + Niagara river. Where we have pitched + our tent there are several other fires, at some of which are several + Indians out hunting. They have large bundles of skins. This day's + ride, forty-one miles.

+

+ 9th. Set off early + and rode to Elicot's store-house, + thirteen miles, having an order from him to get any-thing ourselves or + horses stood in need of. This stage almost all the way excellent limestone + land covered with ash, beech, bass, sugar maple, etc., in abun-dance; + a deep soil and not so broken with the rock nor yet so dead a level as in + some places, and is tol-erably well watered with lively streams. Soon after + I set off this morning, my mind became serene, which led me into an + humble state, and thankful-ness and gratitude to Him who hath hitherto + pre-served me and showered down many blessings and favors upon me, + ascended from my soul, accompanied with strong desires that the rest of my + time may be spent in a measure worthy of such favors. From thence to + two new taverns just by a large spring; seven miles of this distance the + land much as before, when we came to a creek running to the left called + Kittle Creek, just at a great fall + over a large flat rock, called the Buttermilk + Falls, then immediately en-tered land of an inferior + quality, into a large road I suppose opened by the State of New York, on + which there are many new improvements. From thence to Parsons's on said road, being a new tavern; pretty + good accomodations; eleven miles. On the way we crossed the Genesee river, four miles form our lodging, it + being a large stream running into the lake. On the west siade of said river + there is a small Indian village on an extense of flat or plain of very rich + land covered with high grass, I suppose some thousands of acres. This + day's ride, thirty-six miles, in which space we met fifteen or sixteen + wagons with families and many other people moving to Upper Canada. So great + is the emigration to that government.

+

+ 10th. Rode ten miles + along the aforesaid road which is at least 100 feet wide. I was very much + surprised to see the improvement which is made in this new settled + country, particularly along this road. I am informed it is but ten years + since it first began to be settled; and now there is not half a mile + with-out a house, and many of them very good ones--what may be called + elegant--many capital barns; a great deal of land is cleared and there are + very good cattle in the fields. The people principally emigrated from + the New England states, and this is a specimen of their industry. When we + had ridden ten miles from our lodging we parted, Joshua Sharples, Nathan + Smith, James Cooper and myself + turning off the main road to the north in order to pay a visit to some + Friends who are settled at a place called Mud + Creek. The other friends all propose to go directly home. We + then rode eight miles to Jacob Smith's; + dined and rested the afternoon; here we propose to lodge. The most of + the way from the great road here, appears to be a light, sandy land, thinly + tim-bered and I think may be called poor. About one mile before we + came to Smith's, we again came into rich + beech and sugar maple land. Our landlord doth not appear to be much + polished, but I believe is hearty in entertaining us in his way.

+

+ 11th. Rode from + Jacob Smith's seven miles to his + brother Jeremiah Smith's. When I came in + sight of the house, although the barn and farm looked well, yet the + house appeared so miserable I was ready towish I had not come into those + parts; but in a little while after I entered my mind was saluted with + some-thing like "Peace be to this house," and I felt myself very happy + in company with the family, and believe that divers of them live near the + fountains of good. We stayed till evening and then rode two miles to + Abraham Lapham' and lodged.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--VI.BY ISAAC COATES, OF CALN, + CHESTER COUNTY. +

+ Tenth month, 12, + [1799.] On viewing the Lapham's + farm and things about it, (though he lives in a very poor house) I was + astonished to see the improve-ment made in the time; he told me it was but + four years last spring since he began on it in the woods, and now he + has more than one hundred acres of land fenced in, fields and meadows all + in, either with grain or grass, and the most of it excellent. Has built a + saw-mill and has a dairy of cows so good that not-withstanding it hath + been an unfavorable season, they have made above two thousand lbs. of + cheese; and yet he appears with his precious wife to be well concerned + Friends, and is free to devote much of his time in the service of truth. + Truly in this far back settlement in the Genesee + county, State of New York, the appearance of things is + comfortable, and affords an encouraging hope that if the few Friends here + set-tled improve as well and hold up so good a light in a religious + sense as they do in improving the wilder-ness country, they may yet become + as "a city set upon a hill that cannot be hid." Stayed all this day + with these our valued and kind friends; wrote a let-ter to Jacob Taylor, at Oneida, and walked about viewing the improvements + Lapham has made. Lodged another night + in his house. In the evening,Caleb + Maccumber and another friend came to see us, and we spent + some time in agreeable converse.

+

+ 13th, and first of + the week. Rode two miles to Nathan + Comstock's, where Friends' meeting is held, which was large + this day for such a new country. Itwas a favored meeting, in which the + gospel was preached, and near the close I could not feel easy without + requesting an opportunity with Friends, se-lected from others, which was + readily compiled with, wherein I endeavored to relieve myself of a heavy + burden which I had silently borned ever since I came into these parts, + on account of such a rapid increase of the abominable practice of + distilling the precious wheat into whiskey; and though I believe there are + a few well concerned Friends here, yet doubts ac-companied my mind + that they were too easy about the wickedness of such a perversion of the + blessings of Divine Providence; and I endeavored to put them upon + nobly bearing a testimony against it, and set the light upon the + candlestick, believing that the des-truction or salvation of their country + very much de-pended upon the conduct pursued in that respect. After + dinner rode seven miles to Nathan Herring- + ton's, a kind man not in membership, but a diligent + attender of meetings, and there lodged, + having ridden ten miles this day.

+

+ 14th. Rode five miles + through rich land and new road. We came to a great road, and as soon as we + entered it we came in sight of Canandaigua, a newly settled town containing nearly or + quite fifty houses. I was surprised to see such a place in this back + country. It stands on a beautifully elevated spot, the buildings + generally excellent, and divers of them would cut a very good figure on the + banks of the + Schuylkill for a country seat. The town + commands a pleasant prospect of a small lake about twenty miles long + and two or three wide. We rode round the lower end of the lake and crossed + the outlet; then rode nine miles to one Gilbert's tavern, a good stage for horses. Greater part of + said nine miles is very rich land, some of the timber more mixed with + hickory and oak than some other places; but gen-erally through this + country there is a great scarcity of mill seats or lively streams. Then to + Thomas Lee's, a kind man, his wife a + member of our society; seventeen miles. About midway of this stage we + passed Judge Potter's house and farm. The + house is quite grand and magnificent, and was it one story higher + would cut no inconsiderable fiture in one of the most populous streets of + Philadelphia. About two miles beofre + we came to said Lee's, we crossed a fine + stream running to the left, being the outlet of Crooked Lake; and about one mile below the lake, at the + place we crossed said stream, there is a new mill and saw-mill which was + built by David Wag-oner, one of the + followers of Jemima Wilkinson, it being a + few miles from her residence. Our quarters for ourselves and horses at this + place are excellent; and being informed that Joseph + Jones, a young man brought up in Yorktown, with whom I had some acquaintance, lived near, I + sent for him. He cameand spent the evening very agreeably to us both, and + as there appeared to be a few Friends and some Friendly people in + this settlement besides some of Jemima's + followers, who are very tired of their ad-herence, Nathan Smith felt a draft in his mind to have a meeting + appointed, which was accordingly done, to be held in the house where we + have put up, to begin to-morrow at eleven o'clock. This day's ride, + thirty-one miles.

+

+ 15th. Attended the + appointed meeting, which was large considering the place, it being a + memorably favoured time, in which the gospel was preached in + demonstration of the spirit and with power, and I be-lieve many hearts + contrited, divers who had been and some who are adherents of Jemima. After meeting walked home with + Joseph Jones; spent the afternoon + with him at his lodging where he has set up his trade at a mill known by + the name of the "Friends' Mill," but [which] is now private property, + and will, in time, I think, be of great value, the stream being large + and durable, and a fall over the rocks of forty feet, which completely + answer for a dam and head race for one grist mill, two saw mills, and + a fulling mill. Returned to lodge at the same place.

+

+ 16th. Set off early + from Lee's and rode sixteen miles till we + came in sight of Mud Lake to our left + hand. There Joshua Sharples, Nathan Smith, and + John Hill went forward, and James Cooper and my-self took a right-hand road + leading to Bath, and rode two miles to + one Stanford's, fed our horses, and dined. + Just before we came to Stanford's, + Joseph Jones came up with us and + brought forward Joshua Sharples's + pocket-book, he having left and forgotten it at our lodging. Then + James Cooper followed the others with + the pocket-book. Joseph and I rode to + Bath, fourteen miles. The first part + of this day's ride was chequered with good, bad, and middling land. About + seven or eight miles before we came to Bath we passed the upper end of Crooked Lake, it being about twenty miles long and about + three miles broad in the widest place. About two miles above the head of + the lake, tolerably good land with improvements; the rest of the way + to the town very poor land cov-ered with pitch pine. The town of Bath is hand-somely situated on the bank of a + branch of the Sus-quehanna called + Cohocton, containing about forty + houses, one of which is a court-house, in Steuben + county. Lodged and was kindly entertained by Wil-liam Kersey and his wife, who appeared + truly glad tosee me.

+

+ 17th. Set off early + from Kersey's, accompanied by Joseph Jones, and rode six miles to Dolson's, where the rest of our company lodged, + they being just gone when I arrived. I though they might have stayed a + little longer to acknowledge Joseph's kindness + in following with the articles left behind. Thence to the Painted Post, twelve miles; it being a noted place, + I was disappointed in seeing the house and entertain-ment. However, + it was not so bad but it might be worse. The most of this stage was very + poor, rough land. Thence to the tavern known by the name of Lind-sley's; a good stage, twelve miles. + Immediately after leaving the Painted + Post, crossed the Cohocton, a + large stream running into the Tioga. We + then rode up the Tioga, a long, rich + bottom, and crossed it twice after leaving Lindsley's. Crossed the Cowanesque and the Tioga + twice more before we arrived at Berry's, where + we lodged; ten miles. This day's ride, forty miles.

+

+ 18th. From Berry's to Peter's + Camp, twenty-one miles still up the Tioga, and crossed it six time. Land and timber much as + before, except in many places very lofty white pine. On our way we fed at + one White's, twelve miles from Berry's, a newly set-tled place, and appears as + though it may in time be good quarters. We have now ridden about forty-two + miles up the Tioga river, and crossed it + ten times. Thence to the block-house, ten miles, where we fed and + parleyed a little about staying all night. Some were for lodgeing there, + but from the general account of the mischief done to travelers by the man + of the house or some of his family, I was all along uneasy to stay + there. The rest of my companions appearing disposed to stay, it being then + three o'clock in the afternoon, however at last I gave up to stay, and then + they changed their purpose and set off, and I with them, I feeling a + good deal unhappy at our entering a lonesome desert, not knowing whether we + should meet with any suitable place to encamp, and two of our company + being infirm. But on riding about + three miles, we came to a stream of water + and there fixed things in order for lodging in the woods, which we got + completed before night; and had a comfort-able night under a tent made of + bushes, by a large fire. My companions said the place should be called + Coats's Camp, which name I have no + doubt it will go by. From Peter's Camp + we immediately left the Tioga + on our left hand, and ascended a great mountain called the Savage Mountain., which I take to be there same + range with the Alleghany and Laurel Hill. It is a great height and breadth, + being twenty miles across the ascent, and on the top until we came to the + place we lodged, (which is thirteen or fourteen miles), to the worst + road I have met with on this side the Genesee + river, being very stony, rooty, and muddy; a great part of + it covered with hemlock.

+

+ 19th. The descent + down the south side pretty good road, but steep until we came to Trout Run, nine miles from the block-house, then + down said run six miles, in which distance we crossed it twenty-seven + or twenty-eight times, and came to Charles + Reeder's. Got oats and fed our horses, then left the main + road, crossed the Lycoming and went seven + miles over very poor, rough land to Moses + Wilson's, a Friend at a place called Blooming Grove. Dined and proposed to stay all night. Rode + these two days, fifty-two miles.

+

+ 20th. First of the + week. Rode two miles to Na-thaniel + Pearson's where a small meeting of Friends is held by + indulgence on the First- day of the week. Sat with them in their meeting + and went home with + Moses Starr to dine. Afternoon rode seven + miles to the widow Harris's. The land and + timber this day's ride, which was nine miles, appeared to me to be + very poor until we came to the said Harris's, on the west branch of the Susquehanna, where there appears to be excellent land a + considerable width from the river, and they have an extraordinary + plantation for fertility with a beautiful descent from the house fac- + ing the south. On taking a view of said farm and the buildings upon it, I + was led to contemplate upon the great difference between the New England + set-tlers in a new country and those from Maryland, having heretofore + mentioned the industry, economy, and intrepidity of the former. This family + emigat-ted from Maryland and appears in the house hold to be in + affluent circumstances. Several sons, young men grown, and have been + settled here, I suppose, twelve or fourteen years; have got a good deal of + excellent land, cleared perhaps by the blacks, but they have no barn + nor stable fit to put a horse into; but have ten or twelve hounds, a tame + wolf, etc., and I expect spend much of their time in hunting; all of + which had a tendency to increase my partiality in favor of the + Yankees. But we are kindly enter-tained here; therefore it will not be + proper to castany reflections on their economy.

+

+ 21st. Rode from the + widow Harris's to Wm. Ellis's, nine miles. On the way crossed the Loyalsock. Rested till evening, when twelve + Friends appointed by Philadelphia Quarter came to Ellis's in order to attend the opening of a new Monthly + Meeting at Muncy, next Fourth-day, the + 23d of this month. Here we all lodged, being sixteen of us, they having + plenty of room, good accommodations, and open, generous hearts.

+

+ 22d. Went to get my + mare shod. Returned to Ellis's and + lodged.

+

+ 23d. Attended the + opening of the new Monthly Meeting at Muncy, where appears a considerable number of well + concerned Friends. Said meeting held till near sunset. Lodged this night at + our kind and hospitable friends, Wm. and + Mercy Ellis's.

+

+ 24th. Rode from + Muncy to Catawissa, thirty miles, and lodged at Ellis Hughes's. The most of the way a very good + road; passed by a number of pretty good plantations though a thin soil and + a great deal of what I call poor mountain land, covered with barren + oaks and small pitch pine. Soon after I left Ellis's, crossed Muncy + Creek, a large stream; and a little before we came to + Catawissa town, Fishing Creek, another large stream appeared on our left + hand and emptied into the northeast branch of the Susque-hanna, which opposite to said town is about a + quarter of a mile wide. We rode through it, [it] being a lit-tle more + than belly deep.

+

+ 25th. Stayed in the + town and walked about with Ellis Hughes + viewing the river and town, which contains about fifty houses, most of them + not the most elegant. Near three o'clock, afternoon, James Cooper + and myself set off, leaving the rest of our company who intend to + attend the Monthly Meeting at Catawissa + tomorrow, and rode fourteen miles to Ledingburg's, a Dutch tavern, the road being good over + mountains of very poor land.

+

+ 26th. Rode from + Ledingburg's to Ricgh's, nine miles; fed our horses and got breakfast; to + Pensinger's, eighteen miles, and + dined; to James Star's, at Par-vin's, twenty miles, and lodged. This day's + ride, forty-seven miles. The most of it good road over a poor mountain + country. Crossed the Schuylkill at a forge + in a gap of the Blue Mountains, and Maiden Creek, about a mile before I came to + James Star's. James Cooper having parted with me two miles back, in order + to go to John Star's, it felt very comfortable + to be with these my old neighbors and beloved friends, James and Eleanor + Star.

+

+ 27th. First of the + week. James Star accompanied me to + Reading; attended Friends' meeting in + that place, which is very small, six miles, and dined at John Jackson's, who accompanied me to my + son-in-law's, Mark Hughes, seven miles, + at Exeter. The pleasure I felt in + meeting with my children was more sensible than easy to describe.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--VII.BY ISAAC COATES OF CALN, + CHESTER COUNTY.[SECOND JOURNEY--1803.] +

BEING several years one of the committee who have the care of the concern + and fund raised by our Yearly Meeting for promoting the gradual + civilization and real benefit of the Indian natives, I have for several + months past felt my mind drawn to visit them again in Cornplanter's settlement, and where some of our + young men are residing amonst the Seneca Nation, at a place called + Genesinguhta, in order to instruct + them. The committee, last month in Philadelphia + when met, believed it would be likely to be useful in promoting that + good work, for four Friends to be ap-pointed to visit the before-mentioned + settlement this season; accordingly separated Isaac + Bonsal, Thomas Stewardson, + John Shoemaker, and myself for that + purpose. We then agreed to meet at Thomas + Light-foot's, at Maiden + Creek, on the 9th day of the Ninth + month, 1803.

+

The morning of said day I left home in company with James Wilson, who is intending to accompany some women + Friends to Upper or West Canada, in order to visit the members of our + Society residing there. About noon we met Isaac + Bonsal at John Scarlet's + and arrived in the evening at Thomas + Lightfoot's, where we were informed all the rest of our + company were gone forward about noon that day.

+

+ [9th mo.] 10th, + [1803.] Rode over a number of mountains to Kepler's, formerly Rich's + tavern, and lodged, where we fared better than we + expected.

+

+ 11th. Rode to + Trexler's, late Ledenburg's, in the morning, where we found our friends who + went be-fore. They not being ready to set off, we left them and rode + to Catawissa, 23 miles, this morning before + ten o'clock, and attended Friends' meeting in this place, having + ridden ninety-six miles. We propose to rest the remainder of this day at + Ellis Hughes's, it being the first of + the week. On viewing the timber, mountains, land, and roads thus far, I + think it need-less to make any observations, finding them all to very + nearly correspond with the former notes I made thereon; but have observed a + number of miles back to this place, the Indian corn, buckwheat, potatoes, + and almost all other tender vegtables are generally killed with the + frost.

+

+ 12th. Our expected + company all arrived last even-ing. In the morning provided some + necessaries, and rode this day to Wm. + Ellis's, thirty miles, at Muncy, where we all propose to lodge, being ten of us. + Soon after we crossed the northeast branch of the Susque-hanna we found the frost had not been so severe as + where we passed yesterday; but it is almost melan-choly to behold in + this part of the country the springs and streams of water to be almost + wholly dried up and gone, even many heretofore large streams with no + water in them, and many valuable milles are with-out one drop, insomuch + that divers of the inhabitants have got to boiling their wheat to eat and + expect if the drough continues much longer it will be gener-ally the + case. At Wm. Ellis's the women were + wash-ing and they told us they expected it must be the last time, + except rain came, or they brought their water a number of miles.

+

+ 13th. A wet morning. + We stayed at Wm. Ellis's and dined. About + two o'clock p. m., Thomas Setward-son, + Isaac Bonsal, John + Shoemaker, George Vaux, + and myself, all who were going to Genesinguhta, set off. James + Wilson, Hannah Yarnal, + Mary Witchel, and Samuel Johnson, who propose going to Canada, + stayed at Ellis's. This afternoon we rode + fifteen miles to Newberry, a small town + of perhaps fifteen or twenty houses. Most or all of the way from Ellis's to + Newberry is a beautiful road along the + bottom lying on the west branch of Susquehanna. On our way we crossed the Loyalsock about nine miles from our last night's + lodging, and the Lycoming about six miles + farther, near Newberry, both of which + are large, beautiful streams falling into the West + Branch. The most of this afternoon's ride along the bottom + is very fertile although it appears to be sandy. Near Lycom-ing the Indian corn is excellent; I + expect it will pro-duce fifty bushels to the acre. We propose to lodge + to-night at John Sloan's tavern where we + have had an excellent supper. We passed through Williams-port, about three miles back from Newberry, it being the county town of Lycoming + county, containing twenty or more houses.

+

+ 14th. Rode eighteen + miles to James Kooken's on Larrie's Creek, and dined. The most of the way over + a very rough mountain called the + Alleghany; some spots tolerable land, + but I think four-fifths of it is not worth settling upon. Just before we + came to the creek we entered a forest of very tall white pine which + stands very close together, insomuch that I con-cluded if it was all cut up + in four-foot lengths it could not be corded on the ground. Said Kooken has about fifteen acres of land cleared, + which appears to be very fertile, having very luxuriant potatoes and + butterweeds, also the appearance of good oats standing in shock and + some not cut. Thence to John Norris's + mill, on a branch of Pine Creek, thirteen + miles. After leaving Larrie's Creek we + rode about five miles through very rich land exceeding heavy loaded with + timber--mostly white pine with some hemlock, sugar maple, etc., and + then entered a valley down which a branch of Pine + Creek runs, which we crossed eleven times, and then came + upon a larger branch of said water, crossing it several times. Up to the + mill pretty good land in a narrow valley between two high mountains; + no house nor improvement for ten miles of the last stage. At this place we + have got a verypleasant landlady who provided us a good supper.

+

+ 15th. Rode to + Moses Wilson's eleven and one half + miles; the most of the way upon a branch of Pine + Creek, though very good land heavy loaded with timber, + and there appears to be several new settle-ments making which in tim may be + very valuable, one of which is Sampson + Babs's who is making an improvement on a fertile spot and + has got a race al-most finished in order for a sawmill, and perhaps a + grist mill. He appeared exceedingly elevated with seeing us and told us + when he came there first, being no road, he came by direction of a + compass, and resided twelve weeks without see-ing the face of any + person. Had only a blanket and piece of hemlock bark for his house and + bed-clothing. Moses Wilson and his truly + valuable wife appear to be very happy in seeing us. He has made a + considerable opening in the heavy timber and has got good corn and other + things; but truly those who have not been in the back country can have but + a very imperfect idea of the hardship and difficulty those have to + endure or encounter who are the first settlers in a new country. Thence to + James Mills's at the third fork of + Pine Creek, which is a boatable + stream about fifty-six miles above where it empties into the west branch of + Susquehanna, and ten miles from + Moses Wilson's. On our way we came to a + camp in the woods, where we foudn Wm. + Ellis with a Fisher & Co.'s land, said Ellis accompanying us six miles to said + Mills's in order to spend the + evening with us in friendly converse. The land gen-erally good this stage, + and some of it excellent withabundance of very large sugar maple. Said + Mills is living on said Fisher's + land which I think will, in time, be a very valuable estate. He said he had + two years ago six hundred dozen of wheat, and the present year has got + seventeen acres of corn, which will no doubt yield fifty or sixty bushels + to the acre; appears to be a very active, intelligent man; has got twelve + children, nine of whom live with him, who are very healthy and hardy. + He is perhaps as successful a hunter as there is in this State, and many + of the wild beasts of the woods fall a prety to his skill, such as + bears, panthers, elk, and deer. It is said and be-lieved he killed eleven + elk one morning before break-fast. One of his sons, in the ninth year of + his age, killed six elk and five deer; is now in the fourteenth year + of his age, has killed several bears this season. Two of his daughters + killed three elk in one day; and we have this evening feasted on the + product of their skill. Said Mills told + me that he and one other man were out about a week and they killed in that + time above seventy deer.

+

+ 16th. Before we left + Mills's, breakfasted on coffee, of + which we had plenty, wheat bread and butter, venison, both of the elk and + common deer, eels, trout, then rode about twenty-five miles up Pine Creek, and crossed it thirty-eight times + before we came to the head, which is about eighty miles from where it + empties into the West Branch. Almost all + the way up it, good land in general, heavy loaded with timber, some of + the way very lofty white pine. After we left the head of said creek, rode + seven miles through very rich land and timber rather exceeding that on + Pine Creek, to a spring, being one of + the head-springs of the Alleghany River, + where we struck up a fire, pitched a tent, and lodged.

+

+ 17th. Rode + twenty-three miles to a new settlement on Osweo being one of the main branches of the aforesaid + river, where there are several neat houses built, which is intended for a + town called Cerestown + or Francis King's settlement. The most of the said twenty-three miles + is excellent land, but so heavy loaded with timber of divers sorts, such as + hemlock, white pine, sugar maple, cherry, and some bass or lynn, that + it will be very expensive clearing. It is astonishing to see the height of + the white pine, and other timber in proportion. Although to such as + have never seen such timber it may seem a little romantic, I have + seen, (particularly when we came near Francis + King's), great numbers of trees which we all believe to be + thirteen or fourteen perches high; and John + Bell, a Friend of veracity, told us he measured one which + was 250 feet long when it fell down, which is fifteen perches and ten feet. + Said Bell + and his wife are Friends that came from the north of England, and are + about settling here; [they have] a good deal of very good corn; they seem + to be in good spirits, were truly glad to see us, his wife remarkably + so, insomuch that she was ready to weep with joy; is a remarkably + cleanly woman and was very happy this afternoon in entertaining us with a + good cup of tea sweetened with loaf sugar and good will, that I though + the joy and happiness we were instrumental in communicating to this woman + was almost worth our journey to these parts. Here we also met with my + old friend, Halftown, who is up here in a + canoe with three of his children, in order to get some necessary + tools, etc.; was just going to set off about fifty miles down the river to + his home. He was very much rejoiced to see us and agreed to stay until + to-morrow to navigate us down the river to Gene-singuhta.

+

+ 18th. First of the + week. Stayed at Cerestown till after + dinner. Francis King is a plain, sober-looking + man, but by some means he forfeited his + right of membership with our Society before he left England. His wife + died after he came here, leaving with him seven or eight children who are + members. John + and Mary Bell with six or seven children + are all members. These two families with one or two more, are in the + commendable practice of meeting together once or twice a week in order to + pay the tribute of worship. We sat with them in their little meet-ing + and dined at John Bell's, whose wife is a + woman of the most exquisite sensibility; and at our depart-ure taking + leave of them [it] seemed as much as she could bear with becoming + fortitude. After dinner, walked along with Halftown down the Osweo six + miles, where it empties into the Alleghany, and he had left his canoe. The water being very low, + some of us walked and others rode in the canoe turn about until we + reached Adam Hoopes's, fourteen miles from + King's. The land and timber down the + river to here, pretty good. Said Hoopes + received us very kindly in his cabin and treated us with the best provision + he had; which was venison, [and] corn, dried, pounded, and made into + mush, with milk to eat with it. We all slept on the floor of his cabin + before the fire, hav-ing some of his poultry taking their repose close by + us. He is a courteous man who owns 20,000 acres of land in this + country, a considerable part of which is very good, and is now beginning a + settlement just at the mouth of a boatable stream called Issua, which perhaps in time may become a very + valuable estate. He has got a large house raised but not covered, and + some corn standing, and perhaps eight or ten acres which he intends to + sow wheat upon.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--VIII.BY ISAAC COATES, OF CALN, + CHESTER COUNTY. +

+ Ninth month 19th [1803.] + Adam Hoops's brother pro- posing to go to + Genesinguhta to get some seed wheat, + and the river being so low that we were doubtful Halftown would be beset to convey us down in his + ca-noe, they kindly offered some of us a passage in their canoe. + Accordingly Thomas Stewardson, John Shoe-maker, and George Vaux went with him, he having two active young men + to work it; and Isaac Bonsal + and myself took passage with Halftown and + his son, having an exceedingly pleasant ride down the river, keeping + in company all the way with the vessel which our friends were on board of, + and another canoe with one man in it going to Pittsburg. We sometimes sat up and sometimes lay down and + slept between two Indians navigating us, who appeared very dexterous, + and disposed to accommodate us in every respect in their power. About + twelve or fifteen miles down from the Issua we stopped and dined at aplace called the Plum-Orchard, it being on or near the upper end + of the Indian reserve. I never saw such a place before, it containing + about forty or fifty acres of exceeding rich land thickly set with trees + which are loaded with excellent fruit, and abundance on the ground, + now in full season. I have no doubt but there is more than one hundred + cart-loads of ex-cellent plums on which we satiated our appetites for + that fruit and took some on board. Then sailed down the river to the mouth + of the Tusquiatossy, it being twen-ty-one + miles from Issua. There we struck up a fire, + pitched our tents and slept on the river-bank, the number of the + passengers our squadron contained be-ing twelve. George Vaux hitherto being our cook hath performed his + office to suit our palates, and this even-ing failed not in his skill. In + the night an alarm was sounded in our camp by a sentinel, under an + appre-hension of the near approach of a mortal enemy. One of our + company took the alarm and immediately rose; the others believing it to be + the effect of imag-ination did not think it necessary to get up, which + ultimately proved to be the case.

+

+ 20th. Breakfasted + early and pursued our voyage four miles to the mouth of Tusquiatossy, being a creek (though now quite + dry) that runs down what is called the Little + Valley. Thence to Genesinguhta, where we met with our beloved friends, + J. Taylor, J. + Thomas, and J. Swayne, the + young men whom we stationed there in order to improve the natives, + John Pennock also being there some + time, improving some of them in the smith- business. It was truly a very + satisfactory meeting, particularly to them, they being so long from a + sense of duty separated from their friends and relatives. Many of the + Indians came to see us this afternoon and took us by the hand with + evident tokens of great joy, which is a clear indica- tion that they + are highly pleased with, and in good measure sensible of our disinterested + endeavor to improve them in agriculture, mechanical arts, and + profitable civilization. We observed, as we sailed down, the Indian + reserve of land along the river to be excellent; and when we came within + fourteen or fifteen miles of Genesinguhta, the settlements and + improvements began to appears, and many + of the In-dians have begun to clear out and cultivate their ground; + have built houses more comfortable thanthey were formerly accustomed to. + When I was up the river from this place four years ago, I believe + there were but three or four settlements worth noticing; and now there + are eighteen or nineteen, and divers of them have large fields of corn, + con-siderable stock of cattle, and some of them this sea-son had wheat + for sale; so that upon the whole I think they have improved in agriculture + beyond my expectations. Soon after we arrived, our friends showed us + the copy of a speech made by Cornplanter + and his brother, Conudiu, on the + proposal of their moving off the Indians' land and settling near them + where they might have the opportunity of being in-structed as usual + and building a saw-mill, which is as follows:

+

"Conudiu first spoke: It is now a long time + since you came to live amongst us; it have even exceeded the limits + that were first proposed. I now speak the united voice of our cheifs and + warriors to you, our women also, and all our people. Attend, therefore, + to what I say. We wish you to make your minds perfectly easy; we are + all pleased with your living amongst us, and not one of us wants you to + leave our country. We find no fault with you in any respect since you + came among us, neither have we anything to charge you with. You have lived + peaceably and honestly with us, and have been preserved in health,and + nothing has befallen you. This we think is proof that the Great Spirit also + is pleased with your living here and with what you have done for us.

+

"Friends, Tewenstee, we have been very much en-gaged in business respecting + the affairs of our na-tion, which has prevented us from answering you + proposals of declining the settlement at Genesinguhta + and moving up the river to settle on land of your own joining ours. + We now all agree to leave you at full liberty either to remain where you + now are on our land, or to move up the river and settle, on land of + you own--only that you settle near us. The Little + Valley is as far up the river as our people are willing + you should go, as we want you to be near us, that you may extend + further assistance and instruction; for although we have experienced much + benefit from you, and some of our people have made considerable + advancement in the knowledge of useful labor, yet we remain very + deficient in many things, num-bers of us are yet poor.

+

Friends, Tewenstee, I myself have been advising our people to pursue the + course of life you recom-mend to us, and we have fully concluded to follow + habits of industry; but we are only just beginning to learn, and we + find ourselves at a loss for tools to work with. We now request you to + bring on plenty of all kinds you think will be useful; then such of our + people as are able will buy for themselves, and such as are poor we + wish you to continue to lend to, and they shall be returned to you again. + We also want you to bring useful cloths and sell to us, that we may + get some necessary things without having to go so far for them. In + looking forward we can limit no time for you to live beside us; this must + depend on your own judgment. When your friends come from Phil-adelphia we wish you to communicate this + speech to them as the full result of our minds concerning you."

+

After the foregoing speech was delivered Corn-planter spoke as follows:

+

"Friends, Tewenstee, attend. I will add a little further. When I was in + Phildelphia, a long time ago, the + Indians and white people at that time con-tinued to kill each other; I then + heard of Quakers, that they were a peaceable people, and would not + fight or kill anybody. I inquired of the President of the United + States about them, whether or not this account was true. He said it was + true enough; they were such a people. I then requested him to send + some of them to live amonst the Indians, expecting they would be very + useful to us. Then it was a long time after before you came. You are now + here, and it has afforded me much satisfaction that you have come. I + have not been disappointed in the account I heard of you. You have lived + peacefully among us, and no difficulty has happened between you and our + people. We now want you to stay with us and stand between us and the + white people; and if you see any of them trying to cheat us let us know of + it; or if you see any of our people trying to cheat the white we wish + you to let it be known also, as we confide in youthat you will not cheat + us.

+

"Friends, we have now spoken so full on the busi-ness that we need not say + any more until we find one of you has killed one of our people, and we find + him lying dead on the ground, or until one of us kills one of you; + then we will take up the business again." [De- livered the 30th of the 8th month, 1803.]

+

Notwishstanding this, we thought it necessary to see the chiefs and others + in council; and being in-formed that Cornplanter was just set out on a hunt-ing tour, we hired + an Indian to go in the night, (though it was a wet one), in quest of him. + He set out and traversed the woods, blowing his horn; and just at + daybreak found him, who came to us early this morn-ing which is the + 21st, and 4th of the week. After + conferring with him, he appeared very much pleased with our coming, + and agreed to send out for the dis-tant chiefs and others to meet us in + council at this place next Seventh- day morning. We then set off upthe + river in order to look for a suitable place to maek a settlement and build + a saw-mill. Having viewed two valleys heretofore had in view, but found the + streams entirely dried up, we came to a fine stream on the east side + of the river, called Tunesasau, on which + we think there is a good mill-seat, being about three and a half miles from + this place, and land tol-erably good; then returned. On our way we had the + curiosity to ascend a very high mountain in order to have a prospect + of the river and adjacent country. Jacob + Taylor and myself pursued our route until we got a grand + prospect of the river and the adjacent country and a number of the Indian + set-tlements, and got home as soon as the others. The young Indian who + is the smith at Genesinguhta,whose name + is Levi Halftown, went with us and re- + turned with those who gave out; he made + himself very merry with us when walking through the woods; said the + Quakers were like little children learning to walk, and that we might now + see some of the hard-ships the Indians had to pass through in their + hunt-ing, only that it would not dor for them to stop and rest; but + when he found I went on, said there was one hardy man amongst them. I think + I never heard + Thomas Stewardson complain or give out until + this time. In the evening Blue Eyes came; + was very glad to see us, but was sorry he had to go to Catta-raugus to see a sick daughter, so that + he could not be at the council. Because he is a steady friend and pro- + moter of our concern for the good of the natives, be-ng a chief who both by + precept and example endeav-ors to lead them on in habits of sobriety and + indus-try, and as he could not stay with us, we took the op-ortunity + of opening to him some of the reasons of our coming here at this time, + which was a proposal of our young men's moving off their land and + set-tling near them on some of their own. He was wise enough to see + the reason of the proposal; and al-though he saw and gave in to the + propriety of it, yet appeared sorry, and he is a near neighbor; and said if + they moved he would wait to see how they would do and then move near + them. Truly the opportunity this evening with Blue + Eyes had a tendency to pro-duce some very pleasant + sensations in my mind, and I thought I could own him for, and really felt + him near, as a brother.

+

+ 22d. Fifth of the + week. This being the day on which the young men hold their meeting, we sat + with them, which I believe was a time of refreshment to us all. In the + afternoon walked about viewing the improvements the Indians ahve made + which are con-siderable. Several of them have a good deal of corn, and + some have raised some wheat; but I think they have not improved in + agriculture and industry equal to those up the river. We saw two of them + threshingtheir wheat; but as they had not barn to put it in, it + appeared to be somewhat damaged in the stack. I endeavored to put them + upon building barns, which they promised to do.

+

+ 23d. We all in + company with Jacob Taylor, John Pennock and Joel + Swayne, went down to Genesing-uhta, or Cornplanter's Village, nine and a half + miles. Being eight of us having three horses, Jacob + Taylor + and myself walked all the way and back again, being nineteen miles. + The others rode turn about. We ar-rived at the village about eleven o'clock + and spent two or three hours in viewing the Indians' houses, + corn-fields, and other improvements; and although we discovered + fourteen shingled houses and abund-ance of corn, yet I think they have not + improved four years past, equal to the Indians up the river. We dined + at Cornplanter's upon the best venison I have + eaten since I left home, Indian bread, butter, butter-milk, bears' fat + and squashes. Some of our company were very desirous to return before + dinner; but Jacob Taylor told them it + would not do. They then sum-moned all the fortitude they could and sat down + to dinner. Jacob Taylor, John Pennock, Joel + Swayne, Thomas Stewardson, + and myself at with good-will; the others did as well as they could. The old + chief was very pleasant with us and made himself very cheerful, + inquiring for Henry Simmons; said he was + a man for his mind, and if he had not been a Quaker he would have made a + very good war chief. Some time after dinner, we returned. J. Taylor, Thomas + Stewardson, Isaac Bonsal, + George Vaux and myself walked one or + two miles near the river bank; the other three rode. On our way passed + through abun-dance of good corn and beans, and by eight or ten + houses, some of them very complete work, with stone chimneys. In one of + them lives an old woman, half-sister of Cornplanter, with three or four sons. The poor old woman + was rejoiced to see us; said she was thankful to the Good Spirit for + preserving us in our long journey to see them, and also that He put it in + our hearts to have compassion on them; and that shewas old and did not + expect to be at the council to-morrow, but hoped the Good Spirit would + preserve us. Truly the manner of her expression, the tears standing in + her eyes, and the whole of her deport-ment, expression, and appearance had + a tendency to enliven the affectionate feelings of my heart, and I + could not help thinking she was as much the favorite of Him who sees + not as man sees, as many who think themselves more polished. In about three + miles' walking, Cornplanter, Conudiu, and about twenty or thirty more of + the Indians overtook us on their way up to the council. I walked very + pleasantly and cheer-fully with them. The old chief, Cornplanter, wanted + me to ride his horse; but when I refused, he said I was a sachem.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE + INDIANCOUNTRY.--IX.BY ISAAC COATES, OF CALN, + CHESTER COUNTY. + Friends Intelligencer 44 (1887), 452-4, 468-70, 482-4, 701-3, 514-6, 530-2. + Sections labeled I-VI. Followed in FI by sections VII-XII, recording a trip in + 1803. +

Ninth month + 24th,[1803.] About 10 o'clock, many ofthe chiefs and + others collected and seated themselvesaround a small fire which was kindled + in the openyard, and sent us word they were ready, about sixtyin + number. We then went and sat with them. Aftera short pause Conudiu rose and congratulated us onour safe + arrival in their country, and said they werethankful to the Great Spirit + who had preserved us inour long journey to see them, and more which I + cannot well recollect, much to the same purport. Corn-planter then said they were ready to hear us. + Wethen had our certificate read and interpreted to them,which is as + follows:

+

To Cornplanter and other Chiefs of the Seneca Nation ofIndians + living on the Allegheny River; Brothers:

+

Our friends who live amongst you inform us they haveconferred with you some + time past about removing to set-tle some distance farther up the river, on + some of the landyou lately sold to the white people; which we + understandthey and some of you think might enable them to be stillmore + useful to you than where they now live.

+

"Brothers, we are desirous every movement we makeamongst you may be well + considered and so conducted asto always keep the chain of friendship clean + and brightbetween us; for which reason we think it right at thistime + to send some of our brethren to help to consult and confer on this + business, and our friends Isaac Coates, + Isaac Bonsal, + Thomas Stewardson, and John Shoemaker,feeling their minds clothed with love toward + you, are wil-ling to undertake this long journey. We hope you will + re-ceive them as brothers, and listen to their words, for theyare true + men and sincere friends to your nation.

+

"Brothers, our hearts are made glad to hear from ourfriends amongst you that + you are beginning to live morecomfortably on the fruits of your labor, + under the blessingof the Good Spirit; and we more especially rejoice to + hearthat your chiefs and young men generally refrain fromthe use of + strong liquors, which you know have been sodestructive to Indians as well + as many white people. Wehope you will be strengthened by the Great Spirit + to perse-vere in the good resolution you have taken on this subject.

+

"Brothers, we desire the Good Spirit may be with youand influence you and + our friends in your councils, on theweighty subjects which may come before + you; that soeverything may be settled and conducted to mutual + satis-faction and to the furtherance of our designs of being + last-ingly useful to you."

+

We remain your friends and brothers.Philadelphia, + 19th of the Eighth mo., + 1803.(Signed by)

+ + + DAVID BACON, + JOHN WISTAR, + + + JOHN PARRISH, + ELLIS YARNAL, + + + OLIVER PAXSON, + NATHAN HARPER, + + + NICHOLAS WALN, + JOHN BIDDLE, + + + WILLIAM SAVERY, + HALLIDAY JACKSON, + + + SAMUEL CANBY, + JOHN MORTON, JR., + + + JOHN PEIRCE, + THOMAS WISTAR, + + + ROBERT SMITH, + GEORGE WILLIAMS. + +
+

After the foregoing certificate was read and ex-plained to them, evident + marks of assent were dis-coverable, and we having concluded upon and + drawnup an address to them on the important contem-plated removal of + our young men, it was also read tothem by paragraphs and interpreted as + follows:

+

"To Cornplanter and the other Chiefs of the + Seneca Nation residing + on the Allegheny River;Brothers:

+

"You have heard the speech which our friends athome have sent to you by us. + We now wish you tospeak your minds to us quite plain, and if there + isanything which does not feel easy to you, that youwill tell it to + us.

+

"Brothers, we have seen the speech made by youto our friends who live among + you, at one of yourlate councils, by which we understand you leavethem + at full liberty to move up the river to settle onland joining to yours.

+

"Brothers, since we came here we have beenviewing the land, and think if the + Holland Companywill sell us a piece on Tunesasah Creek that it will bea suitable place + for our friends to settle upon; theywill then still be among your + settlements.

+

"Brothers, when our friends first came to settleamong you, we told you the + tools they then broughtshould be for your use, to be lent among such of + youas wanted to use them. They + have been so lent,and we have sent others for our friends to use. When + our friends remove, such of the first parcel oftools as remain with them, + will be left with yourchiefs to be lent out for the good of the nation.

+

"Brothers, we have lent some blacksmith tools tothe smith who resides at the + upper town; the othersour friends take with them; but the smith who + liveshere may have the use of them. The two smiths wehope are now able + to do nearly all the smith-workyou will want.

+

"Brothers, if our friends get a house put up beforewinter suitable for their + accommmodation, they willremove from the one they now live in. The + barnand some of the land they may want another sum-mer, as perhaps + they cannot get land enough clearedto raise grain and hay for their cattle. + You willagree among yourselves which of you shall live herewhen our + friends remove.

+

"Brothers, when our friends remove they willcontinue to give you assistance + and instruction whenthey can; if they think you stand in need of + it.Several of you have tools, and as there are some ofthe first parcel + which came up that are not worn out,they will be left with the chiefs to be + lent to such aswant. Many of these tools are already lent; wethink it + will be best for you to appoint some personto have particular charge and + care of them, as lend-ing tools has been very troublesome.

+

"Brothers, we understand by your speech to ourfriends that you want them to + bring on tools andcloth to sell. Brothers, we do not want them to + keepa store of goods among you; we think it will not bebest; but we + intend to send on a few scythes, sickles,augers, and some such tools for + our friends to sell tosuch of you as may want to buy; but if any of + yourpeople buy from them and then sell to the whitepeople, they are + not to sell any more to such as do so.

+

"Brothers, we again repeat it, we wish you tospeak your minds freely to us, + and if there is any-thing which you and we do not understand + alike,that you will tell us, as it is our wish to comply withall our + engagements. The iron which our friendshave promised you will be sent on as + soon as thewater will admit."

+

After a little pause, Cornplanter replied: "If + youwill leave us a little while, we will counsel amongourselves and + return you an answer."

+

We then left them about an hour, when they sentus word they were ready. We + again seated ourselvesas before, when Cornplanter addressed us in + sub-stance as follows:

+

"We are all glad to see you that are now assem-bled in council, and glad to + hear what you say to us;and your speech is good, being the same + languageyou have always spoken to us. We know the time isout that was + first agreed upon for your young men tostay with us, and that nothing had + been said to usabout their staying longer, and perhaps that was + thereason why they wanted to purchase a piece of landfrom the + Holland Company joining to ours; but theywere + welcome to live where they now do as long asthey please; and if the + Holland Company will notsell you any land, we hope + they will continue to livewhere they now do. When your friends first + came,and for a long time after, many of the white peopletold us to + 'watch the Quakers well, for they are acunning, designing people, [and] + under pretense ofdoing something for you intend to get some advan-tage + of you some way or other.' But of late, findingall was straight and no + advantage attempted to betaken, they have left off talking about it. + Youryoung men and we have now lived several years asbrothers. When + they came here we were very ig-norant, but are now just beginning to learn. + Youryoung men do not talk much to us, but when theydo they speak good + words and have been very help-ful in keeping us from using whiskey. We had + de-sired them to agree among themselves who shouldlive in this house, + as your young men expect to leaveit before winter; but we do not think it + right to fixon any one yet, for if you cannot buy a piece of land,they + will need this place themselves; and if you dobuy a piece, they may not get + a house fit to live inbefore winter, and then they will want it + themselves.You have said you will leave all the buildings, + fences,farm, etc., for us to have, except the barn and someof the land + next summer to raise some grain andhay for yourselves and cattle until you + can raise iton your new settlement; but it is hard work to cutdown so + many big trees and clear the land; perhapsthey cannot get enough cleared + next summer, and ifthey do not, they are welcome to work this as + longas they need it. So it will be time enough to chooseone of our + people to have this house and farm whenyour young men are well fixed on the + new place.We will appoint some of our chiefs to receive thetools and + collect such as are lent out; to have thecharge of lending them. In our + speech to your youngmen we requested them to bring cloth and tools + tosell to us that we might not be cheated by the whitepeople. But you + have come to a wise conclusion innot keeping a general store amongst us, + for perhapssome uneasiness or dispute might arise if a store werekept. + But we thank you for your kind intention ofbringing some scythes, sickles, + augers, etc., to sell tosuch of our people as may want them, and are + pleasedthat such who buy are restricted from selling to whitepeople; + also for the iron which you propose to giveto us, we wish your young men + may divide amongstour people, and then we can get the smiths to + makesuch things as we want.

+

"Brothers, we are well pleased with your conducttoward us and having always + done what you prom-ised to do."

+

An old chief called Mushsaid a few words as + akind of acknowledgment for some little uneasinesshe had occasioned + principally by his not heretoforeunderstanding the nature of our intention + or prospectof settling our young men amongst them, but nowappeared + perfectly satisfied. Then Connewauteusaid + that we promised to endeavor to send a smithamong them; that after some + time we did send one,but he stayed a short time, "and our smiths + werenot fully perfect in the trade. Now you have sent asmith, the best + we ever saw; he can make every-thing we want, but he has been here but a + very littletime and now says he is going away. We wish he + would stay all winter, and then we think + our smithsby that time, with his instruction, will be able to doour + work; but now they cannot do all we want."

+

We replied that John Pennock, (the good + smithhe meant), had a wife and children at home who re-quired his + attention, and we could not urge him tostay from them longer than he was + willing; that hehad been with them as long as we expected; butwhen we + got home we would mention their requestto our friends for them to consider + whether theycould help them or not.

+

And as I have heretofore and more stongly oflate felt my mind impressed with + strong desires forthe benefit and improvement of the poor natives + fromwhom our predecessors in the first settlement ofPennsylvania received so much kindness and + assist-ance, at times [I] felt a flow of good-will towardsthem, and + the rest of my brethren present havingdesired me to reply to them, I + addressed them in sub-stance, as follows:

+

"Brethren and friends attend. It is now a greatmany years since our + forefathers, the Quakers, came over the great water and began to settle in + that partof this country called Pennsylvania. At that timethe Indians were very numerous + and we were butvery few. The Indians were kind to our + forefathers,helped and assisted them in the wilderness. Loveand + confidence were kept alive towards our fathersand the Indians a great many + years, and they wereat peace with each other; but after some years a + greatmany other people came over the great water and agreat many were + born here who were not so peace-able and did not love the Indians so much + as ourfathers did, who were the first settlers. And as thesepeople + became numerous, for a good while [they] hada share in the great councils + in Pennsylvania; and atlength as our + fathers, the Quakers, were altogetherfor peace, and the others became the + more numerous,they took the great councils of the State affairs + inPennsylvania into their hands; + many of these werevery desirous of having the Indians' lands, and + asfast as they could kept driving them back. Then In-dians began to + kill white men and white men to killIndians. All this time the Quakers + loved the In-dians and did not kill any of them, but were verysorry + the Indians and white men did kill one another,but could not help it; and + [during] the long time ofIndians and white men being at war and killing + oneanother, treaties were often appointed, and althoughthe Quakers had + no power over either the Indians orwhites, yet some of them almost always + attended thetreaties to try to keep the Indians from being cheatedout + of their land or other things. The wars andtroubles continued at times + between the Indians andwhites, until about ten years ago when there + seemedto be a general peace agreed upon between the In-dians and white + people in this country. Soon afterthat, at one of our great councils in + Philadelphia,where there were a great many hundred Quakerspresent, we + remembered our Indian brothers, whosefathers were so kind to our fathers, + and on whosefathers' lands, (which once belonged to them), wenow live + so comfortably; and our Indian brothersbeing driven back, we counciled + amongst ourselvesto know what way we could do them the most good.We + then thought if we would raise a great deal ofmoney--and give it to them, + they would soon wasteit and spend it for whiskey and in other ways + whichwould do them no good at last. Then we concludedto ask leave of + the President of the United States totry to help our Indian brothers. The + President ap-peared to love the Indians and gave us leave; and aswe + knew that by clearing and cultivating our land wehad got to live + comfortably, we thought it would bebest to get some of our sober, + industrious young mento come out and live amongst them and endeavor + toteach them to clear and farm their land so that theymight live + comfortably as we do on ours. It is nowseveral years since some of our + young men have beenliving amongst you.

+

"Now, brothers, it rejoices our hearts to find thatthe Good Spirit has + preserved our young menamongst you and that we see signs of industry + takingplace; many of you are beginning to build betterhouses and clear + out your land, raise more corn, aswell as cattle and wheat, particularly up + the river.Brothers, you may be assured that we do not wantanything + from you for all that we do for you, neitheryour skins, your furs, your + land, nor anything elsethat you have; only that you should attend to + thecounsel and instruction of our young men who liveamong you. + Brothers, it made our hearts glad whenwe heard from our young men that the + Seneca nationof + Indians, more especially on the Alleghany + River,had taken up the resolution to banish whiskey + andother strong liquor from amongst you; we wish youto be strong in + your resolution and join together asone man against this mighty evil; and + when any ofyour young men are out hunting or otherwise metwith white + people that offer it to them, be sure to re-fuse, for when a man drinks + some he mostly wantsmore and more until he gets drunk; and when thatis + the case either with white people or Indians, theymostly neglect their + business; their wives and chil-dren often suffer for want of necessary + things.Brothers, there are other things that do a great manywhite men + much harm, which are gaming, playingcards and laying wagers; whereby many + of themnot only spend their time unprofitably, but often losealmost + all that their wives, children, and themselvesshould have to live upon. We + wish you not to fallinto any of these practices, but to live sober, + indus-trious lives; and then the Good Spirit will love andpreserve + you. But if you will get drunk and bewicked, you will feel sorrow and + trouble in your ownhearts for it."

+

After which a letter from John Parrish to + Corn-planter was read, which + mentioned this desire,--thatthey might follow the counsel we gave them; + thatthey would have the ox instead of the buffalo, thehog instead of + the bear, and the sheep instead of thedeer.

+

Cornplanter then replied it was very true if + wehad given them a large sum of money it would allhave been gone + before now and they would havebeen none the better; and he appeared quite + elevatedwith John Parrish's prospect of + their having domesticanimals instead of the wild, and said very + pleasantlythat he should soon be an old man leaning on + hisstaff and could no more go out to hunt, and if theyfollowed our + advice he would then never want freshmeat--he could have it at the door and + not have togo to the woods for it. Then the chiefs and divers ofthe + young men took us by the hand and with greatmarks of affection concluded + the council.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE + INDIANCOUNTRY.-X.BY ISAAC COATES, OF CALN, + CHESTER COUNTY. +

Ninth month 24th, + [1803], (Continued). On meditat-ing on the occurrences of the + day and what we haveseen and heard and felt since we came amongst + them,I felt a secret satisfaction to spring in my heart, ac-companied + with a belief that the Everlasting Fatherand Care-taker of men owns the + concern for the im-proving of these inhabitants of the wilderness, + andthat their understandings were more clearly openedto see into the + nature, utility, and disinterestednessof our labor, expense, and concern + for their improve-ment. Last evening our horses came, we having + sentthree Indians for them last Fourth-day to FrancisKing's, near sixty miles from hence, where we + leftthem. We were glad to see them, though they ap-pear to be more + worsted than if we had been ridingthem every day.

+

25th. and fist of the + week. Sat with our youngmen in company with Steven, the blacksmith, up + theriver, in their meeting which was silent.

+

26th. A rainy morning; + we threshed and winnowedsix bushels of oats for [the use of] our + horses[going] through the wildreness to Cattaraugus.

+

27th. We all set off, + in company with Jacob Tay-lor, and rode + through the wilderness to a spring on agreat mountain and encamped, having + a fine day toride, and at night to lodge under our tent, it beingthe + same place where I lodged four years ago,--a most tremendous night with + rain and wind. Here we metwith Blue Eyes + who lodged with us; it being twenty-five miles; almost all the way + excellent land.

+

28th. Rode twenty + miles to the Seneca + village on + Cattaraugus, passed through the village of + DelawareIndians, and propose to lodge with the chief + warrior of the Cattaraugus + Senecas. I described the + land andtimber of this day's ride, heretofore, which upon asecond view + I think was not exaggerated. Arrivedhere about three o'clock. Although some + of ourcompany, for a considerable time in the forepart ofour journey, + appeared somewhat delicate as to foodand lodging, I find almost any person + of common un-derstanding by constant practice in any kind of busi-ness + becomes in good measure perfect; so we all ap-pear to be approaching + towards a reconciliation withour present allotment. The chiefs of this + settlement,being scattered so that we could not get them to-gether + this evening, we concluded to have them col-lected to-morrow.

+

29th. About ten + o'clock, forenoon, seven or eightchiefs, with perhaps ten or twelve young + men, orwhat they call "warriors," collected in the chief war-rior's + house; and, after a short pause, Lieutenant + Joopened the council with a congratulatory speech tothis + effect:

+

"Brothers, we believe it was consistent with themind of the Great Spirit, + that we should meet hereto-day. We thank the Great Spirit for + preservingyou in your long journey to see us; and it is quiteplain to + us that he intends to do us good, because hehas put it into the hearts of + the Quakers to come andsee us, and to instruct us; and now you are + come,have found us, (and we have met you), all in goodhealth, our + hearts are so filled with thanks to theGreat Spirit above, and to you, that + we can not ex-press it."

+

Then Teconondee, or Flying Arrow, the + principalsachem of this village, arose and addressed us to + thisimport:

+ +

"Brothers, we are thankful to the Great Spirit foropening the way for us to + meet here to-day. Ourhearts are made glad when we remember the + GreatSpirit has put it into the hearts of our brothers totake notice + of us; for we are a poor, destitute people,our lands being almost all gone, + and we hope you willexcuse, or not think hard of us, when we open our + helpless situation to you. We have sent for JacobTaylor to give us some advice about our saw-mill, + itbeing out of order. Now we are convinced the GoodSpirit approves of + our request, and has a mind to dous good, because he has so ordered it that + ourbrothers, some of the Quaker chiefs, have come alongwith him.

+

"Brothers, we have been made glad when weheard from our brothers, the + Quakers, that they were willing to take three or four of our boys and + instructthem in farming and other useful training and occu-pations. + Brothers, we are very thankful to you foryour kind offer, and we have been + counselling amongourselves and trying to get some boys about the ageof + fifteen, that will be of good dispositions and in-genious in learning; for + we think if we could getsome of them instructed as you are, they might + bevery useful to our nation, not only in teaching others,but in + keeping our accounts, so that we may not becheated. Brothers, we find this + is a very hard thing to come at. We have a good many boys that + woulddo, but their relations think so much of them they cannot bear to + part with them; but here is one, anephew of mine, fifteen years old, who is + willing to go, and is a fine boy. His father and mother arealso + willing; but his grandfather and his uncle refuse to let him go, and say + they cannot part with him, sowe must give him out for the present, for it + is of the utmost importance to us to maintain harmony in ournation. + There is one about nine years old that I would be glad you would take; he + is a fine boy."

+

Then the chief warrior, Wau-un-de-guh-ta,ad-dressed us; although they were not in a + very floridstyle, yet his remarks appeared, and we fully believedthem, + to be the product of an honest and sincereheart; to this effect:

+

"Brothers, I hope you will not think hard of uswhen we open our hearts to + you, for we are a poor, destitute people, and our land is now so nearly + allsold that we have but a little left for every family; and the deer + is become very scarce, so that we oftenmay hunt all day and have nothing at + night. Broth- ers, our hearts rejoiced when we heard the Quakerswere + taking pity on us, although we could scarcely think there was any people + who would do so muchas you are doing for us, without being paid. But + now we are convinced that the Quakers have thegood of our nation at heart, + for we see you have sent some of your young men to the Allegheny River toteach the Indians to farm, + without asking any payfor it; and we see that many of our people + arelearning. They live much better than formerly, andwe have seen so + much of the conduct of your youngmen that we can rely upon them; and we + have foundJacob Taylor to be a true man. + Brothers, we are ashamed to ask what we are now going to ask of you, + but our necessity makes us willing. We cannot ex- pect you to do so much as + to send any of your youngmen to live among us; but we think if you + would send us a set of smith's tools, we have a young manthat has + learned at Genesinguhta, that can do + our smith work. Now we have to go above thirty milesto get it done and + often have to wait near a week be-fore we can get it done. And we are + determined toget to farming, working our land, and to raising wheatto + support our families. Brothers, you have done a great deal for us in + sending us saw-mill irons whichhave been of great use to us; but our + saw-mill is outof order, and that is the reason we sent for Jacob Taylor to show us how to mend it, as he + is a man wecan confide in. But, brothers, do not think hard ofus if we + should ask one thing more, for the GreatSpirit has blessed you with wise + hearts and you arebecome rich; and that is we have but one plow + andmany of us are desirous of becoming farmers andsow wheat, but + cannot get a plow. If you would sendus another set of plow-irons, we have + two good yokeof oxen and a number of horses, then we think we could do + pretty well.

+

"Brothers, we have heard your advice or counselto us in time past to refrain + from drinking whiskey.We thank you for it, for we see if we do not, we + shall come to nothing; and, brothers, you sent us a letterfour years + ago wherein you told us that if we did not leave off drinking whiskey you + would be discouragedfrom trying to help us, but if we would leave off + andbecome sober men, you would be encouraged to as-sist us as you + could. That letter we have yet. [Theythen produced the letter to us and we + found it waswritten by Thos. Stewardson + and myself, and our names were signed to it]. Now, brothers, we + areoften counselling together about it, and are determ-ined to refrain + from the use of it, and although somefew of our young men sometimes break + over our res-olution, we think we are gaining ground or strengthin the + good undertaking; and of all the chiefs andwarriors that are now present, + we believe not one hasbeen drunk for more than two years past, and + somefor a longer time than that, and divers of us have not drunk any; + so we are encouraged to be strong in fullhope that we shall banish it + altogether."

+

In the evening the chief warrior's daughter, whois an amiable young woman, + came home from a visit at Buffalo, + accompanied by a young man her rela-tion. On their way they discovered a + young deerabout half-grown, in the edge of Lake + Erie, whichthey chased with their canoe and killed with + theirsetting poles and brought it home. Some of the meat added to the + satisfaction of our supper. Aftertheir arrival, Wau-un-de-guh-ta introduced his daugh-ter to us all, one by + one, holding her by the hand;and she without any appearance of unbecoming + shy-ness shook hands with us all, in a modest manner,which altogether + appeared so becomingly polite thatwe could not help noticing it with + peculiar pleasure.On taking leave of him in the morning, he in + aweighty and feeling manner expressed: "We areglad you have stayed two + nights with us, and I hopethe Great Spirit will look down upon you and + pre-serve you in your long journey, and favor you with aclear sky, so + that you may get home in good health and find your wives and children + so."

+ +

We then withdrew a few minutes to confer upontheir proposals and requests, + and soon returned to in- form them what we agreed upon. John Shoemakerrose and informed them that + we believed it would notbe best to send one boy only, because he would be + likelyto feel himself lonesome and so become uneasy;neither did we + think it would be best to send oneyounger than 13 years, lest when the + older one hadserved out his time and had gone home, the youngerone + would be uneasy. But if they could get two orthree boys of good disposition + and near of an age who would be willing to come and work as some of + ourchildren do, we should be willing to accept of them and use our + endeavours to instruct them.

+

Then Thomas Stewardsoninformed them + thatalthough we had not proposed to do any great mattersfor them, yet + as they appeared desirous of improv-ing, we were willing to assist them a + little, and wouldsend them a pair of bellows, an anvil, vise, and + someother tools to begin with, if they thought Sam + Jemi-son, (who has been instructed in the business + atGenesinguhta), would come and do + their work; alsowe would furnish them with one hundred lbs. of iron,a + set of plow-irons, and some steel to begin with.

+

Wau-un-de-guh-ta then replied: "You are + wiserthan we, and we believe have come to a good conclu-sion about the + boys, and we think we shall be likelyto get two pretty near of an age in a + few weeks, whowill be willing to go, and whose parents and rela-tions + will consent to their going. And if any of ourboys are sent, we want them + taught to work as yourchildren are; for it will be of very little use for + themjust to learn to read and write if they do not knowhow to + work.

+

During almost all the time of the council, I thinkthat notwithstanding they + are a very dirty, meanpeople in and about their houses, cookery, etc., + Inever felt a greater flow of near affection to anypeople, accompanied + with what I took to be an as- surance that their souls are as precious in + the eyes ofHim who is impartial in judging of the inmost re-cesses of + the heart, as ours are who have been blessedwith so many inexpressible + favours; (I fear too oftenwith but little sense of gratitude; to the + Great Spirit for influencing our hearts to take pity on them,and to us + in manifesting our kindness, insomuch thatI could not suppress a flow of + tears; and although agood deal had been said on both sides, it being + likelyI should never have the same or a like opportunity,I thought I + could not leave them easy without en-deavoring to open to them the real + cause of our com- ing; the origin of the concern which the Society + isengaged in for their good; that the good men in ourSociety always + loved our Indian brothers, and duringthe whole time the white people and + Indians were atwar and killing one another, we had no hand in it + norcould not be at war with anybody, but were sorry forit. And + although we had no outward power in ourhands, generally when treaties were + appointed be-tween the white people and themselves, some of usattended + to try to keep them from being cheated.

+

And when the war was over we were willing to tryto help and instruct them. + With much more similarto what I expressed in the council at Genesinguhta, relative to the bad effects + attendant upon the use ofardent spirits both upon white men and + Indians, with a strong recommendation to them to endeavourto avail + themselves in every respect of the opportu- nity put into their power of + improving the little goodland they have left, and following the advice and + ex- ample set and given them by our young men who re-side with their + brother Senecas on the + AlleghenyRiver. Also I informed them + that Jacob Taylor in-tended to stop on + his return from Buffalo and viewtheir + saw-mill. And although we were desirous ofgetting forward this afternoon, + on our way to BuffaloCreek, and made + attempts to conclude the council,they were so pleased with our company that + itseemed too hard for them to part with us; and thechief warrior said + he was sorry and ashamed they were not in a capacity to entertain us + better, but ifwe would be so kind as to stay another night withthem + they would do the best they could, and Flying + Arrow said he would bring as much corn as ourhorses could + eat. For my part, I was not in a ca-pacity to refuse their request and told + my companionsI would rather stay with them until the next morn-ing. To + this they all consented and we informedthem so. They seemed much rejoiced; + the chiefwarrior saying we had made the hearts of theirwomen and + children glad, and some more of themwould be glad to take us by the band. + Flying Arrowsoon sent us plenty of + corn, and his father cut corntops enough and brought to our horses. The + chiefwarrior's wife exerted herself in doing all she couldfor us. + After the council was concluded and the most ofthe Indians gone, also + Harry, who was our interpreter,I had a good deal of very friendly + conversation withWau-un-de-guh-ta, (our + landlord), Jacob Taylor in-terpreting. I + soon found there were such impres-sions made upon his mind that it has + opened a doorto a large scope of inquiry; and I believe manythings + appeared in a fresh or new light to him. Idiscovered him for some time to + be in a deep study;at last he said there was one thing he wanted to + askbut was afraid the question would not please us. We told him he + might ask anything. He then said,some time ago when he was at the + Federal City, onhis way there he saw + a great many black men thatwere slaves to white men and looked miserable; + andhe wanted to know whether the Quakers kept any ofthem. We told him + we did not, and did not think itright. He seemed very much pleased. Many + thingsmore he asked; [so] that truly the undissembled ap-pearace and + conduct of this man and his wife madevery pleasant impressions on all our + minds.

+

[To be Continued.]

+

_________________________

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--XI.BY ISAAC COATES OF CALN, + CHESTER COUNTY. +

EARLY in the morning on the 30th [of 9th + month,1803] we all set off and rode to New Amsterdam, at the mouth of Buffalo Creek,which is about thirty-three miles, eight of + which is mostly bad road or paththrough the woods to Lake Erie; the other part ofthe way is down the lake on the + margin. A verypleasant ride, although each time I have ridden it Ihave + been affected with the headache. A materialchange appears to me to have + taken place on themargin since I was along it four years ago. + Thebeautiful beds of lime-stone are generally coveredwith sand, and + much of the best kind of slate verymuch gone. When we arrived at Amsterdam, + RedJacketand several other Indian chiefs + were therealong with the mill-wrights who say they have com-pleted the + saw-mill for the Indians and want their pay. We sent for some of them and + desired to knowwhether we could have them personally in council + to-morrow at their village. Red Jacket + informed usthey would be glad if they could comply with ourdesire, but + hoped we would have patience, for theycould not well meet us to-morrow, but + would meetearly the next day. We then conferred together and + Isaac Bonsal and George + Vaux were most easy to goover the Niagara river to-morrow in order to be at the meeting at + Black Creek the next day, ThomasStewardson, + John Shoemaker, and myself were mosteasy + to stay in order to attend the proposed councilon First-day morning.

+

Tenth month1st, and seventh of the week. JacobTaylor and myself went twelve miles up the + BuffaloCreek to see the new saw-mill + that is built for theIndians, (we some time past having made them + apresent of all the iron), divers of the chiefs and one + of the undertakers attending. I discovered it to bean + excellent seat, and it appeared to be a strong mill; but upon trial in our + presence it was far from answer-ing our expectations according to the + contract, by not sawing half as fast as we believed such a stream-head + and fall would do if the workmanship had beeneffectually executed. The + chiefs said they wereready to pay off the contract if we would say it + waswell done, according to contract; and on our confer-ring with the + rest of our company the next day, we advised them not to pay off the + contract until it wascompleted. As I rode this twelve miles up the + creek and back again through the Indian reserve I think agreat part of + it is equal if not superior to any piece of land of equal quantity I ever + saw. I believe thereare more than a thousand acres upon which + theremight have been more than two tons of hay to theacre mowed and + made the present year.

+

2d, and first of the + week. In the morning we setoff and arrived at the Indian village, in their + councilhouse, about eleven o'clock; but we had to wait untilnear four + in the afternoon before what we thought acompetent number collected. They + generally appearto be a more indolent, careless, and some of + themintemperate people than those at Allegheny and Cat-taraugus, a few instances excepted, particularly + onecalled the Young King and another + called Pol-lard, who are sober, temperate + men, and as intent upon being farmers as any we have seen. The YoungKing having cleared and plowed a good + deal of land,has several horses, a very good yoke of oxen, andseven + milch cows; and it is said Pollardrather + ex-ceeds him. I hope their example may induce manymore to follow them, + there being the greatest num-ber on this reserve of any in the Seneca nation.When the + Young King, + Red Jacket, + Farmer's Brother,Pollard, + Jack Berry, and five or six other chiefs + were collected with some young men and women, we pro-posed either + going back or opening the council. Theythen went in the council house and + after sitting ashort space, Thomas + Stewardson in a brief mannerinformed them the reason of our + coming into theirsettlement; and although there did not appear to be + the same desire of improvement in many of the In-dians in this settlement + as those we have been at be-fore, which I believe is much owing to the + opportu-nity they have of being corrupted by the example ofwhite + people at New Amsterdam, which is a very + dis-sipated place, yet he felt encouraged to endeavor tostimulate them + to industry and to refrain from spirit-uous liquors. It was not a very + comfortable, animat-ing time as yet with them, yet I was not easy to + omitopening divers matters to their consideration in asummary way, + which contained a good deal of theheads of what I mentioned at the other + places; whichseemed to attract their attention. I also informedthem I + had seen a good deal of the land contained in their reserve that is + excellent; and if they wouldbe industrious they might live well; but if + they wouldnot, but followed the practice of drinking, they wouldlose + the little good land they now have, their wivesand children would have to + lie down under the snowand go to sleep without anything to eat or to + keepthem warm.

+

John Shoemaker advised them to settle + farther up the creek, where the land is so very good, and notstrive to + huddle together so close; which adviceseemed to please them very well.

+

Red Jacket then addressed us in a polite and + mas- terly manner in which he displayed his talents as anorator in a + methodical and flowery style near half anhour. He took in every part of the + advice commu-nicated to them by us, in regular order, and para-phrased + upon it, with the frequent expression ofthanks to the Quakers, recounting + their kindness tothe Indian from the first settlement of Pennsylvania;and concluded with endeavoring to + assure us if wewould come and see them two years hence, we shouldfind + them much improved in farming, and also inthe disuse of whiskey. And + notwithstanding I be-lieved his speech was calculated to endeavor to + pleaseus, and that there was much less sincerity or realityin his + intentions than in those of whom we haveconferred with before, yet I could + have sat, I think,patiently two or three hours to hear him exert + hissmooth, oily, oratorical abilities.

+

We then left them. Young King and Pollard ina particular manner parted with us + very affectionate-ly. Returned to our lodging at a tavern in New Am-sterdam, this being the third night.

+

3d. + Thomas Stewardson and Jacob Taylor set offfor Batavia in order to see J. + Ellicot, in order to agreeupon Tunesasa Creek, and also to pay a visit to theIndians at + the Tonnewanto. + John Shoemaker andmyself rode down to the + ferry on the great river Ni-agara, and + crossed in six minutes. There I saw three + Mohawk Indians carry a + bark canoe a considerabledistance and put it in the river, then five of + themgot in it and rowed across in five minutes; said riveris said + to be above a mile wide. We then rode to themouth of [the] Chippewa, fed our horses and took asnack, at + which place there was a British officer whowas formerly stationed in the + neighborhood of thegreat Falls, but is now fixed at York, over Lake On-tario. + He being on his way up to Long Point on + theGrand River, he was so much pleased + to be in com-pany with a couple of Quakers that he politely offeredto + accompany us to the Falls and show us the waydown. As we rode down the + river in view of the rapids we met I. + Bonsal and G. Vaux who had + beentaking an upper view. They turned back with usand we all went to + the ladder where the curious areaccustomed to go down, the officer leading + the way; but the tremendous appearance of the way downdiscouraged + John Shoemaker from attempting it.The + rest of us followed the officer down and then upthe craggy, slippery way to + the edge of the greatshoot of water; which together with returning is + alaborious task, for a believe there were but very few dry threads, + either linen or woollen, upon any of uswhen we returned. I having four + years ago had aview and given some description of this amazing + cat-aract, need not write much now. While I was view-ing this + superlatively grand and most astonishingnatural curiosity of the kind in + the known world, my curiosity would have been fully satisfied had it + notbeen for one reflection or consideration, which wasthat I knew my + wife had a great desire to enjoy the + view I was then favored with, which made me feel asthough I + was only half satisfied. We returned toChippewa and lodged, having ridden twenty-fourmiles this + day.

+

4th. We set off and + rode down the river by the sideof the rapids above the Falls for a little + more than amile and then took another view of the great phenom-enon; + and I think this morning, the whole of theprospect appeared more + astonishingly great and beau-tiful than I had ever seen it before, it being + a clearmorning, and viewing the great fall and the dash-ing of the + huge and confused rolls of water over therocks in the rapids between us and + the sun, to besure appeared amazingly grand and gratifying. Wethen + rode four or five miles to view the whirlpool,which four years ago I + thought as great a curiosity asthe other; yet I was disappointed now, + though it ap-peared a wonderful place, but very far inferior towhat it + did then; there being but few logs in it, andwhether it was owing to the + stillness of the day orfrom some other cause, I know not, there did + notappear the sucks formed taking down the logs, nor thevery great + agitation there was then. We then rode toWm. + Lunday's; dined; and thence to John + Taylor's at Pelham, where + we met with James Wil-son, Isaac Bonsal, and myself, who went to JeremiahMoore's. Rode twenty-three miles + to-day.

+

5th. Attended the + monthly meeting of Friends atPelham, + which myself and others had established inthe year 1799. I remember it was a subject of greatweight with me at + that time, being impressed withsome serious doubts that the members which + were to compose said monthly meeting were furnishedwith religious + experience or skill enough to be in-trusted with power to judge of the + fitness of personsto be received into membership, or to deny from + theprivileges of the Society. And although there now appear to be more + in number than there were atfirst opening, and some rather more + experienced, yetI apprehend they still remain in a very infant + andunskillful state. Isaac Bonsal, + John Shoemaker, andI endeavored to draw + their attention by queryingwith them whether they were easy to remain in + acareless situation respecting the foul channel in whichthey receive + or obtain the titles for their lands, orwhether it would not be better to + apply for redress.Some of them at first expressed they thought it wasa + matter of no consequence, but others expressedtheir dissatisfaction. At + length they united in desir-ing that the Yearly Meeting, or Meeting for + Suffer-ings, might take the matter upon their behalf.Lodged at + John Taylor's.

+

6th. + Isaac Bonsal, John + Shoemaker, George Vaux,and + myself rode to Queenstown and dined; + then crossed the great river Niagara where + it is not half amile wide, but we were told the depth hath + hithertobeen unfathomable. It looks a terrifying place tocross; the + water appears nearly as green as grass andwhirling round, I suppose + occasioned by the greatrocks in the bottom; this being the place where + Iapprehend the great Falls at some period + exhibited thegrand appearance they now do up the river miles away.We + got over safely and in about five miles came to theTuscarora village of Indians, where I met with Jacob,the Indian, who learned the smith trade + with JohnPennock. He appeared much + pleased with seeing us. Anumber of other Indians were helping him to put + upa coal pit. He told us his cousin learned first, and agreat many of + the white people from Queenstown and + Niagarabrought their smith work to him. + Fromhis appearance and disposition of industry, I thoughtour expense + and trouble in educating him were wellspent. Then rode to one Beech's in the wilderness, where we met with + two families from Cattawissa, oneof + which was Ezekiel James's, who were moving + toYonge street in Upper Canada. We all + lodged in thiscabin, being twenty-three of us besides the + family;having ridden thirty-three miles this day.

+

7th. Rode forty miles + to Batavia. All the wayexcept one or two + cabins and a few settlements a lit-tle before we came to the town, this + day's ride wasall through the Holland Purchase, and a good deal ofit + very good land, especially near Batavia which + isthe county town of a new county called Genesee,containing about twenty-five houses, a large + court-house and jail. When I was through this countryfour years ago, + there was no settlement or improve-ment from Buffalo to the eastern transit + line ofthe Holland land--which is above fifty miles. It issurprising + how the Eastern or New England menopen the woods and settle, it being + chiefly men fromthose states who emigrate into this new country; + andalthough I think the land in general is equal to whatI conceived it + to be when here before, there is onevery discouraging consideration which + is the greatscarcity of water, we having ridden in one place to-day + twenty-five miles without finding any for our-selves or horses, and in + general very scarce. But it hath been an uncommon drought at this place. + JosephEllicot lives here. We met with + Thomas Stewardson,Jacob Taylor being gone home. Thomas informedus they had agreed with Ellicot for the land on Tune-sasa Creek, which we had pitched upon for our + youngmen at Genesinguhta to settle + upon. Here we lodged,having ridden forty miles to-day.

+

[To be Concluded next week.]

+
+
+ + JOURNAL OF JOURNEYS TO THE INDIAN + COUNTRY.--XII.BY ISAAC COATES OF CALN, + CHESTER COUNTY. [Concluded.] +

Tenth month 8th [1803]. This morning GeorgeVaux's horse appeared to be very much + amiss, but weall set off early and rode six miles to a good + tavernwhere the store-house formerly was. Breakfastedand fed our + horses; but when we set off it was thoughtby us all [that] George Vaux's horse would not be ableto travel + so as we might reach the meeting of Friendsat Mud + Creek to-morrow. We then unanimouslyagreed for Isaac Bonsall and me to go forward in orderto + reach the meeting, and the others to get along aswell as they could, and + all of us to meet next Third-day evening near the outlet of Crooked Lake. Wetwo then rode on and crossed the + Genesee River andthence to General Hall's tavern, where we had good + accommodations; it being thirty-six miles from Ba-tavia.

+

9th and first of the + week. Set off early and rodeabout twelve miles to Jacob Smith's and got break-fast; he and his daughter + accompanying us about sixmiles more to the meeting heretofore called + MudCreek, but which is now called + Farmington, that be-ing the name of + the township. And they have nowa monthly meeting, which is held the fifth + day of theweek before the last First-day in every month. Iwas glad to + meet with divers Friends with whom Ihad formerly spent some time very + agreeably. Themeeting appears to be very much increased since Iwas + here before. It was silent to-day. We dined atNathan + Comstock's and then rode to Abraham + Lap-ham's, where a considerable number of the Friendsof + the neighborhood came and spent the evening withus; amongst whom were + Joseph Jones and wife, hehaving + purcased [land] and living near here. Uponthe whole it was a very agreeable + and satisfactoryevening. Many subjects of a religious nature + wereconversed upon which I believe ended to mutual sat-isfaction; and + I think I was not mistaken when herebefore, when I believed if they + improved in a religioussense according to their activity and talents, + they might be a shining light in this fast settling northerncounty of + good land. This day, twenty miles.

+

10th. Spent this [day] + in order to let our horsesrest and get some of our linen washed. We took + the opportunity of walking to see some friends and viewthe + improvements made by these Eastern people,which exceed what can be + conceived in the idea of a Pennsylvanian or more southern man, for the + time.They seem as if there were scarcely anything too hardor too heavy + for them to undertake and go throughwith, especially in opening a new + country heavilytimbered. Said Lapham, + though he does not appeara robust man, has made a surprising + improvementfor the fime he has been settled here which is abouteight + years; and although there has been an uncom-mon drought in this country + this year, they have made250 cheeses this summer, many of which will + weighfifty pounds, and but very few less than thirty pounds, which, to + be sure, in their cheese-house has a beauti-ful appearance. Although I have + such an opinion ofthe Eastern men in opening the wilderness, I + thinkthey are far short of a good Pennsylvania farmer inkeeping their + farms in good order after they have themcleared. We propose to lodge + another night with theseour kind friends, Abraham and Esther Lapham, + whoseem disposed to do everything they can to accommo-date us. The + neighbors hereabouts have been twonights and one day collecting and + bringing their hogsto Lapham's, and to-morrow morning they propose + toset off with 250 of them about seven or eight miles intothe woods to + feed upon the acorns and beech nuts which are very plenty, and have agreed + with four per-sons to stay in the woods with them, night and day,for + about two months; these they call "hog shep-herds."

+

11th and third of the + week. + Joseph Jones cameearly this morning to + Lapham's and set off with us + and rode through a body of rich land thirteen milesto + Canandaigua, [this] being a most elegant + and beau- tiful town here in the woods, containing near onehundred + houses, many of which are truly grand. Itstands near the outlet of a + beautiful lake, abouteighteen or twenty miles long and two or three + wide.We crossed the outlet and rode four or five miles upthe side of + the lake, and then generally through thewoods, except some few settlements, + to Judge Pot-ter's, eighteen miles, where + we got our horses wellfed and a good dinner, free of cost. Said Potter hasan elegant house and good farm; I + suppose two hun-dred acres of excellent land cleared, and a stock + ofcattle of superior kind. We then rode five miles to + Morris Shepperd's, near the outlet of + Crooked Lakein Jerusalem, in Jemima + Wilkinson's settlement; saidShepperd being first cousin to Nathan + Shepperd, lateof Philadelphia. Here we came up with ThomasStewardson, John + Shoemaker, and George Vaux + and propose to lodge here. George's horse + holdsout. Thirty-six miles.

+

12th, We all set off, + Joseph Jones still accompany-ing us, + and rode twenty-three miles to Bartel's mill,where we got an excellent + dinner. Here we met withThomas Clark, the + turnpike man, who appeared indistress. Said three of his children were + dead, andthe other one had been very bad, and [was] not quitewell. His + wife had lain sick and in distress for nearlythree months, and had not yet + the use of all her limbs. She now says she would not stay in + thiscountry for all the land in it; so he proposes to tryto move her + and his one child into our neighborhood again. The most of the way from + Jerusalem here, is their land. We + rode in the morning several milesin sight of the Crooked Lake to our right hand; andafter riding some + distance we came in sight of it toour left, and saw where it empties into + Mud Lake.Rode down near that to this + mill which is on theoutlet called Mud + Creek; then rode down near thesame to Dolson's, where it empties into the Cohocton;nine miles. On our way we passed several + littlelakes, it being most of the way through a low pieceof land + covered with lofty white pine, though notvery large, and, I think, an + unhealthy place. Thirty-two miles.

+

13th. I rose up out of + bed about four o'clock thismorning, haing had, I think, the most + unmercifulset of bed-fellows I ever experienced; for after I foundit + was in vain to stand them battle, I submitted andsurrendered to them. But + let me be as passive as I would, they gave me no quarter, but continued to + usetheir offensive weapons upon me full as much as ifI had been + striving to aggravate them; until Ithought best to plan a retreat, and am + glad to escapewith whole bones, but am afraid some of them willfollow + or keep with me all day. About six o'clockwe all set off and rode down the + Cohoctontwelvemiles to the Painted Post, through a bottom of prettygood + land. Fed our horses and parted with JosephJones, who hath been an agreeable company thus + far.Thence to Lindsley's, and dined; all + the way up theTioga, twelve miles. At the + Painted Post we crossedthe Cohocton; from Lindsley's to Berry's, ten + miles,where we propose to lodge. One mile from Lind-sley's crossed the Cowanesque. Thirty-four miles.

+

14th. At Berry's, on the Tioga, we have had asgood a supper and night's lodging as + we could haveexpected at Cheltenham or + Caln. Nine miles; havingridden + forty-three miles up the Tioga and crossed + iteight or nine times, through a rich flat of land.Thence to the + block-house, eleven miles, it being + de-serted and without inhabitant that we discovered, ex-cept one cat. + On examining the house, we chose toraise our tent, kindle a fire, and lie + on the ground,where we had a much more comfortable night thanwe should + have had if French Anthony had still lived there. Thirty-two miles.

+

15th. A little before + day-break it began to thun-der, and by the time it was light enough to set + off, it rained middling fast; but we could do no better thanto set off + in it over the remainder of the Savage + orAllegheny Mountain, it being a very + bad road, thoughmuch better than four years ago. It rained until + wecame to Trout Run, nine miles from the + block-house,which is at the foot or + lowermost part of the south side of that great mountain, which is twenty + milesacross from Peter's camp to + Trout Run, and a greatpart of it + pretty good land, but rough and rocky insome places. We then rode down a + narrow valley,down which the aforesaid run descends, to + Reynold'stavern, fifteen miles from the block-house. In aboutfour miles' riding down the valley, + we crossed TroutRun thirty times. Here we + breakfasted and dinedboth at once. Thence to Williamsport, fourteen miles,it being a place we passed + going out, [we] havingnow performed a revolution by encircling a very + largecircuitous route of settled and unsettled country.Here fed our + horses. Thos. Stewardson,, John Shoe-maker, and George Vaux propose to stay all night;Isaac Bonsal and myself rode three miles farther + tothe widow Harris's and lodged. + Thirty-two miles.

+

16th and first of the + week. Rode nine miles toWm. Ellis's, and + put up my mare, then walked onemile back to meeting. There I met all my + compan-ions who with me came to Ellis's + to dinner. In theafternoon I discovered my mare to be in such a + con-dition that she could move but with great difficulty; we supposing + her to be foundered, sent for some tarand applied it in the usual way. Went + to bed notexpecting her to be fit to travel to-morrow.

+

17th. My mare rather + better, but not fit to ride.We set off; I walked and drove her before + me,and walked to Milton, a beautiful + town on the bankof the west branch of the Susquehanna, sixteenmiles, and dined. Thence to Sunbury, fourteenmiles, and lodged; having + walked about twenty-fivemiles, my brethren spelling me some times. + North-umberland is a town about + twelve miles below Mil-ton, standing in + the point between the west and thenortheast branches of the Susquehanna, which wepassed through just before + we crossed the northeastbranch and about two miles above Sunbury. Hadit not been that the situation of my + mare and walk-ing on foot occasioned some unpleasant sensations, + itwould have been a very pleasant day's travel down the river through + a good deal of good land prettywell improved. I believe each of those three towns + contains about one hundred houses beautifully situa-ted, but I + think Milton is the most so. Crossed + theChillisquaque about five miles + above Northumber-land. Thirty miles.

+

18th. Set off early on + foot and left my companionsto drive my mare. Directly crossed Shamokin Creekand walked from the town fourteen + miles to Thuhns-man's tavern, the others coming there. About + threemiles from said tavern crossed the Mahanoy, and justby the inn, the Swope Creek. Thence to Little's tav-ern and ferry, + twenty-one miles, having walked aboutnineteen miles to-day. About midway of + the laststage crossed Mahontongo, and + about a mile back from Little's crossed Wiconisco. Almost all the way from Sunberry here is, in my opinion, very poor land,both + mountains and valleys, notwithstanding someof it heretofore hath been + celebrated as excellent,being much of it set with scrubby pitch pine. + Thefields in general look poor and dreary and the cattlemostly poor + with their hair standing the wrong way. Thirty-five miles.

+

19th. Pursued my + journey on foot, ten miles, inwhich I crossed + Peter's Mountain, where I mountedmy invalid mare and rode + four miles to McAllister's. The greater + part of this stage very poor and someof it exceeding rough land. When we + arrived at + McAllister's, I discovered on the sign in + large letters,"The Practical Farmer," which together with whatI had + heard heretofore of the man's extent and pro- ficiency in agriculture, + raised my expectations of see-ing something extraordinary, but was very + much dis-appointed, the garden and barn excepted. Break-fasted and + rode six miles down the river through abeautiful country to Harrisburg, a beautiful town onthe bank of + the river, which I suppose contains 300 houses; thence to Middletown, nine miles, land verysimilar to the + last mentioned. This town, I suppose, contains about one hundred houses; + thence to Eliza-bethtown, eight miles. + One mile after leaving Mid-dletown, + crossed the beautiful Swatara. Here + wepropose to lodge, and had it not been for the statemy riding + dependence was in, it would have been avery pleasant day's travel of + thirty-seven miles.

+

20th. Walked nine + miles, my company comingup with me, got on my mare and rode to Wm.Webb's, ten more. At Lancaster + Thomas Stewardson took a passage in the + stage and I rode his horse home,the mare following twenty-six miles home, + where Ihad the satisfaction to find my family in health;having been + from home six weeks all to one night, and traveled 950 miles. + ISAAC COATES, SR.

+

_________________________

+

THE ingenuity which society exerts to surroundwith a glamour of romance the + horrible business ofwholesale slaughter, is worthy of a better cause. + Itwas a lady--the Marchioness of Londonderry--wholast week presented + new colors to a military companyat Dublin. If it were possible to produce a + photo-graph of the carnage of a battlefield, no lady whosaw it would + ever touch any part of the trappings ofthe agents in it.--The Christian.

+

____

+

OUR minds are filled, not by what we put intothem, but by what we give out + from them.

+
+ +
+
diff --git a/static/xml/SW_RC1805.xml b/static/xml/SW_RC1805.xml new file mode 100644 index 0000000..b0bb4ff --- /dev/null +++ b/static/xml/SW_RC1805.xml @@ -0,0 +1,1256 @@ + + + + + + + + + + + + + + + Some Account of Rachel Coope [edited by Joshua Sharpless]: Electronic + Version + Friends Historical Library of Swarthmore College + + TEI Markup done by + Emma Remsberg + + + Journal transcribed by + Miriam Lise Hauser + + + Tri-Co Digital Humanities Initiative + Andrew W. Mellon Foundation + + ca. 102 KB + + Friends Historical Library of Swarthmore College +
+ 500 College Avenue + Swarthmore, Pennsylvania + 19081 + United States of America +
+ +

This work is the property of the Friends Historical Library of Swarthmore + College. It may be copied freely by individuals for personal use, research, + and teaching (including distribution to classes) as long as this statement + of availability is included in the text. It may be linked to freely in + Internet editions of all kinds, including for—profit works.

+

Publishers, libraries, and other information providers interested in + providing this text in a commercial or non—profit product or from an + information server must contact Swarthmore College for licensing and cost + information.

+

Scholars interested in changing or adding to these texts by, for example, + creating a new edition of the text (electronically or in print) with + substantive editorial changes, may do so with the permission of Swarthmore + College. This is the case whether the new publication will be made available + at a cost or free of charge.

+
+ 2014 + SW_RC1805 +
+ + Native Americans and Quakers: An Electronic + Collection + + + + + Friends Historical Library of Swarthmore College + Foster-Meyers Family Papers + RG5/221 + + +

65 pp. (1 volume)

+
+
+
+
+ + +

This Rachel Coope manuscript is housed at Friends Historical Library, on the + campus of Swarthmore College. In the fall semester of 2010, Swarthmore students + enrolled in English 50A (“Reading Red, White, and In-Between in Early American + Literature”) transcribed this manuscript as part of a larger project to make the + library’s rich store of Quaker Indian mission writings more accessible. The + project was designed by Christopher Densmore, Curator of Friends Historical + Library, and Keat Murray, Visiting Assistant Professor of English. Student + transcribers included: Miriam Lise Hauser. Transcriptions were compiled and + edited in the present form by Professor Murray.

+
+ +

The transcribers and editor attempted to render the author’s orthography and + grammar as they appear on the page of his journal, even when the author’s own + spelling and usage are inconsistent. Additionally, many questions remain about + spelling the names of his Quaker acquaintances, individual Native Americans who + populate his journal, and Indian villages and towns. The transcribers and editor + attempted to remain faithful to the author’s Anglicized spellings in all cases.

+

This volume is actually a compilation by Rachel Coope's father, Joshua Sharpless, + taken after her death from her original journal and correspondence. Journals "a" + and "b," also in the collections of Friends Historical Library, represent + transcriptions of Rachel Coope’s actual diaries. Journal "a" her “esteemed + parents”; however, her mother died before the letter was written, and so it may + have been meant for her parents­in­law, to whom she was deeply attached) copied + over twice. No version of this letter is included in journal four. Except for + this, the differences were small, such as variance in phrasing and spelling, and + not in content. It seems as though journal "a" preceded journal "b"; it is less + polished. The handwriting seems more rushed and the paper size varies, while in + journal "b", the handwriting is neater, and the paper used is consistent. It is + possible that these, especially journal three, could have been handwritten by + Coope.

+

The author of the original journal does not include page numbers on his + manuscript; the page numbers have been interpolated by the transcribers to + correspond with the manuscript sheets.

+
+ +
+ + Original written in 1807 + + English + + + + + Society of Friends -- Missions + Indians of North America -- Missions + Quakers -- Pennsylvania -- Diaries + Seneca Indians + Philadelphia Yearly Meeting of the Relgious Society of Friends + Voyages and Travels + + + + + +
+ + +
+ + + Some account of Rachel Coope taken from + notes that she preserv’d, from her letters and from personal + knowledge. + +

She was the daughter of Joshua and + Edith Sharpless and was born the 3rd of + the 5 mo 1771. About the 15th year of her age her mother was taken + from her by death, and the charge of her father’s family as + housekeeper, very much devolv’d upon her; the trial in both respects she + very sensibly felt, yet was enabled to con- duct her charge with + stability and pru- dence, and bear the loss of her dear mo ther, with + a becoming fortitude. For several years the charge of the family + rested upon her to which she attended like one of riper age. She was + cheerful in her disposition, and of a lively active turn of mind, + which being seasoned with the baptizing power of Truth, rendered her + company agreeable and instructive.

+ + + +

About the 21st year of her age she was married to Benjamin Coope, and settled in the verge of + Bradford meeting, of which she was a diligent + attender, and increas’d in usefulness among them, labouring with + friends in supporting Church discipline, and visiting those who miss'd + their way. She several years acted as clerk to their mo. Meeting.

+

In the year 1804 information was sent down from + the yearly meeting to the quarterly and monthly meetings that the + settlement made by friends among the na- tives on the Allegany river was now so advanced as to need the + assistance of females + in instructing and exampleling their sex in domesting + concerns. request- ing that if a suitably qualifyed friend & his + companion should feel their minds engaged in the concern to come forward as + vo- lunteers. When it information was spread in the monthly + and quarterly meetings of which she was a member her and her husband’s + minds became + so impress’d with it as to cause them + to believe it right to give it place. And on closely tending to the concern it so ripened, as to make + them willing to lay their prospect before the friends of their monthly + meeting, for their sympathy and advise. Tho’ a close trial to their + friends to part with them yet upon weighty deliberation they judged it + best to leave them at liberty, to persue their religious prospects, as + way might open: which on closely attending too they believed it right + to prepare for the journey, and was were enabled to give up + a good and comfortable home, the society of their friends and near + relations to be found in the way of their duty. From the notes she + kept of her journey the follow- ing is are extracted.

+
+
+ + + +
+ 1805. 5 Month 20th +

+ After a time of comfortable quiet wherein we were favoured to feel + the overshadowings of Divine regard a number of our friends and + near relations being pre- sent we took leave of them in the feeling + embraces of endearing love: Father Coope bear- ing us company to + James Embree’s. -- On parting + with him tears flow’d in an abun- dance, under a feeling sympathy + with him and ardent desires were raised in my heart, that he might + be enriched with that peace, now in his lonesome and advanc’d + stage of life, that is the precious enjoy- ment of the righteous: - We + lodged at Wilson Truemans where on my + going to bed I quietly fell asleep. but waking before three + Oclock, the remembrance of the parting scene so forcibly revived, that + tears could not be suppress'd, and sleep departed. Thou O my God + hast at seasons, in thy unmerrited goodness, been + pleased to make bare thy arm, and in times of trial, as patience + was abode in, offerd sweet consolation; un- der a humbling sense + thereof, may I a little intercede for the renew’d continuence of + thy love. ---- On the evening of their second days journey she + remarks.-- My attention has been so taken up with viewing + the roads & the country, that I have + had but little serious reflections yet have not had unpleasant + sensations or enjoyed so large a portion of that precious conso- + lation, which my soul, above all things, desires. - O that I may abide in a + watch- ful state with my eye single to Him whose fatherly protection + is as a wall round about all those who are severely + devoted to serve him where ever their lots may be cast.

+
+
+ On the th 8th day + after they set off at the + Big Meadows on the third fork of Pine creek +

the country became such a wilderness, the road thro' so little improved, + being often intersected by the fallen timber, as to ren- der geting + their waggon thro’ at that time impracticable, consequently they were + oblidgd to leave it part of ther bedding, cloathing &c and persue + their journey mostly on foot their horses being loaded with the necessaries + of what they could take - they were four in number a young man who + went to assist them + in going out, and a valuable female + friend who was a fellow labourer in the work - going to reside with + them. and they had but 3 horses On the 3rd day about noon they arrived at + John Bells in Kings settlement.-- She says, John’s wife seeing us, + (tho' we were strangers to each other) yet she came running to meet us + with her cheeks bedew'd with tears. - The joy was mu- -tual. -- + How consolating the sight of a friend after so fatigueing a journey; + having been more than two days and nights in the wil- derness, + since we left the last house. -- Altho the journey has been trying yet + I felt some- thing so animating and encouraging to revive, and my + heart was fill’d with so precious a sweetness, that it was a full + com- pensation for our most trying seasons. Ah may I abide in the + patience, with my eye single to Him, who knows what is best for + us. -- On the eighteenth day after + leaving home they arived safe and in good health at Tunesassah, the place of their destination. ---- The next + day + she says- A great many of the natives + came to see us, thro’ the course of this day; among them was + Cornplanter’s sister who said; “she + was glad the Good Spirit had brought us safe thro’ our long + journey.”—which raised sensations so comforta- ble and endearing that + my heart was fill’d with gratitude, and this language, in the + secret of my spirit, was breathed, “Great and marvlous are thy works + Lord God Almighty.

+
+
+ 6 Month 14th + +

They met the Indians in coun- cil, which was opened by one of their + chiefs expressing thanks to the great Spirit, who had brought them + safely thro’ so long and perilous a journey: - she then says the + address from the committee relative to + us was first read, then part of an epistle to + their women. -- They were also inform’d that, notwithstanding our + journey had been long and trying, yet we felt peace of mind in + being with them, and hoped our sis- ters the Indian women would be + wil- ling, when we became more acquainted + to be instructed in the ways of the + white people-- After a considerable time of con- ference among + themselves they inform’d us- We return thanks to the great Spirit + to see you all well, and that he has preserv’d your women thro’ so long + a journey, and that they have ariv’d safe in our country,- and we + are much pleas’d they are going to stay among us, to instruct our + women. We return thanks to the great Spirit, that he has put this + into your hearts, and we wish you to make your minds easy.

+
+
+ + 8 Month 3rd + +

In a letter to her father Coope she + writes- Altho this is the first time I have attempted to address thee in + this way since we parted (exceping a few lines from Middletown) yet it has not been for want of + affection, nay verily, the taking hold of thy hand when we parted, + was by far the closest trial I met with among all my near + relations, and for many miles I could not suppress the tears from + flow- ing -- Our moving here was from a sense + of duty.- The impressions were so + strong and at time would revive with such weight that I believ’d + it right for me to submit our going to our friends; had they + discoura- ged it I think I should have felt re- leased.-- My + sincere desire from the first was, that we might be guided by that + hand, that will lead all those rightly who rely thereon; and I thought + there was a comfortable degree of peace experien- ced in being + resigned: but the near sym- pathy I felt for thee, together with + the many trials I had to meet with, reduced me so low that, had my + request at a weak time been granted, I should not now be in a + state of mutibility.-- I am very sensible, that thro’ unwatch- + fulness I have often err’d from the right way; yet have been made truly + thank- ful, that conviction followed; and at sea- sons been + enabled to renew covenant-- but O the natural will, how strong, + how hard to be kept in its proper subjection, + that I have been ready at times to + cry out, must I always remain in a state of bondage.-- Oh may I + double my warfare and press forward with the hope, that, by the + aid of my heavenly Father, I shall be enabled to become a + conquerer; remembring that in due time ye + shall reap if ye faint not. + Being at Philad a. on + business a week before we set off – at a friends house we very + unexpectedly met with WC-- who had something + peculiarly encourageing to say to us; signifying that + he felt so much sympathy and love to flow towards us when at dinner + that he could not go up stairs without expressing it tho’ he + several times attempted it-- he address’d my husband with the + appela- tion of beloved brother be not to + diffident, for thou wilt be an instrument of good to that + people. several times repeating the words go my dear friends and the Lord go with you. + -- I thought it very + extraordinary after such a season of + con- flict we had had to pass thro’ that we should meet with such + encouragement,- Tho’ I know dear father that + is not suf- ficient to rely upon, yet I have witness’d some + refreshing seasons since parting with thee, particularly in our + religious opportunities

+
+
+ 10 Month 31st + +

In a letter to me she says Last spring several acres of Oats with + Timothy and Cloverseed with it were sow’d-- ½ a bushel of + Buckwheat- and some potatoes and corn planted- all grew amazingly-- It + has been a busy summer with us both men and women; the forepart of + it we had at work a carpenter and mill right and a number of + Indians diging at the race. It is very heavy work to clear land here, + & it is surprizing to see the quantity of saw logs a few acres + produces-- About 13 acres is put in with wheat. -- + Potatoes, pump- kins and turnips we have in a bundance + they will be helpful in the way of + fod- der. the oats likewise was mow'd for foddering.- It has not + been in our power to render the natives much assistance this summer; + yet I have no doubt our being here, has been useful.- We have spun + some stocking wool for our own use: to se the wool converted in- + to stocking has excited their astonishment. We have three little wheels + ready to run when we get flax.-- We purpose this winter puting up + a house near us for those Indians who wish to learn, to spin &c + in.- They appear desirous to get more comfortable houses to live + in- and for that purpose have bought many 100 ft. of boards.- When the + young men first came here, the cattle were all the Indians had on + their river.- They will now amount to several 100, a number of + which are fine oxen which they have broke. I have + endeavored to discribe the man- ner of our geting along, and what we + have done. I will intimate a little to thee now + how I have fared.- Thou knew it + was a close tryal to me, to give up to be thus separated from you; + and I have often been made thankful that I was favoured to get into a state of resignation. I think + I never enjoy'd a more comfortable state of mind, than since residing + here.-- One first day eve afternoon when they were long I feeling + the want of society to introduce a new train of ideas for the mind + to dwell on - a little before the sun withdrew from us his rays. I + walked out alone, seeking for some new objects to amuse me and persued + the new road about ¾ of a mile to the river. as I walk'd along my + mind unintentionally was engaged, in ruminating on my native home, + my dear relations and friends, and why I should be thus seperated + from them.-- I was satisfy'd that it did not proceed from any will + of my own but much in the cross, and in submission to inward + impressions.- As I was thus + musing my heart was fill'd with a + preci- ous illumination, and self so reduced, that I felt willing + to make a full surrender of my all, to the great and wise disposer of + events but alass, this produced awful sensations; and I was ready + to shudder at the prospect; when unexpectedly and unsought for a + language reviv'd, “Fear thou not neither be dismay'd. I will strengthen + thee, yea I will help thee, my grace is sufficient for thee.” O + the Divine consolation that fill’d my breast.- Tho’ as to the outward + it might look lonesome; being in the wilderness- far from society- + some distance from the house and nearly dark: yet had I been in + the midst of my friends no outward enjoyment could have been equal to + the precious sweetness I then experienced-- my heart overflow'd + with gratitude-- any subtle petitions asconded for the continu- + ations of his love, Tho’ felt unworthy of the least of the multiplied + favours I am + receiving: may humility and reverence + be ascribed to him alone who is forever worthy, Amen -- I have my + bitters as well as my sweets, and tryals are necessary for my + further refinement, and Oh that their may be a willingness to be + searched and tried, untill every thing that is contrary to the + pure truth, is done away--

+

To some near connections Dear Chil- dren, we that have been brought up + in the plentiful enjoyment of this worlds pro- duce, and many + other advantages, have abundant cause to be thankful. Oh how I + have felt for many poor children that I have seen since I left home; + particularly thro’ the course of our journey, but we must leave + them to Providence who is the great superintendent of the + Universe. We have mostly since being here enjoy'd good health, and + live comfortably tho’ much retired.-- have not got much engag'd in + instructing the Indians; it will require + some time to learn their language + and to procure materials for spinning

+
+
+ 11 Month 1st + +

To a friend - Thy letter of 7 mo last came + safe to hand. The wholesome counsel together with the interesting + information, was truly acceptable; for it reached me at a time + when I was very desirous of hearing from my native home; being of the + latest date of any I had received -- I was pleas'd to find thou + hadst been to see my dear + father Coope for whose situation I have + near- by felt; knowing it was a close trial both to him and us, to + be thus separated, now in his advanced stage of life. Indeed when + I view'd the prospect not only of leaving him + but society in gen- eral, with my dear friends and relations, to + many of whom I have of late felt an increasing nearness, with desires + for the advancement of our Zion, and to live so retired in an + uncultivated part of the coun- try, was so in the cross, that at times + I + was almost ready to run counter to + se- cret impressions; but knowing my peace consisted in obedience; + and remembring how it was with good old Jacob: when he left his + father’s house to go into a strange country, that in the course of + his journey, when alone, he had to ac- knowledge, “surely the Lord is + in this place and I knew it not.”- and how he was preserv'd and + bless'd, so that on his returning, he said, "I am not worthy of + the least of thy mercies, for with my staff I passed over this + Jordon, and now I am become two bands.”-- As these con- + siderations reviv'd with renew'd faith, that the Divine presence, is + still the same that ever it was, to those who are truly devoted to + serve the Most High. - my faith was a little strengthened, the + mountains gradually disappear'd and a belief increas'd, that if it + was the Lords will for us to go, + he would support us if our eye + were fixed upon him. -- Thus as I endea- voured to become + resigned. I felt at sea- sons a comfortable consolation, and have + experienced, even in this remote part of the country, a brook by the + way, that will refresh the weary traveler.-- Our re- ligious + opportunities are mostly attended with a lively savour. It is + encouraging to hear that the petitions of those who have been & still are as valiants in our Israel are + ascending on our behalf.- Surely it calls for grateful returns of + thankfulness to the Author of all good.-

+

+ The natives appear friendly disposed and are gradually increasing in the + ideas of civilized life.-- Some of them are much spirited in + cultivating their farms and in geting more comfortable + houses.--

+

+ The concern feels weighty and impor- tant, and I have no doubt but that + it was rightly founded; and if those engag'd + therein are careful to dwell near the + Divine direction they will be preserved; and may at a future day + have to view their labours with satisfaction.

+
+
+ 11 Month 30th + +

In answer to her brother JS who desired + to be informed of the customs & man- -ners of the natives-- says + Since the young men resided here, the natives had a great image + cut out of a Pine tree and made after the figure of a man, and + painted, so as to look frightful, which they call'd the Great + Spirit. They had set times of worshiping and dancing before it. + But as their minds became more enlighten'd some of them grew + uneasy with this image, and they had many confer- ences what + should be done with it; but they were fearful of destroying it, + lest some evil should befall them.- At length one of their chiefs + proposed taking it into the woods and puting some beans and corn + by it, to shew their good will + for it. Hence after much debate + Henry Obail son of Cornplanter being permited to speak said, + why this image you worship was once a little sprout that grew out of + the ground it could neither hear nor speak - well it was made like + a man and we worship it still it can neither hear nor speak- is this + the sort of Great Spirit we worship, cant hear can’t speak - give + me leave and I will make way with it.- At + length it was given up to him, and he tumbled it into the river & + it floated away -- but they watched him thinking some evil + would happen him for so doing -- Notwithstanding their image is + gone they still continue regularly twice a year their dances, offering + sacrafices, some- times burning tobacco &c

+
+
+ 12mo 23 + +

From her diary. It has been snow- ing more or less these two days + --

+
+
+ 25th + +

+ Various reflections pass'd thro’ my mind to day as I sat knitting, of + which the following is a part-- At this lone- + some hour when the watery clouds + are discharging their whitened substance and the trees of the + forrest are clad with the icy snow- while my mind is un- molested + with the cares of this life - and my thoughts absorbed in awful + medita- tion- may I view all temporary scenes as fading toys, and + revere that hand from whom all good comes- Now at this solemn + period attend O my soul in humility wait to be learn'd by this + inward teacher -- O my faultering mind, how long wilt thou be + blundering along in thy journey Heavenward. thou hast often seen + this insufficience of hu- man frailty therefore in full confi- + dence, rely on that Power which at sea- sons, thou hast felt to be + precious.-- And now O Lord permit me to intercede for a renewal of + thy holy aid, that when thou in thy wisdom may see mete to hide, + as it were, thy face from + me I may be enabled, in patience + and humility to wait for thy coming; and when thou art pleased to be + near and feed me I may not slide from the true path; for in thee + and thee alone is safety.-

+
+
+ 1806 1 Month 7th +

+ All things as to the out- ward glide comfortably along but I have + often to pass thro’ seasons of deep humiliation. -- Thou only Lord knows the anguish of my spirit and + sincerity of my heart, that I desire above all things to serve + thee but, the cross and the assault of the enemy. - Will I never be + able to overcome the many hindering things! Thou hast at seasons O + Father clearly man- ifested to me thy will-- and sweet peace has + accompanied faithfulness thereto Then Oh my soul why dost thou + doubt. dwell low; in humility wait. let not thy faith fail, that + so in the littleness thou mayest be enabled to do the Lords + will.

+
+
+ + 23rd and first of the week-- + + + +

+ My mind when favour'd to get into the quiet has enjoy'd a + comfortable state of tranquility; but thro’ sundry requests of the + natives also as the white people in passing up & down this + river make this house a stoping + place -and many travelers latterly calling some being detain'd- has + occaisoned us some difficulty in sitting quietly down in our + religious opportunities. Oh that we may be enabled thro’ all + difficulties to dwell near that fountain, from whence preservation + and heavenly instruction flows

+
+
+ 1 mo 29 +

- From her Diary –- forward 9 leaves:

+ +

+ 2 Month 22nd To her sister MS. When I wrote to father I mentioned that we expected to build a house + neart this, for a school house which is now accomplished, and + altho’ the weather much of the time since has been stormy and the + river difficult to cross, yet we + have not been unimploy'd.

+

+ As soap making is a novel to most + of the Indians nay many of them + seldom or never wash their clothes or even their hands or face- To + impress their minds with habits of cleanliness appear'd + to us the first necessary and important step- accordingly in the fall + we proposed to them, to save their ashes and fat, and when our + house was ready we would teach them to make soap – for when they bring + their grists to mill in their canoes the materials could easily be + brought with in them – for they + generally live 10 or 12 m each way generally on the oppesite + side of the river. tho’ their + principal town is within 3 m.- There has been several girls out of + 6 or 8 families who have at different times attended, and who + appear'd anxious to learn- they were much pleas'd with having a + considerable quantity of good soap to take home with them. between + whiles they nit and spin a little. they bring provisions and cook for + themselves; we shew'd them our way to make indian bread + and they say they like it much the + best- if way opens we mean to teach them to spell-- The plan + appeared to be well re- ceiv'd by both sexes-one of the chiefs + said “That was the very thing” -- If half a do- zen of our girls in their native dress should un- + expectedly pass thro’ the entry at West Town + what an admiration it would raise- for the contrast is great.- and + their is a satisfaction in trying to instruct them- notwithstand- + ing their great ignorance- their souls also are equally as precious in + the sight of the Supreme Being as ours. -- At unexpect- edly + receiving a packet of letters she says Well dear sister I have been + endeavour- ing in all things to be instructed whether to be full + or empty, to abound or suffer want - I find you have entertain'd + an idea that I have enjoy'd some comfot- able hours since my + residence in this solatery abode, which has truly been the case: + but alass! an uninterrupted + sunshine is not always best for + us. The time of the arival of the last pack- et, and the preceding + week was a proving season-- here I was, no change of society, no + neighbouring meeting where perhaps I might receive a crum - Well it + will cause me to get deeper and to know that my dependance must + alone be on Divine help. -- I trust it was a season of renew'd + instruction to me.

+
+
+ 3 Month 22nd + +

+ Dear cousin, Previous to the reception of thy letter, the tidings + of the decease of your precious sister had reached us- and I + feelingly sympathiz'd with you. Truly it must be a great con- + solation in believing she was prepar'd for her awful change, which I + have no doubt was the case. Oh that it may have an awakening + tendency on those of her contemporaries who attended the solemn + scene. Tryals of this sort and many others frequently occur during + our pilgrimage thro’ life; but it + is written all things will work together for good to them who love + and fear the Lord. --

+

+ The Indians are increasing in in- dustreous habits. At a late council + they held among themselves they agreed and information was + sent to the absent tees - that at a certain stated time each one + mut relinquesh their hunting and be in readiness to attend to the + labors of the field, being sensible that last spring a loss was + sustained by not earlier applying themselves to it

+
+
+ 5 Month 11 + +

To me Thou requested an infor- matory letter respecting both ourselves + & the improvements of the natives: as to the latter but little + advancement is yet made among the females-not owing I think to our + neglect- the charge we are intrusted with by our society and + expect ed to give samples of its concern we often + feel weighty and important - and + have set times to confer together with a view, to keep the subject + lively, and to seek after a plan, that may be most conducive to + their improvement.- and often among ourselves express a concern + that we do so little.- yet when we reflect that we are endeavouring to + do the best we can, labouring to keep in the patience, improving + every favourable opportunity that may offer - way may yet open for + our encouragement -- The children of Israel in their journey thro’ the + wil- derness were directed when they saw no way to go forward to + stand still. and way open'd beyond their expectation.

+

+ I have had for some time past hum- bly to crave for patience both + inwardly and outwardly, and have laboured to seek after that + wisdom that is able to direct-- Thou knowest there are sea- sons + when discouragements will assails us in + all weighty undertakings but if we + en-deavor to dwell near to the fountain of life, light may be + permitted to shine as our of a dark place -- and to own the + necessity of those proving sea-sons and not to glory in any act of + our own—

+

+ I do not mean to convey discourage-ments relative to the concern-- for I + think the work is progressing-- but great matters all at once must + not be looked for. Many of the men this spring appear in good + earnest to have more cleared land and enclosed fields, but they long + established custom of having the women in their cornfield is not + easily relinquish'd. With respect to ourselves we enjoy good + health, live agreeably, have a comfortable hose &c. the + prospect of a good crop of grain (but a barn to receive it will have to + be built) the improvements that are gradually making on our farm + looks pleasant which + added to the returning spring, feels + animat- ing-- The sawmill has steadily been kept going and many + thousand feet of boards set in rafts down the river to + Pitt[sburgh]-

+
+
+ 5 mo 25th + +

To her Uncle WS. We have lately had a visit from + the Agent placed by gov- ernment of + the six nations.- he resides at + Buffoloe about 80 miles from this + place- The Indians on this river had + not receiv'd a visit from him since he was intrusted with his + office- and we being entire strain- gers to him and his sentiments, + respecting our being here on the errent we are- we were anxious to + have an interview with him. The next day after his arival at Cold spring he had the Indians collected + (our men at- tended). He communicated many pertinent remarks to + them, suitably adapted to their capacities; endeavouring to impress on + their minds, the advantage of industry and sobriety, and the + cultivation of their land. Requesting them to be careful to bring + up their children to labor; + endeavouring to convince them of the advantage it is to farmers to + live seperate from each other and not in little towns. -- A sil- + versmith had made many exertions to settle among the Indians, + which we entirely disapproved - - The Agent desired them not to suffer him to come on + their land, for we would get their money for broaches and bobs + that would be of no use to them. for when they wanted a yoke of + oxen, if they had money they could go among the white people and + get them, but if you take a basketfull of these broach- es they + will not take them.- he also descanted on the great benifit of having + the Qua- kers among them, and the advantages of the mills; + signifying there were no people who had done more for them than + they had-- He came home with our young men, and the eve was spent + in agreeable conversation. he + intimated that the experiment of civilizing a na- tion of Indians + he had not seen ful- ly tryed - but could discouver no more of a + wild nature in them than pre- vaild among the whites. provide + the oppor- tunity of education was the same. He said it was a + great undertaking for us to leave our near connections and fri[en]ds but necesity call'd loudly for some + attention to be given them- signifying he had heard of our society + giving them some assistance, but had no idea so much was done-- On + parting with him we had his good will and wishes for our + success--

+
+
+ 6 mo 20 + +

from her diary A fine refreshing rain after a week of warm dry + weather all kinds of vegitation is revived but my poor mind feels + dull and lan- guid, and the necessity of having faith and patience + under every dispensation + that may be alloted me. that thro’ + heights and depths I may at seasons, be favour'd to partake, if + but a crumb of that bread, that nourishes and strengthens the + soul; is what my spirit earnestly breaths for-

+
+
+ 6 mo 26th + +

To her sister ES -- The recital of thy + short excersion in the country revived a recent visit made by me to + Cold Spring an Indian town- and + I was led to view the contrast- As true a picture of mine cannot + be formed in thy ideas, as thine can in mine-- + however to make a begining -- As the cornfields have lately call'd + the attention of the women from their spining it afforded us some + leisure; and I seized the opportunity to visit + them in their own houses- Jacob + Taylor going on business to the town, and offer'd + to escort me there-- when we came to the + river an Indian with a canoe being + there who cheerfully took us across- I had a pleasant walk up the + river, viewing the + + mountains on the opposite side + intermix'd with narrow vallies clothed with spontaness herbage for + the nourishment of the dumb beasts-- when we arived in the + subburbs of the town we were haild by some of the inhabitants to + know where we were bound to- Jacob + inform'd them that I purposed spending the day among them, and by + and by would call on them- as his business + did not lead him far thro’ the town, he shew me the house I was + bound too then left me- Mockensons I have found to be a pleasant + covering for the feet in dry weather and my last sum- mers pair + being worn out, I call'd on this woman who made them, to be speak + an- other pair-- when I came to the door, I saluted her in their + way. schano ah schano she reply'd- looking + pleasantly- her five little folks being aroud- I invited my self + in, also to a seat which I took on the end of a long bench- the day + was warm yet she was churning close by the + fire-- I regreted the want of their + lan- guage to instruct her how to manage it. I cannot converse + with them tho’ make some awkward attempts-- when she was + done she took her seat by me admiring my knit- ting which I + had in my hand- I also (on purpose for them to try) had provided + an other stocking which I then handed her, using my utmost endeavours + to instruct her. she was, tho’ intent in learning very awkward- + one of her neighbours coming in tryed it also - but to return - after + churn- ing was done she washed a bowl, and with the assistance of + a ladle collected and slightly worked the butter- then pour'd it + (for it was like oil) into a pail of water, where it remained a few + minutes then she again worked it with her ladle and salting it she + sat it by me on the end of the bench (there being perhaps 4lb) + with a piece of unleavened corn bread and an old knife, and invited me + to dine + giving me for drink- buttermilk (how + differ ent from thy dinner at Aunts) in the mean time two girls + (perhaps 10 and 12 years of age) who had frequently been at Tunesassah came inviting me to their house. + they ran before and prepared a seat for me by their mo- ther who + was sitting at the door weaving a belt curiously decorated with + beads. The eldest impatient to try her hand + at knitting-and her sister clost by on her knees clost + by gazing with pleasing attention to to see the dexterity of her + fingers- in a few minutes she performed much better than the woman + did in half an hour-- when she got in the way of it I left it with + her and made several visits in the upper part of the town. When I + return'd she told me by her fingers that she had knit six needles- + and that 30 stitches were on a needle-- she reluctantly parted with + it but time urged me homewards, having on my way several calls yet + to make

+ + + +

+ I had victuals at another place set for me which my paper, as I have in + view some other thing to mention to thee, will give me no room to + describe. I got thro’ and to the fording place about six- where 2 + families live who in turn were to share of my visit and who I + expected to take me across the + river - but my expectations were + erroneous for the houses were shut and no one to take me over-- + here alone, I took my seat and bun- dle of shingles waiting for some + favour- able event -- with which in ½ an hour I was finish- ed, + for an Indian coming to the opposite side got a canoe and took me over- + and I returned much pleased with my visits-- ------ We had the + assistance of 10 or more Indians for 2 day in raising a barn - the + day of the eclipse proved to be one- the Indians had been told some + time before that on this day the sun would grow dark- but some + said “they were sure white people could tell no such things,” however + when the obscuration began it + continued growing darker and darker untill for a few minutes it + became total the atmos- phere resembled dark twilight and a number + of stars made their appearances. well says one of the Indians the + white folks does know more than us-- + another said he expected a great many of the women were a crying, + and he had a mind to cry too for it look so strange.

+
+
+ +

Copied + 6 Month 30th To her brother NS. + After passing thru a long winter & part of the spring with + We were favored after passing, with but little intercourse, + we were favoured to + but little intercourse (thro’ a long win- + ter and part of the spring) to receive a number of + letters and was were much pleased with finding + among them one from thee. - and may tell thee and dear sister, tho’ we + are far seperated from the bosom of + society, partaking of many hours of retirement that formerly + we + + + were in a degree straingers to. yet I am thankful that mostly I + en- joy a quiet resigned mind, and have not in the most trying + dispensations I have experienced since being here, thought my + lot hard, nor dare indulge one murmering thought. -- my relish + for reading and meditation is much increased, and can truly say + that ma ny comfortable hours have been sacri- ficed to these + desires-- Altho I often feel poor and striped yet as patience + is abode in the comfort- able belief, will prevails that + the streams of Divine love are extended, to all the sincere + hearted wherever scatter'd or how ever far remote + from the bosom of society. will prevail. The query + the yong man put to his Lord has of late affectingly accompanied + my mind. “Good Master what good thing shall I do to inherit + eternal life-” after enumerat- ing several things he added “go sell + that thou hast and come & follow me.” this was a hard + + + saying to the natural part.- Oh that we may have our minds so + disengaged from the encumbering things of this world that the + growth of the pure seed may not in the least be retarded. -- The + station of parents are very important. -- children are often improperly desiring + wanting those things they see on others when they + are young is the time to guard against future dif- ficulties by + nipping things in the bud, and endeavouring to instill useful + instruction into their tender minds. You feel the charge then why + should I thus write. +

+
+
+ 1806 1 mo 29th + +

+ From her diary -- Letters were receiv'd to day informing of the + death of dear cousin + Hannah Jacksons mother-- she is now + no doubt reaping the benefit of a wellspent life-- may we who + are left behind so fol- low her footsteps that when our final + change comes, we may be prepared; - time to us all is uncertain, + and the period when we shall be call'd hence we know + not. + turn back 9 leaves

+
+
+ 9 mo 18th + +

To me + I dwell but little on the subject of receiving visits from my friends or + when I shall + again be with you-- In regard to + thy debilitated situation and want of health or whether we shall + again meet in muta- bility, I hope submission and fortitude will + be my companions and not only in that, but + thro’ the varied dispensations that may be my lot to encounter. + but dear father pleas to accept of the feeble breathings of thy + daughter, that as thy natural abilities fail, and infirmities with + age come on thou mayest be preserved a live in that that will + endure beyond time. -- I was pleased to hear from my dear aged + grandmother and wish to be + affectionately remembred to her. I have often reverted to sensa- + tions impressed on my mind when in company with some dear friends + near their close of time here, also on visiting some infirm ones who + were confin'd and for these I often feel a lively + sympathy.

+
+
+ + 27th + + + + +

From her diary + This eve my dear brother JS. arived. + it was a joyful meet- ing to us both. -- he brought me a num- ber + of letters from my dear connexions Oh how many blessing do I + receive. may I ever walk worthy thereof and quietly acquies in the + way cast up for me - with a heart devoted to love fear and obey my + Heavenly Father, is the frequent breathing of my spirit.

+
+
+ 28th + +

To her sister P.S. -- If our school + house could be fill'd with girls learning to spin knit &c the + days would pass pleasantly away. A number when their corn is gathered + gives us to expect their company. -- The man’s wife who has the + sawmill is a weaver- and could we have a piece of the Indians + spin- ing for her this winter to weave, it would prove a strong + incitement for more of them next spring to sow flax. The com- + mittee who has lately been among us + say they are much improved in + cleanli- ness- and in many little matters I think they have gaind instruction, which will open the way + for greater. It is no small task - to begin with girls 13, 14 and + 15 years of age - who are ignorant of all most every thing but howing + corn and chipping wood-- the wheel runs back - the yarn tangles - + it twists into curls, the end runs down, and such like-- which + requires patience both for the teacher and learner -- Our know- + ledge of their language is still very limited - so that we have shew + them by signs - we have to keep up a plea- sant countenance- and + repeating the words by and by you will get in the way of it - + considerable improvement in different branches is already made by + some --

+ Not in Joshua's +
+
+ 30th + +

To a near relation. -- Not without casting a longing desire for a free + access to those hidden treasures in + store for the faithful.” is a sentiment express'd in closing a + subject in thy last- and feeling the energy and sincerity in which + it was penn'd-that my spi- rit said amen -- Well knowing if faith- + fulness is adhered to what this desire will produce-- Thou hast pass'd + thro’ some close proving seasons all intended for the trial of thy + faith and to fit thee for further usefulness in thy day-- then let + not the cross stand in the way but give up and the enjoy- ment of + sweet peace will be thy reward. I speak from a small degree of + expe rience, for after I was given up to this service some little + prospects opened upon my mind accompaned with the belief that it + was my duty to perform previous to leaving my native home-- but + alas they were like mountains to the natural will. In thankfulness + I may acknow- + ledge that as I laboured to get into + the quiet, and faith have a resigned mind- I was + strengthened far beyond my expectation to do the little that presented + -- my con- solation at times has been great, feeling that the + Divine presence was near when the glimmer of light was small. I + feel cautious of dwelling long on this subject lest I squander the + little good that I conceive has encreas since I be- gan to + write -

+
+
+ 10 mo 3rd in the other 6th + +

+ About two weeks ago the com- mittee left us, and three days since + my dear brother. I sensibly feel the + strip, the sweets that are to be derived from society, and in the + company of our near relations assumed their native force, and so + powerfully prevailed that had I indulged those impressions they + would soon have made me discontented and unhappy in my present + retired situati- on, and for a season they did unsettle + my mind; but as I endeavoured to + cast them of and seek for that resignation which had heretofore + not only proved as a consolation but at seasons as a healing + cordial to my relaxed mind, I was led to view the motive and cause why + I was thus sepperated and a comfortable submission ensued. I was + favour'd to experience the precious overshadowing of Divine love, + my mind was humbled under the Heavenly canopy, and for a few days + I seldom have experienc'd so quiet a repose. Oh may I be enabled to + render the gratitude that is due to my great and good Benefactor + for the many favours dispens'd to me a poor unworthy creature.

+
+
+ 19th + +

+ For near two weeks past I have had a painful gathering in my thumb. + I have had in this slight affliction re- + newedly to seek for patience + and to crave thro’ all trials I may + be preserved from the least shadow of mur- muring - and a ray of + hope reviv'd with a renewal of strength.

+
+
+ 1807 + 2 Month 21st + +

+ To a niece who had lately lost her companion. -- The perusal of thy + val- uable letter was truly satisfactory. It was comfortable to + find that thou was favoured with so much fortitude and + resignation. It is enough my dear to experience a Physician near to + heal all our maladies; may we in our varied allotments daily + endeavour so to walk, as to witness our minds more and more + redeemed from the perishing enjoyments of this world. For what is self + with all its acquired arts or what is there here that is worth + placing our dependance on.

+

+ The winter thus far with us has been very severe -- The ground these + three months past been covered with snow. - but we have + a good warm house to shelter us from + the northern blasts.

+

+ A number of Indian girls has this winter given us their company - + some of whom has made an incouraging prog- ress - a short piece is + now in the loom principally the industry of two girls. - another + piece is on the way - and a con- siderable quantity of very good + thread has been manufacter'd and distributed among them generally. + - Those two girls are desirous of having wheels of their own, and + spin at home - and their request we mean to grant.

+

+ Altho’ the disposition among the men to relieve their women in the + labour of the field, has greatly en- creas'd; yet when the time for + plant- ing corn comes, the females have to give their assistance + more or less, thro’ the summer. still there are intervals if they + were so disposed, that might + be devoted to spinning knitting + &c an increas of exertion on their part would be + satisfactory, but pati- ence on ours is necessary.

+ Not in the other +
+
+ 5 mo 24th + +

To her parents. -- I have been thinkin whether in my situa- tion, + it would not be advisable to request of our kind friend Francis King the liberty of making his + house my home, for a part of this summer, where I could have the + company of my own sort of people. but upon weighing the prospect + the preponder- ating scale was in favour of remain ing in my + present place. I hope you will not be uneasy about me. my health + is mostly good, and my mind resign'd, for which favours I am truly + thankful. The pro- posed visit from some of you cre ates pleasant + sensations, but when I view the distance, the roughness of + of the road, and how unaccustom'd you + have latterly been of riding on horseback, I feel unworthy of such + attention. yet I do count on having sister Edith’s company, and as for thine my dear- ly + belov'd father thou knowest thy abil- + ity to encounter such a journey better than I do. I hope prudence will + dictate rightly. and tho’ it will be a close trial to my dear + mother to give the up yet if it + is right I Hope she will receive strength + so to do. and if we are favour'd to meet my + desire for myself is to be in a compos'd state of mind.

+
+
+ 7 mo 3. +

To her mother -- I anticipate in about + two weeks the arival of some of our near relations. To know + whether they are coming and the time of setting off would be + gratifying to me. A fear at times assails me mind least I shall + lack of that patience and fortitude my present situation demands. Tho’ + of + late time has pass'd comfortably + along feeling my faith a little strengthen'd and my trust + in the alone source of preservation renew'd.

+
+
+ 7 mo 22nd + +

From her diary -- A number of circumstances has latterly accured + that has felt trying yet thro’ all I have endeavour'd to keep quiet, + believing a way will be made for that which is right; and to be + resign'd to the event be it as it may is what I ardently + wish.

+ +

This is the last account kept by her self or we have from any of her + letters. Believing her situation claimd the company of some of her + relations my daughter Edith and myself + pre- par'd and the 12 of the 7 mo 1807 + left home and in 13 days ariv'd at Tunasas- + sah. The family received us with express- ions of joy in + their countenances. particular- + -ly gratifying was our arival to Rachel for her mind was sinking under + discou- ragements and at the point of desparing of our not + geting there. She with the rest of the family were in the enjoyment of + health. Eleven day were agreeably spent in free conversation, mutually glad + after a sepparation of more than two years to be in each other’s + society

+
+
+ The 5th of the 8 mo. +

She was taken un- well, and in two days in the day + was + prospect of her recovery look'd gloomy. She was given + over by the Dr. at this moving period. I thought it best to make her + acquainted with her critical situation, that the probability of her + being raised was small. after a short pause she reply'd - I would + have been willing to have continued a while longer with my dear + husband assisted in the concern we came here about, and to have + return'd with him to our friends; + but if it is not to be so I feel + resign'd. I said my dear child I hope and believe thou art + prepared to leave this world. with much composure and a solid + coun- tenance she answered, I have been en- deavouring to stand + resign'd and have my mind prepared if such a change should take + place- and I now feel quite easy under a full belief that there is + a place of rest prepared for me. A while after she looked very + affectionately at me and said My dear father, I am glad thou art + here. I heard of thy being poor- ly, and was fearful thou wouldst + not be able to encounter so ardious a journey therefore could + never urge thy coming but I am glad thou art here, and I hope thou + will get safely home.

+

Notwithstanding her very tryed situation her mind seem'd carried above it + compos'd and resign'd with no dejection in her countenance. -- The + advice of another + Physician being needful and one + living within 30 miles, tho' thro' a wilderness mountainous country, + he was sent for. The Doctors on confering together, believ'd it not in + their power to give her relief. After they had come to this conclusion + I took my seat by her bedside. she look'd a few minutes at me then, + with her natural voice and much sim- plicity asked me what the doctors + thought of her. I told her, her situation was so difficult they + apprehended they could administer no relief. she reply'd why do they + think so? - then pausing awhile said I must be content and in a + short time adding, I feel resign'd.

+

She delivered herself with much ease and freedom, not appearing to be + distress'd or cast down, no heaviness in her countenance or fear in + her eyes. Shortly after her first Physician came to take leave of her, + and taking her + by the hand said, Well Rachel I + have thought of going, are you willing? She answered I do + not see any thing more thou canst do for me, I believe thou hast + done the best thou couldst. he then asked her if she felt + resign'd to her fate. she said she thought she did; + but it is a trial to me to leave my dear husband so far from his + friends yet we are poor dependant beings we must submit. Then + pausing she added + Doctor thou seest there is no age ex- empt from death, the middle + aged are call'd away as well as those further advanced. how + necessary then for us always to be prepar'd. -- Being some + reliev'd the forepart of this (which was the third of her sickness) + she was cheerful tho’ very sweet giving her sister directions about + some things, also saying to her sister + it is my request that you will ever remember my dear Benjamin as a + brother for he has been a very kind + hus- band to me and I have often profited by his instructive + conversation.

+

On the fourth day of her illness a change took place and for a few day the + flattering expectation that her life would be pre- serv'd was + indulged, but a fever with some other unfavourable symptoms seiz'd her + which seemed to baffle all the efforts that was given for her relief, and + felt nature not having strength to resist yielded to their powerful + assaults. -- she weaken'd fast yet appear'd to lay with an easy mind. + her bodily pain was great and hav- ing found some relief by being + mov'd often made the request. She would look very affectionately at me + at times and say, Well father I feel very un- easy, I believe I + must be mov'd a little, I suppose thou wilt think me very + bothersome, but it gives me some relief. Tho’ it was moving to see + her so + afflicted yet I was glad I was with + her, she appear'd so much in the inno- cency, no anxiety manifested + concern- ing her situation, her mind much resign'd and a willingness + to comply and act just as was thought best.

+

The day she deceas'd her pain much abating, she lay more easy tho’ a + high fever was still her companion which so affected her mind as to + cause it to be much affloat particularly when in a doze. About three + Oclock she appear'd in fervent supplication tho’ not clearly + understood, and frequently in the few remaining hours that she continued + with us her mind was similarly engag'd not only interceding for + herself but others which fully evinced that her day would close in + peace. About this time her hands and feet began to grow cold, and her + pulse to beat more feebly tho’ very quick. I ask'd her if she knew + we were waiting to see her close. she + said where are you waiting? I answer’d around her bed. She reply'd I am + very low -- About half an hour before her departure I took + hold of her hand to feel if she had a pulse, apprehending she was too + far gone to notice it, but she asked if she had any fever. I replied + not much -- I then ask'd if she felt very sick she answer'd no. I think + I feel a little recruited, am pretty easy and if I had a good place to + lay I could go to sleep - I said my dear child, thou wilt soon be + in a sweet sleep. she replied I believe I shall -- at + this time a cold sweat was pouring from her - and shortly after she said + I am in such a perspiration that I cannot get my mind composed. I + want to have it settled- having frequently thro’ the course of the + day expressed the same desire -- she present- + -ly call'd for a cup of tea - which + was brought to her - but she was in so great a tremor that it was with + much diffi- culty she drank it, and being sensible of her situation + she said, I am so discom- posed that I can scarcely drink it. + then having a little more she said that is sufficient. -- she then + altered very fast, - and in a few minutes without struggle, sigh or + groan quietly breath'd her last. ---- Thus this hand- maid of the + Lord, in the meridian of life, being in the 36th year of her age + closed her days and is now without a doubt receiving the rewards of her + faith- fulness.

+

A number of the Indian women from the first of her illness untill her + close manifested much concern for her recovery, - bringing different kinds + of herbs and roots for her relief as well as giving from time to time + their best + advice; and when they heard she was + no more, their countenances manifest- ed much sorrow. ---- She departed + 16 of the 8mo 1807, ---- the next day being + fixed on for her burial, invi- tations were sent among the In- dians, + & near 20 of the graver sort attend'd principally women, a number + coming into the room, and after looking at the corps in much + brokenness quietly took their seats untill it was closed, which was + not untill after a time of solemn silence.- Several of the Indians who + did not come in sent their excuse saying, They could not bear to see + her for the sight would overcome them and they would weep aloud. They + follow'd to the grave in the same becoming manner. -- They return’d + into the room and took their seats for I suppose 15 minutes. They were + then serv'd with fresh bread and in a few minutes + after individually shook hands with us and bade us farewell, some of them + saying to us that they were very sorry Rachel was taken away but en- + couraged us to bear the trial patiently for such things must happen to + the white people as well as the Indians.

+

+ Cornplanter lived down the river about 12 miles and he came in a few + days to see us. his countenance mani- fested him to be a true + sympathizer. he said he was very sorry for what had happened among us + and hoped we would not be discourage for this was the first since the + settlement was made among them and that such tryals would be the lot + of white folks as well as Indians. he took leave of us with tears in + his eyes.

+ + +
+ + + +
+
diff --git a/static/xml/SW_WH1793.xml b/static/xml/SW_WH1793.xml new file mode 100644 index 0000000..545b880 --- /dev/null +++ b/static/xml/SW_WH1793.xml @@ -0,0 +1,3046 @@ + + + + + + + + + + + + + + + Wm. Hartshorne's Journal of Journey to Detroit 1793: Electronic + Version + + Friends Historical Library of Swarthmore College + + TEI Markup done by + Conor Heins + Emma Remsberg + + + ca. 221 KB + + Friends Historical Library of Swarthmore College +
+ 500 College Avenue + Swarthmore, Pennsylvania + 19081 + United States of America +
+ +

This work is the property of the Friends Historical Library of Swarthmore + College. It may be copied freely by individuals for personal use, research, + and teaching (including distribution to classes) as long as this statement + of availability is included in the text. It may be linked to freely in + Internet editions of all kinds, including for—profit works.

+

Publishers, libraries, and other information providers interested in + providing this text in a commercial or non—profit product or from an + information server must contact Swarthmore College for licensing and cost + information.

+

Scholars interested in changing or adding to these texts by, for example, + creating a new edition of the text (electronically or in print) with + substantive editorial changes, may do so with the permission of Swarthmore + College. This is the case whether the new publication will be made available + at a cost or free of charge.

+
+ 2014 + Hartshorne_1793 +
+ + Native Americans and Quakers: Electronic + Collection + + + + + Friends Historical Library of Swarthmore College + Journals + Mss003/152 + + +

1 vol.

+
+
+
+
+ + + + +

The Hartshorne journal is housed at Friends Historical Library, on the campus of + Swarthmore College. During 2014 staff of Friends Historical Library and + Swarthmore College students began a project to encode seventeen journals which + document interaction between Quakers and Native Americans in New York State and + Ohio between 1793 and 1806.

+
+ +

Spelling and puncuation are rendered as close as possible to the original.

+
+
+ + Original written in 1793 + + English + + + + + Quakers -- Ohio + + Church and state--Ohio + + Indian reservations + Indians of North America--Missions + + Philadelphia Yearly Meeting of the Religious Society of Friends + Quakers--Pennsylvania--Diaries + Quakers--Political activity + + Society of Friends--Missions + Voyages and Travels + + + + + +
+ + + + + +
+ + +

On First Day the 4th of the 5th Mo 1793 at 9 + o'clock in the evening left New York in order to attend the Treaty to be + held with the Indians at Sandusky, near + the West end of Lake Erie.

+

Our company who were going the same rout consisted of Jacob Lindley, William + Savery, + Rich'd Hillary, a young Englishman, John Hackenwelder, a Minister among the + Moravians, Dr. William + McCoskry, and Captain Scott, Commissary to the + Commissioners. We had an indifferent passage up the river, part of the + way being in the Night, and arrived at Albany on the 8th, about 5 in the morning.- Albany appears to be a place of considerable + trade, some of the Houses are well Built, the streets mostly paved, + but some of them very narrow and irregularly laid out -- here the Low + Dutch Language is generally spoken, and the manners of the inhabitants + not esteemed very pleasing. At Albany we + found General Lincoln, one of the + commissioners, and ChS Stover, their Secretary -- upon our arrival with + the Stores, General Lincoln was desirous + of going immediately to Schenectady, and + with considerable difficulty, and many hours delay, at length procured + a Horse and Chair, and without an Attendant, about 6 in the Evening, set + off for that + that place -- we tarried all night and + found very indifferent entertainment.

+
+
+ 9th. +

Having procured Waggons we left Albany + about 8 A.M. and went to Schenectady + were we arrived about 11 -- Schenectady + lays about l6 ½ miles N.W. from Albany, + is a pretty well built handsome inland Town, a place of con-siderable + Trade, being the carrying place between the Mohawk and Hudson's Rivers -- + here, as at + Albany, the language is Low Dutch. – The + Land between Albany and Schenectady is Sandy & poor, Timbered + chiefly with Pine.- At Schenectady we + found prepared for us Eight Boats or Batteaux, Six for the Baggage and + Stores, that would carry about a Ton and a half each, and two larger + with Awnings for the passengers: We embarked in our Boat about 4 P.M. + and proceeded seven miles up the Mo-hawk + River to Mabee’s, where we lodged.

+
+
+ 10th. +

We proceeded up the River 15 miles & encamp’d near the remains of old + Fort Hunter; two or three miles + below which we passed by the place formerly the residence of Sir William Johnson – We found the stream this + day very rapid – the Land on the Banks of the River between this & + Schenectady being very beautiful and + fertile – the high Land at a distance appearing more rough and + uncultivated.

+
+
+ 11th. +

Embark’d about sunrise, with a fair Wind, and having most of the way a + gentle current, + we hoisted our sails and run 20 miles + up the River to Col. Fry’s, where we + dined, a few miles below we pass’d by a place call’d Fort Plane, where is a handsome Worship House and + other good Buildings –- After Dinner proceeded 8 miles to Nellis’s + Tavern where we lay all Night.- At this place were inform’d we were + but 15 miles from the Waters of Susquehanna, and about 40 from Delaware - + + Dutch- Our way this day being through a most beautiful and + fertile country -- the Inhabitants between this and Schenectady are being mostly low Dutch.

+
+
+ 12th. +

Got to the Little Falls about Noon (call'd 60 miles from Schenectady) -- here is a carrying Place of + about one Mile -- the Falls altogether are about 40 feet, preparations are + now making to render them navigable by Locks -- along these Falls are + fine mill seats, on one of which John Porteous + Esqr has erected a very good Grist Mill & saw Mill -- + Jacob Lindley and myself were kindly + entertained by Major de Zeng, superintendent + of the Canal business at this place.

+
+
+ 13th. +

Got our Boats goods, &ca. above the Falls and proceeded up the River + about 6 miles to a place call'd Fort Herkimar, or + the German Flatts -- The Country hereabout being very + very beautiful, and has the appearance of + great fertility -­ the inhabitants chiefly the descendants of Germans + by whom the high Dutch Language is mostly spoken.

+
+
+ 14th. +

In our progress this day we found the Country but thinly inhabited, but we + were informed the number of settlers were rapidly increasing + principally by immigration from New England and there is every reason to + believe that in a few years it will become well cultivated and + plentiful -- in the evening we stopt at Fort + Schuyler 24 miles from Fort + Herkimar.

+
+
+ 15th. +

After breakfast several of us went 4 miles up the River on foot to + Whites Town, the residence of + Arthur Breese, to whom I had letters -- + it is quite a new settlement but has the appear-ance of becoming a + place of note, being situated in a fast improving Country, and has + already in it large Stores, and the finest Pot Ash works that we have yet + seen -- at 4 P.M. stopt at Baron + Steuben's Landing on the North side of the River, from which to + his House we were inform'd the distance was 7 miles and 9 to + Fort Stanwix.- At 7 in the evening + arrived at the Carrying Place at Fort + Stanwix.

+
+
+ 16th. +

The situation of Fort Stanwix, (although + upon a 1evel plain, almost surrounded by low Marshey + Land), must be very much elevated, as + it lays about half way between the Mohock & + Wood Creek, the first taking an eastern + course to the sea, the latter running Westerly to the Lakes.­ We were + inform 'd a Town was laid out near the old Fort, and that preparations + ware making to erect Buildings.- a Canal is intended to be out perhaps the + ensuing Summer from the Mohock to + Wood Creek.- The price of Land on + from the Mohock from the + German Flatts to Fort Stanwix we were told was from 2 Dollars to + 20 pr Acre, according to the quality and State of cultivation.- The course from + Schenectady to Fort + Stanwix, I suppose to be about W.N.W., distance by water + about 120 miles.- this day got our batteaux &ca. over to Wood Creek-- Wood + Creek at this place being no more than a shallow Brook + of about 10 or 12 feet wide.

+
+
+ 17th. +

About 7 this morning, having previously hoisted the Gates of a Mill Dam a + little above the batteaux floated down the Creek,- One Waggon Load of + Goods, and another with passengers, going by Land down to Canada Creek -- 4 miles below + Fort Stanwix is the remains of Fort Bull, opposite to which on the South side + of Wood Creek is the N.E. corner of the + Oneida reserve seven + seven miles below Fort Stanwix is Canada + Creek opposite to the mouth of which, on the South side of + Wood Creek is the remains of Fort Ricky -- the Land between + Fort + Stanwix and Canada + Creek is low & marshy, much inferior to that on the + Mohock -- The Timber consists of large + *Maple, Birch, Beach, Pine &ca., no Oak or Chestnut as yet to be + seen.– at 6 in the evening encamped at a place call'd the Oak Orchard, 18 + miles by water from Fort Stanwix.- here + is a high spot on which are a few Oak Trees – the Land below + Canada Creek appears much better than that + above -- the Timber, Maple, Butternut, Poplar, Beach, Ash, Elm, Lindon + (or Bass Wood), and some Oak -- very little Pine or Hemlock.- On the + Banks of the River are considerable quantities of wild Hops, equal to + any in the Brewing business.

+
+
+ 18th. +

About 6 A.M. embark'd and proceeded down the Creek to the Oneida Lake, being about 18 miles -- the Land on + the sides of the Creek being much the same as that below Canada Creek.- The Course from Fort Stanwix to the Mouth of Wood Creek on the + Oneida Lake, I suppose to be about W.b.S., + the distance by water 36 miles, and by Land about 18 miles. - About 2 + P.M. the Wind blowing fresh to the Westward, we pitched our Tents on the + Bank near the Mouth of Wood Creek -- Here + we were

+

*N.B. Whenever I speak of Maple sugar Maple is meant.

+ +

visited by Col Lewis, Beach Tree, and + Captain John, three chiefs of the Oneida + Indians -- a very sensible speech was delivered by Beach + Tree, a grave old man, in which he congratulated + Gen'l Lincoln on his arrival, and express'd + his hearty concurrence with the Commissioners in the object of their + mission, saying he was an old Man and very near the Grave, and as the + Work of peace was a good work, the few remain-ing Days he had to Live + should all be spent in the promotion of it.- Captain + John made a short speech to the same effect, and also + express'd his particular satisfaction in seeing a number of Friends on + their way to the Treaty.- Wood Creek runs + into the Oneida Lake near the East end, + the Land upon the N. side appears low and level, the Timber Pitch Pine + intermixed with Oak and other wood, the soil whereon we encamp'd sandy and + poor.-On the south side the Country wore a more pleasant & fertile + appearance with a range of high hills at a considerable distance to + the South East, from which to the Lake, the Land appeared well + Timbered and level-- It falling calm in the evening we struck our + Tents and embark'd about 7 and proceeded down + down the Lake,- a fair Wind springing up about Midnight, we arrived + about 4 A.M. at the entrance of the Onandago or Oswego River, near the + remains of Fort Brewerton--our Passage + being all the way in the Night can give no further description of the + Lake–-the Course from the mouth of Wood + Creek being about WbN., the distance 30 miles – the + width of the Lake being from 7 to 9 miles.

+
+
+ +

+ 19th. Left Fort + Brewerton about 7 o’clock in the morning and proceeded with + the current 18 miles to where the Seneca + unites with the Onan-dago River, at a + place call’d the three points, here we found a settlement, stopt and got + our Dinners –- the Land on both sides very low, some appearing good, + other but indifferent –- the Timber Oak, shag bark Hickory, Maple, + Ash, Beach, Birch, Pine &ca.- about 4 P.M. proceeded down to the + Falls of Oswego, and encamp’d on the + North side near the Falls.- We have found plenty of Fish ever since we + enter'd the Onondago River -- saw Cat Fish + at Fort Brewerton that would weigh 15 + to 20 lb.- and a very good Fish they call Black Bass. --at the Falls + we purchased of some Indians very excellent Salmon –- The River at the + Falls is about 200 yards wide, and the Fall over the Rock + about 8 feet perpendicular – the Course of + the River at the Falls about N.N.W. –- The Banks of the River higher + near the Falls than at the entrance of the River – on the South side + the Land appears fertile, and the banks about 40 feet high, on the N. + side the bank not so high nor the land so good.

+
+
+ 20th. +

Drag’d our Batteaux, without unloading them, about 60 yards on the Land, + and launched them into the River just below the Falls, from whence to + the distance of about One Mile, the River is very Rapid and not without the + appearance of danger – we found several other Rapids in our way down + to Oswego Fort, where we arrived about 2 + P.M. – the distance from Fort + BrewertonI think about 36 miles by water. – Oswego is pleasantly situated on a high point + on the East side of the River, having the Lake to the North. – We were + kindly entertained by Capt. Wickham the + British Commander, during the few hours we staid, with whom we dined – + having no tidings of any Vessell to carry us to Niagara. General Lincoln + determined to proceed on in our Batteaux, accordingly it being a fine + Calm afternoon, about 4 P.M. we went out upon Lake + Ontario, and about 7 pitch’d our Tents upon the Beach + about 15 miles from Oswego.

+
+
+ 21st. +

It being a fine calm morning about 8 o’Clock embark'd, and in the evening + en-camped at a place call'd the Apple + Boom, a good harbour for Boats, about 40 miles from + Oswego.- about 30 miles from Oswego on the south side of the Lake, is + Great Sodus River a good harbour for + Vessells.

+
+
+ 22nd. +

Rain last night - in the morning a fresh Breeze about West which prevented + our moving untill about 4 P.M. when we again Launch'd our Boats and + proceeded about 7 miles, then landed and encamped on the Shore.

+
+
+ 23rd. +

About 5 A.M. embark'd and went 6 miles, then landed and got breakfast, in + the mean time a fair Wind sprung up which we, hoisting our Sails, made + use of - about 10 A.M. opposite the Mouth of Genesee + River (here we saw a House, being the only settlement we + discovered on the Lake) which is call’d 65 miles from Oswego – 10 miles to + the Westward of Genesee is Braddock’s + Bay, where we stopt to dine – this appear’d to be the most pleasant spot we + have as yet found upon the Lake – on both sides the Creek fine Meadows + and the upland has the appearance of fertility – The Timber chiefly Oak, + with some Chesnut Hickory and Maple.- The Bank of the Lake from Oswego + to Braddocks Bay is mostly low, and level, not to exceed 40 feet in the + highest places, + --the Timber chiefly Hemlock, Maple, + Birch, Beach &ca.- After dinner again proceeded on our Way, and + about 8 P.M. encamp'd at a place called the Oak + Orchard, being about 50 miles from where we lay last night + & 40 from Niagara.

+
+
+ 24th. +

About 8 A.M. embark'd with a fair Wind which encreas'd and blew hard about + Noon, we were obliged to Land at a place call'd 18 mileCreek.- The + Land from Braddocks Bay to this place very low and swampy. - here we + found a fine pleasant Bank 20 or 30 feet high, the soil tolerable good, + covered chiefly with Oak Timber - while at this place we saw two Schooners + pass by which we supposed were from Kingston, on the St.Lawrence, bound to Niagara - The wind continuing to blow hard we + pitch'd our Tents.

+
+
+ 25th. +

About 1 A.M. it being Calm, we again moved forward and about 6 arriv'd + at the Fort of Niagara - the shore, the + last 18 miles, being very pleasant, a level flat Bank about 20 feet high - + the Timber which we take to be Oak appearing very tall and fine. - The + distance from Oswego to + Niagara as we coasted it, along the south side + side of Lake + Ontario, being reckoned 160 miles - Niagara Fort is very pleasantly situated on a high point + of Land, having Lake Ontario on the North, + and the Gut, or Niagara River on the + west.- After having refresh'd ourselves at a Tavern in the Garrison, where + the entertainment was but indifferent, and the Charge very high, we + cross'd over the River to the New Town of + Newark, Col. + Pickering having previously engaged a House, wherein we + could spread our Mattrasses, and Cook our Victuals. - when we landed + at Niagara we found a Vessell with her + Sails loose, and just on the point of sailing for Oswego, in order to bring + us to Niagara

+
+
+ 26th. +

- First day - Remained all day at New-ark, which is situated nearly opposite to the + Fort, the River, or Gut, between them being about three quarters of a Mile + wide, the Town con-tains about 20 houses, and others building – the + Land in the vicinity but indifferent, much inferiour to that near the Fort + – at this place we met with Governor + Randolph and Col. + Pickering, the other two Commissioners who, with General Lincoln, the Secretary & Rich’d Hillery are entertain’d by Governor Simcoe.– At our arrival here we were + inform’d the Indians + Indians would not be ready to attend + the treaty before the last of next month.

+
+
+ 27th. + +

In the morning before breakfast had a Visit from Governor Simcoe, who had some Conversation with Friends + respecting the Militia Laws, and appeared very desirous that they might be + so mo-delled in this Government as to be as little oppressive as + possible - about 8 A.M. embark'd in our Boats and at 11 Landed at the + Kings Stores 9 miles from + Niagara - the Banks on both sides, all the + way up, being high and steep, and the shores very bold, so that there + are but few places wherethat are convenient for Landing - to + this place the River is navigable for large Vessells - here in the + afternoon we had the satisfaction to meet with our Friends John Parish, Joseph + Moore and John Elliott, + who came from Philadelphia in Company with Govern’r + Rand olph & Col. Pickering - Our Baggage, Stores, + &ca. were deposited in the Kings Stores, and we pitch'd our Tents + upon the Hill above the Landing, a number of soldiers lay in Huts on the + low grounds below, who are very sickly, numbers dying daily with the + Dysentery.

+
+
+ 28th. +

Our small Batteaux were all dis-charged and sent back to Schenectady - about + about 11 this morning we were visited by + Govr Simcoe, Govr + Randolph, Col Pickering + &ca.-Governor Simcoe kindly offered us + the use of his House, which stands empty among the Soldiers Huts at + the foot of the Hill, but it being an unhealthy situation, we acknowledged + his kindness, and abode in our Tents - The poor sickly Soldiers were + also removed from this unhealthy spot, and encamp'd on the Top of a + Hill, about half a Mile from us - this afternoon Jos. Moore & J. Lindley + left us in order to visit some People in the Neighbourhood.

+
+
+ 29th. +

Steady Rain the greatest part of the Day - some of our Company went down to + Navy Hall to visit the Commissioners, where it was concluded that + Friends, together with J.Hackenwelder and + Dr. McCoskry might be at Liberty to proceed to + Detroit, and there remain until the time + of the Treaty.

+
+
+ 30th. +

The Rain still continued all the last Night and the greatest part of this + Day - Dr. McCoskry went down to Navy Hall + and procured our passports to + Detroit - in the evening we were joined by + Jacb. Lindley, and had a visit from + William Brandt a Tuscarora Chief, who appear'd to be a + sensible and well behaved Man - he resides at a Village about 3 miles + from this place on the East Side of the River - J. + Parrish, J. Elliott and + W.Savery + removed their Mattrasses into a House + on account of the Rain, the rest of us kept in our Tents in which we + lay dry and comfortable. Some remarkable expressions which dropt from + Governor Simcoe, in the Visit, mentioned + in the Morning of the 27th, being omited in + the proper place, are in substance as follows - He said that + falsehoods had been intimated by American Com-missioners at former treaties + with the Indians, in respect to the British Government ceeding to the + United States the absolute property of the Indian Country, as the price of + Peace, - nothing more being intended by that Article of the Treaty, + than the right of preemption, which he fully acknow-ledged, and said + that the British Government had no right to purchase Lands of the Indians + within the limits mark'd out by the Treaty - He fur-ther said that the + Indians had been treated with cruelty and injustice, and that it was + his opinion they never would make peace except the River Ohio was made the boundary line. - He further said + that scandalous falsehoods had been propagated in the News papers of + the United States, respecting the British still keeping possession of the + West-ern Ports, that the only reason was the + the noncompliance of the United States + with two Articles of the Treaty of Peace - let these Articles be + complied with and the Forte shall be immediately complied with + evacuated, and, he added, with some degree of warmth - I know the disposition of your people, - what signifies + that Pidgeon House - pointing to the Fort - I + know you can take it - it is not in the strength the place that I put + my dependance, but it is in this, that we have Boston, New York and Philadelphia in Mortgage for + your peaceable behaviour. +

+
+
+ 31st. +

Rain all these 24 hours almost without intermission - J. Heckenwelder and Doctr. + MoCoskry set off for Fort + Erie in order to enquire after a passage to Detroit. - This + day J.Moore join'd us, and we were + visited by Captain Hendrick and some of + the Stockbridge Indians, most of whom + speak good English, and appear to be a civil well--behaved people.

+
+
+ 6mo. 1st. + +

This morning the Rain abated - took a walk up the River.- immediately from + the Landing the Bank rises to the heigth of more than 150 feet above + the surface of the Water, - the range of high Land, extending each way + from the River, about an East and West course - the Land below towards + Lake Ontario, being a Level plain, + the greatest part well-timbered and + fertile, many beautiful settlements on the West bank of the River + towards Newark. - the Land after rising + the Hill above, towards Lake Erie, being + also a plain level Country, equal in beauty and fertility to that below - + as far as I could discover, the Banks of the River, from the Landing + to the Falls, of the heigth, perhaps from 150 to 200 + feet,are almost perpendicular, the greatest partof solid Rock, it + being the opinion of many, that the Falls were originally near the Landing, + but the prodigious Body of Water that precipitates down them, has worn + the channel, 6 or 7 miles up to its present situation – from a high + point on the West Bank, had a view of the River down to the Lake, and + by a small pocket Compass found that Fort Niagara bore from one N. by W. – In the afternoon + Wm. Savery and myself went on Horse + Back to see the great Falls, on the way + found the country thickly inhabited, all new settlements.- The River + just above the Falls I suppose to be a mile wide, and the depth in some + places 6 or 8 feet, this prodigious body of water, conjectured to be + more than double the quantity that comes down the Falls of Delaware near + Trenton, with + amazing rapiddity shoots over the edge of + a solid perpendicular Rock, and Falls (according to + A. Elliotts account) 137 feet + - - for about a mile above the + great Fall, there is a continued succession of Cataracts, some of them + 3 or 4 feet perpendicular, this greatly en-creases the rapiddity of the + current, until it comes to the edge of the Precipice, over which it dashes + -

+

The River at the Falls is divided by a small flat Island, of perhaps 250 + yards in width, and twice that number in length - the sides and upper + end, not much elevated above the surface of the River above the Falls, + the lower end, which is on a line with the Falls, is a smooth perpendicular + Rook, I suppose of about 150 feet high.- The edge of the Rock over + which the water Falls, on the East side of the Island,, is + nearly a straight line, and the River, on that side, I suppose to be 250 + yards wide, but the Water not so deep as on the West side + where its width is the + same - the edge of the Rook, on this side, forms near + about half a Circle, the convex side + upwards --The quantity of Water + that passes on the West side, I suppose to be double that which passes on + the East side of the Island, being in the middle 6 or 8 feet deep + above the Falls.- It is said that by actual survey there is found to be 50 + feet fall in the one mile of Rapids just above the Falls, and from + thence down to the Landing, 6 or 7 miles, the rappidity of the River + renders it altogether impassable, in that distance the fall must be + very considerable, so that taking the whole into view, we may conclude, + that the surface of the Water of Lake + Erie, is nearly 300 feet above that of Lake Ontario, the distance between these Lakes being only + 36 miles.

+
+
+ 2nd. +

This being the first day of the Week we attended a Meeting appointed by + Friends, held in a Barn, about 2 miles from the Falls, at which were + gathered a considerable number of sober well-behaved People, and ended much + to satisfac-tion - in the evening return'd to our Encamp-ment, and + were visited by Cornplanter the Seneca + Chief.- This, and the preceeding day found plenty of ripe Strawberries.

+ +
+
+ 3d. +

Hearing of a Vessell laying at Fort + Erie, ready to Sail for Detroit we this morning got one of our Batteaux carried by + Land to the mouth of + Chippeway Creek two miles above the Falls, + the distance 9 miles. [Cartage of Goods 2/N. York Carr'd. J Au.]

+
+
+ 4th. +

Embark'd in our Batteaux and pushed up against a rapid Stream 18 miles to + Fort Erie, where we embark'd on + board a Kings Vessell, a schooner of about 100 Tons burthen, called + the Dunmore, commanded by Captain Ford, + whose conduct towards us was civil and obliging.- The Country from + Chippeway Creek, on the West side, up + to Fort Erie, is very thickly inhabited + chiefly by new settlers from the united States.- We had on board the + Dunmore 12 passengers in the Cabbin, several in the Steerage and + upwards of 60 Indians, of different Tribes, on Deck, which with the + Sailors, Marines etc., made the whole number on board, amount to upwards + of 90 Souls - the River from Chippeway to + Fort Erie is from l ¼ to 2 miles + wide, in which are several fine Islands - the Course nearly North and + South.

+
+
+ 5th. +

About 2 P.M.a fair wind springing up made Sail and got out into the + Lake

+
+
+ + +

+ 6th, 7th and 8th. Variable Winds, and mostly + >from the Southward with some Rain.

+
+ +
+ 9th. +

At Noon passed the Bass Islands through + the Northermost Channell, in which we found from 3 to 7 fathoms of Water.- + The Bass Islands extend quite across the + Lake about 40 miles below the mouth of Detroit + River and make a very beautiful appearance, some of + them are 6 or 7 miles in length, and we were informed are well cover'd + with Timber and of an excellent soil - the smaller ones produce + excellent Red Cedar Ship Timber - this being first Day had a Meeting + in the Cabbin, with the Passengers and some of the Chiefs among the + Indians, - which appear'd to give general satisfaction - about 11 P.M. + came to an Anchor in De--troit River - + distance from Fort Erie to Detroit 285 m---

+
+
+ 10th. +

On coming upon Deck this morning we were agree­ably surprised to find + ourselves sailing up a fine River, with Plantations of new settlers on + both sides - the father we advanced up, the beauty of the prospect + increased, and when we came within 6 or 7 miles of the Town, a sight + of the kind more pleasing, I think I never saw.

+ +

The Country here was first settled by the French, it is said above one + hundred years ago, whose decendants, in a general way, are still the + Proprietors, and by whom that Language (with but few exceptions) is only + spoken. - The front of each Lot on the River being but narrow, is + almost wholly taken up with Buildings, Gardens and fine thrifty orchards, + so that it has almost the appearance oft one continu­ ous Village quite + up to the Town - we sometimes could count four or five Windmills in + sight at once, and a pretty large Romish Chapple stands on the East + side of the River, about 4 miles above the town.- about 9 A.M. came to an + Anchor before the Town of Detroit, - the + distance from the mouth of the River 18 miles - course N b E - Detroit + stands on the west side of the River, is a compact dirty little Town, + containing about 100 small Houses, entirely surrounded by a picquet + Wall, having several Gates which are always shut at 9 oClo. - The Merchants + of this place carry on a great Trade with the Indians, 8 or 10 Vessells + being em-ployed by them on the Lakes, who sail from Fort Erie in a Circuitous rout, sometimes to the + dis-tance of above 1000 miles to the Westward.

+
+
+ + 15th. +

Upon our arrival at Detroit, after some + enquiry, took up our quarters at the + house of Matthew + Dolsen, who keeps a good table and an orderly House, - we + lay upon our own Mattresses, and pay 4/ per day each, for our diet, + exclusive of Liquor - Imported Goods are double the price they are in + the United States, and Country produce nearly as high - a good calf is + sold for £4.10 N.Y. Curr., a Cow for £15.-, - Wheat 12/ per Bushel, - + Salt 60/ per bushel. Soon after our arrival went out to visit Captain John + a Chief of the Mohawks, and other Indians, + who were our fellow passengers on board the Dunmore, we found them + sober, and had some friendly conversation with them, endeavoring to + inform them of our motives of leaving home, with which they seemed well + pleas'd, and assured us of their hearty friendship - but the next day + exhibited a very different scene - the War dance­ Captain John and + most of his party were drunk - they were almost naked and frightfully + painted which with their Yells, musick and Tomahocks afforded an + entertainment, by no means pleasing - before they came to the door of + our Lodging, Captain John, who did + not join in the Dance, came forward, to + assure us, that no injury was intended - We were obliged to give them + a little Cyder and Tobacco. - It is a regulation in this Garrison that no + Indian is allowed to remain within the Picquet all night,- on the 13th + Captain John, and his party, set off to attend the great Council of + Indian Tribes, to be held, previous to the Treaty, at the Rapids of + the Miami River.

+
+
+ 14th. +

This morning breakfasted with Matthew + Elliott, Deputy superintendant of Indian Affairs, and on + our return went to see a party of Chippeways, who had just came down from Michillamackanac, and were on their way to the great + Council --we found them drunk--at first they shook hands with us, but + soon grew furious, calling us in their way, long knife, and on our + going away, two of them came after us, and with furi-ous countenances, + and violent gestures, insisted upon our returning, which we declined + doing, and walk'd away - we were afterwards informed, by a person who + accidentally happened to be present, and understood their Language, + that they said they wanted us to go back that they might take our scalps - + One of the two that followed us had his face painted black, + his head decorated with black feathers, + and a Scalp hanging at one Ear.-- this day we were invited to Dine + with the officers of the 24th Regiment, who treated us with great + politeness, and hospitality, there was near 15 officers at Dinner besides + their guest.

+
+
+ 15th. +

+ Captain Hendrick, and his party, went off + towards the Miami - Captain Hendrick appears to be the most thoughtful and + civilized Indian we have met with, and almost the only one that we + have not seen drunk since we came to this place - we this day had a + visit from some of the + Wiandots, who reside not far from hence, they + appear to have some knowledge of our society, and werevery + friendly.

+
+
+ 16th. +

This morning Captain Ford sailed for Fort + Erie - by him I wrote to New York - at 10 A.M.our + friends had a large satisfactory Meeting at Detroit, at which many Officers and Soldiers + attended- in the afternoon at 4 oClock had another Meeting about 6 + miles down on the east side of the River, at which were gathered a + considerable number of well­behaved People - This day the Chippeways went on to the Council, at their + departure, they sang the War Song, with great shouting etc. - in the + evening arrived the Snow Chippeway from + Fort Erie, in + this Vessell a number of the Six Nation + Indians came Passengers.

+
+
+ 17th. +

Accounts are circulating here, and generally believed, that General Wayne has advanced his Army, a + considerable distance from Fort + Washing-ton, toward the Indian Country - this, it is + said, adds greatly to the jealousy and rage of the Indians - several + Tribes, on the strength of these reports, we are inform'd, are return'd + back to their Towns - the circulation of these reports, which is + generally done by deserters from the American Army, will, in all + probability, protract the time of holding of which the + Treaty made , if not totally defeat this desirable event - + some in this place have thrown out hints as if the Commissioners + already were began to be apprehensive of personal danger, and + meant not to advance any further. - John + Parrish, Joseph Moore, and + John Elliott having some days ago + dined with Col. England, the Commandant, + Jacob Lindley, W.Savery and myself, were this day, with much + politeness, kindly entertained by the same Gentleman.

+
+
+ 18th. +

Much pestered with visits from the Indians whose chief motives for these + civilites, is to get a little Rum, but in this they are disappointed, + we having come to a resolution to give them none, but put them off with a + little Tobacco etc.

+
+
+ + + 19th. +

Cross'd the River with J. Parrish, J. Lindley, + J. Moore and J. + Elliott, (W.Savery being + unwell) and went down about 6 miles on the East side - the good Land + on the banks of the River on both sides does not extend above a mile + back, beyond that it is low and marshy, little or none of it cultivated. - + saw some beau beautiful pieces of wheat, fine orchards, + full of fruit, Cherries ripe, and Cucumber vines just beginning to + run.- The Land being rather low, their Indian corn is very short, about 8 + or 9 inches high in general. - We dined at Fredk. Arnolds, one of the society of the Dunkards, + who a native of Germany, who formerly lived in + Pensylvania, he inform'd me he purchased the place he now lives on, an old + French settlement containing about 100 acres, with a tolerable good + House, Barn and Orchard, for 300 N.Y. Currency. ­ He also let me see his + Certificates, from Government, for Lands granted to him and his + Children, by which I find they (the Certificates) are not, in any shape, + transferable, either by sale, assign assignment, or Donation, + and that the Titles are to be given upon such Conditions as may be the Kings pleasure. - At 5 P.M. had a + solid satisfactory Meeting with a few of the Inhabitants, at the House of + John Mesemer, + where we tarried all night.

+
+
+ 20th. +

We proposed returning to Detroit this morning, but the wind coming a head, + and blowing hard, prevented us - we went to + Francis Cornwalls, a Connecticut Man, + were we dined, and J.M. and myself, were + kindly entertained at his house all night.

+
+
+ 21st. +

Wind still at N.E. with much Rain and very cold for the season - the + transitions from heat to cold, in this country, being very frequent, + and I think to a much greater degree than in New Jersey - about 5 in the + afternoon it began to clear away, but the wind still against us, Jacob Lindley and John + Elliott left us and went on foot up to Detroit.

+
+
+ 22d. +

A fine pleasant morning - after breakfast we embark'd in our Canoe, and + with the assist-ance of Fred Arnold, + pushed up against the current to Detroit + - A young Canadian we met with at F. + Cornwall's inform'd us he had been several voyage's in the + N.W. Trade, that they generally left Montreal in the begining of the + 5th month, and that, without any stop but making the best + of their way, it took them so late in the fall, that the Rivers were often + frose, before they got to their Journeys end. - the Indians they met + with there were mostly a harmless honest People. Their + Tents and dress being chiefly + mostly made of Buffaloe Skins - he says the distance they + went with their Canoe's taking the Course of the Lakes and Rivers was + more than 2000 Leagues from Montreal. - this evening we were all invited to + sup with the officers at the mess Room.

+
+
+ 23d. +

+ Some Indians of the Chippeway Nation came + in from the great Council at Miami who bring accounts, as we are told, that + the Indians are very backward in gathering, few or none from the S.W. + having yet come in, owing, it is said, to the injudicious movement of + General Wayne. - Matthew Elliott gives it as his opinion, that the treaty + will not com-mence before the middle of next Month - at 10 this + morning had a Meeting in the Kings Sail Loft, in which some experienced + their strength to be renew'd.

+
+
+ + 24th. +

Various are the reports that we daily hear, some of them exceedingly + discouraging, insomuch that some of our Friends of this place, in the most + serious manner, advise us not to think of attending the Treaty.- This + day J. Hacken­ welder, with a number of + his Brethren, the Moravian Indians, came + to the Garrison from their settlement on the River La Trench, about 70 + miles from hence, by them we understand that the said Indians + Indians to the number of 140, were + much distress'd for want of provisions, occasioned by their being + frequently removed from place to place, since their first forcible + removal from Muskingum - their + approaching Crops, they say, are very promising, but their main + dependance, in the meantime, is upon such vegetables as the Fields and + Woods afford, + , having but a very poor chance of hunting in their new + settlement - Friends have it in contemplation to afford them a little + assistance - the price of Indian Corn here, we are inform'd is 10/ per + bushel.

+
+
+ 25th. +

This morning went down to the wharf to see a Wolf that was kill'd last + Night upon an Island about 3 miles from this place, it had by some + means got there last Winter in the time of the Frost, and had done a great + deal of damage, insomuch that the proprietor had offered a Reward of + twenty Dollars for killing him. - he was much larger than a large Dog, + of a grey or grisly colour. - his legs were as long as those of a large + Deer, his Tail long and tapering, thinly covered with long hair, and + his head in shape between that of a Dog and Fox.

+ +

this evening morning arrived three large bark Canoes, with + Twenty Eight Chippeways, from + Michillamackanac, on their way to Miami.

+
+
+ 26th. +

This morning sail'd the Snow Chippeway for + Fort Erie, in whom went passenger + Richd. Hillery, by whom I wrote to + New York.

+

Friends agreed with M.Dolsen to supply + the Moravian Indians with Corn and Flour, + to the value of one hundred Dollars, part of which was this morning + delivered, for which they appear'd to be very grateful.

+

Dined with John Askin Esqr., a Merchant + of this place, by whom we were very agreeably entertained. - he, in some + measure, corrobe-rated the account given by the Canadian on the 22nd + respecting the North West Trade - he says that from a place called the + Grand Portage, at the upper end of the Lakes, they travel above 2000 + miles to the Westward, in small bark Canoes so light that two Men carry + them - all the pro-vision, allowed to each Man for this + long voyage, being no more than one bushel of Indian Corn, that has + been boil'd in Lye and hull'd + and a little greese* (of what kind I know + not) to mix with it.- this stock of corn is reserved for extraordinary + occasions when they can neither get Fish or kill anything with their + Guns.- the Labouring People, in these long and tedious journeys, are + all Canadians, who eat their Fish and Flesh without either bread or + and Salt - at Dinner we had fresh Fish brought in a + Sloop, six days from Lake Superior, they + were the White Fish and Salmon trout, they would weigh about 6 lb. each, + both exceeding good, but the White Fish, I think, rather preferable - + in the afternoon arrived the Sloop Felicity from + Grand River on Lake + Erie, in her came a number of Indians Passengers + - in conversation with M.Elliott, he gave + it as his opinion, that four weeks would yet elapse before the + commi Treaty began.

+
+
+ + 27th. +

had some conversation with Capt Drake, an + intelligent Man, who has for several years navigated a Vessell on the + Lakes, by him was inform'd that from Detroit to the entrance of Lake

+

~~~~~~~~~~

+

*Hogs Lard and Tallow mixt together

+ +

+ Lake St.Clair was about 6 miles, the + length of said Lake 21 miles, from the N.W. end of + Lake St. Clair to the entrance of Lake Huron, through a very beautiful River, 15 + Leagues, from the lower end of Lake Huron + to the rapids of St.Mary's (the entrance into Lake + Superior), 72 Leagues, at the rapids of St.Mary's there + is a portage of a mile and a half, when goods are again shipped in large + Vessells, who carry them 100 Leagues up Lake + Superior to what is called the Grand Portage, from whence + they go in small Canoes, to the North west.- He says that there are + above One thousand Men constantly employed in the N.W. Trade above the + Grand Portage. - He further says there are many mistakes in the drafts + heretofore made of the Lakes, they not being done from actual surveys, + but principally from the vague reports of Canadian traders &ca. - + that the tales that have been told respecting Thund Thunder + Bay in Lake Huron is altogether a farce, + that in the course of many years, which he has now sail'd upon + that Lake, he never + was sensible of more thunder there, than + at any other place on the Lake - that the length of Lake Superior ie much less than generally + represented, and that from two opposite points, about the middle of + said Lake, the width does not exceed 70 miles.

+
+
+ 28th. +

Very warm and sultry with Thunder and rain. - about 10 at Night five + or six Guns were fired just without the Pickets, which, at first, as we lay + in Bed, alarmed us not a little, but we were desired to make ourselves + easy, as, in all probability, it was nothing more than some people who + had been watching for Wolves, or shootingat + Indians who were robbing Cherry Trees

+
+
+ 29th. +

Visited by a Chief of the Wiandot Indians + who was sober and intelligent, he spoke respectfully of our Society, and + said that many Belts of Wampum, and other mem memorials of + ancient Friendship received from them, were still carefully preserved + by their Nation. - expressed the satisfaction he + felt in seeing so many of the people + call'd Quakers, and said, as the Great Spirit had been with them, + brought them so far - through the Wilderness, and preserved them all + in good health, so he hoped, he would still continue to be their rotector + through every danger, and carry them safe home.

+

being in Company with Nathan Williams, a + sensible Man who had formerly been a Trader, and well + acquain acquainted with the Indians - he express'd his + apprehensions on our account, and openly gave it as his opinion, that + if we attended the Treaty, we should either be kill'd, or detained as + Prisoners.

+

were informed that the Guns we heard last Night, were + fired at Wolves, by People who were watching for them, near the + Carcases of several dead Sheep which were kill'd by them + the Night before

+
+
+ 30th. +

First day - early this morning had a Visit from the Blind Chief, a head Man among + among the Wiandots, with several of his attendants, they were sober, + and what is remarkable, neither these Men, nor those that visited us + yesterday, made any request for Rum. - at 10 A.M. had a Meeting in the + Sail Loft, and another at the same place at 5 in the Afternoon, at + both of which were a pretty large number of Soldiers, and Towns people, and + a few of the officers of the Garrison, their conduct generally was + very commendable, and the Meetings, in the main, solid + and satisfactory.- In the evening there was a Marriage at our + Lodgings, - the Young Man is a settler upon the River La Trench, and a + Nephew to our Landlord + M.Dolsen, the Young Woman is a Native of + Virginia who was taken a Prisoner by the Indians, from whom she made + her escape. - the Ceremony was perform'd by + J. Arken Esqt, and the whole decently + condu conducted.

+
+
+ + + 7 mo. 1st. + +

was an Eye witness of a Funeral in the Popish Style + + -- This afternoon arrived the Snow Ottaway + from Fort Erie, by this Vessell, we + learn, that the day before she sail'd, an Express came to the + Commissioners from Philadelphia, and another from Fort Pitt, - various are the reports here, some + favourable, others exceedingly discouraging, but having no accounts from + the Commissioner we re anxiously waiting the next arrival for further + intelligence. - The Ottaway brought a great number of Indians from + Fort Erie, all of whom were whom + were Landed at the Mouth of the Miami, except 17 of the Oneida + Nation, whom Colt + Butler would not permit to be left landed there, + alleging they were in danger of being killed by the other Indians.- We + had a Letter from a person, who happened accidentally to be in company + with Colonel Butler, he inform'd us + that he heard him say, that, if the demands of the + Indians were not complyed with, it was his opinion, that the + Commissioners, and the whole of their Retinue, would be massacre'd - + we also had a Letter from Col.McKee, the + British Agent, in answer to one wrote him.- he dates his Letter from the + Foot of the Rapids of the Miami River, and + promises to give us the earliest intelligence of the time when the + Treaty will likely commence

+ +

The following Account is taken from a Quebec Almanac, for the Year 1792

+ +

The Names of all the different Indian Nations in North America (hitherto + discover 'd ) the situation of their Countries, with the Number of + their Fighting Men.

+ + + + The Choctaw or Flatheads,The + Natches...The Chickesaws... + on the Mobile & Mississipe + 4,500150750 + + + + The Cherokees... + So. Carolina + 2,500 + + + The Catawbas between No. and So. + Carolina + + 150 + + + The Piantias, a wandering Tribe on + both sides of the Missisipi + + 800 + + + The Kasquiriasguiae, or Illinois in + general on the Illinois River, & between the Ouabache, + & the Missisipi + (some say, 40) + 600 + + + The PiankeshawsThe + OnachtenonsThe Kickapous + On the Quabache + [100]...250 250...400 500...300 + + + + The Shawnese on the Siotta + + 500 + + + The Delewares on the W. of the + Ohio + + 300 + + + The Maimis on the Miami river falling + into Lake Erie & the Miamis + + 350 + + + The Upper Creeks back of Georgia,The Middle + Creeks behind West FloridaThe Lower Creeks in East + Florida + + 4000 + + + The Caouitas, on the East of the River + Albamous + + 700 + + + The Arkansas on the Arkansas River + fallinginto the Mississipi on the West side + + 2000 + + + The Anjuer, north of the + Missouri + + 1000 + + + The Paddonias West of the + Mississipi + + 500 + + + The White Panies,The pickled or + prickles Panies + So. of the Mississipi + 20002000 + + + + + Carried forward... + 24,350 + + + + + + brought forward... + 24,350 + + + The Canves...The Osayes...The Grand Eaux... + South of the Missouri + 1,600,600 1000 + + + The Missouri on the River + Missouri... + + 3,000 + + + The Sioux of the Woods The Sioux + of the Meadows + towards the headsof the Missippi + 1800 2,500 + + + The Blancs Barbus, or White + Indianswith Beards + ... + 1,500 + + + + The Assiniboils + The Christineaux + far North, near the...Lakes of the
 same name + 1,5003,000 + + + + The Quisconsins, + on
 a River of that Name thatfalls into the Missisippi on the + east side... + 550 + + + + The
 Mascontens...The Sakis...The
 Michekonakis + South of Puans Bay... + 500 400 250 + + + The Folle Avoine,The + Puans... + or the wild oat Indians...(near Puans Bay)... + 350700 + + + + The Powtowatamis + + near St.
Joseph's River...and Detroit + 350 + + + + The Missesaguis,
 or River Indians + being...wandering Tribes on the Lakes + Huron and Superior + + 2,000 + + + The Ottahwas...The
 Chipewas... + near Lake Superior and Michigan + 9005,000 + + + + + The Wiandots, near Lake Erie + ... + 300 + + + The Six nations, or the Iroquois + on the Frontiers of
 New York... + 1,500 + + + + The Roundheaded Indians near the head + ofthe
 Ottahwa River... + 2,500 + + + + Algonquins, + near the above... + 300 + + + + + 56,450 + + + + + ... + brought forward.. + 56,450 + + + The Nipissins + + near the Ottahwa
 River... + 400 + + + The Chalas...The Amelistes... The Miemicks... The Abenaquies... + St. Lawrence Indians on the back
 ofNova Scotia... + 130550700 350 + + + + The Conawaybrunas, + near the
 Fallsof St. Lewis... + 200 + + + + + Total amount... + 58,780 + +
+
+
+ 7 mo.2nd. + +

The weather for several days past being very sultry, Our Landlord invited + the whole of our Company, viz. Six Friends, + Wm.Wilson, (Merchant from Fort Pitt & Indian interpretter,) + Doctor McCoskry, & J. Heckenvelder, to spend the Day at his Farm + about five miles below on the opposite side of the River.- We set off + about 9 oClock, taking with us provision &ca., and spent an + agreeable day under a pleasant Shade on the Banks of the River, - returning + home in the afternoon we cross'd the River, and some of us landed at + the Spring Well & walk'd home, the distance being three miles, and + the Road very pleasant.

+
+
+ 3d. + + +

Perplex'd with various reports, and contradictory opinions.- it is said, + the American A:rmy ie still advancing, and that an encampment is form + 'd, in front of + Fort Jefferson, within 30 miles of where + the last Battle was fought.- that the Indians are more & more + settled in their determination, that nothing short of + the boundary line being fixt on the River + Ohio, will ever induce them to lay down the Hatchet, - + that, in consequence of this resolution, they have sent a deputation + to the Commissioners at Niagara, in + order, if their instructions does not impower them to make such a + Cession, to prevent their taking the unnecessary trouble of coming + forward any further.- indeed, it seems to be the prevailing opinion of + the day, that there will be no Treaty at all. - A number of Philadelphia + and New York News Papers came to Colt + England by the Ottaway, some as late as the 23d of last Month, since we have + been favour'd + with the perusal of most of them - we + were sorry to find some irritating and inflamatory pieces, particularly + one, which censures the Government of the United States, for + attempting to Treat with the Indians, under British influence, ungenerously + branding the whole of that Nation with the opprobious + epithet of Cut Throats. - all the officers, that we have as yet heard + speak upon the subject, make light of it, and say, it is but little + more than what, at times, appear in their own prints - whither it is + really their contempt of such scandalous pieces, or their politeness, + which will not permit them to give us uneasiness, that makes them + appear so indifferent, is what I will not determine.

+
+
+ 4th. + +

Extremely Warm & sultry, light airs of Wind from the South West. - + Captn. Monsey inform 'd us that the + Thermometer belonging to the Officers was, in the Shade, up to 100, in + the Sun it rose to 117 degrees.

+ +

from the best information I can gather it appears that a great proportion + of the Country around the Lakes is low and Marshy, so as to be wholly + incapable of cultivation, and in many places, of great extent, almost + intirely cover 'd with Water, in which grow the Timber and long Grass, + affording shelter for wild Beasts, and Vermin, in abundance.

+
+
+ 5th. + +

Had an interview with a Young Shaw--nese + Warrior, who is lately from the Council at the Rapids - his Brother is a + head Man amongst them, and he being often with them in Council, is + acquainted with the result of their deliberations, so far as they have + come to a conclusion among themselves - he inform'd us, there are + about 1200 collected at the Rapids, mostly the Northern Indians, and 700 + of the Southern Indians, are embodied at another place, a considerable + distance, up the same River, watching the motions of General Waynes Army.­ he confirms the account of a + Deputation being sent to the Commissioners, and that the object of their + Mission was, in substance, the same as has already been noted - that + they have most decidedly come + to a resolution, to accept of no terms + short of making the Ohio the boundary + line. - Our Interpretter was formerly a Prisoner among the + Shawnese, and had been adopted into the + family of this Young Man, in the place of his Father, and in their + discourse the Indian gave him that appellation, saying, my Father, I will tell you what I know, and speak + the truth - in the begining of the World, this Land was given to + the Indians, and the White People were placed beyond the great water - + when the white Men first came to this Land, the wise old Men among + the Indians, told their People, that if they received anything of the + white Men, they would be destroyed,­ "the bitter Water was made + for white folks, but the Water of the Brooks and Rivers for, the + Indians, - but not regarding this advice, many of the Nations + Traded with the Whites, took their Hatchets, Knives and Rum, and gave + up their Land for trifles, and, according to the ancient prediction, + they have wasted away, and some of them - become quite extinct, and + the few that are remaining are driven, almost to + to where the sun sets, but they are + now determined to be driven no further, should they go to where the + Sun sets, they would all be lost forever. - The Congress must remove + their Forts, and all their People over the River, and then the Indians will + take them by the hand, and become their true friends - but should the + Commissioners meet the Indians in Council, and there pretend that they + have conquered their Country, and will not remove out of it, in that + case, the Indians will withdraw from the Council, and then, instantly, fall + upon the opposite party, and destroy them all - this is the substance + of what he said as intrepretted by Sylvester + Ash + Sylv Ash, as near as I can re-member. -- This day the Ottaway + sail'd for Fort Erie, in whom M.Elliott embark'd, to be landed at the Mouth + of. the Miami River - Thermometer, in the + Shade 102, in the Sun 123 - In the evening after having made the above + remarks, the Shawen-ese Warriour + abovementioned return'd to our + our Lodgings, being in Liquor, he + desired to enquire of the Landlord whither he could tarry in hie House + all Night, but being told that it was contrary to the regulations of + the Garrison, he seemed to be displeased, and ask'd for his Tomahawk, which + Ash had in keeping, and going up + stairs to get it, the Indian followed him, and on receiving it, said + he was Drunk, and did not know what might happen before Night - then + lifting his Tomahawk, attempted to strike Ash, who being upon his guard, seized his arm and + pushed him down Stairs - he then went up to M. + Dolsen, knock'd off his Hat, and in the Indian tongue, bid + him be Strong, and see if he could turn him out, and made a stroke, in + which the Hatchet flew off the halve. - Dolsen im--mediately seized him, turned him out of the + House, and bruized him pretty much, the Indian seeing his blood run, + and having recovered his Tomahawk, flourished it about in a great + rage, and in all + probability, had not Capt. Munsey, an officer of the Garrison, been + present, some mischief would have been done, but the + captain took away his Tomahawk, and sent for a Guard, who turn'd him + out of the Fort.

+
+
+ 6th. +

Arrived the Sloop Felicity from the + Miami River - people here are more and + more confirmed in the belief that it will not be safe for us to + attend meet the Indians at Sandusky. - this day also arrived the Schooner Nancy from + Michillamackanac

+
+
+ + 7th. +

being first day had a satisfactory Meeting, at the usual place and + time, in the Morning, and also Friends had another at 4 in the + afternoon, five or six miles from hence, at the River Rouge, at which, not being very well, I was not + present. - Captain John a Chief of the + Mohawks arrived from the Council at the + Miami River, and also two or three + + Indians of the Stockbridge Nation, + with a Letter from Captain + Hendricks, their Chief - they confirm the + accounts, already receiv'd received, of a deputation being set + down to the Commissioners

+
+
+ 8th. +

Had a visit from David Kennedy, a half + Indian, of the Mohawk Nation, who had been + Educated in Scotland, sensible well-informed Man, but too much adicted to + the vice so prevalent among the Indians, the Love of Rum, - he came in + company with Capt. John from the Council + - says he was not admited into the secret Council of the Indians, but + from what he could gather, was not without a hope that peace may be + established. - The Stockbridge Indians + return'd return'd to their Chief at the Miami, with a small supply of necessaries, afforded + them by Friends.

+
+
+ 9th. +

Captain Blue Jacket, the famous Chief of + the Shawnese, who commanded at the defeat + of General St. Clair, paid us a Visit this + morning, - he is a stout well-looking Man of about 45 years of age, Dress'd in + in a Shirt, scarlet Coat, with gold + apaulets and a Gold laced Hat, Leggins and Mockasins, but, as all + other Indians are, without Breeches. -He was very cautious of speaking + upon public affairs, said he was not the Head-Man of his Nation, but + only a War-chief, as such he had given his opinions + withthem sentiments to the Council, and now left + it with them; whose business it was, to determine as they might think + proper - said he had heard we were in Detroit, and having some + business this way, came to see us, but had nothing to say on Public + matters - he had often heard of Quakers, he said, but had never seen any of + them be-fore, and, expressing his regard for them, and satisfaction + with the Visit, took his leave. - Friends had a desire to be more + particular with him, in regard to the Objects which induced them to take + this long Jour-ney, but the Interpretter not seeming to be disposed to + gratify them in that respect, they were constrained, after expressing a + little of their desires for the Peace and wellfare of man kin + mankind, to be silent. - Blue Jacket said that should the Commissioners + & Indians meet at a Treaty, and matters like to be ac--commodated, + it was his opinion it would be two Months before the business would be + compleated. - this day sail'd the Schooner Nancy for Fort Erie, a Merchant Vessell, with a Cargo of Peltry, and + Indian-made Maple- Sugar, by this it may appear, that a greater + quantity of Sugar is procured from the Indians than is consumed in this + part of the Country,how much lower down, the Country + is is not supplied in + the same way, is what I cannot determine, but from the best + information, I am ready to think, that very little foreign Sugar, if any, + if any foreign sugar (except refined) is consumed in Upper + Canada.

+
+
+ 10th. +

Arrived the Sloop Detroit from Fort + Erie, we hear by this Vessell that the-Commissioners had taken + their passage in the Dunmore, and may be hourly expected.- The + Chippeways in which the + the Indian Deputies embark'd, had not + arrived at Fort Erie when the Detroit + Sail'd. - We are told the Commissioners are not to come to this + Garrison, but to Land, and encamp, at the mouth of the River, there to + wait the proper time to proceed to Sandusky - in the Detroit came up the Cordage for a new + Vessell, now building on Lake Superior

+
+
+ 11th. +

Dined at James Abbotts, a Merchant of + this place, we were kindly entertained, and spent an agreeable + afternoon.

+
+
+ 12th. +

Spent the Day at M.Dolsen's place on the + East side of the River.- In the afternoon sail'd the Sloop Detroit for the + Falls of St.Mary's, and about the time arrived the Sloop Saganough + from Fort Erie, by this Vessell we were + informed that the Commissioners were all on on board the Dunmore, + ready to sail, and only waiting for a Wind, when the Chippeway arrived with the Indian deputies, on + which a Council was held, the result was, that, at the request of the Indians, + the Commissioners were to return to + Navy Hall, in order that Governor Simcoe + might be present at the conference.

+
+
+ 13th. +

was invited by Wm. Baker, late of New + York, shipwright, to take a sail up the River as far as Lake Sinclair - set off about 9 oClock and had + a pleasant run up to the upper end of Hog Island, from whence we had a + view of Lake Sinclair, and return'd home + in the evening - for about the distance of 10 miles, nothing of the + kind, that ever I saw, exceeds the banks of this River for the beauty of + its prospects, - The Lots are all regularly laid out, being in front + three square Acres only in breadth, on which are the build--ings, + Gardens and Orchards.- In the afternoon of this day arrived the Sloop + Speedwell from Fort Erie, who furnished + us with intelligence from various- quarters.- we had several Letters + from Philadelphia address'd to our Company + jointly, and most of our friends had + particular accounts from their dear connections at Home. - we had also + a joint letter from Col Pickering, in + behalf of the Commissioners, with a large bundle of Philadelphia Newspapers + as late as the 6th ultimo. -- Col. + Pickering informs us they were all on board, and ready + to Sail, when the Indian Deputies arrived, who informed the + Commissioners, their business was to have a conference with them in + the presence of Governor Simcoe, this he + says will unavoidably occasion a delay of some days, if not supersede + the intended Treaty.- we are now anxiously waiting the arrival of the + Dunmore, who in all probability, will either bring forward the + Commissioners, or information that all hopes of a Treaty are + vanished.

+
+
+ 14th + +

- Being first day had a Meeting in the Sail Loft, which was large and + on + on the whole satisfactory

+
+
+ 15th. +

The Weather for these several Days past has been cool and pleasant, the + wind N.W. with a clear and serene sky­ Wheat Harvest is now begun in + this neighbourhood

+
+
+ 16th. +

Friends being a little uneasy with being so long in a state + detained in a state of idleness, waited upon Matthew + Elliott, to know his sentiments, in respect to our + visiting the Indians assembled at the Miami - he gave it as his opinion, that, as they were now + holding a Council on their own affairs, it would not be prudent, without + an invitation from them, to take such a step;but if Friends + but, as he expected to go there himself in a Day or two, if Friends + had an inclination to send them a Message, he would punctually deliver + it. - This being taken into consideration, and there being a + probability that we may not have another opportunity of communicating + our sentiments, and the motives which + which induced us to come forward, we + gladly accepted the offer

+
+
+ 17th. +

+ Captain Elliott intending this day for + the Indian Council, the following ad-dress was agreed to, and enclosed in + a Letter to Colonel McKee, who is + desired to communicate the same to the Indians

+ + + + To the Indians, assembled at the Rapids of the Miami +

Brothers,We who send you this Letter are of the People called + Quakers, and have left our homes and families in Pensylvania + and New Jersey, and taken this long Journey to see you purely from + motives of Love and good will, and to endeavour to promote + peace.- We have been now five weeks at Detroit waiting for the + opening of the Treaty at Sandusky, where we expected to have seen you all, + but as we have heard a number of your People are gone to Niagara to meet the Commissioners, we + do not know but the business may be so concluded there, as that + they may come no farther.

+

Brothers, We have brought with us an address to you from our + Brethren at home which we are very desirous of presenting to + you with our own hands, if an opportunity can be had. - it is also + in our hearts to acquaint you that we consider all Men as the + Children of one common Father, and think it our duty to Love all as + Brothers. -We believe it displeases the Great and Good Spirit + when Men injure and kill one another, therefore we endeavour to do + Justice, but when any dispute arises, we leave it to be + settled by disinterested and impartial persons, and never go to war + on any- occasion.- We have been made very sorrowful on account + of the War and bloodshed between the United States and our + Indian Brethren, and want much to see you that we may open our + Hearts more fully than we can do by writing, for we + are fully convinced that by + looking up to the Great Spirit for Counsel, all differences + may be settled without fighting and killing one another, which we + think is very Cruel and attended with many distressing + circumstances both to you and the White People.

+

Our society have experienced for more than one hundred years great + advantage and satisfaction in living Peaceably with all Men, + and are very desirous that you may enjoy the same benefits, and to + that end were made willing to expose ourselves, encounter + hardships, and spend our sub-stance to promote Peace and Love + between you and the Government of the United States.- We pray + the Good Spirit that He may put an end to the ravages of War + and unite all Men as Brethren, that by being bound together in one + great Chain of Love and friendship which can cannot + be broken, we may all seek the happiness of each other in this + Life, and be prepared prepared for + the enjoyment of + of everlasting happiness in the + Life which is to come.

+ Detroit + 7 mo 17th, + 1793J.P. J.M. J.L.W.S. + J.E. W.H. + +
+
+
+ 18th. +

Some of our Friends had an interview with a Person of the Name of Wilbank, + who- within a few days past arrived, with a Party of 26 Southern + Indians, from the back parts of the Carolina's and Georgia, at the Great + Council at the Miami, - he came from thence to this place, and a + Vessel is to be dispatched immediately to carry him down to Governor Simcoe. He says, that the Indians have + in several instances been grossly imposed upon, particularly by + Governor Blount, who by bribing an + Interpreter had cheated them out of a great extent of Country, and + defrauded them of one half the Sum, agreed upon to be paid yearly, as + as a compensation for the Land granted,- in one instance where they had + agreed to sell 50 miles square they had fraudulently put in the Deed + 80 miles - and where they had + had bargained for an extent of 10 + miles round the Town of Nashville, Governor + Blount had caused 40 miles to be inserted.- and instead + of a Consideration of 2000 Dollars yearly, he had put down but 1000 + dollars.- This being but one side of the question, we do not pretend + to Judge, but it is the received opinion here, that their errand to + the Council is, to form a Union with the Northern Indians, and make + One common cause, either in forming a Treaty, or carrying on a War. - + The Vessell (the Felicity) to Carry Wilbank to Fort + Erie, sail'd about 2 oClock:- - Yesterday a young Man going + out to look for Horses, got lost in the Woods, which are very thick + within less than a Mile of the Fort.- several 18 pounders were fired in the + afternoon in order to direct him in finding the way back, which, I + suppose had the desired effect, as I am informed he got safe home in the + Evening -- several instances of the kind have before occurred, and + sometimes the persons lost have never returned. - It is said some little + time past, two Indians were kill'd by the Wolves in the Neighbourhood + of this place.

+
+
+ + 19th. +

Having received many civilities from the officers of the 24th British + Regiment, now at this place, gratitude induces me to wish to remember + their names, which from a printed account published in the year 1792, I find to be as follows.-

+ + + + Lt.Col- + Lieutenants + Ensigns + + + Richd. England 2D + W.C.Short.D + Wm. Kelly D + + + Willm. Campbell + Wlm. Robison D. + C.Vandeleur D + + + Major~~ + Geo. Meyrick + F.J., O'Brien D + + + Captains + R. Christmas + J.C. Strong + + + John Blake + Thos. Talbot + J.R. Broadhead D + + + Robn. Neill, D + Edmd. Henn D + Thos. Spencer + + + Quin John Freeman D + Chs.S. Andrews D + Allan Billingham D + + + William Doyle + Ed Donnell + Andrew Foster. + + + E. W. Leybourne D + Jam. Magarth + -- Crawford-D + + + Paul Mounsey D + Richd. Foster + + + Ferg. Speers, + Joseph Blunt + + + + Chs. Earle Ct. Lt. + + + +
+
+
+ 20th. +

The Wind which for many days past has been from the S.W.and + consequently unfavourable for coming up the Lake, yesterday and today + has blown from the N.E., so that we are now hourly in hopes of having + intelligence from below, which we expect will cause our immediate removal + from this place

+
+
+ 21st. + +

Being First Day, a Meeting was held at 10 oClock in the Sail Loft and + another at the same place at 5 in the afternoon, both satisfactory.

+

About Noon arrived Lieut. Givens + Gibbons of the Queens Rangers, who brought the agreeable + intelligence that the Dunmore, with the Commissioners on Board had arrived + at the mouth of the River. - About 5 oClock, (having Landed the + Commissioners) the Dunmore came up to the wharf, - in the evening had + a Visit from Lt. Givens + Gibbons, by him we are informed that the Com-missioners are + come forward with a full expectation of a Treaty, very speedily, being + held. - He says the Deputation from the Indians, who had a conference + with the Commissioners in the presence of Govnr. Simcoe, to all appearance, return'd well + satisfied, and that in his opinion there is a great probability of an + accomodation matters being accomodated. - That the main + business of the Indian Deputies was to enquire, in + in the first place, whither the + Com--missioners were properly authorized to treat, and secondly, + whither they had power to recede from the boundary-Line now + claimed by the United States, and being satisfied in both these + points, they took the Commissioners by the hand, and presenting them + with a Belt of white Wamp-um, invited them to come forward to the + Treaty. - We are informed by Captain Ford + that he has orders to attend upon the Commissioners with his Vessell, and + expects to be ready to proceed to the Mouth of the River in a Day or + two.

+
+
+ 22d. +

We were busy in settling our little concerns, and preparing to leave + Detroit, + ware where we have experienced many marks of polite attention, + and hospitallity, especially from the officers of the Garrison, beyond + what some of us expected or even flatter'd ourselves was our due. - + Our way hitherto, in every + every sense, has been made pleasant + beyond what could have been foreseen, or reasonably expected, - for this + great favour, thanksgiving and praises are due to the Great Author of + every good

+

--The kind attention which, unrecom-mended, we have received from Strangers, I + hope, will ever be kept in grateful re-membrance, and I cannot but + conclude, the obligation is greatly enhanced by the persuasion, that + it proceeded not from sinester motives, but was simply the effusion of + noble and generous Minds.

+
+
+ + 23d. +

This morning Col. England called at our + Quarters, and kindly offered to lend us his Barge to go down to go + down the River, or accommodate us in any other way that + might be more agreeable, but, as the Dunmore would be ready to Sail on + the morning of the 25th, he would re-commend + it to us to wait untill that time and go down in her - we + acknowledged his kindness, and + concluded to go in the Dunmore -- We were this Day visited by a young + Shawnese Warriour, a relation of + Col.McKee, the Brish Agent, - His + Shirt was red stript Persian, orna-mented with One thousand Six hundred + small round silver Broaches.- He was accompanied by another Beau, the + rim of whose Ears were cut all round, except about an inch of + theupper + end + part - the part thus cut was so streatch'd, and wound about with + coarse brass wire, that it form'd an Oval of about three inches in + length and two in breadth, at the lower end of which each hung + an a Silver Cross, of above four + three inches long.

+
+
+ 24th. +

Got most of our Baggage, Stores etc. on board the Dunmore, Captain Ford informing us he intended to sail + early in the Morning.

+
+
+ + 25th. +

About 9 oClock embark'd on board the Dunmore for the mouth of Detroit River + River. - Col + England having a desire to see the Commissioners took a + passage with us, together with Lieut. + Henn, and Ensign O 'Brien. + - We had a pleasant Sail down the River, and in our way spoke the + Schooner Nancy from Fort Erie. -at 2 + oClock P.M. anchor'd opposite the House of M. + Elliott, where the Commissioners have taken up their + quarters- We met with a kind reception, and were truly glad to + find our very respectable fellow Travellers in good health and spirits. + --

+

- Captain Bunbury of the 5th. Regimt. and + Lieutn. Givens of the Queens Rangers + are appointed by Govn. Simcoe to bear the + Commissioners company to the Treaty. - in the evening we pitch'd our + Tents on a very pleasant Green on the River side, near the House where + the Commissnrs. reside. - Our little encampment now consists of Twelve + Tents.

+
+
+ 26th. + +

a very sultry day, - walk'd about a Mile & a half down the + River Lake to Simon + Girty's, who is an Indian interpretter in the Brittish + Service, and now attending the Council at the Miami + River - in the evening it became Cloudy with distant + Thunder, and before morning we had a very heavy Rain with much Thunder + and Lightning - some of the company were obliged to quit their Tents + and take shelter in the House.

+
+
+ 27th. +

This morning an opportunity presenting, William + Savery and Jos. Moore went + up to Detroit in Company with Gotlob Sansemen, a Preacher among the Moravian Indians who reside on the River La + Trench.

+
+
+ 28th. +

+ John Parrish, Jacob + Lindley, and + John Elliott and myself, went over to + to Gros + Isle where we had a Meeting at the House of Wm. McComb Esqr., who for the most part resides + at Detroit, where his family is at present. - a considerable number of + the Inhabitants were present - Gros Isle + is situated at the Mouth of + Detroit River, is seven miles long and + two wide - The soil and Timber remarkably good, the whole being the + property of Wm. McComb. - several of our + acquaintance came from Detroit to pay us + a Visit, among whom John Asquith and + Francs. Cornwall - in the evening a + number of the + Oneida Indians, the same who arrived the + first of this Month, were encouraged by some of the young Men of our + Company to have a Dance, - they began about 8 oClock and continued + untill 2 in the Morning, during which time, their Music and Shouts, + effectually prevented us from Sleeping.

+
+
+ + 29th. + +

+ Willm. Savery return'd from Detroit in + Company with Capt. Freeman and Ensign + Broadhead, Joseph + Moore intending to come down with the Schooner Nancy + who it is expected will leave Detroit + tomorrow on her way to Fort Erie.- In + the evening arrived two large Batteaux, with Captain Elliott, Tho. + McKee (son of the Col.) + and a number of Indians who are said to be a deputation from the great + Council - Elliott McKee and some others + came over to us, but the Indians landed on an Island opposite to our + Encampment. - We are informed the Indians at the Council are much + dissatisfied with the conduct of their Chiefs who met the Commissioners at + Navy Hall - that they either mistook their instructions, or neglected + to follow them, in consequence of which, this second Deputation is + sent.

+

- Their first and Principal business we are told is to know of the + Commissioners whither + whither they have power to make the + Ohio the boundary line, if not, the whole + business is at an end.

+
+
+ 30th. +

About 9 A.M. the Indian Deputies, twenty five in number, came over and + had a public conference with the Commissionrs

+

-Their speaker (whose name in English is Carry-folks People- about) express'd their + gladness that it had pleas'd the Great Spirit to bring the Commissioners + thus far in safety and good health, and then proceeding to business, + said, there had some mistake happened at the Conference + at Navy Hall, and in order to + rectify which they had now come forward wih a message from the + Council, and, that they might not be liable to blunder a second time, they + had brought a Paper, which spoke what was in their their + whole Heart. - They then delivered the Letter, being in + substance the same as we were told last night, - After a few minutes + private consul-tation, Genl. Lincoln, in + behalf of the Commiss. told them the Indians, that the Contents + of the + Paper should be considered, and an + Answer given Tomorrow. - We were inform'd, that, as Capt.Elliott, when he parted with the + Commissioners, on going to the Miami, + fully expected their would be a Treaty, had concluded to leave the Letter + to Col. McKee (inclosing our Address to + the Indians) of the + 17th, with the Comissnrs. to be return'd to + us, which has been done accordingly.- about 4 P.M. Joseph Moore landed from the Schooner Nancy, + having left Detroit about 10 in the morning,- the Nancy proceeded on + her way to Fort Erie.

+
+
+ 31st. +

The Indians came over about 10 oClock, but were informed that an answer + would not be ready for them before 5 in the afternoon,- about that + time the Deputies assembled, and Col. + Pickering, in behalf of the Commissioners, ap -pologized for + making them wait so long for an answer.- He then according to the + Indian custom, repeated over the Contents of the written message brought + from the Council at the Miami, and proceed to read a very + lengthy answer, which in the first + place pointed out the improbability of any part of the business being + misunderstood at the conference at Niagara, and stated such facts as made it appear that such + a pretence could be nothing less than want of sincerity.- + men -mention was then made of the several Treaties + concluded since the establishment of the Independance of the United States, + and of the new settlements made in consequence of those treaties, and + of the impossibility of removing such a great number of Families from + their habitations and Farms; and therefore, in the most explicit terms + de-clared declared that the United States + could not agree that the River Ohio should + be the boundary line.- In the next place the Commissioners + acknowledged that very improper Language had been held out at former + Treaties, when it had been said that the United States claimed all the + Indian Coun-try, (within certain limits mark'd out by the Treaty of + Peace with the British) as a con-quer'd Country.- The Commissioners + therefore, in the clearest terms, now + relin--quishd all such claim, reserving only the preemption, or + exclusive right of purchasing of the Indians.- The Commissioners then + express'd their desires to meet the Indians in full Council, and a belief + that if such work a thing + could be done, and a friendly conference take place, a satisfactory and + lasting Peace would be the consequence - They concluded with + intimating that for the sake of an accommodation they would be willing + to give up all the Land to the N.W. of the + Ohio, excepting such only as were + absolutely~ appropriated, and, for such as were appropri--ated, a + generous compensation should be paid down, and a yearly Rent allowed + forever.- The answer was interpretted paragraphically as it was read, and + then the whole writing given to the Indians.

+

-The old Wiandot Chief who delivered the message yesterday, got up and + said, as thesun was going down they would consider of what was said by + the Commissioners answer and speak a few words to them in the + Morning.

+
+
+ 8 mo. 1 + + +

- The Indians came over about 7 oClock in the morning, and having met + the Commissioners in Council - the old Chief who spoke last night + arose, and said, they perfectly understood all that was said to them + yesterday, and had only to say, that in regard to the several Treaties + mentioned yesterday, they did not acknowledge any of them to be valid, + and as the Commissioners had said they could not remove the white + People over the River, so they, the Indians, could not consent to give up + any of their Country, and concluded with saying, they came as Men + wishing for Peace, but as that could not be obtained, they should + return to their Council, and speak to their warriors:- And as for the + Commissioners. they the Indians had nothing more to say to + them, they might go home, and tell thePresident + Washington what the Indians had said.-

+

-After the Indians had retired a few minutes, + Simon Girty their interpretter, and several + of their Chiefs, came back, and said, there had been a mistake in the + last part of the - + speech - that the business of the + Deputies was to carry the Commissioners answer to the Great Council, + and they desired the Comissnrs. would wait a few days for a final + answer.

+

-The Indians then immediately took their leave, and Thos. McKee, about 11 oClock also set off for the Miami, and as the prospect of meeting the + Indians at a general Treaty now appears very faint, Friends concluded to + forward the address to the Indians, agreed upon the 17th ulto. ultimus by him, under + cover to his Father Col. McKee.

+
+
+ 2nd. +

Being a pleasant day walk'd about four miles down the Lake - the place + where we are encamp'd is the property of Capt. + Matthew Elliott, on which is a handsome convenient + House, and a very large new Barn - the Land appears to be of an + excellent quallity both for Grass and every kind of Grain.- He has a large + stock of fine Cattle, among which are 12 yoke of Oxen, and I counted + 31 Calves and 43 milch Cows - they are just now geting in the last of + their Harvest, the wheat and oats have suffer'd much from prodigious flocks + of Black Birds, + notwithstanding the vigilence of + several who were continually upon the watch to keep them off - The + Indian Corn is begining to be fit for Roasting, and it is the business + of one hand to watch the Birds, who have already done great damage in + the field.

+

--The Black Birds, we are told, are equally mischievious in all parts of + the Country.

+

--Came down, and sail'd the Sloop anchor'd opposite our + Encampment, the Sloop Detroit from Michilimackanac bound to Fort + Erie.

+
+
+ 3d. +

This morning intended going in a Canoe about 4 miles up the River to a + Wiandot Village, but the wind blowing hard from the S.W. prevented + us.

+
+
+ 4th. +

Heavy rain last night, and all this morning untill Hoon - in the + afternoon had a Meeting at the House of Simon + Girty about 5 oClock.- about 11 A.M. the Chipeway + pass'd by on her way from Fort Erie and + Miami River, bound to Detroit - She + sent on Shore a Packet for the Commissioners from Philadelpa among its contents were News Papers as + late at the 25th of the 6th month.

+
+
+ + 5th. + +

The Wind moderated, and Weather clear'd away, - sail'd the Sloop Detroit for + Fort Erie.

+
+
+ 6th. +

About 2 oClock P.M. departed this Life a poor Indian Slave who belonged to + M. Elliott.

+

--There is a Nation far to the westward,- called Panies, or Pawnees, with whom, it is said, the Chippeway's are at perpetual war, - it was a + Custom formerly among these barbarous Nations to put all their prisoners to + Death, but since their acquaintance with the White People these + prisoners are become an article of Traffic, and sold to the Traders, + -- who again dispose of them to the Settlers, by this means Indian + Slaves are become numerous, and all, however acquired, go under the + denomination of Pawnees. --

+

-The poor fellow above mentioned was a Pawnee and had for a long time been in a declining way, but + was so well this morning as to be able to walk about the Door - he died at + 2 in the afternoon and was put in the Grave about 7 the same evening - + -The burial was attended by most of the Commissioners retinue, and + J.M. spoke a few words at the Grave + well adapted to the occasion.

+
+
+ + 7th. + +

This day the Commissioners were furnished with a few ripe Water Melons, + being the first I have seen.

+
+
+ 8th. +

The wind blew hard from the Eastward the greatest part of the last night, + attended with Rain- this Wind we hope will hasten the arrival of a + Vessell from Fort Erie, by whom a Person + is expected from Philadelphia that was sent there an Express by the + Commissioners from Niagara.- Some of our + company kill'd one of the small black Rattle Snakes - there skin is + much darker than the large sort, - they seldom exceed the length of 18 + inches, and have but two or three Rattles - there bite, is + is said to be very venomous, much more so than that of the larger kind.

+
+
+ 9th. +

Last night arrived two of the Stockbridge + Indians with letters from Hendrick their Chief, with by which we were + informed that there seem'd to be a disposition in the Indian Council to + admit the Commissioners to a Treaty, and giving it as his opinion that + a Peace would be soon established.- We are further told that the place + of Treaty is like to be altered from + + Sandusky to the mouth of the Miami, and that a Deputation from the Council + may be expected to this day or tomorrow, who were are + to give a favourable answer to the Commissioner's Speech and attend + them to the place of Treaty - about 10 oClock a Canoe with 7 Chipewa Indians from the Council, arrived here + on their way home. --these people confirm the intelligence we received + last night, and we are again fill 'd with the pleasing hope that this + tedious and expensive Embassy will not be altogethe fruitless.

+
+
+ 10th. +

Warm and sultry - anxiously waiting the return of the Indians.

+
+
+ 11th. +

This morning arrived the Ottaway from + Fort Erie, in her came Jasper Parrish who was sent an Express by the Commissioners + from Niagara to Philadelphia. - he brought Letters for most of our + friends, and News Papers as late as the + 20th of last month.- The Chippeway also came down from Detroit, bound to Fort Erie, and anchor'd near our Encampment.­ + Friends had a Meeting this afternoon at Gros + Isle, at which I was not present.

+
+
+ 12th. +

Since we have been upon this spot we have experienced from a certain class + of Men, a treatment + very different from the generous + politeness received from their brethren at Detroit, but have a hope + that their ungenerous aspersions has not injured us individua1ly or brought + any reproach upon the Society at large -- may their rude and + ungenerous attempts serve to keen us more upon our guard and watchful + over those weaknesses, which doubtless are more or less, the portion of + human nature.

+
+
+ 13th. +

In the Ottaway arrived Captain Wilbank + who came from the Southward with a party of Indians, as beforementioned he + this day Dined with the Commissioners, and confirm'd what was noted as + coming from him on the + 18th of last month, and gave a more full + in--formation of the complaints of the Southern Indians, and of the attempts of the Spaniards to foment the + difference subsisting between them and the United tates.

+
+
+ 14th. +

In the forepart of last night had a sudden and heavy fall of rain which + made our Tents very uncomfortable for the remainder of the night.- The + Commissioners growing impatient at the delay of the Indians, sent off + an Express to the Council in order to hasten their answer.

+
+
+ + 15th. + +

Two Wiandots from the other side inform us that an Indian from the Council + arrived last night at their Village with intelligence that there had + been great debates among them res respecting the answer to be + return'd to the Commissioners The Shawnese, Delawares, + Wiandots and Miami's being for war, and the Six Nations, on the Contrary, + peacably inclined, that finally the Six Nations had prevail'd and + messangers were to be dispatched three Nights ago with a favourable answer, + and an invitation for the Commissioners to come forward.- One of the + Wiandots abovementioned was a White + Man taken by the Indians in his infancy, he cannot speak a word of + English, he can give no or give any account of his Family; and + only remembers that his Name was Honnes - His Ears were cut, and + himself, in all respects, dress'd & ornamented in the Indian stile - + dullness and stupidity seemed to be spread over his Countenance, and + his whole appearance could not but raise emotions of sorrow and + commiseration.

+
+
+ 16th. +

About 4 P.M. the long look-for answer arrived which at once put an end to all + to all hopes of a Peace at present - + the substance of this lengthy reply, which fill'd near two sheets of + Paper was, that no consi--deration would induce the Indians to give up + their Country, and nothing short of making the Ohio the boundary could give them satisfaction, and if the + Commissioners could not agree to this there would be no use in meeting + at a Treaty - The answer was signed, it is said, by sixteen Nations, + being all that were present except the Six Nations, who all refused + their concurrence and are favourably disposed towards the United + States.- About 8 P.M. the two young Onondaga's return'd who were sent express by the + Commissioners, as mentioned the 14th, they + brought no written reply, and could give very little in-formation, + except that they delivered their message to Capt. + Brandt the Mohawk Chief, who + informed that an answer to the Commissnr. Speech was already gone down, the purport + of which he was intirely unacquainted + with, as he, with the rest of the Six Nations, were not admitted into + the Council - Thus ends a business in which, it is too probable, the + fate of thousands are involved, - should there be any, who from + interested motives, or mis--taken policy, have endeavoured to retard + the work of Peace, and promote the horrid consequences attendant upon War, + what will they not have to answer for!

+
+
+ 17th. +

Struck our Tents and embarked our Baggage and Stoves on board the + Dunmore- -the Wind being strong from the S.W., it was 4 in the + afternoon before we got under way, when we work'd down with the- + current into the Lake - in the evening we were about 10 miles from the + place of our departure.- the wind about South.

+
+
+ 18th. +

The wind shifting last night to the N.E. brought us up to the Bass Islands this morning, where we came to an + anchor in Pudding Bay about 7 oClock, being 40 miles from the mouth of + Detroit River­ about + about 10 A.M. the wind shifted round + to N.N.W., we made sail, and run through the Islands - in the + afternoon it fell calm, at6 in the evening we were about 10 miles + belowthe Islands.­ This being the first day + p (and just 10 weeks since we passed the same + Islands)Friends had a Meeting in the Cabbin, which wasin the main a + satisfactory time.

+
+
+ 19th. +

Little wind all the last night, mostly from the N.E. - this morning + almostcalm, the Bass Islands still in + sight -light airs of wind all Day from the Northward- we made but + little progress.

+
+
+ 20th. +

Last night about 10 a fresh breezesprung up from the N. N. W. which + conti-nued untill this morning - the fore partof the Day calm - at 1 + P.M. a breeze sprungup about N.B.E. about which time a Vessellhove in + sight a stern of us which wesuppose to be the Ottaway bound to FortErie - at 4 P.M. close in with the + Landnear the mouth of Elk River on the Southside of the Lake, - tack'd + and stood tothe Northward

+
+
+ 21st. + +

A small breeze from the Eastward all night, - in the morning the + SouthShore in sight - the Ottaway about 2Leagues to Leeward - at 2 P.M + the Landon both sides the Lake in sight and + the - at 4 P.M. the Ottawayabreast of us, + about half a mile to anWindward. - the Wind N.N.E.

+
+
+ 22nd. +

The wind last night hauld round to them + SouSouth, and continued a fresh breeze untillmorning - Our + Course E.N.E. - The Ottawayon our Lee bow about 4 Leagues distant- the + Land in sight on both sides the Lake- at 10 A.M opposite Long Point, from + whence over to the opposite Shore, near Presq + Isle, thedistance is about 12 Leagues - at 2 P.M. + calm, no land to be seen to the Northward - at 4 P.M.a breeze sprung up + aboutSouth, which increased and blew fresh in the Evening.

+
+
+ 23d. +

About 1 A.M. anchor'd at Fort Erie - the + wind blowing hard all day made it very difficultto Land which prevented our + making much progressin preparing to get on our way to Niagara

+
+
+ + 24th. + +

Disposed of most of our spare Stores - Govr. + Randolph and Col. Pickering + crossd over toBuffaloe Creek, intending + to go through the GeneseeCountry down to New York. J.Parrish, Ja. Lindley, + J. Moore, & J. + Elliott, also took theirleave of us, intending to proceed + through thewoods to Philad. - General Lincoln, Ch. + Storer, J.Heckenvelder, + Dr. McCoskry, Wm. Savery & myself, intending to go by the + wayMontreal to New York.

+
+
+ 25th. +

Procured Batteaux in which we put ourBaggage and embark'd about 9 oClock + downto Chippeway Creek, within two miles + of theGreat Fall, where we arrived about one - after Dinner J.Heckenvelder & myself wentto take a + second view of the Falls, we wentdown by Birch's Mill, and along under + theHill to Table Rock, opposite the Falls, + J.H. beingfatigued would go no further, I procured a guideand went + about a mile below to a place wherewe f by the help of + Indian Ladders wedecended down to the waters edge, and went along upon + the broken Rocks up to theFalls - The River to the Eastward of the + IslandI suppose to be 250 yards wide, the lower end + of the Island, and the River to the + Westward of theit, I suppose to be each of the same width, -

+

After spending some time in viewing thiswonderful sight, we ascended the + hill and walk'dabout three miles, where we got Lodgings andtarried all + Night.

+
+
+ 26th. +

Walk'd down to the Landing where we foundGeneral + Lincoln, Wm. Savery & some + others who came in a Waggon last night - about noon our + our Baggage arrived and was deposited + in the Kings Store.

+
+
+ 27th. + +

A Light Breeze of wind from the Westward, we could hear the roaring of the + Falls uncommonlyloud, the distance being seven miles. - Wehear there + is a Vessell at Navy Ha11 bound toKingston, but it is thought she will be detain'd untill + they hear from Governor Simcoe who is on + the opposite side of the Lake at Torento--

+
+
+ 28th. +

Procured a Batteau and went downto Navy Hall, and were accommodatedwith + the Governor's empty House - theevening being calm could distinctly + clearly hear the roaring of the Falls as I lay in + Bed,the distance 18 miles

+
+
+ 29th. +

Arrived the Missesaga, a Kings Scho Schooner, from Toronto, by + her we learn that the Gun Boat, in which CaptainBunbury was a Passenger, who left thisplace the + 23rd was not arrived at 7 oClocklast + evening - as the wind blew hardthe night after she sail'd, we are + fearfulsome accident has befallen her. - The + Sloop Caldwell being ready to Sail for + Kingstonand there being a prospect + of a Wind, we got all our Baggage on board this evening

+
+
+ 30th. +

At 4 A.M. embark'd on board theVessell abovementioned, Commanded + byCaptain Paxton, and left Niagara witha fair Wind, bound for Kingston at + the entrance of the River St. Lawrence, - + havinga fresh breeze all Day, about 8 P.M werea breast of long Point on the North sides of the Lake 100 + miles from Niagara.

+
+
+ 31st. +

This morning about 5 oClock pass'dby the Islands call'd the Ducks, - Course from + Niagara to the Islands about E.N.E., + from thence to Kingston about N.b.E. - + from the Islands to Kingston 28 m. whole + distance150 miles - At 10 oClock, anchor'd atKingston, formerly Fort Frontenac. - hereis a Fort and + small Garrison, the Town consistsof a few scattering Houses, and the Land + inthe neighbour'd appears to be very Stoney and poor. - A Batteau + being procured we leftKingston about 1 + P.M., and having a fairwind, run all Night.

+
+
+ + 9 mo. 1st. + + +

Went on Shore this morningabout 6 and breakfasted at a Tavernthree + miles above Oswegatche, being 72miles + from Kingston. - The River St.Lawrence for about 10 Leagues + belowKingston has no current, and + buta very gentle one the remainderof the way to Oswegatche; from thenceit begins to be very + rapid. - in theafternoon we pass'd the Rapids call'dthe Long Sue, and + about 6 oClock enter'd + Lake St. Francis, which is 7 Leaguesin + length and 2 wide two in breadth. - at 10 we were overtaken with + a violent squall of Wind and Rain; and with difficulty got to land on + the N.W. side, about 14 miles from the N.E. end of the Lake, where we + left our Boat andmade up a fire on this Shore, andspent a very + uncomfortable Night

+
+
+ 2nd. + +

A fresh Breese from the Westward - embark'd about 6 A.M. and at 8 landed + at Mclntire's at the N.E. end of the + Lake where we got a little refreshment and thenproceeded on our way + down the River, - aboutone pass'd the Rapids of the Cedars, andat 4 + arrived at La Chine, where we tookup our + Quarters at Grants Tavern, & tarriedall Night

+
+
+ 3rd. + +

Sent on two Carts with our Baggageand about 9 A.M., in three Calathes, + setoff for Montreal, where we arrived + inabout an hour & a half. - Distance from + Kingston to Montreal 200 miles - In theafternoon that we left + Kingston we runabout 30 miles before + dark, and in all thatdistance saw but very few settlements, theLand + appearing very rough and poor - thenext morning at day light, when we + wereabout 60 60 miles from Kingston, we foundthe N.W. side of the River thickly + inhabited, which continued to be the case all the waydown to Lake St. Francis, the improvementsare new, and + the inhabitants mostly Loyalists + and emigrants from different + quarters, - after we got below the boundary Line which strikes the + water somewhere on Lake St.Francis, we + found improvements onboth sides, but the N.W. side of the Lakebeing + low and Marshy swampy had but few settle­ments, on + the S.E. side appeared morepleasant, and better cultivated. - + TheCountry on both sides the River, belowthe Lake, is thickly + inhabited, especially on the West side, where the Land appearsto be + fertile and well improved. - The Rapids in this River are not easily + de-scribed, - those of Long Sue, and the Cedarsare the most + remarkable, in one ofwhich we went 3 Leagues in 35 minutes and + the in the other the same distancein 40 minutes.- Opposite + La Chine,which is 9 miles from + Montreal, is alarge Indian Town, the + Houses appear'dto be commodious & well built, a largeChurch, or + Chappel, standing in the Town,and another building of the like kind, 3 or + four miles from it. - La Chine is a Village situated on the same + Island onwhich Montreal is built, to + this place allGoods intended for the Western Trade isbrought by Land + from Montreal, & fromthence sent by + Batteaux, Canoe's &c inmany directions into the Indian Country.- + in the River St.Lawrence, between Kingstonand the + Lake St. Francis are a vast mul-titude of + Islands, most of which are small,barren, and Rocky. - The Country + inthe Neighborhood of Montreal appearsto be very thickly inhabited, + fertile & pleasant. - The Town is about half the size of + New York, the buildings + mo mostly of stone, some of the Housesare roof'd with Tin + plates, and ingeneral are pretty well built, - someof the Streets are + commodious and wellpaved, - it appears to have a plentifulMarket, and + provision, in general, about the same price as in New York + - after dining at Montreal we cross'dthe River at Longuiel Ferry, + intendingto proceed on our way to Lake + Champlain immediately, but it being in the heigth + oftheir Oat Harvest, we were disappointedin getting Carriages, and + were obligedto take up our Quarters at the Ferry-House for the + Night.

+
+
+ 4th. +

We were provided with Carriages & about 6 in the morning set off for + St. Johns, in our way pass'd by Fort Chamblee, in which is a Garrison, + andabout 12 oClock arrived at St.John's, + thedistance being 27 miles. - Chamblee + issituated at the foot of the Rapids of theRiver Sorrell, which runs + out of LakeChamblain, at St. Johns, into the RiverSt. Lawrence, from Chamblee to St. Johns + is a carrying place of about 12 miles, theroad very good. - about 5 P.M. + embark'don board a Boat of about 9 Tons burthen,Sloop rigg'd, and + Deck'd, it being almost + Calm, got only 5 miles on our way, + and went on Shore, at a very ordinary Public Housewhere we tarried all + night.

+
+
+ + 5th. +

Embark'd about about 7 A.M. - the windbeing ahead, we work'd up about 9 + milesto a Tavern One mile below the Isle + auxNoix, where we put up for the Night.

+
+
+ 6th. +

Set off about 7 A.M., had to stop andgive an account of ourselves at the + Fort on the Isle aux Noix - the Wind + coming fairabout 11 oClock we got up the Lake to wherethe boundary + Line intersects it in 45° of N. Lattitude, - the Country on the East + sideof the Lake appears pleasant & fertile, & thicklysettled + on both sides of the Line, - on theWest side also are many settlements, + butnot so flourishing as on the East. - aboutOne oClock pass'd the + Brittish Garrison on Pointau Fair, and also the Kings Schooner + layingin the Lake opposite to it, to both of whichthe master of the + Boat was obliged to givesome account of himself and his Cargo.

+ +

-- at 4 P.M. we arrived at Cumberlandhead in the State of New York, where + a Custom House is established, here also,our little Vessell underwent + another exa examination.- Our Skipper beingvery ill with + the Ague & Fever, desiredto be left here, and gave up the + manage-ment of his Boat to the Passengers, & a little Boy about 14 + or 15 Years of Age, as a Pilot. - the wind being fair and blowing + veryfresh we were loth to loose it, & venturedto push on, being + told we could makea harbour at Gillilands Creek about 20miles further + up the Lake, at whichplace we arrived about 8 in the evening,but in + attempting to go in we found a Bar quite a Cross the Creeks mouth, + onwhich we got a Ground, and the windblowing fresh, with a pretty + high Seawe struck hard, - it was with a gooddeal of difficulty that we + got our Boat offwhich when we had accomplished, not + liking to trust any longer to our pilot, + wecame to an Anchor, pretty much exposedto the Wind and Sea, and + pass'd a very uncomfortable Night, having 12 Men andone Woman on + board.

+
+
+ 7th. + +

As soon as day light appear'd we madesail, and run 12 miles to Bason harbour, on the Vermont side where we + breakfasted- at 9 oClock pass'd the old Fort of + CrownPoint, 12 miles from Bason + harbour - at 3 P.Mpass 'd through the Piers opposite the + remainsof Ticonderoga, and at 7 in the + evening gotup to cold spring, a public Hquse within 8miles of + Skeensborough. - The Shores of + thisLake are mostly high and bold, and theCountry on both sides has by + far a pleasanterappearance than any we saw on theupper Lakes - there + are settlements allround Lake Champlaine, + those towardsthe North end, and in general, on the East,or Vermont + Side, appear to have the pre preference - At the South end of + the Lake, on + on both sides, the Country is very + Rocky and Mountainous - From Ticonderogato Skeensborough, the distance of 25 miles, the Lake is like a + narrow River, withvery high Cliffs on both sides, in some places much + resembling the High Lands on Hudsons + River. - About 12 miles below + Skeensboroug the River is contracted + betweenlarge Bodies of Marsh, which continuenearly all the way up, - + among theseSwam Marshes were great numbers of Ducks of + different kinds, but mostlywhat are call'd Wood Ducks

+
+
+ 8th. + +

We arrived at Skeensborough about11 + oClock, the distance being 150 miles from St. + Johns - at Skeensborough + arefine Mills upon the Falls of Wood + Creekwhere it empties into the east end ofLake Champlain, - the Land, in generalvery rough + & Mountainous, in whichare some fertile Vallies.

+
+
+ 9th. +

Having procured two waggons to bringour Baggage, six of us set off about 7 + in the Stage Waggon for Albany. - Wepass'd the remains of Fort Ann & Fort + Edward, the first 11, the latter 24 miles fromSkeensborough, - about 8 in the eveningarrived + at Saratoga on the North River, 35 miles from Skeensbugh. and 36 miles from Albany

+
+
+ 10th. +

We left Saratoga about 6 A.M.and + reach'dLansingburg about 2 P.M. + where we dined, - our ride this morning has been all theway in a very + pleasant Road on the banksof Hudsons River + - we pass'd through sosome beautiful Villages, particularly + thehalf Moon, or Waterford, on the west sideof the River, about a Mile + above Lansing-bourg, which is situated + on the East side,they both appear to be places of considerableTrade, + and from the number of new buildingserecting, very rapidly increasing in + sizeand beauty, - the same may be saidof Troy which stands a few miles below + Lansingbourg on the same side of the + River where we again Ferried over and arrived atAlbany about 5 oClock - Lansingbourgh 9 m. from Albany.

+
+
+ + 11th. + + +

Our Baggage arrived this afternoonand was put on board the Sloop Vley, + Capt.Marseilles, who expects to sail + tomorrow forNew York.

+
+
+ 12th. +

Left Albany about 10 oClock, with afine + wind, and very shortly after, ranaground upon the Oversloughs abouttwo + Miles below, where all our exertexertions to get off this Tide + proved invain.

+
+
+ 13th. +

Not being able to get the Vessell off athigh water last night, this + morningmade a Raft of the boards upon Deckby which means and a great + deal of labour got off a float and run downover the shoals, + and came to an Anchor in order to take in our Raft of Boards. - about + 4 P.M. again made sail,the Wind, which for several days pasthas been + strong from the Northward, isnow almost done.

+
+
+ 14th. +

Light airs of wind from the southwd. - pass'd Hudson in the Night, which is + 30 miles from Albany - at 8 A.M. oppositeKatskill on the west side of the River 40 miles from + Albany, - in the evening lay at Red Hook wharf, on the East side of the River + 45miles from Albany.

+
+
+ 15th. +

Small breeses of Wind still from the S.ward - in the Morning found ourselves + at Anchoropposite Usopus, on the West + side, 100 miles from New York, - work'd down with the Ebb. and + anchor'd in the evening about 4 milesabove Poughkeepsie, on the East side, which is call'd half way + from Albany to New + York

+
+
+ 16. +

Wind the same as Yesterday - in themorning we lay along side a Lime + Kiln wharf opposite the mouth of Wappings + CrCreek, 6 miles below Newburgh - + about 1 oClock pass'd Newburg on the + West side of the River, opposite to which on the east side of the River + is the Fish Kills - New Windsor lays + about one mile below Newburgh, on the + same sideof the River - two or three miles below New W + New Windsor, we enter the High Lands, + & anchor'd during the Flood, about 2 miles aboveWest Point.

+
+
+ + 17th. + +

Having a strong Current inthe Night we pass'd, West + Point, andStoney Point, + Forts, and got clear of theHigh Lands about 4 o'clock in the Morningat + which time we were overtaken witha heavy squall of wind & Rain from + the Northward - about 8 we were oppositeTappan - the wind still continuing we arrived at + New York about 1 in theafternoon

+
+ + + +
+ Following the Journal are 33 blank pages. and then 3 pages and the back cover. + upon which is written the following + + +

1793 June 22

+ + + paid Matthew Dolson Accd for + board diet &c. 6 weeks + £13.9.-- + +
+ +

The perpetual AlmanackIs governed by the day on which the 3d mocomes + in

+ + + AD + 3 mobegins + AD + 3 mobegins + AD + 3 mobegins + AD + 3 mobegins + + + 1750606468727680 + 2753164 + 178488929394959697 + 27567134 + 1798991800123456 + 561234671 + 18078910111213 + 2456723 + +
+ + + 3 mo + 8 mo + 5 mo + 10 mo + 7 mo + 9 mo + 2 mo + + + 11 mo + --- + 1 mo + --- + 4 mo + 12 mo + 6 mo + + + 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 + + + + + +
+ +

It is a matter of perfect indifference whitherthe Potatoes employed as Sets, + be whole or cutin pieces; but that a variation in thesize of the Sets + planted, always affectsthe amount of the Crop in a very remark-able + degree, the largest sets in all Casesproducing the greatest Crops + English Review Octo. 1788.

+ +

Distance from New Yorkto Albany...165

+ + + + From Albany to Schenectady... + 16 + + + + to Fort Stanwix by Water... + 120 + + + + Oneida Lake...do... + 36 + + + + Fort Brewerton-----entrance + Onondago River...do + 30 + + + + Oswego, by Water... + 36 + 238 + + + Niagara, along shore... + + 160 + + + Fort Erie.... + + 36 + + + Detroit, up Lake Erie.... + + 285 + + + + + 884 + +
+ +

From Detroit

+ + + to Fort Erie.... + 285 + + + Niagara.... + 36 + + + Kingston, or Frontenac... + 150 + + + Montreal... + 200 + + + St. Johns... + 27 + + + Skeensborough... + 150 + + + Albany... + 71 + + + New York... + 165 + + + + 1084 + +
+ +
+
+
+
diff --git a/static/xml/xml_file_names.xml b/static/xml/xml_file_names.xml new file mode 100644 index 0000000..85fc245 --- /dev/null +++ b/static/xml/xml_file_names.xml @@ -0,0 +1 @@ +SW_GH1804SW_WH1793SW_RC1805 \ No newline at end of file diff --git a/templates/story_maps/SW_GH1804.html b/templates/story_maps/SW_GH1804.html new file mode 100644 index 0000000..a6709d6 --- /dev/null +++ b/templates/story_maps/SW_GH1804.html @@ -0,0 +1,73 @@ +{% load staticfiles %} + + + + {% include 'top-links.html' %} + + SW_GH1804 StoryMapJS + + + + + + +
+
+ Header img +
+ +
+
+ +
+ + +
+ + + {% include 'nav.html' %} + +
+ +
+
+
+

StoryMap for SW_GH1804

+ +
+ +
+
+ +
+
+ + + {% include 'footer.html' %} + + {% include 'bottom-links.html' %} + + + + + + + + \ No newline at end of file diff --git a/templates/story_maps/SW_RC1805.html b/templates/story_maps/SW_RC1805.html new file mode 100644 index 0000000..507fffa --- /dev/null +++ b/templates/story_maps/SW_RC1805.html @@ -0,0 +1,73 @@ +{% load staticfiles %} + + + + {% include 'top-links.html' %} + + SW_RC1805 StoryMapJS + + + + + + +
+
+ Header img +
+ +
+
+ +
+ + +
+ + + {% include 'nav.html' %} + +
+ +
+
+
+

StoryMap for SW_RC1805

+ +
+ +
+
+ +
+
+ + + {% include 'footer.html' %} + + {% include 'bottom-links.html' %} + + + + + + + + \ No newline at end of file diff --git a/templates/story_maps/SW_WH1793.html b/templates/story_maps/SW_WH1793.html new file mode 100644 index 0000000..4b4fc30 --- /dev/null +++ b/templates/story_maps/SW_WH1793.html @@ -0,0 +1,73 @@ +{% load staticfiles %} + + + + {% include 'top-links.html' %} + + SW_WH1793 StoryMapJS + + + + + + +
+
+ Header img +
+ +
+
+ +
+ + +
+ + + {% include 'nav.html' %} + +
+ +
+
+
+

StoryMap for SW_WH1793

+ +
+ +
+
+ +
+
+ + + {% include 'footer.html' %} + + {% include 'bottom-links.html' %} + + + + + + + + \ No newline at end of file diff --git a/templates/storymap.html b/templates/storymap.html index 0fcb91c..eed395a 100644 --- a/templates/storymap.html +++ b/templates/storymap.html @@ -46,11 +46,6 @@

+ + + diff --git a/templates/storymap_dir.html b/templates/storymap_dir.html new file mode 100644 index 0000000..d5345ac --- /dev/null +++ b/templates/storymap_dir.html @@ -0,0 +1,58 @@ +{% load staticfiles %} + + + + {% include 'top-links.html' %} + + Story Map Directory + + + + + + {% include 'header.html' %} + +
+ + + {% include 'nav.html' %} + +
+ +
+
+
+

Story Map Directory

+
+
+ +
+ + + + + {% include 'footer.html' %} + + {% include 'bottom-links.html' %} + + + +

6W#&ma69OkpWH*){w8-pI{#73 z9(*3pueC79Qhuf23jTH${`O7$?IQf`2l(5M@waR7x0~>{JMg!q`0qxU?fzp8l3IuF z#+vQEx#nw#xdYMsVrv1OzWpuJ{@fbe{-zbgVIb5(Y>|=wnTWjWU}xu23t|a+GNT=q z=3!<6+CAtN>{`&1P5P7H{(M&lC&?w~YyxZ}!_0KM1(FP^^^#gx%|Y*oYkxA;YPgw` z%u>;z8tm~Z+QEOxEgxJv;HY9)nHz&)(S|LcZ7nSBBmYwYIL*5Mkn7%&Jj${oozra| zh@;N>r?J}1E`WSrZRAqi5;k<*$#uu#kEi?XtjY|pifLU{uVOuzN!tH)l3cRUhw~_p zaV(rrFQcs!6%5$O8o1ROtJbe~VSj?cV zEtEWIr2NEbA_>aN8mE9_F&dnWz97`AY3tOuXeHS~3WjYVv6RO-#bivO5bBk*b#h#^ zm~7DmhHWA7XWq0X*Q$5Y+BP?KGu5@58y`)^#kAe8*E~R+8`B)CHzs1?Zbza6N^mG~ zLZaZX5y zzb6&cx6J&QcZnQNmyC~aCxW|aoGra3oU9ba@zhNf9uew74~n$jL&3L>uw&mQsmj@n z$1=mCl5Xw&%Y5*nF4Rpg*rTJ`9FOcS|u)mMPm5 z4NX%Bm@;RYx#~win7M5`KKHZj(xWZSsz1)7<@<1eK#e8sclDP;BrI?~Qqb<8D7ZX^ zZH5s4n$H1aEr8M2$QJt~n7abvzpD`d`dcZBT@rbVKq|rSNc9H8MXE6cvVN%Y>QN};%_r#3SJ0mr_%k6X3{E$Kp?>=}P;|cEB>87-&?$^FqcO`j8+1R~ff1Db~k5iXc8YJ8s!e-X-Jnt*v0xX_^TrLKE=(&p7QQA4HREqnYH9{rL_(uD%FO@^ivE zJcje9UVG%1#sl_xPjzPz0kGHOFm1UjNHpJUiTY0N-KRAGIw=rdvx6JEVT=We70PpA z?g#$HBfi2Ts%nU`8e(@1v9pFKs3A7j5F2ZVbv4AA8e(M)vAl-(u!dMtL%drDzP$1^t zL-zA!U^X8O6(&x!hayeTfMv+z1!b9OvYtS_c1=BFGqpo7!Y{*EYj~sixQ9H4Pz#Oa ztXGrY@Q$f{0g89|4fZ0ij1PYx`kE86@~(+}L6guKva$p%X{HRVHYkKCeK8;=(im)m zsF+l2gZGm<@CvR;;<<&Q`ww%~<`Tg)aax=7k*tDk%|5hAVwdZemYR<5MY)dnFk*=+ zZ-gk<9Swnt0p+?e9fSn1oHqdka}}ljT0tP=7|1&TP`4^*ke})ZfMsqY4Q8Z|>kK~t zy;*Td$6zYHMrY?bn9=ao7@K7Z0aKubkAN%& z8{O4Hnz;bKWsWj9uk>pnAdJktpR2YLl-=p>7G5J!7`aj`s}}2An?Y1dC@P7yQexc^ z{19jMBqy2}?y)LGh`AudFoc-jgqS2D=8O z6OFKT)=nzxKGl(32Z%*yM%%0_I6NWjQ+ICCEfKl?chP4dxhs}9&`+3~$I;k#qoShN z`x*)g8u(W`LCJAkWD80T`tud^CkFnEOZpzfu;*e9tPfCs#DAVY6IXw=6IOmi*a7hv z*`NRQ_8js+@JjA~6`Yg~XjZP}a%7zv4tN&Y6!bxCnL@xIkd+Q?v^mg#ef6>HpVf~* zcp=q7CKr}(j;ON;&D%*tVvc#B5%cr6;R_ zZoWjobgQe&_MZ&va7f9&jz;ZguLP^6c;$Flo$>q+001g+3>>leLWLcFKoLas5gkk% z14k7oD_EO_>WxSBjLpo|#2*^rm!GrwK$>I8{{W1P!{Pk=%g=e+I!VEW+Niz^5D^It z$j`{VZoqIy$c;r4wh4Kk=+zolBqu{HFo}S+_X9T0KzsGFbP2FY+y!)ect%*~v^cgX z*NL3QqB4#MlyI?k-SrGutmW7?mKMaF>AXKjt@i&#^4nFTVH!j|E}R~ht356NVi)`O zv_&rP@>`(yYy!M`v9Ga()fCok&@jG78U~bA&@7OK0cdw_6o4~dilD|V5oG#AEmZn| zAm{^upX*|kYnRgDV6G!K3~0e~h<8&6=%BxktOceJFa`KsGX|y*Flo-ptpE(kF!P7D9(nmxn}4f{u!4|-U*~ogN5=A#TA6w7^5&hC#wIpSS+HNW zCc3L?W{C1zW@v8L@}WW>GRZPCg1V`R>2T>-vquX%);5ijw*PFS3X|Uc1!1yyfBtv4 zm8D#dJ2NW6qf67G7ctj)E=g5dT*%6lLA5$r+OhbFW6IaVO+@&3>)Yj@z{Nk%YL|cF zgPw2!FS-<j!1wd7U)D2bF zwE0CN7J5gQ0+#8p+N?*lu6#XQ9~`)gde!@nge%wL0$g7l{=oH7Ex2?H?obXf&VAMO zro*J!(@;ISa}L}@?VW6%KjWCHy?WhULg{)u)yEkyd<9`^9@eO%$QA3aw<(!kY2T;A z3jCQOw88&_t`CTDSLi@Q<3kP~cZ9oy88Mr1P`! zaISIme1wx*2>705c7q$3pBO6E$+m(Q+i2t!HVQoDcJw-q**Z-@zCK1exPhLb<5rey z`4Q3rr%Z<**#A0#u7htPuph0{-$+_u3V{d3TM+7w&R7hy1tt+NWzID1)Fto$)P`TJ znLF1?k3>CN`5;SD$ql*t3}jbcK3}5psNyUqd3HI31W-6p^^1OTq$sKha9gWKo@QO6 zA~mOlW%H>3w8HaC+h4eNing5oL1FJtC0qp+LHa6atV_I?)9#_-Oey z6LgP1)8J>Qv!&tBG}zBU5nR6mr2rL~X^V!=ikriPZKbib5j#DarVwzCQ6SvF;k37Z z3rrypy0R19ej4_Oy=Z|c1WcN6??Nwf&>7lDhNUkxkvwGwnFw}hFO&Y?iEqzi>QsA)N`HG zy`9wgom4G!^`B=dt(LpTMO!ZPw%DI=r?M_y`1f;-b;)YWxNzQA!iqbGd8Ee)Q5%`U z-|fuJDZHZ_RK=tgi*85C~m4@;TGA zpdW#}dY8#cMYZK!LgE_s)eRE& zSZCQ3-ZZi>81=<1pFdn*!199MTKXe%^ZD(sZ}pS=B&KHyEFoCpcG{ezy1GjLf5J8| zJO+Z-wy=+Ffs0&DaCSEaRhZ!mMJV8*Wi-+i;OKdXz!jR>{cGujQ~2)_Fe!)!=t~%r z2pAa$W8h&ig@7q@_VT3j{6I_Y>D7|yghC;*_ss`;UtP`ePrS(L%5K$l)*dg>jw*); zFG8eJCKZKr{=to?cW?9dG4N9HHDb<~T6C+08oUb3I;7VIw1Y(Ee?k=?C* z%&4HwPnJyGPMZ&E0?rx9ZanD9Dhv``_-OyZG!(=I>9m*!#Sf6G2Sv4`p(q#?S!s)g z&a!oy2HLf;wGlf#nx+uQwRA?W+;H04zXhfcfOi(D=ffVc7cDS_fJt-q(xi9IBE>(8 z6Ry}2Q8z!-sya*ZIhVnsU!{}P1>veNtG{P67i8L6N7%={Qq7az$(5C>?qM}>zN&FH zb%MVI`|)NAyuXphCa6jADpI_X6t5t~%SrJvQoNKD-$RO*km9>Z@nTYZ7b#vuiti-F zcaY-SNwX6@$#X+@Z34`6rrw4$Z2Uzvt0KV(vvYP@_uW5lP1WdqspP&J7??(VM-deEd))BsQCwberu-CYf#&A8} zQwuRlAx195NQD@Q5F-|1L_!P%$`A@MZ9+_o5Yr^Y@P(KLA*No4sTHoZFY8|4mHh`u zW9(8h^Mf!)mG=+%F7#H{a$p&TDN1z!A$22zlxNDImY)(N`qn7;=!+)s-QFpQo0ACo zqqbjta|TX{A@w!~fqquNSF6XG;6MKcM^CE0tOi z79aokxV+;wTeD|N%uBaPjF5G9C}Nb(KHQYJHbOS%ULNOm9w#S{b1jc^ad>fRr>%6Y z!jyM^-Jbn3p0LNyuc+uuUEQz8*Ax_d#g9t3U2s^F{-#L_G-(4$5047-JD$1u8(Z(G z=2P1Xoa^>9Pz8AEXn%gO76P>$*cY{8{c8~ zX9b%nuPrnasz@Hs_BdrYQuP8zv;fdB}i` zGr+EYmPrKS=A8E&YIypy(;HV)2)M`mg3d#Ro}htR(2syHllQl>SnE7eax%Z_ zScJ55mcT*UMX2#3Yz}vqd&!q);-lKwd*o4%RGrszEh>i&Ur3R3S<_S;4khGsl_IFg zUHv&F!ZkRZ|2w{lerG?uSmn$93d|kw(f=`h@e+9_gXizo(?Ia|Yl_3O3JN?_81p!a zlmmxp3gVJCcfiM~?^5C?PCAJ%SWE%q(Mdd5g^KB5n)0}HsDZ$Q_=8Z#3f0jm1A?_T zI~ia*15&|=6jXaNL(v2VJY%aHqUu*n2Lql#>V~TKZ^Qy`DF+OA+QtlBUDIa0YIP^^ zV8GLKfB22q%I#!;0Z(T{^r*w24nb9a4u+`ye5!h@Wi}AN{Hi}K!)e6PovN-G&nKJb zZ$kkCo}!45h-aHGMV`o$eL*YE^ts?KR9{y%j^&56sm_@fhCC$Tl>&w}K3rMLA^51V zv1Zjg`Ak(y552o=i*;VUkQUs*miNe{g`xvx)iyW7rR_~~Ypb!KloYm=XK@6H*tR?H zfY8e6@QBB@orA||Y}-kAoWiz!4-bf}90ZS(*tWg!IDu{ZG;3PXwyGpvi-(x@wWnZ9 zTdmb4TH6->V=EjyY9H7Ae%wt=tG@*Rxdp%3WPy7T;ox-hIQmn7_jo(&=)`gBQ^76n zr-?y$6lk0DRZMxt$ z#t%qz!JHhYL8d`?FyjD`X7wxZ)%)Mf4qbT^89xBD<~dXh=oV1a{zL<|GBD&xuaWrw z%+=^{aYP35|1onlJr9|yk3NeNRXZc$jihT9>us9F`d_nUb$Pi#l;i1H%JkgO$E6Xw zg_MsHXHF8d@NM}=&fOR%NP9HPmr*^66mRs2+-#~Rn45R4f@mR5ry~#T5AC}v#q zbvc0!wh(;bVH^11*M!2w)g6c9xCRt}W%PPR-D(to(TSzAFE#)q4orqWO zIyPS&o;iC*KEdzLeD0O~Z}fz$e-WtVtVtJxO}UnfmQoi}2$*s$7aiQL>PNsQ^Ms4F z<0gh8iqj<9B@RhrN$WS-3KmmJYU8dvuyf17@ zAS66idTdFI8790(*3?qXFXZzx%--3>EW+ajSXGmXQ&9+L(iQx(CC| z!XCJ{-?*?l@KLRzrDHj|g9=S^6 z%3N(uroO)tY%gN-lZ{FbuCr@y`thYgYv#rEtMHtHT;+-L8jUo`;A703)Cu9Vsg`jTHPy#jm zkWDb8Iz{lB7=fgv2b(o40)`O3{%Ztu!YB2Pg>fBzQOhI(x=>+#v+;uV&{?_!nkQv6 zH*+EbPf$J!6sx{cda82D{+NF&)gvFR=XQSLN|&38P|4*ln-uHKCEb zC3Uw1eRcgkGGR_P?G7j>+FXxKLXh<1{gUw-h8nT=K&C;~+UBoOT=4Qw*|vhomMXfB|0Yrpbe2Rzkn z;jkO8-$hdhWDm3YPp42zvuNX}5(}?H9%%OORz&lA^vBJuus_245V!MbDQw5?NUf5RA*8Eixh;J({`VrY8O@jGc zNW56XS)a@B3ne6h_&&o$-zQtpC74x0;(;2@pE(S_5JFNXZT+v6F;*26&!5g`Cf%xy zd2JtdVPe~P-*o@heNlUCjx^`qzIhyuMINA}79|~!93C|nH0x0tT;0}xFcofK{Rp75 zQ_;x~Qcj_$b~F?PqoP5xZc5s}nG5bDbjs-HP8;R;4-0 zCp0TsxznkV*f+U~X1R=|mcC~zxD-$ld%-J!Qk{xfkv?%|mEDTpVR7Yg&gU`S3n$D0 z%w7>Lx{+*AEW!K)!G(C7cc37QFb6Pug}CS%vc(Mv=AiJ%`sB8^{HYU;xpLpD_2rkc zgItsc{F)W>bMu@mvB%IZ5hXa3IHCj($%GH)A~Pbu%Z^?93G5P&1^BN;Xt7WfjEbyK z(Re5_B8!(lW_DA=;$vtYhxt_<2Gy1$CtyP3wJk7(z(dv)1oNxYmEjHFT9XLaIn9NY zXBe}k-%ecu4`&L(=jJly@BE~a*)ICYrOb`}RRl%x%})9_S^f9qlz2+ORq8&xwa}_U z($nz0TpWw9ri2Eca@vuGS6#c?W^Jo#DrWGd9D;=4LwVP;gL1HA`#w2mf4q&in&(52 z(dj*R#4CUE!K=g%@l5wnXG(38ElzoY!R+p`qp8X{ybu|gpnlS1jZ+?HP`bNpX{s^~ zGekxrY~3!Vi$PzO30DP{aj!J{7XET|)<)P4ZrUZ5^jv*Z$L0HftgN(`N)tcv_v_}> zwKGy>*ZmY*x3dn9Ldh#A8H?BsrRp-3$>3M>+zU(fgkphMI#Z zsS&Enshzf|DJ_p5!YN-?syo+tmu92L7^hYwsFl@hrc^16P${hy5+6!DI`mV$R$8p& zM@D8ao3DAcDsqH9(nXsIY=W(1d-N{r^i`y~6U)+K!|6zBgj6fI(9DEv zi?ndX)IjlHf1JJN_jCx4u~IA&*Oe}SlV?l0Vg)nHzDMd6;qTWas!}x8wTINW3T?IV zG4!pFrtDcXJ4+n`JyYON8J+vRY||V#>;HCaLv7FvZaV+cZThoG8AqQfBR~3?;x}a% z9k&Wj^cWKMzrhfbnUTCw=uxHJFh&=qRh8W_G5*`M)M;lTj$#=Rnf}fD;E`@0*vvrc zH3ZADbU+CXC5|Y;Loxvc(0UEU+ZhWnwa$zn{Fr`3GX0=HiU|+{2bpYuQE!AbBLe#v zTf09^ecndI5&G*0m=I6se=UF+d!~08JJPJhM%}qz8J2QFl$YApxcxreO3}(M$juF^ zX}MmV(=8|tZOZ}J0&*J&aD7Kh(Df@1dTx0$3;5zFbyAQY!K`IV#e;B4)D_qx%4v51 zExnm+!I5Bo6%rkIoUij3S747QrQHFv^g6Odz6A5Fkf?xQMY%TbUr0}S5E$^!PyC!t z=g-2G1a;X%@Xh&U68j~I6?d{k`$eH%i4M#awh;8*Bf;F9!A@gEMTyiiUioo@xN zKc9=hwI}^~))e4wP!S9hfVCJg0!(%IfgBvg`~P6eVIE)@K__`1-NhJs#5A=`ftr7r zK#lLB;}OcG$2)B!)(0rF&Vr(R$!rEyqQ1Ke=UJnoHC79WHNB|2X&gEJK>*WnP2jZ} z+gZk*Fwg0v-Kob#-yvH>NdTBG=w7Bvq6Hio_sp;gn>Zy8tR4 zu+KuiM&}%6(Fl6?%oe|Yi~{tdcMwY2R0Ndtx6=EpEo)%AJ{+tvbSBaVvol-(J05nL?o2RJgl- z1bi~Lt+B>mJfn#6d?u=vdmN@qD!H<&8$>EwLEG;8A?k`C`Oo_t)`$8jj+~3MrMoxU zRx*|UI(OrS*!3CO*)bRdGZNc2(&I>g;PxU);Ek-Q6>*v2`?qXAL=Fvh_aUa1sAl;4 zcVhs$+~21gQ?ZxezrPz32akQ-nCU${yU)z9^0YpD*|{}Ix$!`r-IvoPFIF(Z~qqbBLJqAr>o2ksMr)` zA;rZ_sfhHjvZjP8H+G5gdg4yFF>@~RKjwo2NRi(*R*2l3wAC%GZN>fwckAy~;U5+# zKX=1ZWCtbEbHAkKtkk%DbZ|JLdf7Zh*7&shW#x?)ZfRsmM0o{0WeQhWT(K>QpWW*7 zUIs|?XWbYQJhpXX?BKDb8zcEA!QZ(XlL3znPzH~WpbQ=#LfIaIKdyW2UWl`NBPQnF zLhsbb^!kS(Z5<5<&Wu03%|n>!>pqk3vKMa1JT1CdSJ#S?E|e%Bxi#wjluX|zJJ){z z71oS-zoqfdi!g?e+5XKvG&)z&PbSneHp>VCNM-p9sVs&Vz^^TG^fpv9WOIz*{h~j} zdHj9kJdR!goz{5A+(Xho+-_^e%apd8Okg;jH#nL72!Qn81Hiz~kM-nuGCbCi z<9EViEjbgv)Mn zk8D>p@AIFRYTF^Wbm=L!;-7!rVfBiP)m2xXhUG5(7sE|lX&>as+y-YTbRKv&(bzuI z%_G_T45Yk^c7mZjEFuNYtIejp0hf7yMwe%@|JsvJ7|6l=o1QrRwcb+y)yC_4G?{eN z4kGzKbXMOyNs^c9$PIVhPEnedmBoo?ig?!eC!gL__~lcxKTiwK5%Dvu1Qpq#lBNbx zn8P1@GtVY#UYKnUBa%SyaHk2DMBs8|Hg<{)7f=LHIXhX&dD^_7LKMLZ&lSHqkrEM} zn<7*mW-zUo)gmM*La{X_Nwx;uv~jd$lWr$Q=-D5!E;GT1nuB*a|WJ}6(1#{ zGu&8*M~i+=$@2XIWzV>`H5F`nO_%Gy&xx}eF5ZneDR7QNhR#T2=rl5cqs4Rivg@@s z19rfbM_A-JyWyJRf3pQIwRF1Otn!_~OJ|k4jVSq)8?XcJD)#nA)2ZPn|7*k0eRAil zZc*f{lN7(mGR7na41+M!p6eVLUEx^MR*prktU-@%q?t)#={zg{vaP8?Dc_bZaKtmi z@*JsOD9hE{BNb^B@m1KlW;iSewEANgF(|btqKOOctn(goxZut@9UkD$Iu0J-&MJPy z;etDB13bW;wG1BM&RPHuaA&;^4^0$ZFh`;lp8J|t;V&)UF7wfGQ#ZN{=XC7%IL;xyJ$*GGR+v7LSV?CW?Z#REB9dQD)u7#6Mu~P zao#7h=l!wbi;wRrBM9!eLv#P^xqA0)_PM-;vm@TSoE;<~Dz8g7KjH_#k1;5>0|qxM zD~2e}&*xaYOi)^8=W#J5tRPVA@Q>_@O74PFWTma(YPPJ>k#K6ub`Q%yahsV(uC%+Y z<@jfm_I(o^@Do*XW%MP9kNe_J6@nub5{i2v?I5l!NV36K`g4nupsX{f1@Ie6s6q9B z=D?x`Rlz5CaNyHDYEUtJf=51lDy9bAfKTwa3ZL#$gHpIho+h_F5Q^!c*6)7dopCg^ z`qHmn8AsEdV)^?V7CKa^ib}8h2^{V(T;f6-|9JsKSN|X-(>~nlYY2MB9&-t{x9HEw z?T~x<8>j#dgF4q)Z$`qI2a0w-oFfB6H<67aaL5`swd9^0`SHrgdH1%^6ap;`rXH`D zLLhEVmgi8XPyJ7G&|XL9zPK)dmVI!M*oS$_O?vcri`2e6x4f>q^_ea2XJ&=E&T(UE zTH6My^yVwJ0?u_g^%{Uk`pd6}tCrOjmBw;Y&Nxf7IB8gx80##?vbwO&U09X~>ny^u zIksI6JE#HjL70y5<^uH#;%U zBN2NVf|EL+1cwqwl;9zG>x20qz(0a(;W)5C)s8;hb?~3a>kx{9QIS>H1Tbl2uNcDi z(`WB+kJ*F{I7Va&30(>1u=Xbmu$`dSW;j+9G&lc`y*Ghs>e?E|Yi&z?woos6MX0r{jmSI`NNUwmw8(R+1CZ1)2nzZ{nG?|>MGa8{q7Vp^ zggIacAtA$mp9CR^0TR>qecykr-&(A5$vNllbM86&?z_((51KNz$pF-oH&pAR8V-&+ z8tNib0JJ{->ok(94ex_CY(2wiS7`x|z7z4!)@&chy!$xuSg-qWZu|YKm1q1iS5|u; zxmq~iPv~APD_@Ae!eS>@r|(?F#fF#qLWUxQu=Vb%m}fWGsrx zJDanJgo;>HP@wqur;Is}FT)pNR<|6715jS`8)KQ3=UlduL^?Q?G7-?uZ%K~_N}Vvm@>A> z05m3V^3xj)fOQ*?V63gtvtmP4S^$Kfc7?J8jE4&(w_;_&{7g1)Z^T=fVm*R7?7ZA z>6D7TmL4f#)s$)C)b2p`CBWYfcApjCZwcUUN6f3|yjNN|*?f*fDCX}W5lY;@kqBkU zG9*HI^&AqRK=qXF_fA7RH0NEt!796VO2cwUUj$tt_oyq%(B+ClOod?%4EJuE;Im+_ z?JrS8Kt}k;6XJhhZ1jkK=j8P|2A~hxh&~NEPj3`}LR0-Ev;g26-KNBfi)Y^QOkT>S z?d1U?%jTpODlEive7i)fS@yv(1mG$@rV=fQ+w(&}wFHq9f23D0Ivkbl@1S5(UGY^f&40tz8Aj z6Az$6+OTDB0{AenG z1!EJ|w|<+81WR`E;>=|GNwLh2cUVH`)#F4k(uPD`2T^eu6&zFup_n*66=L*{+m;HL z3&t*xFKhH{RltFiuSTdlQpUZzw@t8lu^-9m1EKB`gu27FF*^1h@Fta;G`7hAMx6YJ zYo+rDrT{P{!J^8JMhgJY>euCpy$cRy=KMm%%NQWgi25TW69QmIN5ka`Zh|l=lZmHX zAR@M-QFtbR87-_y%A_e%vc&?i{AHygE|a0?iVLWvx_U>1xj5bR}RrAHd}|2#^Msy$~P`E_)zA8eHNbKpI?rg#c-AiGu)XaQOuSq~%Oqv##3q zVf&%TKRvj%oEx|Xr)t|0@MK@QPX3$xRO&}%DXB=N0Yw=q+-T@ORJ`_X+MbDKzd~q+ z7f&Md`_yR1lgQ~Gnw(IRIcgfOZhBe;$i5WO={ME^ax6t}{u=a}djOq&W1YRL2ha(< zO?rB3R~1^VK~dGzfV7(cHX!>O>kzV!&~Dn;|K-UWuppy9{pbKh!AsFcQDYyTSw15G z$bZAG5yjcNtYe%^m9i#KNf%ftY-|mp&|g2$rO;nHD>^1~viYCBa#mCrYFOqj;`=^AY}o{5vmHnR~`v%=bJo;!aMHSyzV7Org9qu{>Iw*@w% zM>zQ`N_Bf3tO~C|^~4GNueyVUx6S6kq<-iI>u%@-32LEJq^grS>Qp~2AjbmQensbI zHC+c3N2Fde-Qwt^UbnY400Z(0lK%lCf`kQSf&5#?HsCvD^5p+}0JM@Ksvbqp@{Crc z1wi_a__n3ArqUdTiJJ9 zai3#&K-OD)`c#U1t6aXN=yGwqfF)uqEQ<-qaIl~=o)G8ni+#-TvXb4RgQDdy1Y_-= zM{92A_jCqFNcivb9Z>gP5wza@=CM2X7K$PY{Ua~JolYAh7|5R(1I~c!p}QG$zrGW? z*Q4$ubSu6P0}g}+ch`ZMa~MSt9U1!5?ld$HpXtxeEodGJ;yT70pF+{w?ak~bD3Yx4 zPp*R6u-+N8qlPThNRyc3{}@G*{a;yrw5eJ+AaRVi#dq-ekQP(?SXi(mHWP9b@Duu^ z_~6WiSC2pjTPe1)Se?O^l1yIXY`<`)0JB4Yp$IUs0t`uji4tHU1eh=ZCPaV<5?}%Z z7(W5VSAZc3Fk1zf?**7Gf~Au3z75@rYj8rq)fjfn@x4oUpVFGCTPWl%#pC|=Nndznz)=cKBljj${X}Z0&s|r*Z zoj;R++-S^n!bpTCK_WbjT*#)3ts2u50LDyS?<1N5z?AIKs$J3oAo~sbSje)tZRZmt zDYyAbn&BwleLk$z+k^30h9& znagr=b}5;jOQxSA(~ptq@nm`wnNB3rzarC@lj)9R`W!O-9Ws3anJ$T?x5m;R#oEn1 zclFT)zi{8Ankwt5-X(tu;j{h{)qGku<#ASVuKV)h;!;#RLPaYoBv9-g=K*Sv7Y?IT zptFE&SiRidbrw44qTmatX&f{~4mLeg1R;+6ulm#cQCe-GTq;zTC~eE0Ge@%JSqfNJ>R}1U^Q_ zoAaN6SV|F-GEkAtqX;`Id6WjWZ#Ax`fp$nrrtn%Fm4rhgo;sYkUMcK|kepZ3D%*C@OX-DjuPt6%`UFc8^0w z{4YQ(=?#O?tTiJfj~W9T-WF9LW}xH;(g6q6ru-(Ubv2c$I{H@Ftr67fNPnnSyPGsN z8o(p~&o%jxRLTZF{U88u6TB?Yxjt7504>NampoA1bj$OQ7cUu~n+1{%$=&-%D*aV( ztRJE6JTpS+HBizNZS7Sf5KEn7;8xqY5D5;O3pb&n0~Nif zkU??%g*KEdDH@U`{Xs?Kn119G6;V@^1PYqEQIpeP)5ukIOCmqRRRCKc>J2V;hcmSZ z(SIEJG!TIPm!m`E*j1d{YY4~=#<1R6y^u_gAh`1UW2>P3FHK&(MkYM{YJ$Bh4t;-( zSZuB3(+0o+K{J6l@GTA~Ih{|ybY5A=kCrw#r_;eE<7fb{(9!%*S44CWEu%(o+RvZD z^)B4Ljd_vp`rWL;BV~QqReeTSWw5%iYrrt$W`SG$in;#bzN9ZBGh)Atgv{hC(ggoS zE<~GG>3$DBgSEcr{^z(5&CjTc4>~g7__uwE;Z4=}N~^$+Ru%0CY~XWnUPCZV0bmmE zhi0G!0IV|Rw&vTfU(0A%(S{!==SKM|kb>J|u~>SgQ{-FSUb!$)rO!^-y{fUY&*OgK z7NyfKi?0Z>jm=N+e*CtiTUFN6yj{fuuDiFAAj1q?CQe&+Qko0-Lcu0(=9*2@?Fdt* zfiEQ#bX4$B@d}E#Hy)J6n+J8MTFOlzm z|DsR8m{IBQac1y0b4@H0;s~P8XuS8nnaCU}9uRdI3Zn^84WBlRSq0W~D6@ka(3rhd z!)f<21whMV2*haIe6?qw1psjOK+Ayr>@|#rnbFScLXiw3K2>G=IWx^K)2G^-c{NHF zL=s&f%C1vo$IRmyIRyLfxA6iTp35?0@oegpX%2_4;O072I?r|5m1&-8y0$zwJ48O?TVLuffhE13F`Hz?897I4}%gCk@O( zQxQKt3jWpc0nfnZPNVZM1f!5v_wh#?b!623zw_FVZ>G$Y$}J9l;1e_jCkWyBuIlQP z+*nSM7Z*wtPGNbxIXPi0;RZgLZ6QAA+a)ev$O9Vu%fcF;hsuL)K3uxZrHyr0dQQ-J z1Ht?$`CENmj!NnYYT}uf!%7z!w(XEdP~u1C;-fv=6W?LK^~375qEGwmPh54~$sZ^#QaZa)52OizC@)7u845ls zURk{sh%(%{dE6|dnOk0HH47=$pvf9FnL$(iVAGgYqToXwzy_-UL2udH00XJv41{LN z*m@@q6!(w^(zTEFB<4rpwfNv1P~a79k3TpElx+o4Zyo@2{p0jd)7Vum5m8ph05dj?tnK&WwA(OrDtmZ!&Bo-|E@LW%7t$?Czck*3RzJrm4wnl2<$64#G&CEBfEvw z**>vyMQ64TQ&P`Sl7;OMGBSWHj{^yuIpv8DQ(i%{R>&j3{X`+pzhI+`n9@os?Dvcw z5LRZw~U7GA7kiG9xTiR0e_cf|2fcl~E*tuOjHJ?CXl(9->!4(g(!3ec+5 zZ39(d-~!0h2;I$5cQe#|=V15TZV+U^QE)?`NQ|0`Kgt0Wp}uY<2p|}KYTvCIqrs9-KZsSa-U) zA8-GI!3@tyCDFoP+JE>)@uH?JwTmoYvM%lZMzsp4sC&=pXkFXo`l6T6B8^f6P4xm5 z;Z(Frh8BtSMOz|2E~=o}!x(e@e@+M8*3iJu^1f>R9kV07UG%a`Uu>wCvB9#5+}f!L9@VY4dp;zd zZn)_OzJ>fZ>O+oxW?RAETcU8JViP>JHkNXh6&GKo@87eRPOzP3!KS%@t_d|iYBEPnK|OISAZh@F@TTZZiy0 z1SP-`F%Uco5CB!{z=sJa;5JN8r-F8|~yZv;` zp9!Jzh4-T_6csX~vdJ6U3KX7QKW-5|5o0pR1Yv_1Gf6;vlbk~CnQ>~MWkVr-KP3L@ zrMk4@67G>KPlz$j0%B+_=V1YTe-xqd3DxB>E}@iUxnGR277#JDoDBtb+fuJ`ert?( zN1@E%sI@J%>=y`u79`9(b~UmK{^@Bt2WiqDL3^>voRm)hj|Oe+)? zk}K;NJw8(vGXZRc03X#>lXqD)qu&FF3N}<4Mn*gH!Qv_H^3$kiHQd-StVTzjkO9*- zM?-Bz3k0vKj;&QobLt7eTzyS?dP5b$++P552Mt{v#K`dVnKd%B%IF|yY^`U>%Y{sv zI!~m3+IoBCIRXkj1>hZ+{tJV0`Ije?EANUv6$!si8fYD$?Wa{z0xbk@S1bfkNdZ|E zgEH&ty$uh4EVy(jl3?3Iy;+Y-xK6U%DaO1Ap(SfLE&23I5d>QS^=1t&A&+DkBE~dy z5esTKKSDz|p`74HpHPA#s8092l0uL>k(@;#d+BcSa-g|oq<<9`@1!vszngC@=STLH z6Jir0r4Ti>M|O^e^eS}V$E9;XuR;bQn@USMMc#(4Ky0C@8#Or%HtDU}X%8wBcR&So z?_9?=I(Yq|d(e)K5IvO(_)P%nhlWA8D?JCe3vpfH2CkI|e7FK_Am}Q>aP_40j;wcn z{N_{|Am5l%w?=)+z~fyfs;h&myc`r15Lxz_CjC_)&wTdr=ZyaNBZ4KIyrSoFajm&=55-{3+DSpcRO=pl-cf*8PLL$u@)5j-v{{J~(iZe6Y1Zu`@rF zRuZmQG|*XM-X8D;OB@==D=QP9_T!Rk_IWSdHgWnDhlM`~h=0~{A`9vFq6u3dD`Oij zfkU!9BgVK0h`VYz{RQ-UQG_j!m9ZI@aGPX#Sd5u1h<`t=GpjKYq8kvpV_Q6)QyQ#w*1C*#&e2~_PKhcfuR0NEKg45nDr%*}^H$k3!e z`y!H%ptLeR*CFK);Db69phi|hL~EBKOdKJ3QrF;(5oi#24fY^n@xDd?>>QN*5$y&V z#=uO2MkO``TC6cL;*EYaI)1h_nz+8l?*>{t+T;H%aj18K!18_c`BHC_MncPiU9e<8 zDD(~kR6)Jks%Hl3rS7Gj^r#4u9`&%^zvb$&6o1}_;h1^FQOP>Hb71`fzR0HftEKXT zA|Y-D*GK8hsYs;NQVOKKt<}7ZU%wp2;0gMx&GFt8h;qYmkZtP;vGbOky39Jf$hlZ@ z|B2w!&Ql>PA*>{X)^mlhl5kl9At&L2hmeyHXb%f*aB+Y(xO@t2aIuHBZwVpu`j&30 z2tOX~gtF6d(hg!@U!2W35HfLUYP!@?n0X4g4Ov!UPUI6+*;l~x@N$ZUu8|4|Ke73R zuytOGP^^Zx)Ug`Ij0XY8uNB#$2)=Q7Xu$yxH0eh109+1Rhe$dScjckg)k-@6)E!u4 zm}$&N0K}sM(1mGq8g~UE@uOQFcvddRLy?EM%-jflr#b?Vzb5###A3ZOcK6KK; zFsGQ;=Q~A$AtI0kz(wO%pnrjyzs_j$1ur(esOp5!8Zl$(h|SV{%Kb#>yhJ_EzG4=OStTh zsMzHmnX{-)pmBC0fnqXJ3VQP%4LzkpGK4@->(*MDjnvfEt&F@j-3<_UP$ii(lA;qB zl>_J#uSaKJP_I&u!z(pPsy!~!g#((X=ZUzSAzgOl4J5Hq|MWLjM-H5LZ6NvobR+Qwwy!qM@H!sRnz0-ncyUK*RLqhY}aXOD&RTi|;Y(dh6yNXt|WKN!Z+0 z6TPG*hF~VHwBa)qJvTa8o!Qxm-kmmVnm~*tlarNgH3QXz5=#5)7gWs4VHNZ8cxApf zll4u;^1y5xe1`a1S;ZrtZ~e=t;0!?QVo{r`AOjLy?!&J;)aG083oh5;*KKNZ9{hsK zf8f_GYI9l##9Z>r*mE^^ZdG&IkJu}Vt+9g7r&&aI&-VzTPvrCW^4)?f9z{L@JJg@u6_i56ZJW?CyCGw>|h(V~H8c{dmBelS{T zFpY&<;p+~ju}`Z;kA@8#O(|lDMle(TsR{57#UgHcX5^8ofT}OcfOCO*GDZjT2Kn`8 zu(VG{96b;>a5M+f(Yvqn%tOl%76LKRwU%S3X?TS+s{rf&?S-fg>?Ax#(r6Kv5au@_ z%-2|LO<11=*I1Pz6}EbB>~ju#;R}y>Nq#-hUQ%Jjzw!!y`{GO`V14_gP2sF%8D?VX zbdP{cUX7wx@nb4pDW#AHgqg~2>7*(Nnc28J!_x+z(!U~43+4AVN@rwp~3~Q~yXy`Kg8cpzOsJPtG*mu1=&}eMHf0tL+Gcq9i zi0p)3253ai9#}CXU>TWLf0kXkJ}UdJ#lIESF*4J$Jp(E#nB?y&D%z7o-goVVjQhV` zlnOoUB5qcMs%=jRygNs zUbGZTpa@!RoaCqIlqbDxs-l>~jFvhOlwGaqbY*uhjjFiKp^%Q}q$w}Z2%LS&%&DHN znv%XZs)?l%3H4{hxg4o$$R&7*+V|SwgDSk72IAA38(Ilo3oO`_hP2#|zkwnU6&F#_ z4Mk2o%8&@%3@_~Ki~d|kd)<6CN{Ki-V^2~}8zeZ)*#>zYM=jvUIXgqTJ@R9inO3om z`{z2)di}W$w1lG!4iwWIf{^-7cWydU z)%ppFnlHUXkI*t2x0ZBt3;P!{*gw#CY81t*yg-RNI3v}x3@h%~uZE7GxtZ!27T$nT zW)4nCH81@|-7MIzHqg#Kv*bZjJ&`(AJumy*X`Y$9-_m2gE3S}y5?NW%{GfUXNM5*K zY{Ff=z3ZJY(P6CgLCi{$8xj`GZF4@K2e7#^? z#a2FVQ7j{}3-o+FO`w%*c!boC9Hf5aBlY7eNDDX~S~sh-fS=ipuDR3J84ha$g|27s zsN{&2tqMyF3cH7Nio@+gYDVpa zX{lbLi!QiGyI3x_T)E3cu4ny|I5x+mH)qV)?yYFQx8=AelOEMWvWy$>ZL|M!T13dS z_)tpxnpnaXDb=MHm%t}kvc#C*1;m*=&LReV4PbIV)ukJkz#~}}iZS5=VpA2Yj2%KNG9GTl1PbLQIE1c{v+$VsN013Ae|z~PSNfWxf^0f&Wl zpkW=q3>4$zp!MQUOA+(A-+$jyWTlLhuc&D}G<6R)jailFI0Xf5L|_oJ{QfjxmXVGe z#;qS0kMQ}~Dv*!-8>!6)M@+Is$ZPn>I|pEPh&xn+ud#|pdiQ6CF`x?0Zt&hA&iH-w zMyZ!$%x6|DnyQz2>cBrtL2uM(&pbRC0-87+4AiTvUO(eUM%&cdybNjl5g;J0hHXI6 zO08$r+IkD_iqit#m!LL}_n?HfEzF%Rzjy9ne&lpwa$zo+S(~<)$0_PrA{GRYVDd3 zfj@?%x_go+Gp-bepiH`UD!!Qt^;BmNy*g2VXZ{#TJ_10L|wXyC~xy>eP8 z^~pUIz`D)j6i9Kby+C;j=xh4J^5pdv+ggfZ_ZFNIDMAfZN)nfX8WXgYk%Xqzess$c zTYkjvKrA9JpUe4p2d%^+A}^3!BjJDP%qA7;~Wu%o`i@t zvY*gX1)3elP};1xZO<_>OdWKYf1Mck&=FDS(T348vbriX1XfXFo*=wyS`8u`Lzf}R zR%_}=rWc1kR0d53beaEN0zR%<>u2c5Xq#G^|3a26+S}!A=mvl;v*~W^?;2Zg!M%0D zhIi*g%%6^-@-y_P3##G_$TUzw&xs-S{J@DdG55I}XCHm(rfCshhXses`!nVD zWUr&wl2(Oo@ ztv+fOfgzN}@g3e54PrPd$y86>dK6iL7JbyEqWYvPh%qs6GFoKr={!dhZ0Jlz{h5Fh z-6)zJwX8_<(}=#Uql>73F&SC1G_(POUpOXOZPgbBDQW_0Ay+_?(%my@BYr*}$@ALM zu13kLnnk|T6MeEzB_!N5>znvRsLc#?5)=>%YB@g^(l135Y(>1Le?D<^_UN!r60lYL)}|t?J?YI#0=a|%|u2w z0MW2~0CkHgmJdkk_A8={@Wck2o{VTU17zBO$!Hk8XfGO&X#*ysVf2EeZj%uU4|`+q z28?d>0%Us6u!RfyPU@_ThRshmFoy3(2Zc|&CkYZUWvyaLa$l6(LE!IC?(bw%`YUJ@ z;f;d%&L`iOmNB`Q+$2%N$z~+en2fvn>1J<=lvrpJ%Ak98wR|J|sFQf7mh)>Ny(gM* z3NRTAp~^{?bTMXyfcRT2=T&HkBAfzD21BT)Iz{4_a7O{XCz5cghYFt@mo0wuS4vLJ zjN7xqVaCC}vED{6i$AbQKG&BX$uRW0X(0{SOlj@nJV$-^Zu zNR}iq=1CWkTf<4sr+)(Gs9n^X)wqPKBuig0=6)A3xrXxrG=vjuJE*VHs@x{*i@Qy@ zxp%K!nP3K>XEF~9_$lQ_cI+agB$$Euo>RU1*2YIuok1377lUMR{cl>l@`f|W;&u^0 z7FUnVLHoH@^(dr2G+Co2Gia(GY#OsFBxDx>m`ybx{k_2u6{hpL`K!p@^*XY5?FM_- zcVmE2c$Jo98v}f@b`x;GuOiz@116(y>O~NMq#xO9Y7C=iWK_j(hE;raQkuOZUmImI z4zB%R$vWCRi$L-=;$(6iuY)14_B@fDUN^=^RwzHYE& z9o&cphWMM^Y(l^<1n2);=ZglE-*yZ9La4WIpg23CU4Bw1HScPO{i7tDVcy$E zW>$uh&sub~Y!lk5DfSG?wVHJ?(Jju4GXz8r9_J{7J~@`q2!d!KF5xlBvQ&)O2kr(u z&fCxsLudp+v;db-L$b^jWBdj2E@_>;k0XBvv25d2SVsq-#8V?fQgb8@NSIfPh_w?4 zh@D8_;Sni?Zap%PO<#Wjeg-00@P~r}Nn>Qe`bD7{l1-Ik4f>>Nd1llB{cu49Tt{Gi zpLK5;?4gEa8F&em_}d)y1p+?0cZ!x12jJ~cZ@^mvgtMU`hDp(R2(q>WTs2PzS6d+a zBZ=#Wo(fKdDz6{yHTh{||08hPQaRe_5hiO?jl6h6BMHGS|53DBaNbHE#Y}9lB7%qDQ=^(aKPSz`)FBv2PlblXpo{>qZEaBBxx-&zt>#*5ziw54VK35jCu=i+F zTjdiR7`7htid{&R&GZcE>9B+BjC6b{s2Y{a!E^2>RO~>-f51|zd`kzx)K);(9T zC#eZ37n`<$a&hdUA5>aRNTmgH8!CbhBIm+`$hlBoVU9W?ZRW^R9AgsjGR)3JdQDh{ z5sG!(naHnCb6Ud_eD*)k-yKK?{h;Q2i&q6B)gYt-G^7B7KeS6)i#FH)0P>PNfSgqI z6v&nFnZ?tY+Zb!9Ip3$t&AS0ufYhw&nNM>lMQYZ;rQ&WhUmsjZcF27)&93tBJpPr1 z*~c4^gTk_mlJLG;`RR%6M{q25XrO(mh$Eu6w*ulm>!{1-fla|THc|fcN|C$XVLjqNo-I}(T#|6C3vfA(W2M057><n9Ke+skV{L-VVcdSND=E?$iT<^ZxA|x6DWiU!vXu~4_E9fbAq}wb$Eq4s zLHiDZCDh)n1TcId(7<$viU$*!w~-ypBxDx!vf5t9XyY6WBPZkSia^w=Vd-RmSrf=e zMl>!mV0ci2Yg!V)cS6I)YIL(Ewc(dmG(83~>@v_MOpj$25-4hziH&X(hIR*?R5i@7 zfN#{8lmUyU(Hp+YDr+jpNjvxm+E!KB*5{j~Jv9)wFWJj;Qc7i2GTFAgbkoerMMS;OfjwCYSM6`8>Ny2br92E~a$}oV^Pfx5MPGfiYCS%6WlNtUTx?zLz_TbbRH1 z=()C}?&LADX4VUSp{VbTVTbb`_R7 zC2SoR(vYf+yWg4(5-=8XAK*2zfjWqEIa`q~hk$ILsCbYTzKyK)Cm})E%W9h=Eo&Gg zrZ7koq3-p3N|bI;ml>tQ*%_x_MP%skAUM%0fzwfh42s0b-X|IOjW`3L~H0NjjJADW)-F@}gMj?X1f}A){WvjLFGk4)nGvBbT&K zq=e>!>^nQ>e7a5L^mY8>FGWxWqGHRh{|y9uU(;Nm-&ft!g&pV0a)EL$CP{;W!L}9T z;7t&nhd@Pi8wYgTDHaGB|_+~YpH3>@PO_b)K^8ApN|HrCIjeR8b+J-ytzC9-Irwye5her zs<}2A-^iim(zaxwrm6=g{|a zt*etVa%%$@<2glzGbA&5Nj`%dF@5-I|;Cs|9~cQ)HEKNx(A!atjcp-fsCisfX3{t8cw@cUM^s+;kSbX z@q-IUGl8=F9(ur9^EI4v;UVkCommG`CnEY7shadxAw>=miKk6}a`n=6fq?wE7H;r% zIFTBDJM{+a4V;(N&l?tUXgvtY40>+8z0?4TG7*feyy%N7+B@^l9L~(i%20lZB96@S zMH&-a{swl2dO=aS6R7OTKt1 zwjw+_R91N3tvEqg<%S1*w&90MgZzPDhdYZyz#joy;Tvy9z#@rxI8biqP9!m}0&V_J z@YCv#6p)zzh@uKtff*Pb2q!dkqb4WRWUg)+yDI5a$~MD$qv3R5ssR9RU4>*DSttxH z%rx>dn7H*_D3rCd5nC%)GS+&m^0LZcJMce2Rf~)R~ zhVVRRw=lry_VF(vZI5qUawTQ^kqg3Fo7VyZDfMRK3+k0Wo4*oSpSXUZXG8y6{FOlX>>m1CBKG$@w5y}=$HSbib}tlPB%|vxIHDr{8Qvi{hZs1r#{4u+E66E+WS`Mt z&KAxN2%pqb9=3%*Vss{ppYaxI)FYvK}Zm|SnB!Yy51KQ6>>k|Jh? zINRsJR(cr@5*_#k3gxm1P8)Rv1?Zgz=G&&B6+a`9Del|a7<{P4vg{y@eTD)+Uqk5XK(6z^18 z5~!2XFZXn`UIdc^oF@grb0u;vBi&9?lu3u z#+Cnj2XTHWwRv9$G2<_4^DpoVE@b#sLTwI*UvTkG;5@=`6?r^$K3#6@4mq(4x*mPo-fYJMlF+cVTYw&yngHF_`sk? zc!tbNAJ^pF@?5_uWn12g=7I;!4=CH!wpVSJHqE}1nrf5{#Eu z*wZq~B62gLu@Mb*?8;B@?G4S;mm(sjl`hDUklTe8&CZ2^uDqo7EPC!L5EQ~?B?t=P zvK$13aB&4eAzZ!y0V7!T{8!7?b|Fr2mPutKSGV5G#r^rHyUzF5ZV{$lM(!zR z-rPbXd?)hVXNIS}^bG`FtBma9ECaQt0<$)xM@HWdL1529VTOu{s4zdfe@~JNQdYWb z17+oN6m$J8&w+l<@*L>rp1a5)o(6wT;%QL6>MP<9XwWQjmVtgwe^I>37AYES7l5J> z6(ABsPj18`={`suDEt!2!EICDjP%zvoZSy<<;u*t?PuFx&W%LKs+EAwl1C0NGS{rEmr`Ih6sP)K`(YJU&tqrwb)UurP4xAT9 zj&X>4GL3&%w1W=8FgGgWl?4imXG6Hwa^5bWPmUxs3aBn%dss-aj1ptIx`^d9oTK^l z$q|IcPO1yo9$q0?62+LZF5;mY&fCxsP5^^H`b#A@W`RASonnEtBQh~OflLgyAQM9~ zWMY^|1=~Ao=X!T9Cq-tDYyw#G{ZCsRj%JiMuHFE%MHK*$_QB)bFvx6CWk?6Exz|z5 z%h8SU^qDQH4F0;2Jsvs&j%ti)sNo;T1`RO$8`1s|WP^GqGveYEi4C${)U=vpPxRl- zPKvkziB9{yXkRRbJU5~!+MwAW@>@uPyb4Ya7Fyd>OBnYhue-M|NUR3wN2^OGF5wZ$ z@{$U`gZd^nE+HM8A}7z9dB@Fv|VqXRgZ0ssZULBTOmqA7y{Fd=IZ z6pwN++7+C6U=5zeo`S>OvXi4eJ5r%9Mi^ zalQPJb(LW&(Y{TW_dPqmSa~sXyt`tX1f1V%=*jPtJ+FocH^k;)67wOW%RU+{Pvi??81{78Zcgyui-`>_fn_VG^>}d|7QGX{Z6H z9)n7ZQRbI_3jk!=tr5s!MB~>XJJX#d`ps@t;ph!`_87fE><5iX4K#ioHbEt5ne;w) z_;4 z0e&t*Z~9wmI%X6R(2d9E;5r4))fxm*i)85b9wM8=y`BpI!e01_03|h$03z(w7tYSm zX9w)nrTnT#FgpI9YNY^s)s$3=03!C>phRtuykKxL1}+|8uP)_RWh&H)9tgo$rxcPL z;=wxgo(Rk3Uzr_INEY5#8K|CADO!~Opn!Q(qeCerPZ22Z;qckC3~xoY^MlYq*)yAl z=aHpPq)d^V?`9>FEbbCyR0f0}Cr$BE9FYRA(b(Ju5&51wc3)??pg+BNQ)+`cdLNtG z2K+{eitUgcJcqZXVv%7}6f$h;1GA!@UKGPme`;xC?1Xd!@M*<=Ln!^!Bu9^xj^3*0 z2Y?XYI2$QI{2?1DU`LS6Q>9$K%y1(s;6XGjY!Q;?8g1t~WH+j^SnaxOWca?}MFbwi zI3p{>gA7~PK5OFz=e*onW|EiW)`|>TMn;O)&Lpqgf3`d|%RXC{57}jiF9<)K!4;H> z+8}5pOYZwwic;BHf>+8oiA=eS6F?F9Q2I9yDjf-8nm?hoRJ0o}edHD2xUnFL*j{qn zcM4b5-+p90tKt#mPcB$!7eC@~!9x2AT);y63|zoM`!HOO=e(}jkc~FTr(q}1yQ>*Ha)ebHiJYh{ z>(w^g=un`4z>%k=er+Mv)G`#AZuEtIItK_i^>44?ht+!X9k?qpm<90e>_6;9pOr!B z4P~edsKof3q^9WY0eNQ+wigx7uJn08z%z>-{_=PruqnGKZ7h*i2`vkrxLPM=*Y(e- zjhXKGKz=U@tVjf)TD(IEFAe;}4 zyK$_fi}a|;eM?tYgx?BtnpJjjPm;yIstaDNa$8wOv;VTrXDtL&GhYe;FDIlyz{{x~ z5b)A26=iZ-4X+684+wbqZYl)4d^HUMUjB@9bARMH{+tGybZBxyP3EX+yt--3sJJp+@1+XX zWDn3}zl7pD{0rebtg`hR9)RZtR5`e=23Atl8_4{>P}IfeTzeFdDiytR2F(FQrBW}J z*6K&!xbTOxvF49kiHlM*9y;!P|q{+nEqWsn$C+eOT(;cS40a6)4T)#VW`;S$Mmvv_HLdH9Mz zCok~jjchm)+2r-!8TQR3NcdMmj_14emqYe3BoDlds^~}_$fkij@HHeLGefSvFRHzO z^|`-3BWVLP*7X@iRR(zOK6PyUF96W-TCTGMA7Dgo#`ZWy?#~BLtM6a599|=pe=#C# zqe}d=JhFis+QpWC^{nr(-j&jExYoCLz?#2GGhz<9;!ArZB}Is@&%^tf4TLBW*ZGPM zHGIwkavbV~199epU2LUvavVEsL3s^{E1f73n?+<@G9!2r5~)-t94Wd7^oMw1FQ2No z&hd$s&LdDdTLYZr7wAl3ub8SR;^3pDb_8WdtB;dBoql`PRrjA8>%ALx_%y`(H0<|j zIOfxE!l&V!Ps1gjhFqV9BAp>U|noeHwav8YDiS|FrV$zzHwUufH~H zX3nmckKC=BVhv905%my95(4p=^lvOmy99AZ#Ptw1=lTByYd!FaganmuSex|k0;il` z%qqJ9fxT`3K@EJ}JfptI$jU^dtWh)RCjI*+%7H+r2akEM{d@j@*~niEbcdjHG3nna z*5Eg9Uk`K^xQXZgm-&mC)*nLzZuW_SUkK#y;A+F{oJ!;2UlPl!>9K3dUyqPYlRj)7 zu)*^P{tPCFT*9zlSO56oc1-QV4Ukd~)HOy?ZaYX6c4>X}hIGI472(dJM&eq0aj`p{ z43ydp(uSE+A@i6u4w8a7#XvT%NExK4dhZ4J`2k8QHU;IjdZpaxd|87@#vmAkIysg} z0F2HRW^%GI4FKvqX(J_AGa&VsDFCz*g$*sHPAWCvQ8ebO-OCgJ+Ixn4faS7Ye|eMZ zdUEz>=Gt$UMJdF;7`XUeA&!O2QQfQ*7|E|J-VoQ73hoD}QQHR4%DZq-?a9 zogmDl;j5}XpvVsK?QxY~bW%R*t=pGaw(%n6YSaW^lCM#lrvZ};eh3!d5E_+K7bPx1 zPO_AMMp8g5hqw?-`eX{BQBHLkz$J)CC#m2Zxme*I67InzvPx5aNv__I$%ZVF?mED#0BV=^+ z_Us8lPTDCUDf;ogg$tQy)Ot!G3cHQ}TjHEdMY)|I(1+wx6y^l}iF^Xum7We1ce@qE z-4;UJ?TO=2q>^#adT}u9_1M~y;pibl3Y5VrqjeR3CjhNj(ZDk6!XC5ABmkxahk=9m zkEcxmV9K7UmPHGI10?zNsr5T8`)k{28d=ieV#!Tjx+&s18zHVs^mZl9B|4C@XtT5@ z+vWjt<6o9n4>V)(wMab&XTF z0cUogQX0K#tp2qQ%;=3d^#6ST!a`m`E;9xl`StcP1%OF{53~j*0Wf9HR00}J02R~y zU#`d$yt0n`-OCjd&a{8l5>weM^X!8t#cNoVJWk92j&G#MQ5TyKvVqS!DIeuTr?_TdF|AAkLq)`PmJ3NPJPq4tuyC$)VbLO zfm=-`DKF5!hr9f=RMJq2qRL-}sPZ5hfe7qu+EOIW1A=Xa;<>;0x5hX(IY_$k0E`Vy z|4it7QvhhiW(UE8F=6?ET>c$#{f%F-p?PWrwyzDGx1UUM*#E@V?KI;KBRA}WP=>Oo zCfN~pwK_v`Lz&h(FCy!_WH9t)tn5WR<=$k{mPW_}3>x_g2ze&PxCw}dz|OCbJ{gj< zLmptz$g@b6$HbWV5N)lNa}*2!AxV1=wdF+BO$dK!R&u%Nuhg8L4I7<8qf>K)muO5E zr*QwM`&%1}LT(=fLsagQnP3)`?G(Sag#8hr;qw>#qo!E=BM{pD{nJM3pSxe-KFM;7 zMz%fZml^8rRQJ0bFmiCuMDv`-%e^A6!Hw6)qZ_T!jU#kzIg!-(yB$zQV{gQg11LJ`M@My!p#7~NuZNhVebnF{eCb|U3TYjrlSfO;%hP@I?=NA|uD3=DVs z!c>U@LTaWqw+o022&s7+LTZvznkfn%P0`HbuT+)@n3QUz^R>ts+-&opeV81HfIP=M@W6k%n56ciwzJHF>Q$1-5gbv#fwBmQ8hcnKQJ9H^%lI+ME!Y9R z*BYkcxB|&nM7;TOg{1mO66JVrC+{GQCunBINcww(l>|Kg$?r7eRwnqQCNwrNitzL8 zNz=Kq7{!1L-j>ehuqsXg_>>(Xf;zI3=zRv%ky-Sp{UC+`hv5a#2u@{3ek2GdLE{Nf zWJ2Q(Xng88tjqwXF*?OAA}`!u!*Q6hudOl#j~s{jGGN$ylYJnBGEE2x`+7pi>%3mQ zCRrDB;srkVqQ8WiECb15A)y-({v!8uRAn6q{UT96V=8Baha~$T{C%FA2gg=B(i$|f z9$zeVm4>I80glHyF1923d5t*S-v~h0jo4_HU{e5utC3*PRa^XEXT@epLG@@eqVw9f?j_pP&O1rz-@k6DU04Psx3`NF;`4wfV>0W>;eW*?bza@vwfAg>1J}mw zELqVRXM-n8qV9w$c-eNVY%G-W_5ggWEV=>zptXv=6aV!i;U_FdUZc(HsRh!q0E&F) zD@fdG*DhCjxu*$*kKL*YA1jA=u?-Re1POfw zMGBpSinsK}3>_)PYQ;zmMh0KiAEedb$fqIa4uSvX{KNmWu)cF+pnPUsXcdZ(wujs|gxIvDGb6{B@}=0Wsz zhNRG}Gi$-~)R19EgE&haq*l-R=^J*mb)22MCu!xGg5kx^d%Qka-tQm$*!7SX^So_} zaMR8KS!<(ouRtg_@0tw(-25tkYl;qZ4VH&;R##>&VDcPfGb;mp@MJ}xj3-^G5W0bh z*488l4K&A}d7O}?XhM3X|A3weA_EB^PQ5O5#D=otc{oKAcYDis}V1fO{0Ve*SB02uKyAHkt2oi@s7MSb{Xye zcsNdt&<}d!CTK+8L8eb5hV3yhoaKK9fWAyWMuizN1%O6SqLH5tzJ6mw+Zdd0Vg33| z@?MAwPQ2BL0<#$QP#el8R9mLvwI2HtyjdFlSKxG!7^4rh|7KvX&;~v}^ z&nqcsXAt7^=K9zE!w--+Df{zkS!-&iN4+eJPjC(TZ>HBC3iF{8J_9jL#zvdcioanj zfZ+&HhDLSL8~SAQ_$DJwN?+6#lf%9k3P4}b6{FTb3qWmPdIp)Co$FdAcMWfhOjoJ3#FaHyk$#QtOv_e2*3T|8#zF4r<^~34PM01A3y4~Vv z#J7}C0}W;|f+9Gf0%E@mC)97?gbFlz2X6n`D=A+CVjr68?>){>_>Uj4HH#2+-kB!d z?$o!^DPnD!^K=6B5R%Kx0fkcRS~#C7PJ4hY0Q_9^*$U)Sv=(0A)8#CH1y>I^fkIOx zYO+>0ja}v7x&n@&hW19o>A*AvK#kQLq{A|1zS=V|1wdHHX%9Ha8@*yfGcW~!NqhFp zri*^rI7f6lf6if>pcR`akI6{P=(8k6KnZl1BYIdn^Uh&kz8J!`%@G~UIC`AdH2ufV z+Y%Ffm{f{{5_T_YvbV%GgGCCIy&1q@OIr%251bNi1M2%5q{sx)Y!9RvjKwbi2ER!< z9s#6z1vLJOV@-rc8)yV$aX)B$4I05%d~Qel>9o%B_Q(}8*98gZ{)oNeh$np=?7#WN zatkGqdR!s2xh^#r#Zp*E^gKyPrDL#VwLp*AvPo>{@#k8GTw3B0%vYD1H? zx@qhx2iLU-wN-$|?u~}i>17H4a8^U8ZOnYNXJ85da9%*_S)*5MXa=SLFlo=8*>phd z<)Zfd<$&62Mc=P4jfKK2;-E)j=c?<9eko<3Y&_m{`L&KZ&^(i;ODbBA4m{|>iki55*EG>$b{qwKy+Wst!d*R?T z&73{G!GQ>eJ1oa085o-4U2aR+1CamZE^+1G9uv?;ZBl|%k80}M&EEjv-x zHhF=S2xV;pL*4%c0K#Bc1u)N3&E$DzU9P5mmEtI9=CL!e8#n znhs4rVOdJ-DkYYsz^+nYS#sPh3wC&TCF3Wcj8LDWOlPZ6rZXgPm>>$CiB9X#6p5Ow zQInavY0Rqf+b|P@d#i@ihG`N2d)Lp=G1Q3p>de3t0EJc)(6`9g6&s#`DF95_vu8Iw zww~dZDyWT_cR~SSQ_6+(Zi=jDI#&`$RW$7;%`T7bP;`4w5S7Xgtmcu$t&(iXz*M>L zxT51RsVI}qkasIMB_%XIEpbx6&_Z!+EuP#TsF<9_T-J4Cx{|b-$*6VB9!M`)V#Dzv zNv9Ji?X3bQc_E$B-J3{NlydMSsRcpV*2;5|=hKzly)>%gHs?UPB3sd0F6dE)l~!=s zm*m9lgfJ>wT;7$L|G$$N4X_eqI{Roy}n45TM;EV9PF;st>Jf+kJ8}odZ5nr zM>!PrL)X(?HRs_;6n}&=avC>hZK&(Gszj0_KcaSbot4%@b*eYJeO|UbzRPnlDW`D^2-9nlf9O(kw|iD@pl5k}_M8(%heNwm;>E z{*>AMDb3=Pv*MH=#3{4IDb0N;Kc23lGMvf|xXktU_f4v<`g|Ad`mVx{DiUi1i*P>4 zSjhdGj1m$j<51y@3Op3g1ZDfbbDq{dYO4d0Vz_8Nge%T6Ep3=(DXM z{=g%C%Xjz{Jb7x5MAzEnPYh%h%b1*ACZ~hRX<~A?OinqIbBD?KlgTMya`|d95;a+)CNp)@m{pwHlih%^FtE33IBl3F z0kC&n1dN3-^VOMwDF6zs>Jio&yJEvLFa>}qd-m+61J*8zRk8wad0M%N_NNMtb6ih4 z=N<{POk_D6anA9Q6+I5JfJw}~-F38z@Jqchi>}Rg4YaB4 z4{_gHEle?A_;8l=NlfB~Y-}if(+OX!m7PowSM3pF)9qdb)zOH)MT!18oTOGZ%E3C3lJNIY;`X52ewpPd5y_=iOG>MIK2!`2V?4CkLr#G3-hnA{QWL(tmf=0Ip@B-7*21&10UJV zFH2d0WX4dGp~8)Z{zJuUe;fec$5iC|I2U`h|2BrY;-nRm|vKYH!!!s}ifGK=m9(QftgfBK#t$ncM#C7aC%IPKo zVFCkotYGr2cDv<5YO8%*`ciVlCEyQGLq$y(YUt2>bYMCvV)_H{2XoHB){J=4IOiN} zI_PRgT@VHUySArm=v%RgKfsC%~+G2T4Ucj>G} zWkt>lg28JD>sFS*53j7}36tvUAETxfHJzwYL6bi$BsnwS0At?556`e*3qMJUO=Q95 ze1f7^psO8qIX&wd@|IUL1MRIIKtqn!O{YJ~KmfIZcKCOIku1=|G{hkU#lIMXu|5u_ z0BCM}g2I4|rr8S&Oafras_8K33!r%vIi#88-?b^Po)MxMeu@2{sg#p(4XGkRnzt+G zZDUN%VG3`A36q$(P;K3*HDxm!3R~7h zl2hK6briU0CF^BdTL+Nbt~r8GcgnHt7HsJze2yLLb`a`{6N0{m-M*LQdD8Ki$91ff zYBlw?8!t5?owXUZczLkjS+m=)#l25ecFlL)YNaBOp3ZQ`E-6Jhh4D;iN>TGJN+)cF zGTpw>lZ!UQ;W(00pbK)|!t=jKf@{F7mPW&KQV*E=)=&U6$ex}WvWL&}H#Drwn?xsHDhV^sDz7 z7mq3|#YrTU-pu*xpt8G;E1#TW2RlBSN6cu%=X^-6^vvR>{+STuD!LX4ei|nn+v1=L z{4{2eE2l!&e-eT|7hM|#T``V#zrK!5fE}OU#uJ67SDX71ycuwupQvZhoU+u6i57y= zty>EVZ*#u}8z5?gsF6c+c=*1};FFPnd@^=|UhdArT}Ao!uz37|y#3OT(h>mw}ycC9?BDUBJ^CD7Cm$yLcnm`QU#6 z|Ac#A{RX{GU)fH|K=mBIvR!Op{VS^Q_y846+>J^r!tlBqx*ClzobqgVzhU(cR)L+* z;Nb&6o#%&27!C}5fZ;lvdyy!-j7lgPhqFG^O*~ye%E2E|e|SGiL~KQMBwvGYy-+h3 zZv;Ev5OnSx4tBmixSF?Vag7Obj(U!j+oDuYYG}JrwDdFOz6&sItZyZ8|Hd>$7xks zcTvZk>f_2i10Bq5A#i4c1DzGQvKk!dZY2aQg5w-~>mnW7wm?@s9{k7%Tx)HLY|N&> zoJk?AeuvXpGs^^{CUnJWXst9y@KWL>L864msA)w_Cu&sC@` zmBE~PcXv8PB5V_g=_OYLp4a*?=i&}uSm-ja&_kbc z5EaEB6o7Bi^BNF+x(vHz5&%1wy}(i#R-I$OQKkT3n^2xZM`}|5n6hTNh0y~5Cd9p9 zLVWzE`%fM?j$CnYE!e)f;VEE7d|VlW^%tio$Al2+IfK%l6O`bnx#DCUw}s*blph^It(6p&~?VKO~X4nCZ$dIxIsJLKWtJ46jT>h zO0E!?pfo%s=<009YLi{cb2;q@c}z|_p$3Z@XVl=JdGFJ3*yt#k%UeC!Rl4@-a^FA~ z6eUND+{-1t2fg*M_(e@~<1@`5cG@HWc7v599~9qyscK9Cz_yyY8H5jGDb|aDDF94a zGaUwc0AQnst2Oace@@FRVBr4b@Aeg4D`ji!c!?X@8u`RD4W8OTjw>L?<$GUD!|hn? zJhIk#-)25>BcF)p6TjpWSMrI=`9x zKWdrWM!eNYlZ;~bkDG^obNu+K+jFLz@f0cZPQA~VawM!y z!0~?X@uMW%_lxJ&7B4;JnDsBx*riVA&~Fjg5j|j^gB$QxY~m5b>=-zD0GOr#@QSuX z+>$Z)>SJIEfd14rng*r-c+z<3EO1K(ERg;KzgSs40E#1yi#v<_AFR)-w`?|lV^^uo zo9*>Ax$~vhvEsK&%-^7pw6fIu=KL_N#Ccg)fxTv%md5vPXVO$6^+mGSTf9cy=(w9a zJFh*BmOj5jG1=c{f%C`@GTFn+ZQcx^-}Ea@2qKBDQ9)-I@7VT$M~nsTWf8gZB8kRn;D7nUKy4U+bb}v0Qy2DCB=yrV0exOw@X9OtF>ErU^^U#Mm;%5Q z<=@}h!(R1c%M{U!iWvUd)X>IR6$G*BvtbZ)c$y=ill+gj?50*NZn)~s2}sMk?k&VG zQsO5#(m%~zAkEvC$|olCi5L0Ab9^F$PmJRef94a9^NG=XVg#RfgirjQPo(jQA$(#G zpSYJ#^y430ne6Mgo64gkhy_^-z{_;hxLxP#ttT;*%fmi7XyEMf~6EQohOaWkuXNB$&OabuUbR-MDC4D6U>e^2t+MJkwl z%%VhcZ(jULMI~dULdeaLoIR&Z@ZxFN3#3J2T6ec5wLacXL z)D>#$!4;x2{8gice>YeF+s45IJ+aNk_g$P8@Y@c*&ONIzUIG5*;E3wdZJ0WP` zxWx$xZdDDumY6uY#?DXnc~!$bNu^7|PHHD5-R1DkD*g$@`y>(Qvq?`;(}fxZYBbPn zL+bCPNFzMCNA0br4INT<+D}PtivAp}`Tsi#`2IR{Q#9B*BANogq%}i=j~)Q&X!5ca z0>Aaw(82_1=zoL^u-Sh+oT{;qUA*d3CD{%C;)^PquA~S5>T6AZGVgL0zlCCgbBQ)G5G3ZU=o1XM7qyw zP^=dNQvjHt7;y8kF0SFU;6%LWntC{FEC4@<`HUysF6c+csTr~ZkQ06B}3p; z{L#zKB?Rfvpvw$(4Tmnuv#ud;v8{y2EZGBS$kDp#^hcQjK)UxlQd=5>uRaE*006b6 z7wA2Wrq~M%Oafran!U8>74|$kZi~4%@1&PjJpaoy8IIklWaiySpl{Hc`De~%JEy6$ z)!PE-6RT{Bx@MywL3&rE7rV6#t3J%)bauKkG?iRFMX{AY7YM~z^+6WBvy;HkJmPXF z3U`9GiKv#eJYs9!#o-n@RRxO5y5cEqfg*F+Y2{Top!bwz;n3a5f;^3oZ;Pj?xgMw0 z3Rc!qwUiJ@(zGy}@(;lO>i&Rxzx@+>DZgpv`l-2K0@M(}9;wBE9g>dhkT|eIqTvV8 z@Eb6^{n_w-!wN6ckqOYy;R8T*C26&6GaihAW>w;4+;K+5^)WC70H|7!_0wpIy}-Z}04A;3ON$Qryw%bI`xEoLNgJ`+4{2qU zyt%(1zIj$sUOLpiE4Y0HiH5P~6`BT!H3(CBOSH$mJ=N_EN~W{A`+6#azl~g9ETc=W zdLFHaQ57a8oXg$4*E@SFsOgS7wng)Z?%)G8ja>Ow7FPthYOtbfRp9;_?bzlAU0`Z| zpIli8ITOG$c7f>HRuan4TXd~r?gsb5w#~b!?}m8gY@N1nEtr%ew`;8gcu&yb{cT$Z zXM(})-+$ZIb>wND0=a6$oUh&G5iQBi^QGZUrOMUl^j_x~=1a&A)k+A05i4bmVRc@< zdpP$Jc624o>S{3yRiB-(wd!V`T|xyp?g2TjoE&$b9LFWc-6O}{CCA+%$CZ)eO3860 zwURa+PItwZRbhSUXC=xg!mCerY{^4&vTEu0U+tAciS|ydE zY14MIy|qRDYMEH$lgzjIm@CHI6=TZ8m=ZCjSd6(X#uSM$gi71PVRo;uTmvlmLyDD!I#2u`L0;P{p(~6o-)Tp4z z9|m>W0#MPjfBZzY%Jxl#9Rhp5sV2_XYo*j@9flu_}6Swe*h8fJE3QXIThW*o_07}d| zAPg$5Vp*C!q~?hm)c;-@q?yFdT-semdOC3f8-fWSUJ1{HrW7^rqSz@j6utFEPh8gj zoR}nJST`oH%ak}WSid>vOaWj@9GUJxO#xuan(2b^^Z?}5;m4`FOQ!$n?y;gw5H5n9 z%N&snwm|QcCWiJpd%?Mm_b=Fqr0-u4b7-}5wAx~Fs7R)MODp7(#WYP_wd8w=JPG;e zxubxYu*i&(FvtZphM4AhE;WMsYe;7GKS(h%%`IlFcb8T!4Fadg zr4-aC%1B-J-PlX;%xtv1p?Md%Wtt&p(>HotC;#RXU&%(JtvHZ(tto!9I+&&aFlEhj z{<3-iV0(L3eStW} z9zeij_b-|?eUx;<0q)`5*41S z!e3S4PpI&LD!i)-zet6jpu$U(c&-wERf*rU(KqH}ID?Nzz%I@#I<%9zmXiL_cV8xh z??&S_@ZE5Lyrhri?sDLdgZU`p9MTvpr9<-(N`_#CLirL#K%nm@L$f7P=}wXmdBs`Decm68r}KxePvsCHQy2s0ik@p$_;x<dzYGv|zRm`bFSF=-T;f**XY z`jDL}CADpOZeC%$S@OjY@9Z2>>XsNP@&<*y^ZhMNKDaRM6xPi$mcq7g4wi($nrrj!i@w<6TJg3|;N0 z%jsFykhi>|FCqud9za8m)=j5B%4h%-0ZL}kgQL+u?*EXc00?n_6?l%x08cjLEmHtA zH||0v0;AXK1yXtd6i1Zbx~e;>Gvb=HVTJ3YKmEnmc8(T>&Uj*zTgSM#B~AU_I%!?r z638*F?UclL2MXol4eGn`%(pn%3Qf2ScB{ZLn(a)adH8V`$2` zoZu~<P&+eQnv=8mH@m{Gz#iw@t^LYVTGq{dSkH5JS642Tm%9a$x>8b_>O0-t zOA6&_sd1x5Y<4d>JOb|Je-FKNH-NP+cLNg|z-j;I{&FxXX8V9K(Q`2v6JfYH8g7P$ zAAB}kf7qmq>}D{b89IC*sHBt>Frf_yeW2kwoL?X@&u>4o4=Qpny2023E6K_ zSl=LSTD+`U!pXGX4<6I+NR%-)r8~`9$%=gTvWK(_Jt<4OhuiSO=(MA^Y2M2!#F%n1 z#u&xj3fuCo?x)MvSSDp=U0&eSZ8be~%!FO%6*N+-veh+^)UIngb#1q#Pf>k z{9*8$fCDShfsHh7yWs1NRCnN%nm+=%+EJI&v#ud;c}1^82X+sjAxG<`(;sCDfDi{u zq`ET(UwsTr0U&II+_A4gu@@Ma1i+Lv(_zpT0I2RT_sscw&W9F8b>>n7!8|Cp@6`F# z9m`8+9m}K3xbnvb)OfpS`|maF4M^$HEfmPS`5Qxy3y|kOl)sfp2sSiLM}xa2H!_G^ zKT6vilruifzr(2#oSX29>cv@h)e9g55u8O`AUYBJNPl!}`yQebflaX{SGHwx7lPr? z9-FT}7%F;p z>5SE-Er0z?z5B+lVV_OE{n_a587Gs)O5aUw{2J2xW9jvQ;j=z*6doIQyTxKe#(!4z z=%>(O^WRp$=&3(oyBi&Qtp^~l0T1;*tFu8p=+4hme|R4y)bS37@&Y6=*s<9(RHUe> zBet#l*2OEo5ml9pFBM%~!ra^Yefa+NSH+ksVoaJCb6Jc@5o40X7?v1wL5xWhW6p{( zOfe=wjENUxPKhzGV$4bLit%8M=~y=F_@&IGU)wg+1-B;VUp@Sf85_blMTZ4fNFvq7 zJnJd5%j_B>Bd-c#pMrayWDUrls^9`7bd5#AQc^Xd;!LUye?F=E&X$8V?c3tOkYwR3-7NXQc)0Oek{5Hnm2fDF7gT+O!&lrT{1}HleO0 z=t^gp1i+Lvn}q6L_61N*=B-Y~(e0CyV|A^#8PqM$Bo)MeJw zHRP?k#dneahk>JY)9J%B34oo;1W?8sgKs|!OaZ{QT8Fgx#!{>o15*H)vSu$YdRP%u zs*vZbgB+Ac8D(RuA)q{T*b^^pq_T3cOmV$Uy1S~SVo3~CKdk7=yK<{)g*UIF;*$){ zo;0r|*TooPIExh%Kwj)nh`*dLNtW3j5HqT*E3MmcOIrTW>=qcY#U!qBtw>u<>boI+1!PY<%2G|)&jvT z49B*oJR%w5UY3z7OF*`SxEFuXwcUZUpQfa{6jspPpQdEGV_*sZ2vPBdFO<;~dx3#T08Cl4mlnN(%)6b& z3AN`uog}C@0hL`&DCMEco8g?M#(H~KadC?{U@ecSF6*(DPu=6g`Asmlt1eltSlNUiN-obV;!Zjf@v%wjrBE+wVK9qpt0uCSntzV@6cHCFqSZE z_9sc{E~hF!KDN4Woxd-4YgJ;tM7{hi=aNk^VWsNeJ*OQ{ZHkFHG5Z7rBBF+i8VNL` zM*IgfdBZ+Y=!E8cnfY3`_xF%9_2r=;F*1tLbXLS&j4mJdb1IRM#phdBPu&47fX- z*FyK@WB!tisZg)A6BXP1py(79ltJ8Ldm~-2xJ{rwLRYE^?3lDr<(KsC0OzoOBITaX zw>ssX=0c&P>p^Oj_hUuZ)GIm5WOH8;co?)D!d>9lhP)ox5bn}9pDLu}wN`t%xa^%I zyVMmBv$?G6l4OrAH}DnuCrBjpK!-Ink5D5-jT{;f3DIGF8y(h=mkg45{hgBweVuw} z0bdeC9s_c-!CCwNOCmNntTS#)CE?RdR_Vyd zthuXjDlcHSop{f0uli3mqu$?}&=IF8KyIA57bs+yPme{vg zB2|~mW?gD1+VAUyNW(W`l}zEy%XtjRKfL4}72f#ekcICsb^mqsDsmk1<4c>}tvIg> zfiZuL5E$xX%2bHM;H`KtIb5^#w8Ed%`X*?oK^ampUXUj{qqstP`sN0#%il3DgT|@+ z9Rq{p%CVpW`9RS?h8P&q*m71P4KKRtJQbWn(r>dh727#}RJC`ydq!n3lrhTV&Uj!S zf3tE{N7xgqJnqCi?z?&1H}kkEHn)?_ZDn&Gv$;Gr_dc8Z7n^&N&CO+Vud%tmvbpEk z6FOY0&X+GCUdM)Omeum>?;K@@?6Gp}aOFYlc;L;f2{`FPC@cph=BTI%Lk%4oC@eP@ z3@S7*sQiF(c+?9Te?Yl0pbN^RLB@^sQK18gP_`jz-h;(p<05ECIURrc{v}1>aOKzC$y+Nf4tx3wNs66c~>8#5;0=Xb5 zt%5QpeyQ%Pz5eU-vsU`14b6%39qtiu%E{h|9Ky$1F-9%MD8(4L7$Xy7q+*OjjOh?# z#9~aF7}Fxg2*ntI7}F@mG>9>E;uTBFyH<5B`)AGKd7^Pmb<4-(Cs|Jkf$Epog-&Hx z=-oF9Z%B4`*4ICwgD`ly`3gw^WjRS2XtoWjLs`V2RORHJVwrze-F&UGo&Vjcn;@zf zQ@YfoH3KQ&kRE`}spNbifj^oRT3FYKDFWr4>h=Xl^A%HB91~7cwMXU%K>_U{vn9q? z%I5A!|LxRe-yQsLe5+$gi{rW$$C75pbz+842prc597~!U*EKno zG&-(pbS!!7xM9V0Y)~#fVfsALhPt{Pzh?>_+ANGtn4VnZEYLVDDNV>Y4jc7p?nz`R z0Z;$a&Zxmb^B!{5AG01=N+u$u`4^pgCn8G;bQ$l(f43MAc@3X`SR#ah*+i27m=d<2 z!@v{(#)K^l7#(2>08`fNjsz}Y9F~557pm4Z{Jc(q@c=0>%FH5>OVTE! z!-&QubqXcsI66hyt#HNLlsY=gB(wsKT2Vm2vDHtD%Q!SSKiD^Cf}JLKs=q(8EId)f zcr%t>D;y>B@$auoW>v>Iw%r3YGvrYEgj^W~YGz1L>J1ubaAEq{vF&&00#(L5^7Jep zYA03AnguyYH&HWPQg%}B2dBHl?4)j@q^nOP38DgLXGKJwK+RRua8Vuw|jnSt9~0IT|dW7``%qJ~dY@QGb~;!{3R#3wfMiA{WBJ)c;^Csy*0 zh9>(~?jGe!8|B~K?uzX?)_B2+E?>=SC@N@U;z%UXV_+|yqNWQq3e;$z*)~j$xD99E zHhv@^Lk73_7y(%UP~mClqM$D8p01&9*||6)!;22k(4*0G{YIGr01Pk4%xnz4`WTo3 zpmXnIRF~aoioL+V6aXfz*-MKK+{RO36M+Y6-CWGHmEk0)ixpES?B>j;vC#ljp#fx=w%7((Ww|7;IzSEW2 z5z6`KJHEPNd&5IIWXwB{n3A6$C2tpM6sXZavu)T+l#O&X@+92|5Bbym;td;NXG2%r zaOk3-F6*AIp>Nr_tcIO!=x8)uKbS@XppP`yjD;Dc>iiL3Ha7wt;EJMij>FM&<~$sJ zb5O}h18@;7Nfy6>^xiUhi(_;)!-CbeW;9|KaY+s%hXy+nAM%oBuls`OV}Yxm?cYS>Pmok3Ttn#ovUpp*=NAf$~inzwUA@2 zywvU_)dt3_6^1N1&=iQAlEh<~@|$O+25(Uve+QoWJ`#T@x`yC@)^8^=D3uTOiFXmVhOY zbqp+lVVaKI#LgJ8wNgMnL+h@KC2%y|9YyBe8gk8KMQk`-DGxVi($uPkmNK`5GTUx$ zB&5LOgsh{AMOt;CSR*4lbqFYC%@sCv(mR}BZ0BP2Wfn)$DPw4EaB(4u*#vE?(A!C! z!lFw$#SBdWmmZ?9BWT-%bf?Ry&A1kS$nl{~g)lnJ*sAS!BoB*@?}Q?AV>aQ6yo(^G zX?Anbt=kZQ74O$#f0P5g03%;@jJXlf;umT06SR1V2G7;tuWIloH26Rb-c^HNq`^M*&DWJ`F7DNEkK(hG_{ES#1xl?+|pjeNP*9YT_41->rO` zaxn<+JY&Og#{${Pv1Y-Ve^;Jqn&C1@`P5bY_+MoT*%#Xue4-C#0LXAF+hO2I2Oj+# zHEV=e=@B#Yy5V*Em@`iUhx;7cSO2j8D8J|cD=L;vulQSr8~fqLysK)87irF}f8wPjzw4*hz_AZ!}>8mM=_57X{n;-tIkO`q4W zd8t}KT-xY85%2$?s9A7*Nk+}QWog>ln!~QX62d&AnuGJ%vMJU-t_HpUM%4|6QIt;s#t^sm1%9&; zvT)CC63+?`kB` z+7~^au7`N-F3-_XL~lLS+00%0Cuix2X8Y5cU3gAi=i{1h?=4lTr`LFg1kh^LP0739j|H7j6wA?bDJBj#@7smeD%FO$fgMi-F<+jF49C$o{psPP z$)RXwxU2VULoR!|4exNg$+N$9X9-`)c6;5 z=?@mQA9#$m9pGoM8(sBl)$)W5f7=Z<{PC71@P35gNzi52I)EA&Z98Ke`0QV&jw#yk zd(nn}ob3R$VBrd1G72IFI&r|W($EE{D0v;%LA2p}9<&efRO4V~euC$1X%*}CNjhn- zCuih-5I9>BwGxH7$a60?-P|*Aa~HVr zG9isZEmv8e|0X0sko%ubr-??PvHPvx$DwYd69eb3}Bdly?cv^LZY1$_O!tmKWbIeaa2?RR3SE82)By&TA-+h4?^u020 z^mCZGhX7%CeRrLY*Uw)8XZM+7=p`~p?EciY+A0ctuM8XwUtira;hvLNpLjeM^Ubzw z&9!4s?R?H>v{alb-RloefzhR_tHGa9Rz#1{KCo6f-uEI#jD6 zGJF{P8Bn`$#s^26_w4#~e6`hTM1t{%wLnI17*}^A3~r#^HFOm8lcv{+GN+7$NOW}C ztgv?(k3QMYXC4j+Q`+By8?d_!hyaHZ>@}jb87N*IeQ55M977%g=$Umh>&V~~4mZ%p zK^I2fFRmS=kUpXAeynl~mF3 z)12gb{7Jl@-}jlWQ71-Cn3KG0N=$-zePpCrnOR3+VWQw*cYS@G(aL;LMIlhW$9`%sN=rR$m~! zc0Z(^Ptylay<5O*e1Uk4h~}m_D9_i6XMRBjbY`DJ`|;HeX792AnFM;tp*PJSs3Tru z13F30WjjQm9A}8yFJ{&ugU)PNrXe1zykx^BcvAI*FdTnRd>*%#1Ry)enTD*TYpyxykgtfo4oC&orqnswD}%{*?+6Z?Oh&G9XY zol+&k{4OSX@VS@rSRaQGY!!@Kz<4xKEsJHC<6@!}pF1ay<;_^xzAlPSwPedy%qkC> z7pT&Hsgn_>u&*b~JMAr=naMqT0%SyCOJSfO3N#|OCAVBj9j(C)AR#JpJKzAP*H9q2 zFACx^6VcwXn9Mu;_BZ#`SR^YA79dsY{9LN&Co=NV9_AlZB4LMP{W`LmIp_OP=AiNT zM5wWTm8gl%aFA$U4m}gO@2R`79b}wp@0iz!O*_c)zH!(LNsRmG=C6uRql_6ugqF=u z*D>2CL}{-jE*7WN=A$DVC}{R73g#mD8Q%MsqR5n!wo=+HfjqK`*9kML6(9tdFH-;x z@ITMnGk0v%6rQ?IpPrm`a+yF1dw7gPn)abH=CA!hw2KFo62c14(5$>{MMqn`OuJcf znkgHB6Fafl*_q4uDcQ6mu?KOAM<6k-$)yuJ;_(OL<8o^R%iIM~j(LT=)7X;2M_gV! zw&Xfo;;y#DZ9^@pQte{pdT z&mgqB2aw}nE+p3VkvWVIbQs80!`Kp8-i6|Y4{k;m(atYz&7 z$QO0evHk+WK|Zshig04Sw*GOp^H(@G7uwy-c~mO*x=qB6nL z!o$N*=bQkGF}%ZXqS1E_D6$-yku$sk!UxWv@PSJxvY;8c`s>|7dsvYKpJb^kY+Ch1 zU_)@QdiTppHsIhZc%J}UsbAMCZncB=2M$SVG{0yCs!RHcnRUq2ehgy}wR>mQfe#G4 zPXGqU@R@Z0oDjmWcP=sG6HySvAkW-O2H3!tn1~zGJ#+7a@vNk-zyS3_N}oc#qn{Ja z4j~M$PP3rt5{ln=ncDqsdBIo~aAW7SyK;{PQ+@6)xC!Xx? z!5FEess5@$F5t8(f&7(|4#-Vho&zekPG9);KIgD(=5rncMX53AM>s+Oi0rFxCLmDUaldvUDzg+ZL z_`I3t7l-nc_C>1~!B_mRb}m3@273&~jl|sqc~ZHXz!GRcQ-*%R9BqCv36jV@Ya-$= zHZORNQ7>*o{*UqwKv3*~1#shGP_kNBKZBaxXw7yO=+VCZViKfV?Tc0~f2sBC z73(!4Uw{Bc#V0wIxx`IVxNd)AVesXW%lxA{%go~P?aCiNl1|e|TA4QW9M#_7Fr~Cv zwzJ!A^MVAXtUH_jpuEb?qQagpy{qQm-%!ys-O3D?dq(s4Q4b%G+dEsAE$f1#0 zcGS2QP*yLX#udY5J~b`{E_11Ik#Lz!joS^Enbf#7aIvMv&46uv$8%|=4i2^YVKchX%p_JdOQv<+E>S`&ng28k+l9cTuKVBGGj#Xku01|wY^0d z-8tKT;k&=U9bnX#zp*?;gBv}1gf}zBz_Z+l$;^{%ha`9J@tUK^-&L)AmmLf+k2H{cjVX!YBfa{x1VBJq;w!AIDX`7q@;+>HxLCk8 zhsz|`=5Uz++Z-*U( z$Z5?jCG?5c3j=2-M?}shY?@?I#<&Cuapw)dtkch-a-;C4)d$HCBH2V(e+uFola(#i z;btq41_cIDK84>{k9C7x`>I>;4H)Z&WW{8^=u5}~4gdiZye}|EJDS7bTRi|^1OI^3 zIYZ8@!w*jX6-YtzLvp-rGQ6p;H?t1q9srC2KpYr|S3PqtWy%n#fIm6c-1Gxd&=~#9 zFNoCx;2>=EOX&D8XaR2QhDAb>&82Jy*ayZ@`^C(yY%|WV#+kcxi2Zr+27GL1X%NPVTuRh5YCzaM;kvs|`b=1mR^D-%&p+Uf< zhdSo~myTmrTUfl&4xML*q5qC=|9K~R0N)vv`}>Uca*m#cX@lMLc62jzbIu&0CZ z-vhI{plVrAT=`SI1_G`d8q5kYH5msQZ^WUato`w32LrfI5*E%vV{a$IA#P*ro!Uh`y6 z;LI+J{l5r-)4DLSZG^z7U6>5Gyx)Z(!(|fm!DSru{gV(l8v5Y!4)nq0E$D;G@U9iB z%7eb#?=*IKa%R@BO8nQQS6O2POSIGOKcX~~J08B1v}}qwK#(mB96JDU_Xi%@ z1k&^i0H82Dgmf$hJh$%g;+5e1WW-waTP1s!RiMxB0dSwp`$tj*^T;O67t^GB)%kaI zJoyyZ@==ak9^|U9B`JJvZZ|fnfNFV|e=&wWzS&2;@WI^>o2e->%tkTsbPab7oAq%B z!M2leOMs0krCP?zFrR>WyoP%zm-TTl!S*TRRs%Nb7S%FRwqkU7P#npL$1XPh|_F>3Usv+;>X zd_b9S7B&fVwWBU4)MfCk9sr=r_CdBln5b?z%uD%nG`s`rKS!s{D{oa>Ek=e@z0pXq zJsN#YheqZ})1|ZE>%@YwXv-NhvkpIdm(j=^qlag^72H6Io}tN*?cf83Q}Et9a|9`R z^q#^1WbTw~_#7#s^e6-y`2KpN=oxxV{Gu)4%>%DJL-EyL+#cdRTX*o2THL8*E&hp4 z8toZOLS7>oQKc=oOtSxcY&tXv{Ld5}zUL&1{`VN)1P*)=J zJ7*`dzthT)0ba#G7I--}5lrytPQU^FA}GXBi;C}>gDtl~_HWqF$OlSin$|N(>)XeB zZN+^I*M02x$h*lv1Ga8zc!Q1)YR5-zQ9agbJu7venPEHX+3^X68?e#LIy1MvDH_q^ zSr>AP0!M{D_VNBR!;9M2j*l#k2Kp}a8rTQ5<0H4I9!CW<&0uTN$BvJ@n})`>AE3TY z5O>MEFV9Ji{7F~xwW_oUI6JMnLd@4b?IKEpJ&|eNn{(OxM%kLtdo%~`D+<1pJT(`Q z%TLGB_lP5&6gDb8P^ng#$+|vM`tuj&(bZkb#I6>1W@(J_J1t4s*wv+IYEsy9B3e9- z+G|#Q8)zGC*HL%jat6C}!8?95mDKjHl1Kc1Ei7d;)wB{*OBhWLT8RtcQVM_l#b~+( zf59aW{wiiPrNduvNrk`uWHeoDJzAgKc3(`{H_@HM@|jKc+3&|%CYT(u-b0GTTa;ey z;LQaWGXkR?IaL(`V-gkt1|JQK-Zl*WT>2>qg;*j7w22iZ8&Fm{=+Zf(kkFY5KXW>h z2|IQUGIzjFUvbMXx*pD#7o!h`!&r38!ZZ{#jdjm7$c1pATVUx&=~D;l0sx5N2Is|I z@Gl_~pO^{n@(VmcCwL|kZQ`M4*5OxeRftqRgNz1-dm?gPd;z{cWm=l%Ag{s~6asDF z9OT>g>SykyjJ*p9eOh!2@iK*g;V#rU6b!ZiVChF*g)f$i296D{#J3-yzQk*B^qW)> zPl%ka{XL@P+Rc;p;KmL5@_hl~<1JSbJSEN4+;^n4HOE_|B^B|~FPm7ZPu1OB-!5y( zsIvWQ*|oe5muc~l0ij1FZ-sF(_w5?(rz!gyw)bC}$${Qom?s zE{p|S2+;QpA#e@!!Nmpo;PN^2eM303*_XAiDAD#>MEt08z6*aycTJFhnq*F40_`+U z6~58Ki40mk%2Uvnb+o>7xxQXFVM}45WHu=LMj(aXaOnN*nKI5V`VQhhpX&nqDgI!W zzFOf24CH3mrDxH~y-*LDqZ^=3FhJEfv|*a^ z{i16$_1?h!VI2*WlxBsOL_({jdxXh@0>grXrOH1-8iYJJ(x2=MoC!y|=E4_yt6c;? z!vTGp(G(2_^nVylN8m5G(BQ8kMpF>{1s6Z~>lUMF2mA#WFZipF(X_esXm+x%-{JJE zNtI2TcR7w;#`uV{#?9lGKdQbeETK;YogfM*o{efPl`*oBP7s2Jo#@R-CkTI9p|U=s zdP?s!H(g3WW;Z0rL03=3A7FEuk&5j8(80y_gM}gkn{yxO?Ot8sC))w)^z@l|kkN?E z$wps@eubI9@5mi7x-a7iY|ei4qUk@_vuD=MZe1HRe|6fT?s+S52Rs7Z-#W8_Duoug}4>Dpb;e#v{h9t>`1G_=;p?v`8b4`#)Ji(m-5eb&&XepWbG-DZV@ zg>9gQfneo<$f@Vv`z%<42c_H^1Q=d|6Q6^fb>OCO-54oY zg9k+LWz0Pg4f>IG2wK)6=+f(m9I)O4H>4AvgEjaWg5H7i!}I8i!Xd5vdNnc0zeGq_ zQ=R4RfJs$9ty5>~4t(x5ZW%|>Ei4d}jf%ICn6(yXc(awA@&?k)&iK+_H2F3}KgOX3 zW~N!Co!B{*8N!IR5M}POj>eW;y}}B{bYTc^qThJPbplIJ(Z2|iO|3+0@VZ?Doim{G zCZp*)=mb+x(Kdnv1D!{(<3KrIaK_jAZC}YpyK*7}c^4hF`}k=RFYOl3RuCISE!L6{c1X+fvkY(r%WNUc?EFRO4-C@_Ko2sogARg8r1JHn@3;+N}@CJ1L z4PVMzztHNJiuRJjZ%Hikvf2-<$kx&s747gg>;C?ySAo5S^QD{d`?*ouv? z&3;^E?=l@Wcz>F_gm1t*Fdy1xy))~;XFH5X@!^KgtOJmWs0atf3`2>>Lr(|{Q_nN^ zKA2zh3M9GpAeEMRauqJ`)GB$z1fk;aImy@YTj^gBox!HRj2yB@cHiNhz{YapsEp`2!6}+koQwIF|xJO(k@K!PVh9C)rLpugr!i5ukDRjbde-}=4u>YHFCrCV? z6Jjk~ugnGxIEPr|c`h{~p0&KH`i$~Ad5vi6FCW1xq4nYgjXBe-ycH!FmYkU>wfc0D zg*|h`rTY4=z+rA4BmWq_2@IuXke}pD)MXhkY=7W=6a|59nW0e=yQVf7EIGXoonf3T%cohc{Kzh097eWQxsl%VH*XDWi9K5?z-7Acmp-Je`Xx2ROvZx3?(R0uY-M+2 z>{klE@_X`NdMzuJrtB0Jv&>zh)l#Mwj(fF$-rbg_ZQrSt#xt8vQR-q!m&DxcAgJ2! zdbrCjNPdFtd>ptJco9|r_X01%aCi}HfO~BLl2e%cUr~}Q@MV<$T5`GGfvK(aDhF4_Y1^_>t$D?d%4K5bP_;@Jo16Wm zNR^9gcXh{whRH~!X?ZGtb;S3&Bme4)Bfp_+`*>cNH!hVgSQb;NnJjq>yBi`e0E;|U4o6rfN7ZP|cJfIWw@!OyiJRV)XB|vOESslH#=)27%$)#QK zE?-o6CMY=;AwPQTZ>v761lDJDYW5P56GUI|s1SXTsf6eYl6EyH*oVQN0Vu@a!)M<8 zy^->RI{t&UFbka)@GJNqVikG=6Z*uO_wO2D^z&ONQZog8e+`H`7;su0pguVUU?1N` z``EA?1Hj=wMjU?MK>fj|(SP9QkI)x&w2${9UJeL8bfiDx@O$X_dc^CYe%~Aez;Jn> zeY_X(Swlto1Bbr~b_d|lhkmP4f!p!m?_XJGPZ-gKNpLMoF2nrE~E+^Dwj=DzlboIT36oA%f zt^0SyCx-hB`m2{l_k~UQ2TZ2iV$k#h0(#N}H0Xou(!*w*>wy)zgRK5QiMrufBwWCw z4|EF-_>d=gKU*VZ+AAJ>z?lc6+(I-TygNhAtiuluc27ZV|O|;Bhxa&Q#th* z=JhP;{B;6}4KKwSc=tncO?8EI&6`a-L+YYam*DO(Zna{g9(Ig=N?6;rrbvp7YNlEm zCzC?Hh3YT|(afk#y1Wx-K!%vG>wJ9^hg4ag$6Zxen7}#~5eX9PBnvWgCGaByW;rw_ zaRTB-Y!T)9q*-{atP{@w^khu{N%D?Pk~A`V0!BY;0_7610F4=zs9y!lOen z2Y6xo-|9&@0g@yJNs>k;&KMpwAmw1Qu0${Yt7q0B)01)nB*`fBE*P0OW8jn%XtU~M z>_MOT1sQs>jT{s|pZ=aZ&*!{1f6w{Q!l->};U)R6x5Kt11fm1k=X_C+|9S7cR_|-e zaNJSkeb?p3x-dJ6I9-woLd#6e6>R3aEald}M*PO=pc4|cj9VIPl!|I8lVO_0#J?cx z6^GS9BP6OBw-nf@PO7CqhWS%W{5NF1;>?CbUpXs^Mnj^vDRtKmTOD#Gk+C9vLu!6l zytZ9fnJI=lBmv6sRx<$)?DXu@5s^v))Zcg;RlgVkz1xOEc@mVf%&HElK@2a=0sh*D zTw&#(6*VathX*wX0EF~wI)Jd746U$X@3ItW*#ILX7}lW$H3rbWK*)DD(6l!|X>uBI zLIH>i7&M_xFIj${jB6kmLK-z-3=Cg|vG_j3 z(TliA-HQEh9C{!m=t}_?8Eybp5 zXP?dsaN)<<5DDA67%N*9Z;NZvZ2t8PKQ_9BYFRGBToe;m@VS&c*4zJ(71fq~mUe zvEW_Il)#%!5);qY*Nf1htcF8*)ChDG4Tm57_Uv@(m;J_&;{${l;52#;oBpYT20ZRw zy!!nP#r~;p91K1~bb$Kj4bnelfzx>P>DvDg2g}Vaq^C3V5nfF>;51%+y7oWBJKdHqc)|p)& zy;9*rEnmeC`>KL5M)bsICn0vbLjFf;T6zWlvtymL(Q7zV#To*=QJ98RN3l54PBMcg z5JIqK4HrjIxDd3Dg-onEl0}zx`ZKJp|CKW;Q01)-h;7Kj7G0l~|M@TN0q%7gakX2f ze@3@8iEmSX3wJYt{=-)7Sea&;pXPI(Iy_TtPSV;eKM?*=?X-!Mk!IG*zYqVdb{Yoq z@K_hXegr=ch?z0zzjK{{-36;8s~xuxwW0kZ*ESy`VhfP>non+xkeipxA?7TaDs-r55xGT?AF_T~|@ z3Z%OO!{lyCz-aT-x*Lm~z+hw4&B@lheAw6^)cMr`zma*^ETbLt8b;j|*WHk{*HS6% zSSL8LL$!AgPFl_9yuVr=VJlSZUW;TwPKiz!j5yyT3>NEz!LQt-3oCEchY5|2zUQvW znGNORaz++K+0r7W5U&@mn@x+z;dd!znb1tmP)`#bQn-IFH?Dw06L7L z5LrJA{tQ5s=RSN^`!3#uDtvyX7SS^WK$fXR^h^ODXfmPjA#fV?CIK*I&ETy6f!P;; zV7^~rnYsThLSB7$mZtL_@E8x$<|dTU1JddRSJ=*+ByU`Z2etFE{Fv85?8T2AHP@LO zninJ^++)6w1_%9A{=cjbs6C6c*eDIvQYphc6%%=o0*J%OiV zGz9?H6jmKRz=uo%Fetm)hdi&8A4~x-D64KL$E^pzn>7D4Ep*Z8r;`qI%UaStDA@_g ztB#b(Rc5kzr>(2B6Y$=diT=7QnXrN1VYOJCjc!xkI|kV?6^xajv=CA)@5(R?F%iS( zewD{M2H7#Y87sk%UPraOA;Zwb#LgP-LpJLemC(?|fc%!CJW#}~oae`Tu*7fosByqJ z)u-Za`U(P)QlqAn#Y@2-M6!dOnJLfx+HRpA&i_H=sNs~WULJG)fWGB#)ck5;VcEVz z-IFR4{bk(_!`lzox4^oh-#FElgn$HxerS$%qdo-CfPMUFmmKtjxhk`NF{O?oQ6E-U6M7NF0J zuUIQk^mOcCgX-0!r}Eb&7=1CL^6tU%RXFw|Ft$%gqN{fWwz&VGvo}U{KJ;3A&!7LG zN-0^y4sdag*U5?pSJbqv^UU~laGcV2^p0S5Da{=fhC_#GXG z$2q*tYoGhvbzQr6-sh{8L7%3qHTh9%t}$gVX5{CqoL>e*blM*D+!+1U>J1Y1lV8Jw zqt|i>ioFXH&g}+P$%L2WtzOH)FpGw|`i9UvCp2%YgO|KtLLm?~Jcr+W?=s6Tc|ZB} zR>!V<@6G+!4o@KZS&*6J>+pm!7i(oC8xE$X1P+x%1gN5rL zfCr5;^W zu6@bev*o3h`P3gfk`pU~{goAl>hD#0P*qk5%A}%r16ijaZccm?Z0&RT8 zOs395s|;zb6Xh3TtLU`N%Cu!rpe>IvGfd}kOBwQGoyZFqyJ(v`)0W*PKkb`SH`^ znL+{Jz$+>y2CNvwa_M7@KIG}w3uVH_IvZVX2qqB#iE{%gk>-fJ_7V^Qh>rdOm4|b9 z#qLQ!1c1<<4cm0pw7e3TbGE68Z85UnYmB$faOK78<#~L|6|T7^f|VjHUH6PHzc=~I z#j>C`3?)!v(ASdID#Am2O=;H}$VW;TGxz8`9)gI}I#F98cAid~g{NJsBOkfMm>I3} zXjFz2)rmd>#xB|{McTDHfM?G}#`%fQ$%9=PXr!(^WqTOVM>1|%Q?KxEJCH{BRiQu%6L*0zdW zl?c?Eo5Rg>u@GR$=!&9|{D z*0T0S8g$rxewohXuB^p15>;re?O$qHP~N)boNFcN=W|2igO(h|Jr3d?`*DxGxW^vc z0JNvHz@7Ljio2f$?y+B? zQjCZ-9#}E`tWk%Gob~7y*#|W0Y}@7RXAuEVMKz;aq$Bd$OF#rbSaB3p4|RCO?nyuh zfXJQ=+jOC)q@2rTAE)RKsAT#*%Ne&?EAc1mRQ!BTeL!tm5c=n1xm0Yp<-yt{%zoV5 zrA!XkhV9z!N@05OukE-bb$`7U_qc<5)ZiY~xQ7V$xPf~JaSs9RQGt7u;~r(WM=9=c z1^2j&d+>3OVjRkMYhO_FFN zs9f|HB7K#+e?`hLycY^b$JzP}?FQEH^4Oyd$yHaLqq_G?Ah>5=QZ$zKjKpJD@m5_S(QJ^gj3CO%yqj=x8HK-Fhg^iqEpXE zv)mK~#Tr6s>?U~x+04QCI<-@p<%Wn7YY3)U8|6V{b1KHxsa?}7A`v^*5J9sx$=T!u z@hnnT&0DP4mt%6hy3B$Y{^Epq_EY5>oDC(=?n&z&shq@Rg`F^={~7nvq9YBHxUG$* z8NPzO)e9a`V3o<8>JBcbN+r9n1jpD;tvN1Bdg9+>t_UYC4gJ}JOEZhKU<8)uhGa6-`2d3L^2eI9=p_VR)kGr?o5d~9yrPkNtd!F7aOq4mj zp!g`2#HZ{KS{u`J`+aL`J$LXZ_<}l}I!@tgX|`IrItsZgpqMJvPq&ff$22K0CtS)l zDC+X8l}?@bocNZYobVY9nz=m2_o|I{MQ)fw(zN&wx*hZG!$8@;-~ zeX76qUxo-kN6V;{6^6=d{}BiQBs*B{cG$WS0U)wxwl%N=h{&J%G261~vzA#;o|R!@ z-OmEf&jm7eWW+x^LXBCWP+ufJ;s;HQl%?;jkY!sr^kSvaoZwbqG3c+jOAmDvir%KX z@p`h?=FaanJR>EGW93;Zwy(^R>85qIOWe<=Mq?XKkQDWjkeXI%;Uc>Drvj1kH_on4 zl^34})^U=82P`=A3+Uocfpwj;YmE}RDQMetOO`-<{>Euxh4aKNJJWg9K*z#C`3>mw3`u#o-w+W1B6~J`(|HZlD09pH@?(i7nhhPs08icN ze=qP(+j^-C4*8*uP)6z^wr@d{^yXpX=18VhR7S^H`mP1}EMGq5Us5IAR2IZCm{f&A zCpN20o^^Gd<=FLIvjVw|ic`h($jRYSi+)O>w{B%;qa;KJM|?3|e6~QeP{7$0th_is z8mogNUIHvQ;tT2GFkrzQf1UDTCfwG)AwdZ!vY|L3p>bZg=R38hs#Rh?PVgl1D_Mqk zBPBi8iw+fzykZeyAcCq%d9i`KhH4KvqvB7KUa^&m>S(bqh;*+m)Ig1-`wu1C*K!)D zYt)B5q<9e=ZIED4^`lp^hyVoI*RdLgJ;LSehll{g4JqU_)(?D70wMr}_6$j22VmGo zD%I4uPG9F6b*SUxlS!e`ZhMsaAW3TTnJ{5C`sc!~3k=&fb5iQH8L6f8l&kcVEA*5S zddg*b$}jX3K0Sp;PbsFS6wy-(=_!}!DFyVDe0oYAJtdc(l0!eq+M1dpP77djra+w> zNp!oD?u6k&DJn&*Z@jJF2n7@F@~@V|f5l!5=s@AcM1&3GHB=MV8C9m8)K`sH)-tv> z6@zN`g88Svv~BX(I&9p(5H1mbz_E1~xqlI0A^@>t>#Q=k<}f@+4q8Ma0EG4o4r{v| zfPNoIqsnu=Me{vr(3kU9LQk88)!CBFPZizxMT{?Ufu8HV)PP>F7 zL3!z?nrlBGQ}TI4E+cY-eei-?e0xr$0U4VuK!&?WDhRkp+=;qKhyWB3b&(JOP(=}R zkq`k864^7bfqr2JV6z(U@3$JWs^W!WiT;Jt49g5%YZy0MQRo^>q5QT{_=l z($^K%(8S!llSoIl_HLqtSSy6^c&PpS3QjHRm3jNJ3_Dnq4&{pNuJz_9UQHb*TQa{# z*$&TkGHRh0U0e*0eV{so!ebw(4&RX!*MS9E#cOo&2oH+~o6jh2;2N5MCO%xd=7#n& zO_6q$?2ZdLO|h!sPUGzrS%yoIT`1pGjYw}$BXk{$3p+u9+{|ZDhUAkdL-OIiL{UxD zgS46MOR=n}c#t;9gK{(p0k}U%i|E1msYC#ZAE-U{pxj&{07Ul8)?3^TfO&<}Z0JU+ zvR6S`kk6&yFy$vAvh^?{X+w@ekNydovTHMA{WotC_5RO=UTRXWV|Qt2t(Ev#_S7F( zhx#;$K%-5AQ0)s~^1OB-bs+|kI7H$RvA9QCs%XWFpFqFn6VWf(Lof{OrvCT*k_{*( z=tpi?o3mjMUx9J;15!g8;BQ8=JSctEvm4K@x?oJhJQv~m7VeeFb-A@l;C+8paj2*p4cD)ZqjKK z^D|H0avHfgfYpUqK8WSi#~OVo`4kEQ8|!RzxgnTD00I-Gg7nil2*5X^myedDskH znQMhrkLg@lu~v(z%ES}k=V&-9&Z;yU6DfS7L3%K|@bMu1y1-ih80H~7t;N>Abvb-dQ`2s8Uy_j5C6;~l_%E=C}c5N4CP}ZL?v}4@a z2~3S>gR`j}{DX#S@DKK8f`71g9YwHr9Q^gqf4evQ(vAf^KmBJGxQNzLO3$*uMYI;! z6MhHH?Qag=qwH+{%<5ZgV38X##$ zKH|R3)_)7O3$s&)n`@-mhh6;{JQc?BWogz@=6nvrQlo91e8QFGOOe2XAzf*F$q=W= z6ME+H!?Oby=j`=Y92Rtv{5wg44w8QdNzhL6Zzl=lB!4+c&_?oaBMD?Ae;G;8O7d?d z30g@0EhIrRY1Psk@~$H4C-}rgI!K0v!^}I-9(pw+U@6!%5V?%V4MZ9c=?1cQ+%v17 zuH8GUH!Sa({p$Az+9CD+9d*<*tKgmjgE9Yj8mb7q5A!C%ys-@3r~om>JbMI8LICc5 zPeUC8N8}wM0TF;==XX#62S-bL z59z57QPzjF*N3#$hcwoQ)YpfI>qBnUA2ehrUT@g>610wkd#FBEE=FfIN!29zTwH4?`#E$R934y%Ixg(8>pBNZj8(t>}Tf-TfB;R8bGoM;d+l z{-(@C0E88*9-xQzpsv$|0Nfv>iS*!>cY^^S3NC}oH=SekJY6GH1q#Ta(T2C*bJC@= zu7$GoT`K*ebR!fK;JKg7u3;JDqm3Qf_N@WNy~VK=A*R2lM@Ty0IggcF&cX^_Zx%L}g+0f@9%Es8CMIWMcbIPQj8S&HhO+3`YDwoU?Hdh7 zc;0vqo_P8m^KhrvzdM{Hb^V_=W(4yoS3g-uWwQ^IZ#ZGKJe5@N+Q0a3RzWdEnxI2E z`_;Q-)aK`}hrI`TS|swUW_#cz0`ULA!(NT++7Emi-;H~`H7zG!h^zM>XZ-@LyDs5# zeWm;96s|5^X*6++yc4`YWBLhJU7&yXCH^@p&AZsWZgRe8;V+z4D<|E`*<$6)v2t21 zoOBCki-j}C!f7>g(#@PLX3iWlr`5zsH*vO@IIm!0m&1YBQtxTH+uhsUr}EsfIE6)s zfpu69{$*~y7yWt$_?Ho3Ai_k14dk`mQOH^W#dRjVg24g4E^h%actxuUEFZ*j>SK*Q zlzi$0SS!Xl8(nS)CJ}(ZgeYXKa712v35Wp1d0$7?3Wrzho&-by2<_RhO$Td5i#pHs z+W_CF>vCC;Nqh4b-?d)MNa@K|7i$jrVO3sYxAvyA0G}oA$dUR=tH9v)#_ivxFTUWu z_&n~BjeDHMJu-2R4BP|5J$}MHPT?Lu;2vDugM)jd;vV1O9?7`JG29~w_c)3#eX4r# z(H#Fzkij^~_{Pyv_%pJ-=or`;NR;jF3!hAL&7U#DPv|5$eE5oNq7rmo)dU^%P-NXj zDcLYQ>9O8_Ga`Q&Pub4){v0&|q+OZt`RPC?s)cmkzah=&Eu;oNg^FqY>5w|=Z%An# zu~-0U-c)zo$_3us>ZM`^ybkS0Vt#&Tk>Dd-M&up9FRQ((P^s zSiPH`YMJGBAZte&Wj-INzCWacgTuJ?HJvG2G54fC_lC4!+6{`S+-h#9(NT(xUA16! zlQPYC{8=VHTR6$uoy_&+S=Ajf8kcXOTfC~25E4|~v}-nm1l2Yv-!00OMe1l#zI9pU z<{gEz>EhWC)%GiA*ES9xP88uJ+|2+%pw91 z=iP%k8#yAcy#!+hXt&OSc1Euj-ct3>yT%-M=1}#~eJ}5BCuQQn`&##HdXB|nN3Pnr zt0(c516SOeK2iQW?eLyo%HM;VNGz&z8wfX%uTbIa=IV;0sPuU=s)Id*HMSu_0PcQ) zsO5l7lCfQG$gIHt)sTUb8N^Fn2N@{s`h$AVy)B{Cpn`RY;wEVbjg65_oYpQ*dRL9S zqC-V%I4rnJ^1n+GNJ;)ulAxaCUr!R$k^JjO0tv}qLK4)H{A)=9G09&{65JvA-ysQZ zlUDiWkf#?}G;<-_@7LJPaH7>gja75uX%WoKuOc(^^DB{=`5Kg}>n%EOGc&{RLtQZN z!#Ff!itW$w5w8|Iw?Nj@FED@aMD|lI@B3wg*)wwe^8r*`+dS?{348xNq#K6Gz-RRFr=ub$(kMpi~hCA}Ant)Wmkbh$2!On0Ir6KHp=`l@ zmW2>NGSONJg8}5vD__3J<)<#!|GMJGP_8WTHV)}1Y-NbhdW^B?4B5ibs_Eh@eYQC^ zXZjv1j+t25UHTG@Mp7Ctc0iqUOv|b6QoLbQNcdiZe&WY3<>p_i(oK zaOU)ITDv*v-JC7m9BA0>@@AkL6`Ezw?Ao^~^6w8VS}i$MqS~orzZn^+gl5>0J&0%# zF(6_AvS}Rj_Vz*@wx{=X>;AoBgx=YGEW38vBM!Nb(DvJ*?%hNHibrU9K89xD1D}cr zfI6z`eR$AtxKTPX8rmcv0zhcbkOX!B>dCr}nTCcs-PX1U%E_4qOHr!IiDh__UjLC{ ze?-3Qg;T;%ei++X!o8}+vK7@umd-`R=Ezv~L4HhRcCzIsjNhZC4DN6!Wf&&XtZj0x zkNE<|?p9}~Sp*_J<710SiyI7{rWOc!L+RF(Lp8o-mhHmxl=aR=R$#rbM|Qrnz@2T# ziR`HWFJEUeMNletXQv!i1z9|1Jn||#WzxiN!L|1=a7*^I&>}04yQ~Gd_A*iJb z*x>BE|3@4$eaK4Ww;*Sy;|n){dT6}`rBwd;IuA@AvK@qW&xZO;o(VZS`!<``Lbb$O z>rCZ-Cn%cz$9+BEk?$t*maOC;Z;9=ns<%VCb+hQh+a9+TAA#F$H)l?FpJL3}(#4t6 z#c9Pk={RQ#&Y6RAT9ur1C1;D0Ge^m3RdCW3oL{-(^s~9L+d*aOis(+E*4cQ0TxQu8 z+1X5E*2yH?nrj6~D5yTR2O{Dah%gah19@$?2_oxXWP{f5E7EU!WG#ROuSm}YmJeb% z^|3}DN}k0AJ#4JA(dC9<5&;NIFoE*zki7O15CMqw?m^18!z*@A0wMr}_H5XuLu9>P zRfe}hr3+K6rOkjUT}(Wtg_t6LOMIBn=^VS))TH+|Flp|}JobJ|ofB7TR$D}Ql=)Vb zUTAlYX_)gZGOgh{7SuZqD*sra#4iNymuwUCpfgf;K-!XRW8DCBWfKaSAlG6@AGnxK%$9{ayI^V|T zI4E}u=RN5y6hh}8#SDwM)GBk5?KkMi#rYB0b-EwJ!XXE$c-z)Vsp4#f{y!BzVrr_+ zDBoh_%rSCW4V-iXXN!R|$G~aTbJF#kEqcxzJ*TyolithO(#x6C%W2hd(sdjtP~q}v zVA;|+(>#lF$n$)%nX6-R-~ab}XN0=^uA;@2ocGSuTq{pnfy%r9kt3o9vUmI^&@Xe` zcdMby%N(@sE8P9&AcGCCCL-2&V8!&aMja}4{tnqk`+!EBZM&TPEFu8vs82osUDXkJ z?Ij=raI@m*3NW%cykhqxAOt{U&xURKO)#?k=*mxBp+E43Jkf2F5-J|zv%#(M0fZFg zkc)d%Mkg8Plrb&P8Gp~*CExEJ#ImSG9h`J50@6&TSz9nyUv{tDoLn=hQYIa^Sr^4# zq~k(-_U%QFDJz5&m+*Bm*1K?BLZAzPGfd7`RxEE@C{1!s z?Ij=rpo;ni6##R1#qLQ!1c1<YAq7yvPH$2goJkb|CQ9MtygD2X?6Me!HZQzMk^F;6QL`!)h zAD+mACwi4Pb_a&v$V$AmtpyBt@QMt`!16&Xr#{x`L&>N1!Qc%l6jr=bHm0Mb+99MwJ-M7Yc7( zFryMmAx1+fM7jY>n@vr#%!SG=K&V{w7a~u550;9FZ79RffUF9ZSZ_dsS1@8AmJ?!4 z=wppKBx`9yR**5ywq4F1lMq1iDP%@*MBX715CI5Gupl3%qboKb0TBQqdp3O2A;ZsV zk{6nj67$(<{Gy8}Tw}@aC?8cs39401uXN(Fec+)^-Pl`w%2f)wag&iNH2Ui{S`Ha{ zy7$v?3ahslnp;{cBPP`O$8-zVS$kAwyF>m>MPwh)h#ewFTO5W zc!RTRKU8hmfz^FaQan@_qJyk#U%FTURa=CdU39400$JHZROqRiHMN@?JEX@9^TP9% z)o#A65|?4Yj1#fBWr@Lz4N#$u-kymLy#bXg0z&1YzYuxidmc(_%|>ahsG^D?&bvJm z4n44Z5X%X%CiJmJ9qMQ~oehV6jI(W*v&SR^kbH`VemoqIcZdW;03a(B{dhRKVgnKo z0U)wx!#5ocJ=3f&)ErAZ&0~2@j)vrtkR()bAf3m{#n>#C&Qf$`r&M&<_;C;=zE`am z<^60>ss(*!J41uam10%5H0AN1*?CD}3r)Ii3r$*=xQl1rm}Ih?3Br69sYgbn01)acy#`z)lTpb(_?_LkF`=%k`h zBw+arTB)a2f(s!{wV9;53w1 zfzxouR&W}^bQd(;2~D5aKiz)Xyl{CHI1R@-eI(SzZ>iuk91(q_={A|~39(voGXtE4 z4#_+OwR8aoISudo5r<44vJ&|}1%T7g@r4^eJ+yv_2Aqa}zRm;FhinI--Ls)i%iGZo zPQ$*<2B+Z?rnPRzb-xo-VK%7_Y7?-SzaXz+1$V$}_@S+Q^OD=P2SCxwJdra`^bAk* z1W)ugp2$=zQWuLli$%@FB1y5Rs#x?}vFK{CsHj+Uu~_tT@l;Jf?dFn>Ag%#wjcfKZ zsGwj6uu-<_0;)OLOIsXSC7d$Ry7B~MT1ov*pj4|9DAfwQm;q4x1yZe^M9D@ES0PJ= z=C5RS$m7yLCOftuv6 zCJ9s|e-%m4L-Ow-3A#!C-6TO5$-j#vz)Ai%NuVV8D@g(c33|qpc}12CXh+j+F*XNMRb(^4jc$WIV8r0}qYS@p^reUXxkq27#i|+C|{mhQiD% zlov_h*@nW*`y?SVK$&)>i#7S8@G{OWZ{@{82+~6m}lEAXOBq;z};^n95YAc9U=h{fMVyJYrtdb z=!y+UKm>ruo(khp^R4;f9r8sXs2EIu9O-$!+gV( z${#N)n5SjtGldU9-Q`E%CVQ8vvQkA>>IEw`$x4m3QUk2iH?7pER;tQE6Lo5vzsPA1?PN2>jgl2uV`DQSortIrF##zV zcN3lA9q0^m;NvXEl4o(i6tNuT#{#Phv3&YjeM44SO+n}Foj(Qltobr-+;>yvez0}* zw0}r(o$q8sNXQ`qcHUj<{9N4NHVdIJ3CAI|*SV%olmKL)@pUXFg&mcXt3D=OUD z`-ap}ApFRz5oV7tLu^0qlDlbiW}x07yjSuuNN)K$}3!@}=l53(D9vXe~jK8dHHTI}8u1t>=RS=2P%6 z5~#lsc55p<6z+W2$7|jn4~UIb8C(M^veUHBEi$spM%CP=&J0wVG|LjhiWb$wy*hxZgCm=2(2MJRs`X~0Dxz2SX0exV zvD#dQvwGDHb^B|uWEU0%ckiWfdB#n`N|yCX4UI(RzI%z(y_dZ+cjLjDyqJ11#$~G~ zV7i|kELpa28vSI}R>pe_&J^LdhicFMu6oIu@fevl{{zghp7Y3>{sZ$`?6X z-cXboaH*-C&w3|%qrr!Jd`b2mWA8%WOKQv0W3MNgWTZwLsR2gn%TQQ!q5EW%0(V6C z_cGbJCe^7jRj|)IpIXZdjN)0zfkZuO8jwmvsHg*R<%n&F|4N-3J+~2QZ$oAgNq0nQ z-%%m}ME1;{5ksy4`~WSg`#)^3tjpBki?7vB(cXPak( zWa3fyj>~aMU<94iWA4&0sK!k}18^~+BPlG4%#WUbZJa7h7?33*+ z2hM;e5m;S_<%3vGeXP-kl4qR(^?j_f(dC9<5&;NII1Qdehvc=FfCxaG_etbQba=(? zNk9aE(4Gz3bnqm8y4u`bmv^$=%4%6wofy~YaUSAA_{-!vc3eJ|;aeN<8ii-w{y%cp zYoXRxaw)8^>Sbh_68HP!;KHp&u#_v|=rCBOPBc>aE-c}=uH|MY{ z#kXCix+tAK2Nk;k`CYs;53k~b+lBdCMuAtajT&s!B!u3BC!rUi_4CtE8tg5o40i6t ztqWiM@To=M7Cdlh{Zq(obpZTP)0cu%Y|=^a%sspcJaaI;3r&wf(|!7<51AG@=_EKE z$2@%m)MJL)>4YSkIzcY%_c8fEa!#d-W~|Am^Oi3d_r%i|Q$?ZQwlI>|c^o#q8O zlb}SXvkxLZRpFcfRYN!R7ZUy7Q{57o!cnoJze<{pwgyD@44FBe zwgUi<%K=N5;HB&9RxhQbeO#aupI~*1)+ww1qt!P3!O(hxmWyklYb~XMpk@>HT0%#9tRIua0%AqvoX<8ebbrBtc(mS~H zR_bAqY}E(Fd@nY<<+a`0ks<*#;U+zb%y%X7mPb)}J79GomJeb%^|3}DN}h$v+l_TL zy4(;NCwLh|&&8xYHw}u~y?Lq;+SG4>TP{WT<)KOAefN+5 z5xSr_zsQ6GyBq~V-;}j1MyUx5E^ zga58SK}uw`o58x)hN=^|K;#T2JO#zPOtESdXk>*zqu)`Wks29L&8jFh$_+9j8!NC} z5Nl!|Yt$iO#SK)|c#N}cm$Szt1mNyxg?uhY_crcl+~xSTKpoNjTP%5|Ib~71(CVFm)I_B--aE56Z6>L zuw8;U9haE~y+|LwThEqWSMx=kd{HxBB;kvy_@dwVqN{vS5nptXFZ!7;`jIa>!54kQ z7k$YWeZd#S^QYFWu5J3gV)CVo{HONGmX+>(!^d-;vb#wi?K&e3Y{cPbaELGRMDayH zFhpdCJo39gXuCTCK-;ZDijQZpa~<*q0m}ukCIYLWpEc@`I%)^<;PnBGI@@+R`&mQ) zL=`vu;S1!5y!H|h0&w^9MDazAuGoMCL;#5F+3-yVZ8sG>c%Ciu+tay~!3UJZi|M|N z(Kv)(#D=SLiWOWgwMHUTH?oW!R=r}slav{!1BZw!+tMQqxoC`KUuHw>2GkWbHDF2c z^l5>&-7USUY%`twd4zVmzC8JM7}*cFl$8ItZaVNK!0==ngO>JJH2EA%qS(R6PgLb6 zSPj&_tqCi9RJ`lyi;9;%t9|Ep?SbwkJ6$$T)1B_x9@!b+oDul^M4?~Wp~I(Sv!Gv9 zgX$=RbM)$e4T${vIM>*D3!mwAe)6f+8u7W^-=oLA(}4-!qsOV!=HkQA+ObRo6S69PjaoD>?q zhQNV`8cNXc^%}6ChLSrRcwj-V_>bVgL!{|360}%_Uh$SQvHR9YvJU0;S4~0*E5@L7 z@N_3`E1e}O+s#($lee{Od(`q%}53C-xNJ6eqb zC9O5bc|%bUc(nn+Defy&VPlPLhzP*{L-jBmSTVwTHXI-#KWPKovL&iz{<~Qe4$TF8 zh00F^#nu_RIR(62x19?&EhzxYogkEQle0z3nWN>jYB=c{&K3tNi~b5_MHdB@EqijB z=aC%$&0&$PKK}+UwmI6FMEf3^aCf2qCZxH&kM7Wa18*NI?H{PfGyM7fZW!JBH|~{( zqEPYvuikd|dlG)yzj_-~k!Do%(i`b#Pl9$bhM{6-Z=|}9arOw9L;%!L&8WJkBl6ly zKm_3Tilc9XI_B_--IIV20FgbjNiZ1TcTb6XbXyr+di@8hahmLRm6L>xV~xJ?`TTM1 zI_Y-WlV@wzKFQ2?r+v@r?XELAWxKsA+<(?`Bb74Ag3+bLY-_j3iNa<+q=|p^vMaxL zU7j(i=3+42YV_nAvYAzvt)^U;#b(2;KzH+nnw3EgI0)O%SU#pu(u*yD>(&X(Z*5~g zTf4bjWiI(bnE1Gp4(m2IN_6Kkq(LW4E{hjI^Pv6ykXDFq3W$!hFm6|Ec=j9&?45xA z{P5hRt>E|DI4$oI^3ZKu1lZIGr>(*y#_o;?PtJExU(AEgniS8Olw@b z4z=DJ>+}&&=Y{XA1`pkc=p#(G$vhxL>Dess&^acvJ?a`s`x)@i-Tx!nPam=pht_Y@ zK;uNm7j6JGzj_Vo-uUP1JTTpUJBaO`4K*?|6LoL2ZFc*5WmPrK|7e~5P)GaR?-XltS)7LJcSty-I}F))6@4%L!>*Ltanw2`fM zT!PaS-4IM|Gp3}S(M@rq(U36(2!@CZkw<`X?_O2BeKtck#C z=x2>Oq={0mh8t=h(5SO*m$RQm1fZ(oMgX!#Iv}sT1cU(G{b=wb=wXS%(rJXp@t{EC*3U#{szdoKJ3a_gt*>n=>%a}Frm_pBLr5%cwogKmP;RN^dWaYH?)^FpwVZe z%MF=D1fbZNgES&X9rIJ+hWgt=9H- z8yGEjRz)UGa)OGZ+Y%=UwS6zSR!lBD5{(^%RuhO^KtzOy3dp1hpFumq@hPX_8E_6f z4t#$wFkucn1AY%IC&Zcntge36s6%nyDX45#AJC|?ZI`p3MFgO&<+GDu?{Gw3dkF{u zB%eCC^#N9FKmrE=ER;>M+|9D@(#qDq9zXt#6|0_^_T|Lie~a;{zj}~;nY6?(^ zre#&Aqn7yZI+Ivy`-jSj{cJn>LAmSPQ?JoeO6e(A!JAG`DWRuarlBiU#Y54ii@DX6Q7bzvkj7Hx0CWREL|CG0HaoPQ zc zCjlV)gmnvJJ0Sbb{?8q z+jojTg=&r&Ozbfi#MVNTYbD?-$zccLP3@BgzJ$ zUurnPDTDwV{G}eQk`MtPqMq554I%(U_Ut~&LU*eFH;MTN)A$Xx#`8>D_f7F4)O|B- zs`>65LnF(a$u?@rbkLMSSy$!+K5{)?#AQn%jnI|C(shgWyZUn8E6nUFNprV0(I_0s zb2%MPZ?N1kqEe38|EgPLC@H=v35QaS2f?Yb1KaomN%2Ts$c#2>Aq8r5fKvrZImUuh z1^g{TTrpGi(3k?1ax~3T-cUB|3cE_4NtQJIc7e=-JS<&?5S%tFRD}jeFd`TtGDIHv zDhO1KW@u3{UXPw}S;fwJWY_?f3t~+KRzp8))FDk&^E!Ag>H`{ew(WBEvxopdcZDEi zDRw|!dkF{uxcjk?b>Gny8<2nq0FgZ#zUh$X&1YG*u%O{ApB0Fks=4OcY_=xY+S3ta zuHc%WF0ZZp`9UauzCC-{kn-oG2WY10f1C6)^wXSD^ki}u6xTJ$yn47zzp)eEwt7>| zGA}K+N%9ysj^`Cyf@1X$VIsl?^4e~Ahx3cjDRa`JD8RHt*77I{Fa=f@V)-DJQy**e zq2yVpqvKd-qstA!Bmxka(1ij_9g){w0wMsh-X$o&)ZrDoCjk)vLVGrB(;>jLL4`%^ zgW~61v8);y>LgU?k6Nn;gq*Fls!;fc%ozfwBP`2hipNaJLrVSMtMrz=jGRI_3%kR@ z%2`+e3maQ6O}95Pa{a!mp)C4twM2aj+}cIjzSM(~@MgE9Lx=akK~6)xRsL$L zf^2{zHDCFwt%|Le4zyKqe^Z`_^Ny{s_C6haQ*}!(jki2PufJxk^^_#7;CG8vw=Db^ zm6*aKTlYi70@IcKI$T$&V_WfL$_0b*iY-L1o@p{!ItuktPO!1U)0DI!`GaE{I$}GR z2B-#h%Ggnp9OKV!l1Gruel)gBPKh-L(=7EON{qpeW^I;p$>td}Yqbc9j!MZ;nRI2A zA=s?Hfot$f&0Cf9^W={qKCj9apJ#kKp2t75ppr@Xu3dIGDJTm02b;Gpq_WGaH=MA3 zoeAlK@R!#)7<=_Y;JUn8aAMKCO9WYS?7DxhinJ2-Ls+Q&t3=4$-d3jEPzf}#)!U7Sgc}M+M)uT z?5q(LkM4`+U>Q242ij|tjJRTLhb*-g%yG}Bic8Y9r4JC>@ybcD3n|d;pHENoOv({_ z5+=-`aNVg)yjmC9bX)iK>DI=(HrmEcxPTpKHy#jS2apl^02rZPK}P69$O!!sdPq4C znD7!ZOaRLXu_gektDiOMP@MN6WQ6Vm8g;hqa`v-`0JOEhGB_r$y##~+l20Aj`T#37 zAOR5oB6~J`()w z5MNO%v1PMBIWS>zuUcu=ADbXD^LFG)L;fQT$&!Ygk%pv8LrzLV(xf3N(vWYZAzw>F z5~LxAq#^sHA)iY_SkjOZsMo1L*LI-IIU_0HHk_w&~yjoF~^we+I+c zF?Dk(80NB&VNQ+=b8eehR{0hEohs1TsOm%NQnpY zMj}q()r;BlI+a&vSgP;XiucD}{5kW#P#sf+TMPIR8(P8XenUj|%!WA_p#6CWK}wYVoEd+0r^fWcX;ilne_a7}8&fYC z#PxH2i&$-k8(Xd(Hxkd7|RA;%RZeDU(U@Oh!B*Ts-2>kEYmR;u~-0U?0oS;)!l@QMvcKm>ruo(h8dmE@nQ52(FZ4ZXWNjdfs z(aUag7bI{@8QDhE3d@V$g9SeCMzbI{H4qFD86uB-h1}H5$W5(B9!pD+vmT{;0?P%l zCISnr!8X>YL#n7|lwmu@*&|>Q0T5OkMJc+D$ZIbFApmzj3#8~eykY|q5CI^vXEq7! z0Kj(4W*N3vnrBsVWyK2AtBre13MbZ6ugWPlAN-wL$dTaHv#bWG z-ao_0g6u*|7x+%3>|TS?#APiJ=Awd&Isbuzi&(EAzi>*nB32^A>$yQr=R%_>bq`d~ zd}=H>OT-<=d*vTQ7ETwt?1eI3DL(5@|0A$k1`!*m8g!to8Z_t`4u(w0ah1c`Si0!9STe+LO1t5piyVrE@wZB2tb^74@&uR zL|%Idhyb*={EGT0IlN-`Bp?JpWY2683oLa9 zy30-~SJGE1FRp~_Sg6*2ND|@+iL)=##pZlb7F6peDKAz)e=DfgzZFLT5Pw77F*}mzaoolk|tS{u0Ldz@2wnF3%B639ZK=zJD zrTE7|b^Z_gYt8>vv>y4#9Id-gsL=rYZdMTjAhKuZ;eXv=fND=kMkW_U?jPuA*S~cG zsm+P+4pN(Y8>*q&%pS%1OQPR+qN|neU1mM!=Ol8z5chQspK+IUP|wEXZ0rsjD`#T` zY%GI~eaFTQvawh;7Q)6pVq+`Vm^T}n%f_B#V~?@jpfr!)$(r#~sipogVN(Ow-|miX zd&{dj6v`b0AB=W80j7+eF9IO884&{_79g9(H6Y7|7g#o)Le;jv5LG;l>V5;OVLY&6 z5X+^HHTsadpBGp*#yT5aZU`n3fMVwcWZ7^;UV90M0H~wBK$RXGUa@-;5CI^xXTvrf zEE^?qn)C@Q{%V8TwA|(htXPE{f&O01Fe`UEQ6pjkQZf!^ZQs2NnJA9J@5*No zB6oBvdWBzkV09suPd{tap}>S?$P(QLH0o^I0f_USi9+NYk=I@VA^`H1&rpb* z!z*@A0zv>p_RJ>1U;qe_OFp7j6-F$&Nnu?*qBdQ|Y`#C%p7sbx51e(jhGpoo?6}?M z{o83Z;w+QAPDabtDY-#YyNp+?y_Uj6T*{1Zpm6dG)|SI;%>_zPy7@z;)vThJYbY&~ z*m1HvCEGk5QUp6til8*cu%2eUA(F-#Xla%U7+6ylZVfkrNP3?w74ZRc4DpgZQk0r#h#!>T z_J1|Yj^*lN@`cpOYT5r^S%O{ryY4!nIVd)1gw%x}EHRQT{UK8JfTlM@~%ca)+PF!Dw z%-z~Tvk19XdD`K`6Hx|zoz9T-f%I;ryC3wn_mx6Z71T{=`Eglr5ExAIDV7cGtV;NG zpizn~ORLHYZ1xhCu5P~*JV{!N+3sExovlHI<^r;pz%!(4+_p3NLAv$%?1PJN(5Ce*UK;8oU5N(a9_C2rzrMxmfBFvE zo|(mphhK(c()RY~$()*<+k&G`G@c1^-5DhemgTqvbMs=)id%EGJ|CQ@s1|Nqv(v{n zU&eji#VSeIw|FKV@@l?q|;6*)2>O# zNAejnBXk~O3xP>q2NJG%-f-I2!Q*%$PQ01q3BRH{J1PcX7b=G z6X051yGAlZaLy*@O%&p`{m7le9%FQ7xOqQG<=sFvDOb-yzzR~ z!+AY2%v0qS)SbGrrf|M2XE7G^1f1cJs6cC^Ha4{;J1mf&+ubYM<&k~k!`q(~oj)H# zo7J6mt$}=`gfVlE&f_6G#8fA0E5y#zX|wROYjxx!ml!jnbsmk%kfJ)#XTaD+tD=Qr zkCjdRfpv()HI#E`W=SOmhqfwKg|U|T>}rQ|+Eqo1>~4!_yc2-VFY2V_!-nzKb{in1 z`g<0HRG&s?s$JH48m&ICx)93;v7Gu?e=?L0cL20f?^8Ve%;4X6A9;k}iVc@%0|MH? zF?K7KIBSqsX^gYM(PX<49oj>qFUc_J^PT>Xt6v_N2YS_g;fF{+%IrTrqYjoT;{wPK z9Su8yWa+<#&lj)==p(PnAVuF1(qZZc+`(s}$74~efAwH0CKV`;NgY1dlFN3Jto zI=Gdj@p75EVznfrq?|MFL~TY%!QRJTUSJ$$0_noQazU(#z-s7c{mD=snga*u>$cVroY`;>?&FT` zl23gQcQmLFFCIi+k`bjx_uwhja1S2cy+5M#qx!}{h4^YI`rSDgK0*uvx(D|O_b2Pu zx5_)BUtR^rzi%T(oo(ALm<1}t%d6l^vi#&oiwF1M6 z{y_+!8ltq`o$`lniGBl+;}d*L!zMnM-kOgPZF=f`rI+mgL$|!om2JY@SNah?(7+Jy z9`=2eei!s{M^$C*^j7qPFeb$}5h=&$2kX9zw+DlTJ_A20f38FiUcBlVk~5h>DC+5* zof?th1%K7Ysq3EuP2+O$>C7_iyiHjKZ+7~gQ&}vNR;en};av8cqUvhHN45iB%+kq4 zlT2Hg@5&_yxuzR;THoyq3BTICQMiu5)Pyke3T7MIHo$>@;f`nn9Qeub0teoFTeJZV zyaHa}z}LYG9C!h|z=1D@7dY@|Z%^I1rZz;}{SBO<*0rCJCNB}DeS2d4aX5cE(nc@g zwP;x}oCR8%F6+?YU?BrMlp+lNl+nN$_Xv8DnE=bWsedURY{lUYKgx>R4)^Fs{=Vns zzF!bHrb8bR@8@M4^~m4%yo~tO{Nvj?^dYf7PIB1SYSbhD-+4&9&q|Gc8;K~cwn=+1BGk}oEztIX!M4A8ja&}P8|A2h)UCj9wOzWM15G4RCr zdw@>(JqB9ipS=T4_3r`5CNUV=_59w6$#BU_eAfplZ$_tlKFJB58ROb5&y8B*49>NB zHT=d87EHvQ6odEqIM!R9djo7n-v%)8i*RZz>{dWXf z&vVRgGTJYjwI7Xht!Jj@oe6Y}Sho?M!J**uS-z9*sx-316MDY&>>M9@qZ`{Jr)+b| z6tk3XZQ-*TCI&~5Sykm5gP4J?dtX}@Y&}rm%}9X)Oa-2dlu&qC#7J2QFK;qZ=EKYD zjFd_6;?79v_zzaF0DS|L*V9|ibRKLzqo~4Tb`O)uUyhIl_-cdg4e<4{RRXRrfp6QG-)~<=cu!&1?!0qIXOF6L zE=Ni9qe=`%Jqqbt_sS8+OtKZ$z4Sm;is9hH;-g2Fj@IQ_aQ}ds$%C**D0K`s_pdWS zpSicluz+aIYXnfV*^#xk?NHaVE?v{tBDFm$byfk~e@3{X{SeaRvydi#Z>L8%05vlt z9nA(s``Kng?YeI^P&y_&RDbstMaGj7`sdDMzglbxjyC#7`s~?OaqdgW)X;-XjY}1;^QC8v=sVUo{R|JOfoMiD7>rO zOse)4?sE}+Wd1nqe-6uhIn}{U<+R{MGlZ-qnFTQh(MN((6}NKh!Y7UcaYp1-M0}1{ z&I@0H((z!LW905)cys%OhRZwFMv6XyoJ6?Bm`F0Zj&Psd{8Im5$jN*U1a^!_&=r|T z630HqUEh1cLrUO|wKn3|#~Apy(kpx9Kl?rpl27yGKx*Y{9LQN51L=AS-lDlwUn!^)1PEBZ~ zI-4@XFXb1wT^4j~WV=PvSy6s@shMyOcjPvoQUQ1S`HYmz|F}T`^#FcTc3i!9Yk1b7 z%E~o2cAbf4@dFa0No&0FVmeiY*`_xeFAH(r8#5AFEZwn!m|htBt+a`M5bpQY(v|;* zy>|g?>dG31wYGIytBhKu0}5}eg;uNdf`W#SPHV+WA+?~`qNI+k7?GO@0YZ{?TE)u% zRccW%NvqZ%2x#SgNvam9+7Klm3V{d+5ikjmgpm8ccA!cSg?RdZ-#p*j=iyl=*=w`T zI(zTzv-Y~agm%U$=tuv|z|IpDITs}k8PhgDte1lPRLhDS-5X=ta3B2d28*5V|NQ+y z`kCu*-YP+;8}oi`xqF&3;I|8({`J5H^(R)QwFlv6$juJ|9_Q0JUd6+BrcOciu7ISQ?f?1LTnf_I{}?7$a^4|Y{j z{Kecd0z-EwrE9*iOVTW1a?*6h1WvJV`5C@lVS(sE4u#7x_;#7qo(A9GauB}##%kXO-+p7gmR;}DmE`3`p5f-U ztU>hmkjVG*b~%(4uNCQ2KMwGqG>PUdWO;;z&af4*+zLUo7o-PNR46!kC}ubtVtQ7g z;sw=6kk1QEsz!n>pllFo0-(AFQKL4MELjD`3($G=QzW^Mod#$te?s%Js;eEI#k!lC zxi+(wemoCe>M|gMWQH-;(}CJ7NTMerF{gUq0mk~c5AKY{X@GSkoL3_q$k>bfz#cz1 zUf9R}0qd}W$2JTg<$s5SqSvwq#&2NOyC#Jmx{)0A{W@+-b%}9-vFyej?rEEaOc3c^ zR&|{%?@XJ&7bzlN%XZ|I>-svh7b{yQJhe`I6p8e!x^!Ive@D+UO>wp}gPYWq<&t%~ z3crLazucA{@O8Spuu~!8utnD=NtQ~~&!Igsw5ho$JB!318jc1?y2+j?7T_){yvQ{+|iP+(j`kzgCZ8OjLxfP(0SE7s-q7bjJ-m4?$_&^ z)Suj^G1kYv&&0iUSPH|(4c7kHM&ft5V47D#V^GHf8oGZ6%oJX(>kM z))aJZ4MOKuA{)+aECNU^f2Kh5(BUimxuLJ>(T~Fe?_&_lhX@#>y^n_o7Q@e;u;CJ(Qw={l+l*DD7Km zR`Xg$PjOCee=ezsX4D$BF`VuCdD)&e)hG+h3_@! z>(+pMRTC-UCAGAG3nr{`q-+mD%61|ftUxRR*c@I$D(Wdn_x{X)N#n^>zXNVawR|vl z4Y!SeRNgtdeFa`0ANdcla)7CSK#%{2Zu?QX>>*0#kxWEigZtqa>?^RZ)(qkPJec~& z_+Jm~Ko(kSL=aHt-~Yq3#p zK@fIknr$*${MoAupDucC0`lIOg1mR08Ho0cjC}IAV++Tg2jRFd2Oz8Hk^9Hv!pZt7<{CLbKi|0%YQux=@vaI+8YG!L8moX!@oVsEp3QTm)Vsp z<^}6KtA-8U2t$1y^yrWDR2$;c1@3cH>G>;clK6Lae1#^Gw!5S3M*9s(ZdDhd$QAc zz66LkVyl9+T!K&JQ|*qZT^Gv9eof%g(r~J>=P>wSEdL^e^StDi@2<#6Gy2#1YUv8L zYeZHmmTby5Bjkt}$v2qX$MVgMYGL4$_p2G@h1&my2J&QmN(7z2g7fGG0!yBeSmlsCX)924{n<|7`iz z!*W6nLr4HqzfL;GhsULwdb&7jcAxy;X@tA;ySwTrY(l)Ix1&?2;N_cC6q6zW^yYO0 zy|#|05r|E1r#3q?o-Qb!R9P6)la|xsSU-_MQ$^84ouVV4SGfXelHXZYt5>#yUPTUi zmEakarO`X!gb9ko&>tseuO)0Y2Ao>J!ey`B;1T<2R#8k}-nxh$B{{pLMI(e_zT@F* z^Ekk+e>WH%CO>ua3P#67ROc6=#sey55H)I3 zVHDcVgOS?f26}nt!(O-*DSY5@ESl1f=WlxiYOptK=Rf2lyV6K3K9YOb&L90>=0QWx zdV_x*l{SO2Rk%KqVc*1r*d^{}&ug>B0 z4Xu=a14=S|YUnzV7Elhx(eve7vn%_44yLc?T_PJlyzc_QZn%DRxpV?mHRr}v`$qNk zvozuy9qW<`pV&#Y6RKU0$;lpK;Z`o^Y&>y}hIOe2pV&gRyQp^kH@M$|zals?Qi+fS zY;$3OFsb!&<9`}ke5U)zT$@D~o}PD#OY(>|9^itLt$q#-ylgdI+Lo4PMY6J@qE+J9 zv47I|erS2`tMu?MS7n~tG?+=O5kpS1osnZpNd{{f?)XsdvTFY062YOh{3=?@tI%3L zh-6a~r#cTsHVrg|CappXVI1EfpQo1+GN8 z(_ws;ESZNwSRe6pu$D7Uz*>G}rn|=v-Uw;pkZ3YwJS_(=klLMjkX~96cl@AH?7v~9 z|M@c7{s!Lo&S%scmdXRS=T2+a{zL6j#D=D;sstB-{B1*D2raZzT_FhjQoERUu(K=T zvsbGVz9uYfXnl*XqndPTp1#gSe_PY$*L7ETezq6bHX-*bb1>fXPKP7jkiuc~DP35` zdmR93g}hj8a|a}UP2i-b-}DhC@jBC2hjZ3CQ|xwza$c3pbP^q%cXWeCUwVwp%^U?G z{`EL-ZxCZT@=P>(dl=JWjBYRg;{8(i^yfw2OmKVoy!ZO>>BzsOuo+DC;HM(mjqT%e z5D5X!XaZ5=>YLTQF2KE{ux)i;m4S{L<&G-BQiyDy*q z=*9HEegDemlb9mCtkj?X!@Z0i>Q65mr4_$D^+sz#*{{2z9XvnZ9;kP4c=!*z!6Anv-*Ii5xVLYfdSQF0zw3fen=Bgi)$PrP>?% z6;wOqw=Qw(kKK4;_AT}5O6y(@bJVO$QvCH5`Ljtm=T02hXJ43~2AciOs!C`-IJ0DmS%++I8eNF0Rh)%2&LzQPdDD394Qk8f;&fEA6A+ea9!Ps8IeE zm&fhvj6DwWO&>n-9@VZ+?V2eke<&92;c|N7iN`^{>BT4Bq1sidUH8e!FNlSI0|b@0 z^W%`pBVDHXOg~Y7wzMcbkh;OWA)L8`?q24j1-~NwbtDE{y&?a zMf7T;xdJ7YXF)$;=f+tSlz`Xjff&M$o4F7tmS;hWb){S7MvOxXKQ^q-0=wJJYRhF3 zR#dx^K`%_{oe@>-(nWcXPYnq*O!+AmYE<5MSz-uIhXR#N5HYvDAtoNOx;Vu}gvq}U z(HnDiFWx36|K23rQ_ks$BOZsCqfUHc4b_gLc3mYW|EEd#H$cP^k3-B+J3jGus$HrY zYE(w+i;TSLWfik+r%>)M_Sv>oiy@VO?ozQ3VvQ~%a0`JB1T+A4jdz9f|2S_yIFe3B z!@11OYdYFIkah#1#sey55H)I3<1BBq;SUfRwYT|pmc6hLfc+YU>{!FEB?njtT<2e3 zhBka_N9;Zame_Eq##iZhMTJwA$W8U!;KN-h zL`hId5zn(+DXSDHI(~AL-c!n?Je6E6 zIa1WG@Z^eUpNKr1&(liwGjbe7`q(Z>nxx}UX-T7p4>gTLCMw>Pl373D`N#7(u?PEH zZNU1!q+aN;9FSXyioXN$M?8NHApZ?WF#l_AO`pB4A);4nT9q(^qQ{9Mq}wYw=Vk|0 zMeE%g^!Q9U+Q`YcO=AhB!@FO#sWBnVmZ<2*BRGi4j|Pv3CY#J)?>o zX*??2U)ph|E?O($loGp)UHT7g)&2>F*roSe9O=gX8*BaTS!^}Vs7UBI<0vQankiYi zRqym%AsMzi?CnY}q6PO5P3qN>*KY|u=2FvwJ|`;n+#|Cf>S)5xoLJ93*JLn#cH9(t z%mU+Q`Z&~cNJ{D7IlF)dv(=Jr|#!YX%+2Z zULg@Ou*XI8BG89`76BuGO(-{_J2HdLe2f)y0QIn44G1918oUO8fTam@I11L#7@CII zK*!MAlIBPj$f3+x_BQit*@T4v7Q?Z55U~&#V!O5Kf$xuj1p(FW0Eny`I7@1$f1J|5 z-eDHXJ3I3m=l*V^?%I9Nyv8>g`dbr-j=Uy8MXgCKp2tOdIzy{%bs^XoduG#Fd-oIM ztydfC*2YSfJSP)2CaCC=ThE0W%T(mQDLl$|_>0pkVLx}3k{wRs`R8EE{;toJ2>baz zVL$hxrd7gz{vsfc;rZ_X@*6Twpy~v%O(?A(*|bun_ov z=#6sIJ~Zm4KpwrGdu)m>s_`|Zx?Z#`#jHNL7}(IkR+H46vMRyOh_GBHdu2nBp=2XJ zxQ2U1vB0yjBBXXdRX6jv&e&?@N%Xjy_1lU1q_^wd>e)1|WqDYL*Dgi<@e8-!dnPBV zQ;^PU&#Nd-SqZW^0;82#bMtZn+5B5`#VvFe9jPE064#yJH$S{r^Xm4XRz1 z+Vx{O`Dl~ywQ|l|kl8}Xx&-$ADym(&+VyQYc|(&hqs$r1?8hskJ_Hl7*RG4RXH-S| zxkJM7X|?LZylS*=(U}qfb0&)p^hpC?*LY-89tRfa^@GVPERDX8F;1fg9%fe`$zJ_v z>-L{a;K|ZJ40!}B1g`U;B*%b(-l_+_KL(fxV3{*B2SW+Knex@^xpF5sQ_d|h=IdeI z>NOd|6e0alrS&(r#&0TI=}J$msVFZ$w1#Sm*xbijeh;5mN43jVyRMUyPc#YL%QESXa|NptDjG;8jNM0f%db5nx!DZCkDMOeV(L-je1V&1I zGKBUB{0?ivLIBI0fr)rn-WWHLdZp4RE1#>a^FO*w_2bFQjp9a{t^;W}Is_!1K~u=k z8xj}>Re0F!UUj;(U{h1B{Ye`)5y^2|oVvBqg~IkU_V(d^xIySV=lHi{- zLs;WZT1kJ_IXp=y$~6!ere=oe7q=Y7Hw^mei?m{106Rfjsgi6Iw?L}fLY9%qVaPj3 z9)^i1>n)>K$sShe(j*j`dR;H8q$ZWh)LqD!(Xd7u?v;OTc6L>C&60q-Z(XjHx4l~6 zu3njga^24LkBsO`*}$*pAVM`s3E^_>hL_$1;Euq01Y+L2yjC<9l{ge#035`1l$80TTbEVFP{YC#vAO*0 z7tBXU2%&jXkCQG@De5CTgZBG!=$(T7 zn@tOIWu!Glz_lKv{qmvzd_`-Xp8Cd zg-CS%sS2zy6kkHFRCGhXQysN&9h2SB(iDgzq!dKxqDtd#Wh~fU({$5nXIbIlGH0lh zy16pyl^54UZ2q|*vQv^TsS(WN_)M*3+gAEa1rxd{;Hbw3P*V-+wSpY-=yI*07|OMl zU@g~*g}~i*tmRs<5J<;bt`!RbEOUlj)%I8ra1+ftM&Jc3)9l-SS1ajJ1f~bD1JPdF zl-XWp3NBr6j8M8K@DCe0FVx?~KHueDUqFAV+iaOM;6E~5vVDWv^=CNOiG>+l&RgI! zsAXMJ;1k=ac30J|2j%2hV&Q9m0H48r)+ISUv5ERh$~N4U4VBBBW>A#wqPq)Z8R11A zeFfFvt4NXcEuv!gc?+R9{Je!#2>7tkCj?&jpA^Un^c%R@J@qznv-_}Q2~?VgD-y2& zWrI)?22i6mb+m)>WX!$Ix3i>)i9q_C6mW61hTmZvU?C8i^dUGVT0LS9IKV;x%bYzt z=}qDDQ|R$-U60X zCl$VQF9;=TO>j}O3FWk-9gWYIDdv{-`fp61*sPsXWq(EB+~~r5l(9tU0g14J{zX)* z087dqFtdOq#Q`iS7g_COFtb1=te{Oq*R>&)xn19F&1^|posb^%Ptn;sP;Sb5Z7!2H z9m-7!{gBNZz%2wi5YPYsn>i@+$9W?+ZeKX+Uh{MF@4fSZT2Lw;{^nSEC68Ym~{H3`?3a}Gej7--`l zHS%?;-H&QlPdRyKlkg@i@K|DNFKaoZM!rlvwr87tO8)E_Ih(a1AI_vC8Nwwu1v5bu zu4PlI3}uU}n6G4_!yM8lBhZ0>2EeZIAVW8g`vB>aL2h>V2z->L!hZV^(i9`qctFJr zqDF0Mob>^+gA5QFwYT|pmc6hL*ctgE@=>yeUrP?K5V+1?gY?N(kJx<;r_hu?wwVp=#%aGh9e7Q3xdHGQjoGtE)feD59#SN&_fE|reym4)MDY?N^i}D};R*S4l5$k3N{etz4o;#fJ}OpyI>Rkh2j0 z4g!B>mhXWuMJ(0@^t)M!g#ae&0{o=rVj?iqx?p}3v<1K*KV(08R1+2gf38g`tmx1( zURgSv?o#e*l}L8b)PYBIz>TA7Mu_v?s>=8r`C9~Gg+Wz(oI+@7%oZ$SvU_mtid674 ziZAz!RLVkMt&g1&sL4v^Zw@z1Eevy}AMy?N-Cy@iee8z5!o!>|h>9~H2Ok25I&e4o z7<}d+bJP;>MREd%I`BpM7Lbq#c@7}o10*D6(14KaKz-#LoB=m_Rq`rqDaxgyH67c% znCEsme7=sBtO@=&;3)3M+6_lN5Wpkgi2wn>OYd$$nbJOiaP`koT;q|b$j?!A>}|fCB~45O+`P6Ro4XbK4&wj|0kFBF!-2IU_J9K{1V)@Q zQ|g&_Rwi|AJ9j5=$N0Aw|LgcaCx3T{CZ;rGhhu)A*!ld?GbIz8ar*G(OWcK8k)HVZYCvk3y2|a(!P(03Q2KK~>fZ^5o|QbuoT1 z1@3*~R?+1jwIva~cRm8gIs~)`7y)b=w**yhodS+^-@Xqk`p&hh2i}LZ3aIAsfQmsV zhXK^+O)g$j&{8uK8of8V-LPI*2$auSg5)A=__gE!3jyU0n1Lr4vHKigA%JPl9-4IJ zWcB7LhHhEV5~Ypfnkj~G`buLmL-!mlqBLzrQXE6}lu*wf4jz>0Ogq#>+wiRclK$b#_3B%TkW1Tghe_ zuL`SA84HcZtxBz_Wal;+@n2MBOrY*=&-P>oL0?AqcE&$QbE;?^H3C~_-p*|ctLPmy z8;%;QPZhhHe)5gn^b33n{|wsJp8>4L`lT}pcXlp->mpl+H<*y$^LrmK*=YqwX<--G_B+`Q8Uie`D@G0@Zn;9W?=upgux(GtUp0s93;^vzBK|s(zyCQ;^*D z(T`}^eb`9s3s|a}`6L7PfNIfCzF>SEWt<;$x10`avuCCnv6=(vWCtd@BS3aSs3v$r zN#YJa`6lg;#VG_-keF%|DR>3WQFOX(hqA)ZY}-fB_o@^eHHk+z(ex?H)du4)42}M3 zWv*Pj;C~o8xkrQSS2ts=Ao|rnc1wa6PHfD%OzQ}}%#2rlb zsaF*VL!oH=5?Nkp1ZN`@jo$(&C>n1|sm}*g1rzGbMbFQ}uPgTnWxRYv6uK)=x4yS* z@rO6%9lHF8d%E*}krCazN+=qyiXYV}`sxU&oyO`EJ+%1vFn?*-B5Fo&!a|_jT&{1> zJ$r1ov+RY1fNIB+RNEUeu2=|QsyL6vz=D8kGNrRKfqi4GXG=+3Q|3-V{n4f=s^+Ge z+L(|VwYKVn5^YZ^k=;Zy+{@5T=xb|r;c<2S#yYvTs!*|_^m%c=e_(@m3~gWGnp&RJ z#H5z*Ol_qXG{VB&CL+7R!hMNSUtT24sbEIWm*uUF;56>VNml`?#i#V|lzJMVE;6I- zWqDV_osVS}c%7*;ZKHp_R=U=m3XtX+nl6KiOuWMPttK=2TLT3 zh%i`WcpmzTJssi@oL(s|@J~s1vzT~*fk!dG(&|a*AG@lba|4xhl824${v;8Ypj(Qu@F$~ zc=D`l<_u+62nen|NvX~u!-9zbmN^4wjc*A<2?*Rom)Sg{E2DR6n;=;dw$!|2_nDV$ zuOwL4?CdTOWXq^=5sdyL)fAq-ucJ=Q_KY_r8Wj0`Namoauj*XnO$?3Fz*$Ya(8!GG z5k$t*Og&|rx*+W;TTJsHh)PNoiBwh5MkY?$4uXZmr_>Dui(+9YpBYUCaU_zn@d!?O z2~h1mr7o2EC_r6hMt=h02uLc2a8PXmuPrzFLw;3h=2mK6T%ayP@rS@2ac{0atRt?~^MQ$g%ac?+8Jgl03xV>nl`I*0 zJ9q^S$&reM0G2s3r;fECK)cAiqwU~a28~BCtE?y}L{^r5mjzbxl{xi&di2-cQz)%1 zJJ~addWCGfm7%LXLgVbEabjs4GL7>IjkA)*SwiEyPUHN8#(9p$(Zq8);yJhCIhW%( z#qpd|@th;^$StWdsqXbP%PRPvha^8I2zH##TJYg*O1DbW=aN?7PN7dEfliP2wF`K5 zIKGD@3$T?)5O@|@Tqc11VAG%lqa1@RMY#i`DFh3F>sPUwLa-2U!C<}u>FT3pSO{R5 zGo;X(YC%98&e=mZlBc%KS$IrBT!^-5!V2>?z3*-?by_=CijZTGBLSROl}vGTg2oh zF}Yq$z9A-8i^)}D@)hykote_>ccXTm@Qv^dY&c%2sP{?^nuK4$(Z=gIL{Ln3_`xDZ z0FQtt0t5gry}J}CrhPy$4gcCazC*d=gf9rVfQmsV2ZWk9fEu+)c=dn}$fslMZN8l) zO-uw_yp|$up%wfN;{XeR@>v~7TWIZwJ>UQf0W5R&@T9}GyHnf7>G&?$oyii@#OD@E z3SDRsVugfd$~RnF#PlJF)O9jy_2NQaNN(Wbe9}!DQj30@aVH}}%=>jGj~!YdCjTrZ z=ZMLfV)98b`Iwl@5|h)!VIOVK(m7x76Kh@SiK6d5Wq5L$b@oYD1i=p+2_@{1pbNmWk;0$JU%&6lI>;I z%q1YrT;XH|_fRL7V_Vs9l&;rbt}UHpNzbn$M(oHY#{UZcvPuMM8fb#)9&+I#>Fpu>D*0i5y$CVa>@t!_IefKGStR z3ayWDY&Jm%9ZYt}-P|(Kr^5S-5HJA-JI-J&@VhoIaE`Sa9KiA5+5}3xT-DruH5~ z7$Ft{nC1)(ivGA4wbF~S{?t58;CS@hh@C`1Ere%o3#kf1{vRka(8kHee zlF!h#1kS!E@Gul}cro6(uNq870z+vs?qU09ySW;S-eufhNacarG$Yu(W3&N8hNMG| zH+;=uD3wH(@s^MmqxC16+6NM!nv_Zs>&6NdPo=I*tuxgv`ZzM#-o_U4c)p@{a5{ZJ z8?66gdxR|b1d0T-0}G%IdPHc0Pqeq_>sIi0jfYPczJj(*=KJwsiTbZgYK5ofo=B8 zR4cL%#ND6luwvl~u_^CB?^L&H1@{>BMthZbbv@dS6a9v4$9DCuGZ!c3d$;PUKZ)n8 zjOQ$g=e!=z`A0nGxpOuX~o zqtZ01cP)x-0Kbo^w1GtpZN3c_0$9}0|7Ch?#bipaB!S&d^lZ_eA~Y(`E-`eROrWL^ zTJs$V40ljVC|iu(tP?!L&y-ILs#bwGMd@X{n#+sVbZdmEVy=n8O=#R3#x~Vn0i!jk zm!WB{zRl&Db~cqn`Aa}`aTF(Q5s}rPB3?|X&n^}&1nqH_E>-UCwy?EWU@Cp1A6bEg%IoFO$~L5MSXZ$YhcKBaW!*G zAJZv1{wsa9URPaA=bWN*j?g)K>6}uLg%ccbC%FKuhTjIpmUz1b2Kzg2aR)! z#<@)66w{pTP8EPq@k#IIQ!VWU;H|fO-og)mIIypQ7Xd+mWYARHLEs(&N(A%(E{wB7 ziVNua26Tn05hqfQAJ~SjAT-e?g z01JVRwyh`}(&`br&jBU^Smw;k!B7IAxNxl|G3r-n_Sko5=6EA10(VrVA&JtLYwKCd zwVK9>yvPpl_N?t&&`91QCjU!f+wE9psw(IHvVq4A8Jnt&94#jA5R*g2dzWWQd)idI zwB_?cLxa;HpZU{G#eSmW7Zg$Iu%kup6c|+ZSOlOJ5*+LhU;ua%t=d^=u}vCSt^Ykk z_}A}dtiJ?IbB6W~3j*5RxJ0FpX#cun#2ma~hoD{*n;^uS_EUu`NDZdy6}*UCZhlyY z4^lqhc<;JaW7%h`S5)vrLLvhK_COwebw+o5qru*JVHFcrr4I{06#_nN^a+6%&`O<% zR_ar*cwwLVYrFa1{*D1h`Z)%@aQPK4(Fy@6r2gDuO4EBg1&}-doO=mW z#A-vnj+MukhBah;?H#hoH=v=0>%zQ6NxMl&tD~gdprqAO(rPGaLP}aSCG9#T?HVOb zKuN2jr12?fzf;n#QqrzaUfH`1{ElZox6)7KccX8XPEjwp$zG7eBxTo0s8xp8kfXSj zkn&xiyTVd^TgZKk}Yshs?U(Y(KRT(6T8$U(rDrlyX$bbeBD1_r~)o_KsbA`Whg=Jh} z9#?ppD?Gs!9_0$Z;|l-76@J4N#&d-`xx(#S;pbf82JUokzlPRIs2kz!Cu+TL5x>x* zq4mN!bcvJ+`i|<(K~8{W;7Hu-x&}^W2xt*70@#Fd=)0rT_cO1dxK!8cS21LScfpW^ zAI>h#jpj^6RfUO($;pWbiAl2jkd0uxazkYpgRZ_etmD2a61V=hSp4*>HFm(%c zYB|Hh^!zV57yR!X`Yn2TU~W9?HNwRXE_fyTl-g73Yr%*95;OWOSsoSK>-XcN>qO*K za7CU@sXqj$UzyP_%kp&LoQ(-M>0&@N`+zra@@EhzmAQ}ld0dg#(ID!bn1VOIa!czJ z+$8OT6X4!VH~}JX4*?|tdH@&3f!}iYml?=(oe8_lp3KxancL76#4A8`Bb3J=YSgB{ zqzsfBWq{DAz0J3??1hCu+!An_wT@p)4zLjDY}=CwCqS!5>^=vW2w<5rGY3NnblS_7 z)e6Lknei2CRPl?2to$Wj;A8KU$t@^+PQm?TCtBcr^@b1Y+xzOIwO3E}O`__&e&u}> zM_Sq-cfBQdt&_Xf%3XzW*Xwduf!viZcfBfiy)1XFl)F~QT`$UA&&yqTa@TUXYpHzM ztF?VEDVDwprT=baOW$gam2SRpZr5{uAJce-1srgvhZ=f5EC5vq_^{C@1YSTT_aGoKM13OXpglC6M@v@2e(;wJ9L78G5F&Vun-6w zTb;$Bx3e4;ECjI3nRyH>2ymO}8=)gfX*$%`33&vt=2pg``+*Fp<$Zw3Oj>At6>9L^QQ@kno0d z4nv)%*GSz-CL5l|JdXy)r`5A`7w`Mi>v}otwk2vweuV5Q8yWF>Ibg(VBZ3j{DjSS= zsRS_M!KVvfLEEPDfbITF<16arfDun41S6iF3`RVoD}?qjz`pZ6bf1X2e+}K62fGjJ zwlBb_gn+iOb{~mqQ5zAAcmvD~qdro1#Pfr0FBa-Mz=&rR&%>xjTxEk1@6nGqth?n% zydJ6%f)UU9fqOu;<$D4c@kSZv2i+~F1KaGGsa7mt#ND6lFo@t|=tGTn=2x*L7gPF9 z^E)P_ImiM!MT*K`LK&4Yt&4urR$VGCW0)>hvOQ`2-LeLTWb!FpETe*<@4v_qI5PCg zxbqrg>2#9De}2QE7}|c5p8r#Y)bRtn>7`$Cstj|YBV~C|q@gh#C#@He3&BL69CnXP#%M* zQJVsj?jRv!fY7MD&9}4cg@pjPF`!U*YxuR~01JVxHkg4Y7_s{tU?PBJ&deMPCD3Ir zn_H(Ad*{S|a9P!=`HX|CBVQlxGh0V$3nX>$w>X&>n!9*$;x6yj{rnc3cMFc+jPq{B z@o(e2Z{zr4oVOUqZ^C&u;rNX>??xP7g!2~R_zgJk1{}X02N_cFPGvsdXkQP#v5o3u zh?PcmqC}sD8a3poohE?~;LUjoW#vLZiGUu!g>juIE0-3sa{WLD#xvNd$LZV96_yd8 zx)I7_5H)I3V3PI}7)1sMjoRCMJIh{J2*fVw^6Ww2qjT0LU-Ilx2! z%bb}x7)n55FRKx-xd8;tzAlbuXNRP{D*auvCC?BaA}C$T(Ca(C6B<5rku?OX-yx?r zkP7`>((7IBY36jEOXo)9rdIXo8l7~^b}jRymbpdCbkZ{0HO!M5<`xapNyBXKXP)e5 zZs}(_^)uVm%#&*77Bv%O(k+E3D8yuRITs+>42lmYkATDPzFMnp5buEP_7t+}A#e`? zB?5W?7si1g8;&HlHwIEwSQoD%@tOP^|p(Y+@0&hV$&1D0x5eazV)8sO*-1=(MND=OlkLRhnc}^6nISWSCr!%uvE{d`A--n!?2;4%T0|5;H@G6E}DdQHQ9CDLEqgoI6NPheMtwaJ6DSISp)(of*{ z_i*0#v=f@j2`ec-i&LvqIByk>uf%yPaeM{NTY=;E;=Frt{2rWl502lB^X|s+v>*ArjaIC8B}9#Lsp`+NA9{`?z&gScj~EV?`EFtW^UUB@pF#y#(9#Am| z*B?njtD0bu#VVAdh#O`x|g#e~G zduYlc7#%!m{x`aQ~qv1S0nziA?Su5h2r0DF^?bCda=# zDjwrmH`Iaaf3f$G*`q?)xcrL0XoaD8HD42%8VGJ{nIVE)^yk264CDvfO-jFHn{H(u zm9%^c)VxX0uiuhg@JSXFys0DiP5}#ZXW9FH8)o6;e}}Rm0vzN;zOF#c{UoGLKp7>V z(#=b#(#;f99_E=EvfJ8IAt0;rh5A~^8V96*iQB)E#T@Cz0KE?x%M_N}gT^Wdql z5Gb3aLfbwJ<`Z&&g#ea0dwA00FEX_nO{pp+w}{SS#77G3L@sjr5)n!&af*FEsf5|O zcJ>T8{;ZXO8k|q4&Y=0J{HAVicM~z<+`0x(eFd|983pc9og6M{77iBQEDr?m2zVl3 zN_A&+asut2Me{oW*5jtZCHmhpZdOkHUq6;V>Bk}t=jE_@Wx7CvzR`aJLBRRdge+^4 z$nTA}C#!1&l6-Li;dxo|W?f2M-?q&RZJH;yfItn&?GWG%yEr_h(w{YYgj_bAjw`M+ z-Ee{ICw)h?=M0<5`j)5?Ky`borN*CNcq8Io7Ff}4`xE#T*K_G<`!A9VuC|ptEqUS7 z{nMU3P1oi(|I*1RKJ%GM2(~oP`>K#>2+$tup`*iTI+$D5A)6YIx$t!@vZ+D$?!oTE zx>aP;!74N6?jun36?G!R-T*VhsE^Ry%=3e8`vMGL*t3r3VN{E1kzw!Ak2tKmj&-u)rc%)*c)Y>A9S~z4s5e$rrNR&8TJMyTTm!E#U{`T>7Z2*C{A@Ft%CDw zQt)dptS&a28~!wl!{>5?tNN(+BAx?j)=m)ujxJUC3Z_;1z>jev5r7v02?$go@D$o_ zpCVltk2c?#120!hI~SIhta*pULIBIl!Yn6XA@JwErT?$KZQyX$DbWp-#f$Zn(*$WE ziQ*rts771$NjkT{jh(2J8Dbe7$Qaxp)+LLLdSe2KZd5iaO2bS{!KQkFZoaXVNYE>L zI069!X!*pqk(eR=Evf}gp7qHRHokFDu}k9uh<<}CuU-%sw}aF8El&Dx2#fsz`{0~n0FF=7C+Dr(iE1C{5{+sK&zRSpJL785k#plxAhy|Ckl1w?& z(SxiA6Nv!45J*6v5`m{sdeNsKQ^L#VQ_p-^l3BMKV?ucJECjG*XEkSj zz(N2^c2@HkU?K45Cb2N5cO{Cmv*JI9QYl_P0(-O1Zb*{?c_dW%<=%(a_>)9+C0e7t z#Yq2^^s*zt*e&e%^*FEFERWO>2ioW_6S zq|-!X%59(0rzrK40rd;B-NZa;Vs0@polMMjBXes;y#qUtv+VsDZt8qKEhPCRfqK&P ztr>ArHq&Fvtu!Ji(T?Z6!Pgvu49fzsMzBlF1We5;BX9MyPcHElS$6z?Z?Nn)xYsq5Dg z{7)?{cVmeVH5cFHJ8xkU8=5DLkAa4dzC<6NLm#i*ULEtUO?mE52`~kB!Fo3#4uv>4 zphrWc7sk*OnB;&~{TO?XKobjrxFvBJ@UyXoUrP?K5V+fR_ec2ISUqC*Ilx39_4t#| znVEy31n%0)l-EeyhW9o5sCP9XYJ6}wp`1Z!x(;Ty2yyitNW4}~TOCx!QC84s#12$8 zy*5QWgBbz4)-m6wKKD*GBcqe`|s-Yy-*7>YHe<#I0<|p zVhdqu$2Nr^{V*jR>h($*Pl6i+YJT%eXqYrH20orKf3(TSNvTCKdv5OFGe;!5V%oIlw}ovkmh3Kf#FI=KvD{EOTb&U?>6b zZm+4eL9#|$O|6=(pQQWhiw(4hu$InX>htX`Y*|>V+$%0Z99ZhOvZ3Y%WEE^s1jWbL z9)cyWd*`ICPI^eZMaQ(tmj|-ioh&Tq$PS4Mrf!H~J{R`h40Ta=c=9Ac0k2&NMadw2 zpnEI=R0L=UFaW%XQVPyODFr9}hMdvg#*`p$XnHziB(SpZuaU4Z=;zJ;1*}T{smgI* zEMEIT^|w!Vm#hgcJ|L=kfj{};+j_mR<=-ASjaPTmt<;FODLX1M|9Sg!rz6T8pMMPc z?jy*N!wJm&->w9GH{@6xOH=jL11rHwImX^2(8NT*#mfnNQLN#27zbDgl+QYXoLQ_L zu?HMj5P($kDReE_scjBi>83XQ^6TJo$u{02>3O{VbBrD$qbJCubT&x@CS>O0Qhu`t zlv528kGQtsG^R^|YqQG1(jXW0u20dV&~OWPWLEjhqMz{SfMmbTR+ z_J9K{1hCB6!;=n?c`1-vlVJe&qb|^Ob1Di z!9NqqDJaswKU12zr!a+EBq#l=L`-zEGJ0v5Q*GaCilt7lQ+p*Rq&KxV%y3xfcbg+q z)f<9*P!T@x67oO*kANov1OP9g-}Dr;t2{HXul=<_TJc7B#Qrw+SIVD50Lz@2Ij|rA zPD39;uHz%$C5t}PHZvLbxWzVCPCy+ebGBGVyY|?tC|j($67q1%Qj_JLbd8~oA~sT3 zWU<^v&k=y&-78bb#XS^>oGA5)ZynI|z24;cY1yPjMFPhrCM8SODRMcR4#g87Gggy` zTnAwvizxL!6$@n$_VI-*&mK^a8H)=j2>Vz-ss92{SD4XjWy^Nd7Gxa@@&BOVczxF% zp693dhT~OGa1tshBpRH3VXZ^{tD_zW;1Tdd;IDED@Fs$RfSg$H*7z$c*Wg&tE*cJR zU@+9@?r1AfMTHHT1Q$Yc6+2z)A6DdCd?UDvdCEpzc}HtZwQ=m@oTdM##MH<4|5B^$ zNp)cp%60lKHNi1z-dz&6-+v=i4-Nt6HT`};0kel6+(te3HACYMAJp#dtGWqR~@gp&Z{Jd`ZTqG zF+11bb{601kvkbb^HakcjM)K4b?;@7?45bnwn3@BA8Vmh-+Nh5s&CgiDAfm_!aswy z^=AOj&-u)uLVNzyLbRI6vraIUU$$&rCI9QZ^Vs2PV5KK=#cIHDPjg{I5T%^v~CzfG7X& z&55R5z#9Z4NUDq0Or9Q18Rn2D5OvVaaG5wFdogR~? z_`Y#t%I)tr2*Os~tSu(}%MD89xI-y32-kyThryt8fk-|mm2(AjF0k9b38l;c1<4Kr zK<5JLm_s;erfBaSsM#Qo+Nq0rsy%wGvfe98lApX(P+h5!S=nfb6EPg_#oENX{ZfiW)RcK<@bImnrqnfS3(>aJ($90n)uB;iRE}0u%f{DD@RZ zLKzgLTp-H}h;RlCaAjT{VNujt(dOEVU~+HRd>L|O)T{*|ylxE$;ZU66s0RXg1UwNS z0C))%DVTyx@6QYrDfsU({hH0-XcYi+W2vBk#awT`4Hg1e%=P96#Xn{?$mxm8e<3F*}#!fOE-niaKIW)_rYBJtUMZHXudcDH`X9b*0Um4`vj2 zCBvdMXP#SpC?Aq##B(9}oODTF(EiPm$sDa6L|3)mS$PaaSFJ>f5(EeUUV3*LQj|d2 zu4m@1fwR;~8)I+t?JQ|xBH-dR4QZ0C;CC1Y zSO}EQT8UJo){fW%4zLiwGG`A@I;`8d+6H3EYmO1q@Qk;&p@sXh7H@)lv>AQ<6sW>L zwqckv+UrBKJ<0FU+`owa6e0pUao(Lceh1FG1INFM^S+DYOK{#29KRjs-Hzk8;k?^$ z{5v@BJ2-wT&bt){=>{O462GO)=cwJhg|7W}4)K$x_V-X}T(4b{u1jZq-&fVU$83Wl zBidXjU;R<}VjnhitU}<0A9kb6L|{dK3OaOuX&1L-8?sIV$^)Tn5Ng5zYSgB?Z5hb8 zJjUMU+gZ}YL?HF}?rqlbJB$M?1Ok)nkh#^`5qrP^76Mr2?BPj=z?8`b18329$wj-h za>61B&!lYO@-Bm5QQuVd&pe}1xWBbhj*6p7!~}hxrjTvwH`wUudZRFv1kKtGoucwc zv~!?dF-y00LP7)nxll%Kr#|zmMrN2Ot5Vtt2fQad`ys7f&b|V#d?@TNP%l*(1NBnj z(1!}8a)%a5%|#jS%NJL%;mr2}I`d6LXTGQ47zim*{>p6fzdfA|Eb|?W_KQs#hDl(` zFVY%G^q17Oj6NcxmtoWs)f?iM!NE`yt3kRCx8r8r$DRApSy1JAppfdNlReBWJxr$_ z=GbFne}jZ{i8%lNklg)N1{Za9|1k7Reu?xv|d7WNv3>@ z0<;E7e_*MyfvK$lHD0BioXnU zeez1o(XV$P`n60LDZlMODCNmJDhxfdIdX=kx2sZ2{H&3pnV{+@B++%fZ3c-vY&DHS zf05zVY;VfkQu?=CV$a11%&@rBR`6AYWOqhg{isK zXzI`<_ppN+polxcqf(RjOsO-thb*K=bb>rCjgFG#J*l;^@2*_zbdoLo`))Ek?MBph@edj6C#qkLDS1F#qO7RR-bDyl< zyu+ZB1zlDpJ4Wol^Zu@~A<-`|NlUf4P2t2H*>zk~ucqvuD)FzurjYFnO+6I-%MBEA z>iX((rHc%S9G*%^VHuemo>~dz{U#Dk*M*E;r47pn*FGi5!vID8_(FzSN$|+tLnrX- z2wioRNkP;PV~`Dz=3{7Pq2OCp`E#`p3C4B%F>U|Xq^XN+y?C!|TR4UBK@Ei8?#n3t z`)Ba!wKLE*x8H8&={*q8cz$0-(Tp`<#R7CULdPJq$9ni@htqpdK;tqnD$YL!_NEzY zz^FL9+l<0jkPULI-AAGtG5;7?u|}jmQg=%x=7oMx12#yjcpgTzW!*9`gg*Kahjq6c z2|v-k46s33KX4DIR%Gu%k)V$s=Lg+~O$VmgGgI9cFcl1;gOe@Z!P&z#p~CL-jybBR z-h@Sz%ytwv{`#?8X{@MuP*VL^txslz*i(95P9+Js?_q_9tD zYFXLkC`wC%gb`J+ac^B}yhFBeTMb2~s%|`}yA{1smWSKH*$Cd+yG3MM&{8{6>Q#_= z9JJI+WO=2ar3P>9Er0?s#+Fi_52y+z_z0s&uyy4|4Ntai4-^+JYJ5Hd`D%-dT^S3i zXmYnjw$7$SNvx90+^Hi4g^dSg_15l1;A7oX_pv{`W(U;Oe<_L4z>KBT@Sm$Bo-ua4 zJV5AR@k}xF#9zz~QI0((WE=P7QVqWv zQ++ohbGh704>C)4S81}CdQamJ?ab}T?Heed-Id8mGvU;69if*E+e_zC>Su#J{5NLw z`;hb&?BU5cX&fZIg;hO^Qr`&S2_T%m1F3RBIEO6!p8~4Irv@Z&axSCO;L0m*e7?Nz zt-Fx3e9#WV9cG6y)VarZW(L|13w|`O^LIB6m;<^Kz^&gL2{|k@5sm3%o3NM@{>$tU z|5umV*nV3NdSS64nICj00do;;N5-fAnmt{eud|U9?(+JuBHA|=C+G89p#ad21G;Ie zQsEweJh=19jHfQMTTW&dfaRsmvl0T+&k`CU?+IpBRwc{2x-Okp9M_>hu}BC#i0|bT zxzhps{Y(Ap3t#*n21JSd#%_6ULa(F^^eh)90IK`84LX|VPPPHeKnv>ZfjU3BX~_SN zp*KpkJB%hK0;zKtpv|_1-(ehJArP3PhdjWKAD&^ivm93}1Y(y!<=%$|^Rc(HoJI=* zpyo5`RY*BoGPD;K0_C$lKvuj*GB?8QESsc5Pp;T|@XNE~4>}}QE^(iT;{@>jIqi<-+_ra(rTLjJiC^kpPq3*R$_#`)kKwzk(xF_m{&^V{5V?5O*>A6)1oC$`${0Q<*iz#zUIe zY<@Q5*=>O!e!u#Atf4OY;NAFt-Mw;3f!io@aoiH;#-Kq`29rFD(XS#gbQejcb{<`k zrJ2Edzdh_GL))k7iT|=gyS=vfSz88OsgLW@Rn`7Y*0a!9ZPVsE&v7fi$E^TDgl*#=> zXS>2HPn??_RTZstZ&=g3T|ruD5V=!~^(eKT8B)#Az;UO~%VJF)pK-e7z47z1ioX5w z3RpjX_&GG`3Npq03M{&9ys4`_<1|bI`mf=ru{B{LkbeAU z*!J)9Z9NBA2#hpxR&juZK*^GMs93@16ZEKAuprPBp7paQH{cV^zInlAJ$c247D-ej zk@pw1i*rp;rJvp?)8i8>;&!}oWAV&j`~B)d`@L${DRT0QO~RMTI8$SYt#a0KF+Q=J zY8R_^mC498jl#pFoT(IItCY380iT#pg%o@C!TC&Io==MU@V@=NjD4FKOC@x!c!~NP zGZICGseE%^^s@>9rftnmYB>Hb8G;dYiYY(b#Bd7ZaG8|vLQKj&0em{1TL5^CTZ zV-2P^HbDR&C@@d-vI==FhgRI#;>t z99*I|xHrHqY_7BUDWpO_21O?jP$HlQaA90pMp5|f*XRDQxAWGuFP%!3q#>s#CnOx~ z1-W4>63C#-kS5rR(=uQ$9s#xWSo-n3@YWs?^$?*Edto6En&gD!ok#FJ;_WP%!a`sS zBlma?un@T0z7u#BGKeg*yg*I1O zy1TffOYdW=*1mp{EqC;6Vw6!0;yAZ1Jy+aA@?`YuH8P<=;zlo*?3Ddl!LI9x>X#Gd zMafo%Ynp1%HZ7QSSf{+QF)=hp$ZB6KB`<`_LMb_?n$_+E-{9f^->$RTXTmqQOo4CL zSnbckH@Fz@?VXY(b&oX^S8uAAZJI*afNSXK*j{<$+-ySCV$g z17VC1!+5uY?O`~_Ve}}2AbW!{mu2J&c~q?p(bPdcm}OkgPNLVbyXN{w^7c!&MzQdn zN2PZo3XWg6MNeW+m3UsR&2{miAB6Bl-O8Ny7Nv7>+I|K5&bEaw90o88fj1EFIDBWG zYzaW~$5BDd6dR{v?XB+5fbxA%v@!>5h;SPWpv9>e>~K!SVDx+vurK`%SVG786eIVW z7kUsyG!A{T2hTW$Pya6tL)U`BgI$%Bl=-BH9UF^x1O`WTNwXAM7nxJ>w)DE(kU(BR zPk&TtTHV(8O>S*US?D3*8Y*Gw7CHIXCSgoD=XxA*vx>F66Q3xg+Wn+p+Ce6hSBg7J>;F@*4{wzrCFitb8JtRwW2wzS<*0$J7!jQ08sK_xM*w?NLPHMnm8@ zWt5S)(GYl@4zbvd;OURW0!Kwau4njmX6zQRRS3tgBqZG7 znR+qT;h5a|Zy&Uu1jt#2eNjlre%4yE_a_mRynH6puBoB!dRA@XSa!30vV(O)Re83r zOEN9<=ZCwF((pZ9Y(>m3^Q<-I%=K4vCw zhrj{AO8iWiAbzN9O2=o-zLa!*zYD{5P-EyXi8-?HSke^YB^~KWu%pJMPGvIkJZi3p}U~HmVEU@KwnzmpboGz04n#2SXUy@^PVC zz;J&H-0)e+Et5L$a=nafGIjNxE8D(6_ z$wv=qrmT}$vgU^cXb;@zAD)-zmLED03=uvs(C?`8!s})9Di7XfWUI%89<$L2h6o=R z=vUNvLG>~Ul?RV7vQuJ1k6G);Y%xprD9ik3(K2)WoD&(XiqwqOBdokkNaAA-OMB+q z!)Lrh&tTvKKsEw4fGJ}SfaM(n5u&?)E&|>C_soF7F0jA{uG+{B5lHKZ7&-bvWDwnr z5r>`zZ2sS&<9DM8m7)0>PM8zL)o-tQgvtm>!gLt0G|^noQlla;n)oQeCntf=Q)zym zi(<6kj~<>0%M`nu`yrrR{04;i{4mUS{S3oSKQp89__2i8skIeJ`MxgAG0kO{uc@>& zIl!@aczY9Fq^(J=z1H6_y|P)T9m>245(&#x+MSS;cg9sE+=!w1=)>1M?}8GF-j4Rm zF*EaQ6KZcxpadC2-+G;H`5`;+x>C9cJgzCF{|=83rS$di2v$m84Uelz>EiIXqLe-x z9{(z(kB3K)((AnsgcgUZ?0}eE5wp(9c~B6J zURo5=+gmfq_O;A}1@HDRm|9WR>RVenKDeoEhEY@ChHpx4Eb6@UdKsU}gJR5V`S{Q+ zwmL=)fg7rn+?dpParH7MDi0QeqYWN7RYz>A*+yT@vApmXzl)X@TTNaQsLG?f>UR~R zwwa+TGA^$J-#QRL1_JFMOd;T&e;&PT_^9yDP_ydKb&p8AH^Iw>EJe)X!7L=ofda>y z_a-{teY4a<{1=`-#8In29LS*SG8jP)Lc?gDqjXOuOH0&4z{~E*?0}_vbg84%s0j4x z_;5Si-G$K*Fn3>vUiJV3HVhf`AOK!=h#^xe#CH9eZ)r_SUZIDWplEA60pt z+`R7sm>R13oIH3HKu}?}%CWV3$KvorIDPk5+M^+CM zDDe|i;@(;2?nhCQJ!+v62cQxUMsQ@!_imP8(tlw9%$4SP7f>_XCA+r12s~)kQJZ6Og%HYj=p3U{-U^E1>(r4heyN4XG0cFsGz&Gb+WiR^}s+3n-&Fqa?wW8NDnT*05 zm(%fiN6A7pC*|nvA{v>QR@AzBxy*PomEH8W%(kOi?6wd72^ZV%&a23j%cIkpiyrJ| zR*;oiiPse2-Na)2#Hn{Eyr3u**!Hy)z}xHu>n8ZpX6>swm>Pmdgx+{WxCxI40SF?Hu$nwI z@QGt;NRz#{2E3=|tpP8<4HskFMA9xHH3ZHHp{@RbZ`B^@n?X}~7J1_# zU{7H11on`S9nUo03hzrAZ-o~Te*_#Gc{jSdtKvKn{&{QEwl4CYWC3tJ}N5J;H(MS>ow4X7h<-G_IVWx-JKD%_hbv$u{ zI`fyyaO6T3vM^|WkT1Kbow~(^Nd5GyAv||CH2Np%yb*XE>Y*RpH{^=c#wNYV+fs5gI5wX7y6EUej|idJ8FP}` zX0fyt;NFM#;>#Gd1CWh?4FIBc;A@P@f^GyxQeC% zEFLY`CORs^YMrx`|H8}QdJM)ZXKBtJHLQX*J0-w$0Y+h2>SDPUs{?cl_@{(ygTkc?yxo-!jf*2zcmZJ(~Y=!nGI+COY>u&QrL zsEsJ8Z*_04X(&v~O^(s=U>da37~*SAe*BnOcCq*o!&#wT>|t_@Rm_*=Cu<)@D^UIX zAu#>JL2HLMVmpp)e2^q`C*#B$68&}2k&S;xv=* zZH2K=ZExbX1HW42XL{*_^1|;zJRY||4dwXQIVdk?4UEbcOvS6MKv+1|3Cg1WKm+~N z0##4_9VSQ@L5Pxg>eokz?EvM$HmhPFoQrd?<4aUH2O-ElaJZZZ|Mm#J4q2L$rlSb7 zRA%o}jLL%z*^2-_r~%lUfqK!!eP=1TjTSI>hg+IcGF984B~JOndrV&N-o_9e=IjFS z|Kl-#doW&MaI*G2_}yRx{KQ$G5YKh#yaqx#j@LkDZYACju!xKDR$w`5z-rBod zAJ_8Kj-B4uNzLio4PJ?qHq^>Z&?lCSujJXYu5|CYz!pyq3vz6cfhG+A4@eaVia zUVkF^3&APxr}JM}8VGzkd#QN-i`fAkpg@9j+Tz&*FGnmgERdVJK6>9Gs5O3Z2Y9GH z?W+EQdZ{$*F|R>4%T1g4T)2oAojN* zdeW<7&=HF*VHY)^R^pEUbC7thwb_N``#D7~m%8@C^00q6`0D1c|CF}mi`l$bg$J7wxj<#(me7mkt3I^-zVY&@UFVaJtQU?@5^k=f z7v0OOTk6Xwb z1?-e1cB%^;^$}cm`J-OyS}Z&iC@sFKjVc07asYj?iCaP+{=q@Cn>>*^3hISzB(8@t z1F!)DJW4itaW&x2SeT&NtOp=lP*QEw)GlBkK15GAJEjnQW7|vYdcltXQ0q6Pv9e!g zfu{BpeWHKy{4cX|Ve)nHHArePpCwu_82=vt1(KxG3YT*?Tt*89dV`>T)kL++ZM8QQ zK-smEmA2&`{=LFFFY|a@n_F|RN^Ti*f6SLRW^difqP`UQ1~DDltZW)=ch!z<|JLxS znTDUsq}sQe9!U!Or8+`Gm8 z0Hnkw-n#`O*9(}YuKl_UtPK_(3}{Q9KpXRQ8BCg<0F^xE>|ycVl)D?^BPK$Of`j4L zWnk)n%|75(@%$6BK?U~h0R0>UEar>B(LaIf*N8y@athONH(CXdSZ`1TtI%#-4Ey7d z1NS!dSr{tNZd9NVgNN8b)`NSuU^@2KQwEL^T9+jZq8~7I5{B_htSslC zKJ*~XJyDw+dSbQ8U%Tz>8yaTasMWhHKwGyv+@WaNiP;ggO{;c=i$wfm^zsk)Rl7*f zk9=ydi)y6JE+XkI4Gfo^xnfGpQM)xk35oI z^yT0NotJeIN7@aFR1)vx?Td1#XnxSliqEXev) z@Ms^mILN+bv3z3-)Y16)BY+7ACTsILHe_0xwJZkpYS01o>JLN|&u^OvI)*g{0E_wB z&wzTh%>?!82cRd@{uC6XKk^;8%+zNNs2jj)zu+OZkKR&0XN^kPAP@z)$;+u#NPSOSvJ7ZRQWzEJgD^o3l|7gCe}UkE@d0>T&KSrhK&f>w`b z3J7u_0It!~By^3iZXfWq_~Tv_Bs4iN0N1GcE*h_X+gKBAwG-9yE~@1~U0Y%fsEzcFGPi_s< zH;S@QYJYmRR`AaD%-56Qu_^QQ*>8e(*1<1$D8etc;2jzG1rG`MRU>#u41U2wFmsFT zlKoWKs7yuWSpnk;#WdtKW@%IB)Fs@5mElNxUi~H8is~y?b~UNVE~mURm7$bvQ}vaC zVzvj*_{ChO0q`RL_n-Tt8tXyz6%>vd3TIG|0k&{6+Cr$?16RWGyk6R2^nten7@`rtH!z*jE;Yt&B3bsqo0Q6>9TT&T!54KCdI*l0MK34>sKOQuL zBIx{y5c^ynyS6tjC5y9N!YntpoNUZ++x@z>i5Z=~@s6*`#arKwvT6#P#cNv{wdtt7qI@Mt0FCBmbbq<0S@-`gQgPaN>dE;Q&;3IaK%W94DB7j>}!njaNse2+l?b z4D6@C^p(4uPzk2HlQV+7K>#}Z{jvc*IEej60FC(s8D~{ehb2ow+-T;taN2cBFOPhQ zpz#2lbR6xGgT&VFs?i2(dgqXW>%+s4;n8ne7ZBfmy5x9EZXHV}u{tQp@WfH}_8phv zQojDapJrDV+4@9IfMM29ubdawCL-M&B;9N%-E4ZP)%B%)>Q{%fuk9&c4NdCE(#Er1tUc8TMRLNW7#fP|}^;E-rJV%qXzULIXQ`JC1RLaMbPcsGhdd6F` zkL!ofD@4P6Ja=fO06%YeYYuT)KX8iGQ#JSjw7+=qey(U;RdXND(Il-SoMLrV84{vo zA5S^W6d;w(TeF|*N6-~Mo-yLZ=3LRcR7aI0Yo;)LJQG%kI_y$yi*jmF;+0-qmBgAS zuX1&Qu-xKw%@arStml)B#M-${8C$Tf{Ir!6}{&EP**p;-h&_TrftknC7 z7r*MPd>s@a=8(bLLei{YN!$yH2(i!LZ6axwuq4hy4*X~!X);(6#~{ZpgSU>PnZuIU z5)|=bFE>y0d*$md_IkRU`&ul@(_H20Vt2q=Ug+n0-g8cSi(j>v8=ft_g~Xk;6@di; zF9i1yWFe?Qz`K>Cn2OX^+_yXWPtyDqqCLPJnPo0(^~|D-n7 zPYDpL>fE=OtM-Fk_}>s9gcWG~X{GbXh1f0aQ4=7Bi%^fQVH8PO>XKk5>B3(4qVO2s zd#4YH$I5bJ-KMq#pPc#4>|t7AvIz6}TkFFD?-o1QwbqmumX_^YmvOA&PbItdns2Ri zc2TxoV1-K2sSBmeE5)irqFlk0q(Jd8zZ@YLK+=rJ z&~;A_xVD2O;j%v?>pzOm!e2~F-;mP&x)dSvCE(M;m%2^IGc0zN+_vFQQmcvb2(#fY z7ByL8t^P(?vDj2ZZ^M7S)h-g#-=@u9!JDr%;oz0e6|2-;*PrxQtGDtIl{@R|>wF{6 zIqnt0j*(W!>*t1y4~a?kzHRXQ6>k<~_;_N56J!)$*$^dR2?Z=SVBN!5ww6dzFlo6F zu~Y&}BpnH?dTotZ4E0=Lq5q-g0&GqJ$iuAYKPlTZQ?0amvkwwvO217bI@WK_{PJDbZTLg%(zZ)EMv^Z9{Txw{ z*&Q{Y0`nJ;(~yYJRv@hqVq@*~Hf?S{cz!Sd&|(=f`2Q{eqNN(KTfVD$ayD!Z{x<}O zzJAj9L(1sDciA-lsvXzT5N(j*@vpB)NjlYc+VP`Dcvxmf3bsg*lXw=Lye-eVW45QZ zCdoHB$b*^C_WF6I8kM!j_F+M3Xonb^Dv#ym z$Z4&S%2?$W@$GBCr|IdsdM7e0oJu5w)|irhrT93*j0qxXCS>SN%M7@-nlc6+XHO_W_=T_o5!!2twE5m+JkbGwYr{j2#{A zDx5hU{2}5Y)R(Zb~z%MtJYq#)8~TDLr$6J+5Mn_kO8*K4^AM6HxsF8Cmxz zK4WD}556O%RbPtuRu=H7>ZR@n%M6R-B@+3t#>i8A_QQ?{Cy)R+;R`l*gr&Yw0=d6 z{kwCTjYg0D@2bIYCS$iE_M=BXK!BL`gpC-kIq1c~|Aqizc-Ugg{cz>#Fi5uZLl3l- zQC`P*s}&UdPad`q9#^degtfxXluWhdOXqQbAkn>WnQbx-uuiaiL#w^ALMmVG z_p{g(RpuU^l6U`46%i5V#EfHp4&rvOAZ()eM1gu=BWdQstjG$uc912J46`DF;-dz$ z;yo#ChF`>SSVw+J*PRFJh;7O3C;UmXB%EFH%tS2Y{MVK=?74XA*{f68>H9q!Cxb(@ zrI0&I8o^cs76`l$+((dwpauc&)%f?*U*#5r7*CdE8JO#SH~icoF=B zA2t+!!yNFOYziBS*%{uqkK%^n3BPgM#(CiMFjU9FGD3Ux6RaRBWPa6CwV5&%mKaWS zQ8S>M8k7O89M1!#Ju1gS>7wREx`pSibpQMn76=jM#G0xEov82#ENYkbt=bM35UjzJ zwzCxhmkBC%mIPM{$=0pNPOkq8e4~yk+vRocdsHU9>d4Fy#ad-V%a-au9#$BnCX|JB zrXevs7i{H@8q(@rTn^>cf7S>oVeu!{Uce1l{!#JN(XhYq-?)bS4=8~!P%%Jyu(?7R z{(zh~g`su-2|p(#i{mM?GE|iLG8$+6&9+)*XmH=LC~yu}(*)taVQKlYduB#uL0x-9 zO-6~t>!66^!R_ZoGb!`N=})uHlTr{;X#Z_mO2DV(^lK7Enx8Fb3uB;^v2wUpyDTzh*LeQr@@K zM&BzG?f-cJO|(!b4$Ty@upj5rqGg`+_1`>a>#-iw_>*F%a?d=@z3uPHr1JKl#jKyQ zon~%&$&yf#H|1&!xHg_8F$1PZL4bGx#b-i5#8YZUmIKA-Xr}H5at3cXNwYp(_mq<9 z!FZD9ZPx7tbCYI?IG@2FvTN?7mC-r|_KpR~) z&1hj$W`K`1F3rqK=mK4gT(D&vIjKmxnq8I7)xPFov|nrlN%I>^BL9X%vA@L3OxJC` z6rYHdrc2XEX&M(JwtouvB=}PItVM>!|G1pG#_#w-=U# zim8r~M~;){hFlA#LLgQoUjWwt$w1?JXCQzXu#d(FEs;?QG?u$zoexNExjQDm5J?YA zHW5irOinIkREgbk1#c58!5$lM;gqzX0u;2V9faI5lvT|k9nNtV@Y)+0EykQ6?<`pTTD z>cV4ry2PI2k(Ge3<-L6BzOhX5iI$@3G7r&kilFiy9UVjaHY@m)Yin7vO40AvHqoZk z@l~;p#s4WNGRDF7f&csjNB>_^&iF-auL$_0n65kdWQK)biG(F=MKmcs_b*2Tgpf4f zX6Rs;ZLfGD1@42(ea0RL>b z{EPZ6HwD;h2wG;$ze7~CenWz3bAvMB;P|a9?yO}Y8P;Bw84%<|{Ir{Z7ec%OlCo3> z0%e{+09-8~poWbOP>?NF7Jxgw|L+J8tgC!^j#-3ScMY>RhHctYaw(i_lbCx#Z2y#WJ2x6AoZ2=lxSD9bJ@pn-=A0 znPHe<+Z^xAlUdn*j=ntHvAX({Ne~2VKLjP$D@yKs(8M~WwdT$*Y}2Se655-C+NurP zQ@Sni?Uo3-FPb+2dS=3;}nVk_oE^G(p0vH{Uo3G`6{Eli-*EB+oMef1K=a510P z3#&O1`J$NL2kr3w6)*4WmuV|Rq4l0%{z5-eq|-VX@4-Qf3DH<0km#?44l09iz)`Kn zcPg?Fn+Ggy%IX2QJ36)Q7wEzuAk|Qo=q`}xuj~K6Xbk2KQ#68Hm##Jzc0{gtRQ!Fv z7Ff;Q-5Jl#)2e`@?_-*uVjrA5%C@&QrTBc#)b&beJ+IW+77Nz7f{^( z+$Zxt@Pqh&hlA_Y|ABu-#sVcNW?sjp|L1%xT0G~EHb=yW#Z;-64n3yW%j3~q=CDh&$XDpDknOg2o7?v7=PBGO@GGU zb)R+I<)r!g;QCp_2th=%O#nZ=2cCVSsr<0Nyt zs7GZiQK;qRyn67;L{l#hdt%+>wCP!QQ>2|_B<^#IPIZ+~Q%~|2n|c_Z3;JepqAt-i zuo)q#K1Io1GPm!2r^Z>Ovw=>Ov4JBtqhQddy9}{|JB_|egtOb7Lh3}N#A+eaWmbKP zT6u@;b?YOVzVc+xL&4`%_vk;eSG7nZXL={oX`C zn{c0waAtM(tsCWOO_@x{s|UyaV%(s~9G&9iyh}nIR7&busep3#{lQM~OOv%l`-sBI z+X)r1LnOWX-Ag(tEp3XU>_hreV`vNJ^!L$+zLC9F;%w|3FkjI%+{{=ZXO`Nuq_P#K zS-Z@S#yKSA^S9K!$ZuTr@taF#Wl{RlX;rmT&okRw3Vn;>mex_VUV60V|D_|R67O)5 zUD`@Jxxt>sc;8rRQ*dJ~`yxp>wN^a6Q8I=3xTs3;oB@vrefzVxbjJha>{<1)JXhkh zw&c+j|E!Z;v4_mAdQVrhsjCyYmu_TAaqut`CZYbbAHL5Ex;Mj5PW?cRRZV$AX8WgN zx~1(6spB=Q-+UH2?YFD-Z3-|McSScj?Tj^_aqGqfGG$f=*B+RoyKlPRdY^et`_GF{ zyrOGdil|f5{p2)&(4%YaDq5-$Fb`hgz{|KQ?p~N1Zs7bfW`3E+#aFj8VLte+&xyl2 za#%ZG2C3Cw>FJY8*zasw&n54; z)D%mzHZC_)En<`$dq7J)NA=(Mma#~>!c2G@)nD;0&3awAneb+6GxZ4j=!ZO&ef|@( zaUp1mUHc{CxwliYgZ-C?6z`)uYQ)}JN*ue9*%TmEo9;W~jj52-;v1O@(#|#t**0Zr z*yU97IyOn%fAg=hs{{!$G)Jm}I+P3URVT6@1S1wE=oCA0%2+#Cc0 z^2YSMrOWqJ?@acZ2C)^jFl(m+LqLXL2%az>uK=%V*on@p0a3Tt6vsnp)CN0-SgkIs zDx8h?ZW8$EjRG!?(>Di!LSIoPdo_VM9CqU!EP5snC4$~f_T=JaWkI%(Dh$&Pia_s;-!Ju^vhy?gHWo#E(8QV6c)_Og? z(MLeP@`_?%P^6_4Mr>Jw~j9g11MCkJIr z3}e0!pC4Xt6*w`g`cn9wgwzdx29fOzDn+Gv9`2}0*|W{JPL_ujr?u+?UGZI=tjR$# zdo!JWAvrF6tQk352-b**IIUIh=!z+IvL5&1S{FuHJDF8vzEjT<5YsrUc*(kjwOGS7 zpx{Qe@rT-m)azwd(kz8|*gGs#&uaSeX`F_hvF=*0Il2b6OIN99DHt5`3|a3ZD0cAt zwTY0$rRv2H)6gp_RbJC}PCaV@Yce|6P(l<+m`s8ayXQg5(hP7p&yMYaJj>XMX$l|^C)LI0r&zbdqM5>xp|#?l2V3w0rh?CwTVc4H~@l(YPy zN8t5lf!ae0(oSM4U}e&PnJ^Tp!m}Al$9Z^%!03PHyjMG2oOL(djZ(ZIDpqP2Aa)0w zf#EdRt5h*o>m`8xn&}}~4*qmNZZ;x|f3Wx5){-EhW_b-gnEfF7k+h7$N&#=$i;=96 z1&ZG(cTjxqZ^<<8Z?@_hO{`k&H1-O)hm5O6Pncr@y(6EeD$HXgzmnHwSt>TYwvw#+ zq##^yAf87j`#oJfp0-qhD)6jcR>_pSuz_*CzTE5^gZ?Hy&MlAXpF^W;acd{oI>bm3Pt{8dWh}wQ7;bixJl1Y!0fAw9%f`gGSeS z(CAt>99`=PU1N{lOo0yBrJ&JMt;%NN*+!o!w)M&e{wglgeXBoO#~E|>R5)@RNNOrmUC4_3aAZ32psRZNYT<1F=aUg`RBnaPmEdU zdfVS|0(co@Sldh#RPP(M#4G4gPg`# zSjrUtfiA$>GLn`F{$e%e!44lh?JF>T!-gy471POk|BFd0Q1qPhr+Yv zzb{b5q6t*lrc9M*2t_B>w(+oy1PdCUJx;c=3wQBPqpP=kVzxJv9UAK$+RCNcTWIYq zWjx!Qd5$uIK9=~3s5mq<6tZ2&WRKVn-&)==g&MxGJrZK6^^GiYOHA#)PiIbtPjuHK zd0Z;;)=!9QTW#A6d(}GG-;a^m^FPpKV8g0*fV>SitpCPo>A;57wyy5*5q81*yvV1J zXG-423wZ%?S{otnNZkh5U+yYSr4?m*^9htSq~2L>UBgl!wyGJpU!26SR5d0g#%Q0G zSZ^EnAci%ZXxJT$|C(_kwHhQFg=pM5Lm zCY0>;3dW`97Iav9uHJi1r8ICkI5yIQwu*~L@9j3a92}cKT-t_agk!4+F2{Fi_1KT& zS~Uhx? zdRH3l;!4*Y^_6Sho#0?@e|D_m$r7Vj=RBQC#+_`ow@?8M;K6__wt{fGu}JNB?a%KE zE+)`Y6{!N1^|I$p$wsY=Mb%%;0+{s3!Z^2TYV+!-YCB58GubGz`9~(>d2O6l6Bz$^ zxes@r(--Kt3p$*L+$*HgcvKv`mE@YgWFc6hTD8FV{IzjXs&jO=63OwH+(#rQnC&!9 zT`Mq0*X9+(0p~{+YGq**I&$y%`a)hT=8VNcmlqv9!zT)g=!kF^0jUJ^ca%j#|A8>{ zNoeS&qGBU*`UfzSN%P94T>;dZ;xO(jM93E!bH>K75tB*KKELXKC^-!Qu#`mUdMpc5 z2wIXx@<0vEHU>TiM8#@=Sh`BzPH+Lm2JwK+9kg0EasLnusdtqI#U4=~7-D9)W_EQC z6ni9nAjHSfJy7fe7_$8V>7lGqu?27|`yw# z#tU$%$@9|AbEPZWLtffx>lyb`E%q5W9l3w|BA=+ggjC7;ltpRh2y~HV>Z&X6lQliK z(idrZa-}a=EJKx0TO{K@3g8;>>MKNVULAqp4FWLoi)5Ou_@%GBHy$3)Eq2=PVUpss z-@6moVZG!uU=ZRy!vg(wMEC_%RyJ_nbU;>jNHB+V<-JjFej(bp=|Ekzw6SVL>d+ts z<=>m%P^{~Cp%V$WiUi&~DHraz;MXYQW%OT=!VfRT%Sg1xM_hz;D8dUyT#3|x# zVfRU$pXsO6#cF2pv~-m?AwQPdav7$rUZYifQGw)Io4DQ2T4s&0w`sSIvwPlRJjUQ- z#j+%JcKoT0G65nd$m|31%7wHiN*)v3*azN)vJxSnDDl-ycrt_;pD;@Pf}eu$a{~NK zWR$FhpWN{CXZZP;Q8MN(t=fSc+|GF37U$MNUC4J>@#gUsYcJRJfwQ8$t|j@_>}3eP zXJ%=fE@MfEmRP1L8~paN%uCB>7W~UMz*mlm)NZ^^AoO7kwDR5FM=-cj@eMQ?{Qna)?MY~vb!nw_u8)yOxWD`>-Zd&ZCH``xY;|CHMt(pe4`;q_t z>?*P9#^VK=QxW9|sBef`d*iWx$j=~n$V!_IS<+6B#eL;x^jjchj>R9zL2g+Il)oKA zAbAj}g2)L(NvFxN8q4lJw^8lCjw}oZPR2o)jgxFVOfsPABMS6;pyV{hg9`VXwLXWbCj0_O!(`}Pt&5VCH^{RG z#jY%97cBP>eHcKJoqY%$st*jY*{H$;bPsIycHH{*8K@zpM+g)Q_LZM;>pKAX&3|!9 zuV7~M@~U+DY%AsB$+7kkdFA2}s~<8X_t~G@QPnW9&h7|X?MTI{sPioiPgs*}&$VaM zHNJ+|)Hd;ZRKjh5yq4x8u7tpsg*=bBt<)722&t&B}Er6}1Hf}BH8o0GwgIi1TV%S<1l#8wN5s1C) zlybjFvve&#oC!He$7;Ml&s7@r7f*nfpu_qCReA^%XfZc#7&|D~c;T;5eyEu}GyRzE z7Pv+r1T5+5EC&v2pQ0|~>HWZM_=n(8`~c0PE=!{>Lr?jUEKmbA``&p#F~m$z5BkgM zD4k=d1Hr@>sLLGHx+oQDZN>dae_5RpCUkkgK9IenVN*PC_rNHEE)UoTD{mOkLAnQg zf-YacEk(Z~8dQ43c%m+Iqb~O+q8`%IDV9u9N!SfH03?&j@Q+ZE{aB?+`uaIeL= zUN*k6Jonx6y7bmL^oQ}$Oe2A8xq9MG%aWvdI$44a72m~90`9DNKQ_J9oMiCJ?V@Yr z!hzeZRepOh=nctzL~;TqEr{eqPzbJpM?aq*C|e!|Wr0I{s3eEw^Mw#eMPw_1M6Jpf zy+Eiy2IU%ryut$aFG*6cx4B9Rn*u8R2!#&Y%MOKy9j7M*$44`kd7~RkoSSXJ5LWDW zP7QNPV_31jJ`7_f5IO{5#eVg1=$X)=j}TVuPalUd6NtGFVMP<%ruVj0oHL>7OrA+Y z65RwWvb12r>#)RHpQji#r2R^D5Kf@FRlbN}2gd~}w^_H%rQb-1W|h^cv>QAs+7)Xr z=Sxf5S?Sk8nCJb%^P89JOoh`)MYyDLfXps6G?tdMiWUPOg2_u8+S#tvPi}lEW}hiT2}*2o-!4Jcjlzq!J=Tb4`7^p-hHsz z&S=Q{MS-n$hKTO{=a1B^EboC%LnY8@47Omcz(4T!nZGfqhso4W5J(Y4ivi6!zw!io zD`O0c%~Wge9-MGybu!n1f|K98iz*m0x9(`pE68g%r?URVJof%Xz1pV~L74`2n zd_gr{5=UBqA-|0W&x?{9@5*BJmfd$9kf_Y@jZ2KcwLArwcTvVDc%E zoQla}BFTfvaiTwyy(R(YqUg?^M$dTxx*3zeoN`0z(Q3ezG3JB6?C*%kX^2!pWE&y{ zh?3J6R4qF57(#tO<+kZ8C}N|H$u*t1XsfXbk>7ztTRjOiULh|1nd3urXLhxtEZzc-`RP8G2A|IP{f^TAGvg+P>VVG zzz~~(&Q3>P`Y_y2w?K{NRyGk6;G0cm~?)jsfo>y`U7K zzoew@wC1)qtF+f|r8+bjR;t*y6v8)R}^V}H?vlVUf zwqK4*=eb8qez&0}UCEG^=F(OcuF_Ig!)~c(D#te;w974ORc=`wb;%2BN zTzXxf6TuB+lrk~tJsFdCFgbGyCLa)3A{j?uUqbi;?gf9p=i2jjXOD}YFb|=Jy-^VU z;JD>FlKZJ$-Eh#dTk`#;tDMGMoNB!;|Kcnh1cl*`jy??YmNDmjR_GRlKRWtQsKtwJ zJ;$}Lv@XCjXYn*w7jWnq6u5OKf5|Y#_uM}FFPwT5E-T5ZKFkgV^^(KJb_iOy!Obmx*w96eYJuGNHosg?^0p6dm3mDeh z3!HCEpb%lP!}H3il|{pQ^&kZIog6QIfSre9or6{)i--00#do&5-ccaVE7g;l<%jj^ zM6Z^S89dgR2Un!J-+QoKaB?0TK*}hJSj;m>Ke52jv8>#Ym28EtJ^XG;W~+TQ^UGjt zsEN~hZJi(Q@mQe6X1oV^KQ}Y4I3N!G0=WOh2--a=+1sK{*1Xb86;$|ZoYwRAbSsG9 z$x{VxfrW1QK$nlBZLuM*gQ%Sf1Uz8979ShVgMLWU9`HlL4DBS9z%;`WPFf4=(;v9v z@ZqXH0Z`G1I)NyWj)mUJ8wgqM0!)q_T;(Gc<-%ILoz$^74Y3e+`XAk;1Gja#8=-ia3igkf)pXZ z-s12mV+GBft>?InOZul>_a%MCB>yRXepc(}U4jWV6Ig=AEvDf=zt1=L{iWug9<|#- z^z&m*{`K$heXkx~OECm-IvlYE)v!q|C2w74T;w7B+-&$Sbk2sXlRk1^5J1g>r`1e*dx}%4^u8B&;p`E>eFQZKq>T`V;68#H1k%Q^c?L>po=cP9 zgpUAl0C-`qh?LrOZa9n_7H|!a#)C)T;)j5Q#f!Vi(!~^hX_I$w*4WL-@KXyyx#9S< z;ssR3V@7^iIA$Cfm_sso2d9oE?~M5^452cfHFgS!kkT*!hag?BGMqJTbB43V;e++s z{B>~Zh@9Il1=-`_Epjw`u(SBWUSa^@1efT}$OYOVOJd;dmjM%o9+lE9O`oI{MYi&{ z<+O+8`TxXZw!NxMXshI5I<)3yODzo~7jc10Zp%mYC+{P(mA;yZG3oMck-HC9H#hzB zB(tFU*}1yrneMejWDs2O3rq}e&#)&KH8VEU$GMeL1>V^Shm z-Am@Bd5CBd-rNH4;`lV&+w0Jq8wb8G3Exxu1N}%oMBxi-(TF;MC=o<)dSLnJ?3PKw z3uh#$f53J=!QJOdv?$+SRqGek>utHN(q$%pLuG@VNc0+!)W_r}BDn{X;?7vWcoMuX z$$j|t4t{9R=AXtc*Rp@_8!Gl?t@|}K+{|{kmbjUPz7Fa}cRJ)f-?Yo|{sJoq#|~jg zMtb|;a3;jDLl}~g-adHEH4q}km41kQA5jn7Rl#oZhXxQXbthHHNx2j@dL~shEiNw6 zgjajm=0Vz3pO3M3D+(z`#k?z_zRQCv+z0KepT#=VrZ=@dFS7engkc+FZ&Y(3s5SKE zwY#)ZWvc&_z2t3nb+W#RjO&eG%_L97wF=VpfA)u~Q_(-k)>DrJx0hV6{c2Xsq+bY( z+v2*~V4Z^gMZ=YaMJ7`pfXf_vWsYm?MM_&KpJv9rbN|jMqxj5x14rQFA3!8iPykUA0o8~o=gn~DyaF~1w;mieuD}8*Ek1iSG*{rZ4{+Q-8BVzH)cX*g zdiO$AFS?1R-hHw_rJej<{4Fe&bgSmPVd{6prTN&^X-f1t73J1)U; z{s2d%57qury?Fqq=mwsbW0ys-M?eiUyrawgpt_{cU0UfT173gG2OiCUJ?|C<*-H}Q;x^$=5wKdWg3#g1KP6d)i5A~AGdZ<=zEThS@2%M6FjSxT7k)rL{bWq zKdT{j6($#`jVI2G<6ZzmIk&ihzs}@K)=-DdIRCnP(VK_7e}*`0#s#P2q5#=zGHPFE z&%00W1GiV=kHOB{aaMHnpub~jJQEttodGF4$%k3Itee-4(dmI2h<$Er97&wTgp@F{ z3gYd17 z=rK<|Q01>=S-;Azz2$rQl6YDvgs~Ir>nKNp>r3q2%!-LCA0P0vdLlb@uCWF z*8QHxzaU8tkeIF29(P81;rY^ZM*1SZiMU%>t4chU4=q-xR9L|BIg;1R9yIJCyS zTJ3I4PJ;_q!U1>$Yy2B=+E0vGcdf1-4az=YjZdL99&m(k0J;a>Bt)2bz;-{YHS?&ILfkEDVPXIjB~?Qyhww&aD4 zjO(Ajnsu3E*!{hxQsA)0f;fl)gFFKbvWijgII<@%*x{$uxtWzS=71K9acVKBu!GIg zY9r9%oa+0hKvQD>1^$1*A(#qszV8UA7DU0Q^yI(i=#)jF(#yGnuQi|^4L*F|HUBmr zAF8M|swm%FOr9Z<{J#NOwd2YQd^cNl9M1HXK3MA#y8F3P*v-#`Y8eA@`iJ{3b&8N zuXY1nZkgEV(cYX3M>jz#w(U$21}j04ufRo4Bqw}*pldOgB4blVOmtkj_h&_c7b{W#AM3&_EZrAoa4@c+5#&E@nU)T83+6{0JgD4?HO#~Fb z>IQ}wKfVzTSH8^#^ z@&RG4wVnor6;Ol%$-z3|hB~$<$A|uuVAuNA%!b_-!)m`Hay*dS-0+f8K&KhTHCOFz z-FMDqxn;?xU8@ZW^p%oB*Cf`{qzaqE+nbZ>4clvz>K$5(9NKC#lV>V2j5Eg99*3J# zmzj(bix2eJN;+MC6V>0eDK7n5BrV#j4jdPXkXc3UyOL!e;GSRl>d0vL+Qae#=(<=i z=BMfwJ&P?04=R?Z+4o+13!IFw%a zHdHZ=7m4gu41S9!33Lkz_Q>iF1vVcl+nj+4xB2+J*o!nW=1FBLg3X7n)YwwM=J#%) zKQcWUi`DSLSFk$xalOq#_H3qM3yZg5QdS(2omlW>P$E712;F9grJ_~n)BS!>geM~g zU)132a8Dk3ut$iAvlHOSh>~zZb+Lz^8%(9=nJo-`e)}WZA@!%CJz4jPQ6Hc3rw$W@2MqyMs;w z+e{?LdYY|O^V_mqG9%WipwOnEvCQAKq(LIHsK`>0&AziOJbbTYNN9GlK!$ZPjTQ~> zQ&!g3$@0Bsl;krQCA@H>Dz(x~^53}h+6bDVk^e1Iyg!wjQPOtWEG!_sm0#edwPVPB zH@+hG1pBQKDXzO0Td(>oDCHAS^vsJAyVJtmWSmO=ZK<091)=`15`^rBmEb0>1cz`X zfX~4QA!;I^_*D-v#BSo4LzXjUi9(jiB*@B_QHK{Gqp*(LG-&0KC1mHMJHCNEstCM7 zz7>VvQP|oWxFIU_LuVkA)GDY98&86PqEEW4hu6IQ)@Kx50wsnvxJ6f^w&2T+(D+a& zf3ekvyGw)GuSQ*miUTEa2HMf*glVJ3M$Ekobc|rJ0B&Z`kt~W|Ju{&3{AfZQ^4r}OaW0nm;$F^3Lr`dQ4;~huX>sxCW;@( zfGlUs5``@IIs|;AL}t=!oC1&`H%%43Y+?!7Fa@TsfGGflEXOv&C623TMb?qMrsF3< z)`8MOC3sa9KT`q)heX+&@2Ff|BX&HG1wE0{QCf_Q5M)O{&R=XD%z^KXgW|8lIRJbN zn#9=o^gG~p4K9j)q|=4!h@GEC4{LgyhH4~C;Nf(fqZGu>RU^TiIDOWFA?+T3t|kUY zVeEVzPNV@xa&SVhpo{9kg0A{)5!Y*&!kuFWD}d@Z`VJ}Q1IoqI<9@3s*R&s_zqGOL zdh0kT(GNxCD=sC|X@%8=f*vQ2%Vkbg&aq;*TvF6#GCU8)=!TWoo!CTAKW0XgGx}ie zd^jdMOE_%7!#VG&$59U1YKbV^zj=6cK+~b}3KG)`7qLwE996F8)ahH}_9WL3< zO{@`DbUWZhb!Q`{||9*9@q5o{ExTw!UNEHPz0eUYE_hiiXzur zty=0^ZMD|3;DynGqM#fGLOlvvR1~eWa@Dt5wTh@IB638F2#OG^6^sbTA$co8fCx!A z!tXh+a3l~8`~G|%zdww;W_M?IXJ>b3XJ%&;ID;#F?!BMnC)wK2v)o6okJrT8sa_2; z^Rr8XesL{(FOp*{OU`jkVoP4j{7UET7v{)wcDwTGURURM#zwmM%JauRasSJD#Pmlm zR!>eHE6WLqmH!cU_=AK7{i@nuUd3Ini8K$%$}745ENAs{9CW{Pbzgzy{P)C+IWe(u zzrj-UcV5YlNc<9sn_b;4k@#C;MhXr9Cu-*UW_b+~OGUDxIe)r`Ioqe2{uy38=XZBS zR5zH2ikx~5K@CyM6!+TIdA7DsIk zi`_hYo_u|MPUK)+SzqgjEa9%FISJcwY}I6k#%^JUI#=dYYb;!|pyk0u;+a0KMU8o%+#POeKEkhV$oiv2yt@}{hMNY5MT$q> zvve@FO!YR6=C7Fh<-s{81|!|6R|;7`&By`@kRE~h03;)j|Ca}+*_&l~#l`417JPCS z^2d*45?e;hD@VDUl7F_6%IB->{T90VvfkR}{kZabQC{LIy9?05 zzi&G&UuJQ*(j+dLS9gW;zBu8iT@$-cs~SF!b4YAaw%K~t;~TtK?_<|v&HP-&!?w5< zHRP3OKFhlcT}=*`Ja6kpUpM2pi?dwFfu-b-fbqP|xt4gSlzm#uIbpwhec6(LIpFJi zfdhqJt%fEOBaX?a^U1X{u!ut!zh?$5;##zb!|6klKzjkIC(!Kk$)RU}>-pTnjobbv zPnMlD5+jKJ1LkBcpp0Afkg&4|*)Of?gXCOm;3=({iA>W50^7|Wz6_XVKO$?ng!u}f zf;PoVfQ95&AQ*5;Q4{Eh?CL>?$4NfB%DGFI`s35V$rhGwx{ye%em3)w+hj5xHSw*fVjVD&EE3wb)HKuCaGkXUY zs4XppURR6tg~Kk{oj)$U8uqb$sh1))C&h)-MJUFXy%981K;b$$icpcS76hM}nmLhH z2^>3-Up2tv&KxHGCPnhhok8(9OQ>wDHpS=MO;I-|A}XeR@E>TWFrVVPsYQlj4g%j`lQ1nSsvM7fQRc>cT2wHJMn~%o2Q)8Gv<-<*1 zf*cTK&>cQS^rSy2QtA4ptmFwCOmn&0F+xE;*I?xUpUlGFo~E6UglT|M&#>?Z(}9+P zX#N92l4=IwRNKT7?YKuO&DU`o`^wXF>?_&BFCIlZMmdJoSJv#)c^>a6%GS2vdv5}>SJfqEJb~zv1JPv| zM3-j}T@WE5(XuI|C)b=_KJ$`J1~*!kM^l9fRd&0DakzP}C&hkTAjU`#Lf_b-t^U zctzW>IvD``j=~JTe{z@BVRgAWL(nQ$z(k8ix>IA+{podV$ofOzc=V7@Qbn~sJagYk zMqng7Rhe$rVq8q>xZ$cjR!AnQ0#O>S_H=`Ugs4d{QWc1-ssH2?(Y27N(tI5^og#^; zPLb^4_`9)&ufA;z&P`o)v;UQ2mG9fm%jf&v^xMDUoGAKSq}|Ij)2jK0M)A^)Hg2|l z{Wu{gA2*w0y>;Ml3votki|c8KGYx{gxwW)_f5HP>>lI9sh@Q@sWHgMue$>~!c!lg`)u}9FZG3cZeq$gl4N@G31&a zM%s{TG`tZaXYC;@*g!p-P!FWc0hHNhA2KtC)GFFeQHa5;I}14dkpTgP7!ZR&eG)yvdjG(F)&8C?>UCgRL)Jji64H z+W%y2Qe~910DWO(nl$E-lh!6TwW|efbL;bry|E3pZC{g2Q%o{VGl@WH$Q>$FYaS4F zNhH%4&{m?ZR4bxTV{PZwVNl8qnWpnWV0xs|eAD90-ZFV`IHn`fkm+2DZ1H z4Q%f^8(enW?eje!%eP;RczRV}{o*35;pg13df#a5X^>;RrfkcD{G9z*#kF~{e{ryi zb0|^}=KyX}AnL@SiqJYwm(z76^1(T2NtRf011(eY$9pd?7S@K1icbS~3rVZqw1l4+ zRJ^v~)ytk3r4_XNI#8E&F^(^L10*02M?r;x1;GJRGt0hQulwgBT7IRku%0$8;yWK> zI$X-3BDvGSbB&Q#+;gIe?tfSuJ>YeZ=QkaDKk0S;vmehG=57s1cRj>09PnG8h6eX< zzJKuVXpMER&whXQ>3=rOxy;p_KK=J6RA)NPv8+D8H<5_E(x{lJ{?dr{t6dpoct)%j zLlee1z=zg7lD^vv9&u%|`r&HJfV+O8{bt!Oun{$HQ5gMqK+sZ6{X~bi_mW5YnIZ;b zG^VvzV?^;<%~EDoPg{zX-@FhUFvm6})*iiXn&$P07N@QQEgKm_3$-h6^L)Qa$J&mk z8LiwMb2msyH-R(FwchBSo5#KC!!H>h!zz+S94cg6 z*hPs18cD3iVO%&&HX3k`;&;E`d}5s6U6(s~`s0=-2aZnlTe=vs%pmv<6zW5Q3BXJ! zNZIdBYyOErXVx^}B~oO#wr2_x@XYV8MK&(aCOTA|G8@6J?z99+ri?8^{029_c zP67R!IbcQ@} z6@7RI1TEDRi?-Xm2>)|rqeifz8<5D*($Mk1pZm2v{E~nB0_~7czaX8VCpN|N+PA-@ z;|wXfZvO(PC5=GacAdogZEG~uP_Zota>-&64%<>|nti{lE3ISLemE3}=#Fcb)%zGN z>nE3%JQ?!9bX+fC?P%{4o+s^(u|=N46@<9(I<`*pIOLBU?^xei)}+?=J~a&rd%M^N^k%Yri5!#5s% zAHS*DvB`ryeM(*I&$$Mg+rjKPdyUEs&Ejo_70PwFIkSznnqLd>i!Mm{t;nuAHgJKk zVqK;sZWw97X)+m#mx^`wEKNp@8C7RBe(ac0p(YdP$CQ31)6X>ev7#S4`k6guRAAV_ zH*0mx4X3Y#K~FpE(-r;?`Yim}WOm7j6xiqPA)alQKO@JEV#BgI*8-N!ZvJ33M;meZ zQC9$itnP~94I8w(uBd~y#G7w0zjk=h+?p!`emUrZZv4|96E_goDQ&|BSb01D38E@- z{qxvSn530|<}7@dW*~y7G8z5}Enp9A*OGT^#Q3fnvCNHC92?ClmYx0SXnx`f(clQX z?b~AC)ZQK{doOyZ?4yXkEE;2Oiqq@Mq8l4xwO##c-@eR9)pm7|$6gcrWT%R(``G%) zUx~}^WCxk{`Nl4SRU*6fRd3-@OU|)ULs7$b_r)KTC5wlY39LV3Tks!7WQ_WQCGLsO zf8moKkx|5DiQm2vSX<*WGa} zIH4k(1Av+S3{5a?--k9us9PO?LeETghG79sxXHBLhFV-s?c1qM-C$GWbEyVMKIoC; zh#?wIzNAX6W=Nq+$^Hu3GQA^bF!dnGkpPgJGzdVBOnJr_*Ome3pry*g1ULBqK7gRu z`ABw%h(b7aRJ~(b?l1X?dA|rlzF{R*7gcLN%6NJ6cC~hKMlAG@4}AtikDeyajTgUl z-z1mHO6xowgBly+oEvX&EN6-9B5m{XdNs()(sx%MdN6yi-|-yJ1lv=xtG8F_JHFaw za9KVgJ79LB&z^a|hY8DM6=tE%jS(4-ue01=<#WBWYFsYYvn>`qi^%xFk6&V$!;O1@ z`QgO2&=y2AjM^yPzok6VEVPe{yYXgC)9VI}OYQN>)x4RS!uKCnta~P7Lopu!SF!^5 zR4$);Ca=PpoBB? zU{)b%=bw;DKAj3@k)D1cJ+ZVBuT7C=9~_TFD^mG-kOH}k5}%Pi8KM%fFluovQrIhH zOp`$C&8Y5o9Yd#D-fV(g*4?M8aA67+LGEW%;%gx#krJDvq<4LLi>wO}j?wm9Dh!54 zha}Vu#^eA+75Y|AJ!&#MD6(?!-d1aUZ^z*6sa9)%l7_t#&3Z1y=T)fR8Cue?fZtJb zH;n?!qg{+eh4lKEOK55LNyr3RQd9lgAD-LSHk8`$;@q=;X82pZ*=^6#1&?r<@5NMm z!{kQCU{3F#Po{WQ*yvSD-c*L=%Ky6ESQqUli{}0NwEXRFdAIfbPMXFBHwg0@#4;-b zzmwkos#zAnuEk=1mE}GkEI+-*rTo8ai=ev^8JfQQlG{(Yagic{^)R-DXS7Xdz&d`( zFHgBR0z~Z3`0L2ju*mYM3Fmjz3x!3KKg%3^YOS|8>Q2Fyj2X68OOnm^Amm}#uZX8N zfr9+?r?7&10eVg#D*|aNA`Md9KMb={AVF*g2;&zs1(}?;AcS95AA$9;J45UB&a;RE*I zg5s5yiox*6DWMi&GeBc)D4=9H^#GdzD8i<0y3ola9n2`FSN8@l7un@m7g)!wq@E zR~wp{!RNq1ugWZ;BzM;;@%y&CC|SmRf&19T!D3m%B17Axgg|e(pYNGe>#?c3#TWBW zR(>GV^84P@ug2RWB4D1r)N-S^*k$Xa3WYFJ4OYJ(;Kn6@)hDwpmPu?v$8O}86eh96 z32y|eb0jViCu~9|2qH4L*I457Z*;dq?D0(X^UeF!#EtVNdz-;fP16s;dBQot?&Ozn zVxZ4P|D-R+RYrwi=G)#;%u+I#O2JN z$XB}b2Vn5f0ERL`*qY)TKp3w)VIL~9b_pnP! zOJ8Ono;FV|Ku4aWko!m8-|b-nK>UL9W45h$~Tdv^i=3hckalx{r_P zhrfaMsH*S6bRB1&nx?_}ev9DMu4A+i5xp$oB(F7J!*=&9$N#RoxuYXJTdpo9%|v7GWl zYC#X!bdfxlDg|fvrCa97O&PlmP0&(rYd`3gHDo5m-Fu)Um&XoogoFQ@JKKCQpT-lj zyJZ*`b#fz|7A|zAr8ab&xozJ}jpexi8uB7XSS!zNlm|8LoS)>{D2!hexiwN$7ui^Z zmlGY6a>wV_2hXplomWs2gga3_`$fwtR_+OUY?|zS)yKfVZYSUKD(kc?B7?uaRx`Cq zGc#yC+u|^m@ED2904&#=L;@+8I|CYfHlK4qa3e9!alOSx*Yen(4`qjjmR3g`dcw8{ zDYY5Z!`aKMSXye_BT)asR1>|VpR^K;mZu`Ffny>b#zh>8FDm@k939=uRb$wSl|B

E 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

8^7`b~J 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 -#< zUo~S#t&PN+xdL?)s++EE0DWaXZ4Vf6y+MPC;i)udgyDxjw1|gYy_Yr14Oz1;o5Ge} z!7HDExCH>%c;q8&={FN#OP_(578#prUTr`XGy&R&0TqY_-C#>!k8=LW&}2;h2wS?` zIJ*Z+QK>+Tk~}!OM)vR2KfPku(t{GjA2riwzt~_&wbMFlpl;QUIpn$1^yf|suFnGu z6>19=liw_+R^N_HQ;*HGD@Za_s^Hyrtl(WM%a9T~t855P(EM9kJ3+aEdMeNA{%g=; zQiFpN)QbOHGPEM$3`R5Q(d!yH>3k16bxt&JDpC0KNW9-6BW&6N`?9Mm{_$_RR!E2t`WOSj=lwTIc`%8$tBSx)hXP zFW-0BKi|mzucnT5-+!6qWMWB|BoKqX`-|3vW?R5e6$FN=mi-lD7jbpQx2FHWNRN9^ zGdvZx^;p=}-LWAXgmI0nHjx>clQTi~YzEmgyW@c8qC;=A)(yy6|NYiYR&>b$&!a9G z>7(N5<(Roi3z7&WMau^uIts^oLqjLd?HI?XGkfBKv zM?#h*d2x0R)|f0t=Yl*qyGHi!)IYsqer57IE3Q_KkZO)?F+Ckbw`49qv@~hI3sN)s z>Ppp&O{S3}gcWV}%+K_U=}n`CmkCdZn#vvwo%hk;JJ7@*!3@_evBYwxn6nB3h3V}} zIJVaX?w+A88E0>ecoO`dw`%IjltC`f>!X)&Uzx7FiKY5AgF!YS!_J5Wmace=IWRNe zm0%md^uI^&J?3IGcsri(;K>}rhUnCxyHgm+?`c02L|Tk+WFG+6oc(N?3Y&H}n>L3E zmRexreer&}TNB9@&r@Nq#~1Bzsrzw9+0_B;pGJ(ak$xgM*Q>@#{_C*zgv%X}NKB4^|U*6TTdI zaCVRE->H9k#U3ps!=BK$+$47RnN7jn0(0yk{~r!_oRk!NJYg{a$lq5ja;bfJ!Z2$C zqJbL8GUs;-9|PAw=1Zbq{rm$3NudU*xn=FRmS*3k4*!+S1m$!puE;7-{|ATA?Ga(^ zQ`Oa%Qyx3-WGU?=r|Q({Hr2IxHu+zj>?%oqvlI69*<5X0#iGJyw*O@y^8-c%BiQp_ zVHh(pn)VSi%=G-L2l!?|w6kVM@dfYg*jJ6&wBx|GXVK=I>7?`^yqOxX^k&sAZ{qLL z_PlVd+qjFJBazVN3;+u*GRsDp@PGVqy&0HgvvMv4(SYVc?*pCNqun|m?bb9PeOa3{ zad@CP1Z`**%8L+%_F+8Y;=kSmUWAA%k{f5&VBHU7q3jCs;OrXNzf=F~72}lD9BQtq zhts?YlgK4XFRb@jFqbp*yhcgd+0PWnOWB=uEgzV(Jp zOlHGhS(F_FO_{Bx2RYfiOEJrfNlPtxR{Z5e=Als?P096Il}^;z4c&pb)T*K!@hhf* zhhUl;k@=<781K61Dm67+>p4N0<~ARz6!m7{@;eC14ViXN=xT0~F%Ttwbn0Bz|Mv08xh82*kvSR81rKc`A-&w zl=ySTfNJs&g0BWV8<=tCVmRLD2(5xC%Henne8U+2HY)uJc-N%U=9tm&RgduL*YIY~ zV3Xg=zPbQp+2e8C=`UdG7vaq$A~sDdiS9Bx%?OL5pFeUD>2B^&RHh>(-)eO5qx6B7 zQTo8?h)a>N35!{SoW}s#(wivga0ZHXgai+=G*!Rauo3Au<;B@G*sM!IcYwa-!Pz~s z|MyQ_Bsm_yAX}Tcs##U-Eo2iTmd=|J&(kt{B))sYM(yVzgWK8@Z|B(%2){qYh9#ex z(yX$;b@ae>SO0189myAw_%H9Pk}g|ZuXinM*>NRn^%1etWBoO=Ud#&1Jjj1*Wvc8y z+v`Ed!Hn+>n4*^rHNs_FwLgiX7QE<4?ERr0UQcrq!9Q7th-xbKC?##!+~7H|&44rR zsf2GJlq8I(6vhS2r&Fqg0{7#XAB4)B|JK@(pHVo|YVAhDO(h}tkeQ$LgAmO39=^-r zHps(QU=YmRvdlMF8}EXZqN!GkMq6gwYe}dc8(0{_)Ff*39x`jBJN+slu2uV#gE4_-$&808 zRr#Rk!7`HJ7J+3v%pd0l!6>uwxcB_K7i>~gr)$+uI*i99L)K(Vc87a*=HeoYf(>=~ zWCxb(8>k||3lE%6w~SK7MW(4ujjT(MbXOKF-)6CP)vpxfYh$B}qadeZ8#our5#Qs6 z_#Sv9bCV(f3RT=cc{CX?x`xBM5}bnS`Xi#7T+QifJ@;_sk6&?N8wDW zvom@}flyb@cso6#BrR{{*+BSEEFCHfS+K{}=aZcwWF68HW=E+$giPX4Q-ZyjKc8+G zrK&C^eY}@n^+Vi|bDc#bytA8642G!BTLW}l2?|EwDgq#vAzS?E=W(ZqFOr6$Dg;2c zNA#&2A;)NM=!_Ru1VEu|fyZBtgH{AU?{~(pN)CTWzppH;$u#vou~nz_M$sInStWw+ zIOb44TE}T_+YNoS*zMecV-KmK0hzH8r`#!>wIY0r1~_MVfxE)Q?GYM2T=l1Xs~pq8 zf3^r$r?msw-~av3IqT->ohk)nS|23HF@ZW)TgRold{!~_r7m<4yD4XTr zj#T>|zK^3qFxx$RFTriA$1iW~{f^zOvlS$1gYI3UB1QFkYTaVk?Vma5{bb1=3kj=W zm){*vYyUpNfnxO_pEL0ut?VVwvw7r}f{vrvu7hLLJbs9QxWivj-8fLFFB>$ljx!8- z@yesj?^dh>Pox+CKSfphiU4pV|B50OzsaB>T?0h`#4Bo2Q3OEmmtN02Ho=y3|5sr% z)%50xt$(!MsQ;?z*%@hpW;Q_<#Ld;vmtmft-)@0 zF*7D9WCPLITHxU8bfrx~G}-rS#QltI!zzV7yg7piOVw)KrgIJg8=pqu>`MsdkDQN# z4o+xqt8MNRC1Bh`hs=&NmKIio}U;nzzCL6k0g+eiQ=Gd*zLl zwwQ}7oq1(U>X_M)`jDE3bkAvK0FqtX86dl+X|O_!rJ}3r-L%iQ_9Eu>#E`Kb#$`Op z${JP+ZcX?tfp!G2@1%P^Lo#e^# zHh0`ipzr~BTqrQ^8&gz?bL+p9f64|Zd_uK8$MhDhx!%eL`+3Em%i#`?L>48X+NhA& zg(O^s0LUnI0f|E~3u_4AK}9RD5bxJ5VgFy??}6?!fnLT5^a-H1-1rT$vmyX`%le?7 zxtpbaWupPG+(>2>47*)Zvx0k8z1Gf)keu1l^pZDWFhMER%OWttzo*DrsFYTF%AM%* zlp0Y^<^cB+$kN=O)-Jje1X(fLxOVk^*@uRVZ?WD}hMDk(sLjqISLO0h56ep!P3jrR zpLL>#dFlrDGlyj6Y(ClD?KJ0@{ErOVnwOaA=etD5P#sHx6y*#1X;vav0T@I+*%kWTzu8MU_)s>d0g)T z==l+mTGMVqvgA>=RKK7^*kf&xLrp%i+CpXMrRb5&O^N{cdI9S0L6unF>tl@nSJ?Yp z5_yLIIe<6}RP_Fa`vdrxy;)OlGT~F2o?ml4R^jV=W|RCGbMpBs|tJ z?9|3X4OL|qW=DvtjwJ>a2f7KGZ3L&!T19LZrz}qltkJ@Xu7uEATXZR6_Clih3;S0R z(H~wns7^5guFXji`;_2tI1sq;P)Xrr56c`$)4B$aj?N6qSP^q!B0Im^a4U)rSsg|i zQz6ojl+$0h9*2tNSy8IQ$huE_%;(89Rc)XY$^ks?w1ZxQIO_A{`159FH*8o1S99BW zGffKaY(=N@{PxQP-I>{tZ5Sr?O_zU{ zLAr3CEd!`+E(=U%@@hiV8yd_+Lmq9fURb!NF@)#*Hnx1I$L(VCriH|%2SnMzg5wXV zfnM9x6a9tm54c1BEb>r}w_@sPlM6hQQ4Y=qyEjG5(;{E}5uw)Mx2RU8o@#tUqOgf6 z@N85$HPpk=!|1t#dvTe{Ni1VqE>i`nVXZ!F*bui!%JZ~pr$NQ^5um!a@aZA*?upb&uG?+jS^ zb)qfvdC^v;Yfo&Q!@Hq>wsOR2q?*^Je^Sl=x2jv8l;e^TQ30nfIUY`P%-)2=WPT!6J#wog| zRi?oq-uldDpHI6xJ@}BD%45Fvt_Hh=BBrg#ms8vv(m~&5wPPM-=o9gI(hFVf=`L87 z|B0a<_3q?nu+wMyA2($D24BE2EMq?G^x&%iTl_Hi0^l|nzJMLZmtm(L_(V0Z=-SHF z6AsnJ#+1E|Qr#9=mkXQ?l#57$Vx3SfVm{0DGAM6eMyVnblo0lKF>pOS3SCV%p+X*6 z@Iz2uzfl*r8aYyalZ%4XT|f~4g^D^!C<4HR0Lv+#Plj~DUYWa_9- zom<}*U0>MDn)u_G)!<>g;yq*RYB2S!*a+6u3n*xN8oWF7NY*BW0O;bT!AB(zy3fX` z2!KMB3n*e--U)Y)KoI~32`e_jNA*ohE**g)0D8Z(f{>xJFN%YIsp1REg2&9hsL#Bj zMDo1fP%m|);dCk^P2K&Gc@?jd(nA-yPTk-D(dB8Scn4jwTx>;(hyA)h0@+?4IUXAQ zY|zqc3%MmaiGFn|$4A@jGHmF&2Bj2`&ZRJL6(@Vb}Tk+Cyh$^Y?_ z5X>4dGJ%cN#c?#)SXJum$Y5g~UuQS^9pyCGSjX7utpOYBq}lbudf8YlKnov7D|;KI zdPZtv#rZnukztPqEzQ`^IQM&&-1A2!AuD z-@}no5dey~`2p8@^Nu0_dix1}!x|_8pqeuSiKa5TpnkUGun(E=k`Szr=gd1OHx8aNr&2En zZ;2bH=3LQ9Yf&l@X4Z_r2}O6TMa|dwiA2#8gSktFCU5l&IdY5Irgd)}QTWh6qL;>n zBIZXhSP$Rlk3%qe;4%X@47JLlj8jr;m%*TLa%=63;P$rmOj|g9v^UMVMEL$RwUq2M z@lZL`b^zsjB4{U}>_Zs16F}JqP`)o@Eut@VQEyJ)#0GUt+TTi&duB%+AN&HPJZN$u zyg;$BO~`@R6R|QVP8A->+@uHq7Go?*t|Sk--s4mVfG*AxF;ntRxO)VO04P*xLT=pO zwB*teC<37OI|H|wv()0*Nk$73N@u@3OU-P__;Z{n$0{##xZAE<|ah|6slm6yQDnmdXG~P z0ImdB&2N}+*9a5=kjr?7sx^GulA{qQ1fcgj0~u9K80227b%=aoE2i~EWN=%V4e9<< zusZGU^cNE!^a2kWmKL3NEkQrGc~ELS*1G`Y)`cw1Luvept)snzgp|})taq)4GRuk? zphtS_Rr1oQlI< zQl@-S2sqU&2Bi$#w1MocjmK}n6BaySyn5@p!o#XQP$eP~Z*)@4LnSUo0}A?dt0Ui= zvmb(XW*W=&&lu!sz;+XY3ciPj@c1o>UQ-90FoBTporNkV(7v-1X&kn~T8>9SuJB0a zCPe_a5MWO7q3bHH|np)85|TAj}&~=+?rX#Ybw3R7RU21VWUL`OGSwxq{HAy)8s=DSKTPW z*L7zl78f$_WEm8+331|Aq%(EHT%6NF9U%0BeF6N#`YJvS%9#!2`Qk;E$AGvCJ}2%= z8%1g-1|x&$kV_l?HE&Ao!v7y!hAas#H@0@k)w|p#ljB|kT=woU*`s`a$iC=?iS1r~ zKVzF-&YKn#SWG&df9@PA}1wdc_H zlA$@qEOkfGaH)5WtyfKS4wo$T&Uv2M;#{#Nj6esj2$QeRBvwT8YU-^&j`ZL@8|!A= zqqeOTQ`JZ`C+o;8f5ELJaT_hENw2!WZ&EW~yA)LV#Y|gz$V0JC;@bRG^blt+W2pxZ z*1OT;7k~T7AHWl#D0&gS!pZSCD++hBCf^!#I2OSEgP#7ngI+3pDR2@1`>*a9$89fR zx)zCQ@|#=XNRUvwYTFJALD91NQK*!^BY8ivmH306U|0w;PlbU*3y)-OQUn0lO2R;= zBM-XX<5UDd6=zroGLXqT;jR%V1i(+jA5;zBw&c;0TsRUd3cCvMa7d@_39o{FZ9?}?(;CbqCRNByQMpO61j;Gx_c7~<)*OG6x-D#UuX zfBw z82sNO>n1tl`zr7`BSi2sB=y^blKLGaT;2psM+H*WW6)7*1Z)pHlDSC{08GXPBVan@ zLDzen3IWi?VGz?H?}WQYpa_6Ml?r4o_@*V7jzAFrz26x~xU)hw4G>*n`WzVX@O9Nf zVoN4(q8{42!`ukcy<3ndkydVwOY+80t8Y;ttsh_85vcrnT*!QgjB2H%)?mGJsCHrz zoy7B_2b6S#6sI{g3@yJbIO@8_qBt$!d1GmjmTd+EyUti@+}^RDGi{%}ETOMvpF&@| z`JeU~Sp=1xbL%I8?>zV$00ZPX9ul?&tw-t{hs@7vI8V7-ZMke9#C*Oza=Eud={E#p zDgr5)5}6d>yKw@(Z!D_q@`e% zYLKw(?i4F6$!M^dzIN>j}YH)+zBkahsb< z6=sR>JyKwbF8Lh;Ri-Yrst_{C|E0sU%XmZKysSOb0*U7Tq-m50b5?;W({Z9MZe_v4 zno_bQ%e5np76dMr=OXKD58~5;9Q5)*zAeuu|HyLn2l-ZP#U5LdPaeSfX~cO;Uh~M| z0ASgm_cfeV$eZ*%avyF%D~jBQ;gQTu3IXubKn~3Ep!;l`iU4pVw;&!)-U)Y)KoJ0O znD@wq_?wnoIs!!i^nPdHLJS3KBU=Pbr#4O9;!X_q@s0KxW$?YXtuMP=>W`cA#2pVC@v z(b$qwDY1_+LwWrkA|=kgLY0R|iL(#5nK39W*$bq^fk!eoDFOhL$4H4I54zstR0Kc{ zW2_mn7|1)}t`R5%Ko_?USq#2u$)zJu1VHb11|sRM8m$Rt^kUM!3A<8qY}_?ds0Ln^ z!~uxK9SDyG(GJ<2!-DGs252qf`<9l0}Jgu$y3-0gVRF{n+vC-IT9cmO3t zt%BeDXOogk;#LwPd%ft|mSB!%k~r&`|0Uu$!aC0iAN7cHnN#y7X8fGTRJp)v$#5hr zYtHT8Co)0v?hUIDwdwWk;NkJ%Y1E?g@8~KoJ0r z{o{Tjvs$czY_Op>TT9a&D=U8*gwk{w-Z zPRjMXRLb!EhpMYQd3!R}RhV%Jl$B#8#WS#U$T6(OF&U@H8$=qKdQ4J^0X@hY1gdA< zNrz2nngru3t5F!69c?m-MQ?{Kzu!3BW5Mt!_vyZsW}wu>;rb}WKyl_F)?m0qy65t*#MEK=&b+mJgo})xrc9Nm*-v)KhPaa4memHP~c#j262~TKo5tn zVGvnxk6{^-Q~Zsk-m(OHpEI){Pus!p%%?o<;#+Id9S+6DG$(3TE`)QapA9{IF@f(c z1c{e$7cdXUxfpyM1sk=^l73sD_~c+q%w*kCRt#((e6aHlx*O7r8?F{Y+EvpSS z#UBKQQ5kbd?B~?&vSfAxoh?euo0xJeB)!gWDK{c6{RfCGSj3}|ICmO{R0v4ZCGQH~ zQRhhRWzD^w{x$gqZ)_5u;8Os8*6roFH!PaICL3~xQ;dtmjAcTCPh~`D`lyXdHf%C7 z+OaLxC2jdmX`J;AcKEjj(@PI0P`{H$49w8jd!NJ5tyK<$0TJK z01^t~AN9Pudpg?`$M_%Zz2hwPdid=ayiQ$<=u5qx?$&iuih+({Alg`47MwZ3GwZcI zJ9UvbSA)Mu?3%JCkbofp+X|OTlGzg~tiUa5EcB<{;yu+VCPt!8E_*G0%PeIQId|tv zkM9v#nHMoBM1s@Lh1A&JG-jJi!*r_k)7g}(!rCVK9+7N%PVKCMxdO3uC^gWx&O)|S z3Q4VY<%MLC3PV~nKfzu~Byf^bWev`w8)Qw}`J;p+eTk{DER{nQ))DoM+$CaWws@xO zE%6u#yF)VDMm*i2lIT;J;=GMq0s1)vlm&%XE(hDoB^$kQ+j7}HV!cyldGkQxn@up9 zkE7IQgMNPQW0`Qqlye`g=V+b#ILq#77=Q{t4Fgc&K7Yi_i~wZenGt|2+?S7cSK~dt zR=FAv*tmWEI7a_i1^~-&Q+@jQ-!#Z4uER8drsFPI2gPy9Z6XUNZglgy>iT_?sE8}b z&x$P?NM7_NuNv~UW1sTk|4^;3seC<`eQg3LJ?^)8P;~^L`hFLT&K@p3obXFggVd~1 zsOv(=O_B9`By+nmF!10F=AN|swg2R*htG{oyZ_Hox>+ychn7bcSL>KA-?Ps9AV*$R=?CYa{+I8ZsbQVn_8ny zj>-3r>pg(OE5MSq8YWYDAyti*P7W=WNl!*u4Q+&~YX{Th3k&DDlQ5pl@+V(q;U?ey;q^y)*fn_{F`?-(eq8CYvPD!65lL`p*9psyo6D&}un zQIjkbIKM>sU)&=9lt?f0CEMAO-5WC9H>=d^-*1LqP5AmnBlp%cMg4veA_@`{J@uzgolqe@n`z0bt{?~A0yF#~$P{329ip7Jd1gRP+$$;^nYfwv;&)fGD7ljh&5==cr60BvY*3k z4aN%MA=n_MV?51_FpQ_UiRj$d>}WUf7=*dUGces7I9Fp+k4effh|_(FN7vqTr#Mb! z7(fyRCY<;BhFeFV6a#t?CY<+e%H<>q zTl)v+!>@IRs?^6<=zaqTlK`PT1ih^1PQzb=U|;7JtAVV8b!QYvK74&sar6xA>j$DO zGGJd1d55;1n`YbzTj7wq-?nyhaI)S5Q0pOH>__md!mj>(hU4=+a;!4$-!evi!6KQr zO(34;2iTr4z4-^+(0{=V9aFrasmCN`7-XcrL;(8Ubf-8@r5NZK{(>*H-rjKA2$W%v zul57J)cQ2#@)0P*Kyl3=p2j+aD0_WoNF>12B-FmuVhe-@?Lr~1Y_;AYJyo`Z;7bIP zWkl`#g}ZCZeI?XwKGk!pwvA2(6HXO*T&_^-Cf~}8YUE0i#GNWhu@4r7hPeN$+<&$GQz5;a)gvB$RMdkZ@?~F-aK)nW=C~ zz3WbKoJuj!F(jdc_x6U{MxYFXd^InW@IFnsd<4ocP+T*R@UpO4vP?SrA8e_U zy!Y^uxcV_pwuXP%(0vUF1%4&(Xg_mZv>@NQrbcCdO%W4qW%vvP+W9Szo!bw{uzAN6^G%k z^9CLzA|oN5FIV!K&zG0p#s6_Hk-9m=#XRdE!T6spe5?0hUU!t%iO3rD>vj` z7;Bq+Pk8;M`D67$fD?AMO%Auw^VpW_06{YbpB@1KnzS|06D%sewLaI=#aho^CUE0P z*wLEz&YX1+i%K?U5*Uij_H;`{u8~wWRlpW_BhjcD$)1-}LFxDGfD894hy}mqpc!E57 zSoSRiOqIllEppXI-12U?>rKNFQOvKY>&@Ac7)rKfV#L^ILakH8JMQenL1F!_H|Zze zd(lMWvc=5Pk<1<6E;EmPAh_TU&k5Plq&~IyGMrtX+IS@2QHY^r>1vWMMOoA5U#c7< zq-bpkiz(thR;R;37Q9p}8@rva!(AW0EoqK+3OUphPdaQyiyK4Cp~opak~%hTBG< z3-~!w6Mxkz)yDSptLA;S2!9t z+9osPdE#x4f%~3}@<7*Rw!8@HHnOyd>mrr5)kXVr0|C5In-Pq1qmJQbFl(&Y2zH!5 z(T=kl%>~fZW0Eoq^3`^uS)(`IDUMSa27o1rwya*?aO((^VUU@+b|cub`Znb_0;L!z zt{I5=O_7&>W(3!@f777Ir=RSWbH%))8Wn??wf7)}`^vM>NR332kclT=Nek?-=Cvw0 zq&9>Jdl&}^Y(x#`%2wVhiv4S4$kk$QXhgpkOP+7ePS-Yk8~eKU+4<8qLUad_0~{gf z($-eN9&bgv$5;+QmxC8m-<0qOHl3A$ z14>jv(zpYf>Zy%d=>sFzmCg71@}=M_M(rb&`iyvYD0><6YNmFiAh19BRvY_S2pP+& zxOFerX_N`rks^1(J#T40PjMWjZWG&n(JQ{y1*#oH7}WS}SdzKf$Y{?t(wTowf1G{R zp0qI+s-RVr3uot~Ie4t)7v{-eRXqatvV6XtdpFu$FH=I>t?K#+(9E);)T6>}3swu}7gw6(`n?BpCuDf@skVj(Y?@2{ z(K2rx`Vx5j)lU~nHX?|TE(XcaU^737Ku*xqW0EoqvQzyK#HcsjDUMSq20Df`c%k+B zhTBG<41;_%T?};X)0E3cpbP`WH3K{S(@3HTO;Y;I-(u268XQ)4U(kvPD8$2RlvDFz zRoe;G7vgpPq`>z3dj2TGN~oGcym!`_SK~>VAHcWzzL2wAn%5{1U1E<5m0DXhP^xejeYrv?Jn5qlboYREVnecUrkUIAD$m?L# z8E%^#BMf@E<*_<@PE|G-?ctzm05vY*pt=NVT!OFzijxlr`)n}kB&-AURk^U&nupl5 z=8R;8iVuHzdm{+@b@0Gp+TC^3Tx`%OwFQJ7ntDu9hCx>9%Pr`3?L~Kr<5Y@)j-d@Y zrFwhAZ6i>ILB85`)ZY3u@M~aCa{?TKyK1e zX6VRxV7T?EM@mAnV0REa|ZgwBAd6S?uE)U(X2fy)g&*Av6-m!3Pl zJy;YL5>Z$gVS29U38a?5S2Jj3NkmR@o+aHesM4~5l1EC79q#(&-587PDD}tTl?z>L4R1nH z6+8>&IkaV5mus=n?y`(>glL5*!=?Al3k|D_M4L*p!Hh4aNbbsXhs=GGPvFUm)H~9JMUQwphHmiH)}|g2m^pgF zp|#ZAh#i)k7_6}@WW6nK;5B3I^s%|b?X+x0@u7sPu2J+aqFK5mazGK3dff&fu2It` zUys%`%b|tv4U3lCd{?~BN^gWYcf!{Zm6mR{$+0$i0bs}hx!=Nd$%~72Kb<*0oqjFa z;)!$R%lA3OMjN>k`T_9AKHI8Hdc0l4M{1|Jb$6}z7EmSIiodTEr>_Nt z{xY{N+_43M6*PG*mZhF*ZdgXHHZj~!2^g)2j`YgQC z8ys2JZ1k)_-b-_eQ%%x6r$9#Glc-dBNI0QC?DZI#u=83KlvV)6eZZsa)ZwU61G~5V z=AoW=0@NIA>M2Pn20Df(K*{JuckFLfDC+P7XZ9ypdPS`C-r>b715Yo<;a7%%Qth&zXe{?J|y)OL3=>c5TAbEz2R{Z-Olhg& zh}8s^RU!3T4x{*c*w2~tAgHRa0&-^I%Mf5ZZcpETEn0V34((6Ap=Rj#HINwC zdU8!)cxGE3>M@(SE*Y?&>t&{&yR+Wb@DyP4fvD%U6ZQQl>Ud-u@Ls92A0Bd*V$kce zABcKNWZVM%24^_+Wk$jITJaRtyQ8;KWB*Dduh#O#xw)zAlGa3p38^q;npR^MpnVr{s&X-Ou@D0Qy8 z^IP3<@NkU40%(PqB<9zJzKeuH*OBozgc0_u(;3CpfL3#o-aa=3Y?imCgRZBmlS4bq zHwa*w@`3W4H3y`j zHcR@0w*KOPR2dEM->gFR^xW{K=tk?wLYd(!DzH86y`8GB6a!@r9rDwaG7JP`@L`&Qv$fdrK<~#_T891R4U@l&o_-@52%-%l{^lneoV}*{X&|-VG=lZ zCrTUV*RW@b`NW2gwOoG}+0K52iCdYEB+mxA71l-QO9b=15)!GI8b^Fo$LlT#jwqB| zw4Xkx;@O?KVWCnl!a13%IXi(X)|M7I=95L!jb%-%`1-=R3~45Z?JjaPmc6yIuCQkc zB$`ygkx0qfy@pTAbBNzomAE)0-?90W|F?_l5+4_>3HHfb;g$C9&dU}=vyWE}a>(av z{0?E3a%JYXkVxtH!(Xnq04(D57LSd51mN)W(FTWSUq8U%nS~C|EOdDG{$pca#wPUp zZbH9rUq2kyTcF<;ZmLfo|C8+o-(2#zC@9G=J)G`S3E&1}4eNPNxdV5x zw=(P1YlYgHQbv-Pw}3y;d$LXNv1=hSZ;F2JPk5wuCT72k&n<3<4;IedA%6n^3P_rb zhcKo!I}qOhEZqg<$!u%7MNsAP2FmTme_o3X%6qK-5TXsBz;|RP!8W-pbAG&+HT{mU zZL)VcMZsE6$xI(QI0fxDAIpnV(0=m~H}od3-%Lbv1~m1Uq!a_XCfaX$(_M#gD#O5z z)`U^dy}jYK5h%j|f|k*K)2Atyk3bm)ife`leI#~7lLvL|eE=F}Ls7sPs|T1BYA(Wa ztVZ)W)-)S1`o8~I{srMq3y72JI<;Hipjw+PvF(RPSzBuAgN5LqLdanBPel$lAG*N} zlzRuS`S%--rbq0eJ#qXnzu6uS8Q(vEN&d5FWfIF~v@$wpQq?&p2g55idUK$n2$XNk72zshMh7%*A)6(VgQ1so!6+QB|qN%hz4`D+ReG0KM(*no)kv)evglm*=>$zNrdWD+s#z$RzG`GOzpXI*43 ze$(Qu68aNk!pDi!g*o@kbQVf&{TEWLrDV*^Crl=RV75QYs&eGG!pMM|BH|+5<1<8fy z*U3S)%|}C7z6tRL0e6 z6nU=FhI%+Zm9M{3l<-&Mm2ir_;oJKRQ^NEe#*V|F{uva8r4D!e2JG+f*Rvco5b?3_ z0Dy=OhOYyJ;p?JO`@L{+@*s|5LJjZt-PZ7S*KBsTHkOkxuq?Mx+=i+>Y@NV!Qol(E zG`u`tZ4x@am!lybvz`xOnm07{n4}B?XU9XBXx^Ld6vwFygN#&|&_3L7>j;!$pkufk zoe_PSa`_09VW7BXV5D4J)-;|fJ1(0mlw}Rsc{pQ_2lt^BrTp|2Jf&)}TTZFO5vku8C)9e~cpapD4@OVkQ-*<3HB8~n{qHP-`hS|g*Q0zxyy3P)Ma2X_ zg(i3}%;>hBui~0P@{@lCGwd?O({41O@k9Yb=slU!B-Jo~!&}KHxxn5AM z|LcqR>bD2oGkjLndj50iG&vZzJts_q_8N*JGY?Y5%#E3{)7H$fPlQ@D;@nyfa!tPt zO9WxktCWT+JAlQ# zqF&1tzJ9LP(%EJFCzKIf0`ZpSzRRpeyH-G62`5T1cdF@f#x1p@bE-Bu+18$3w}&_V zN_5df=lVeo@_)7lqrD2{0)X*#u;r{QFP?$PODoYn@CsG?+c?pfKGj2#QVhUHXWhH* zI*d~p26nVpc(~~84Y!Rz83rJ&Xv^u-l*>n;35-Bes2bKGApw=X0$t{qw|XGDy+f*-09Z}t2yvx zUU4)r)VAtyw8iW4mnC8EXzNv7zl8WosEu|Q!p-0a3rLnNrI8J}3y2y51KJc-9iql# z^{I2JJlmB!(FF`BxM+s6_?;at~cE&j#DWH z^dN+Y==BY^jX)U&cC z-MCKY@)Od@%lCSjxD-GxxvV)c%GQHxs!?XIVJ0a(A}G-m>AfjB;=edqB)Oz1VI(#3 zcAMMls8+X+1%7V*?bKVpQ%MS+0>ie1d2n*ds!t^?sY{uSr zSxV%;QuR27J7ly3MmdqYq(Nn9NgmZJEy27DoUyDu9+|P!`ntO;Syd_3O~hnOOOi@9 zlVtBnP$_nXyF>C58}W!ezILjv0L!fjVP<#1d;?)-&H1sBB{|Y1`nA*(mBhy`hhoh6 z>@Qo5lOru8gdu~cB?WvvbXw9e`j~P6`5j{eAiur&Xqc)G|D79C&iz`Y?_65CoNc%B z8XzX`yatHLz4>_K=vJ-!e?ACq^&2jZn=}`O($`!0bl)*YBLVmMXe8i1_v)kY!9n=% zXe1>8htgLrEnU8wmIUb0C?WU(TmP}hTG`HzGPUv|0Wn!Lc<1A6IQZ(A240vBH5$&O zeF2Ewr)iN%P1Cof+Ysgw?T9>vRR)D_-qE^qr<7zB_DAUTfPm<@5p{WoCBqy?gJuqP zo#FLb!tKV6Lkq5&ZlQ0z!HR_=t{!~B5qG@&h#QMX+z3OuZ&Uz%{KZ?2U))yT8qVzu z+su|SqO7raI>7hkv(p&%GR2L4DsJ>^z??AP&y3WyXxR7@Ejd$h`&t1818nM+RQ(HF znEAT;%~?1c#-*?81B;f9bPQL3Y2&jUDh}&D54sJ#^;Z7Vs0sy7v*Pdj!lHS-A(*7-;p93&%};=_)3m{Z>uaAG725`GB*pbw$ePN-R2 zz_FAp$e-y>wfa2hilf zfT<2&zY+Yvayj~i%OMZKxS1RB%=+0Ho++DTQ>)VJ>0aN{UvpYnkdTmKD5pa1_!wIJThLl%vP>D4h@37dpx z>%Tuc-HKD-?06Z)yk)&W%>CD~`iYi=XjG|OS$yqJ(JI$rk{Ic_5_GzTID*r)AkfUu zso>%G`lrm=@9MRt@vW8?aNOeC*EhE3Gzn$WMitqf{k80-4`K}=(@y=mk5|(U|Kj2K z87hTdX4E}9@~Ag>VGGOnR?iDL-m(P=iQYvL#xn7pQvWVX9eZeXEOp#Y+S@7}gEfYS zrKNJ=e{s8fSlvvn?v#sAzIZeo{#i2)@-c(F+!-Su|nGf{?{h$l6}Y+NKPE&I3Lcf0AM*6%#z&Q z;g1=`8^J93YQb3m`j}p?WeQ)KaK%pJLjd$K>9%?Tm?bxjcHPx2&PU_@VBtLCn5a}0 z!1~CgCKNQbs{%W0qk#X%mxmC!bq9ES5ba_IZq%D#PZ)-XAJEi2sc8gU=)6FGBEWaw zfHjXcMgJP55eJ-qr8&jz)wx}W0TS|3Lo`N z`D#1xoz*&VpzS=sm*Hn8uz8v@Q->qkM-Q+5v?$fsBR*?4;&dON!L45;ogCw)uwSepdb?rg7(L@uCG%B#82A^+2;+;HThv8*(JDMHtG<1+s;Q8Q-INa-@ zsaq1NHgUMqIB`;68o@d_;dYXbJB$uIDV{@s7rc947{L>x*wm4fua=L6-SJl)o4O%^ zYSUf!ga1Ew52}sRdJv|PtMni`h>7CFHH?E>fgPX+a~h``7XniHx#{k(D4^Q3Os|fi z4yZPY6IYF^iI3pt=hVp&1gdr2K()y@?%dwY6a71NAL*zQDqXddXWw~&*P$a3&94ie?oMZC{EkhS%~v+X5E z_>}qxF)_Q=|6F+_D^{Hx@T_J*LV+L;V7N2g=;pDuc3^+sSz%QL8~v6FE4#-G2tX>{ zXsJg_nBWsPt7?q1LoyR^h#?0M;>YGdIW-V*D5qcn;lz%%wVbtlgms1QyvBM`Ui)o* zjVW&H8Mv)GJ3D6Jw(gAE`ZkcUHHc3QP2H1VTVG>}iyGc#JXgc0PnW>66x>y`THk`A zU|aue_pKxR|IocQ+&IeAHYn_d+xp)puDbP-?&cIQm=KWsv(v4(D7dX}!)-mT%Xqdo zt(V}|)n&AvVpJJy>v5v>nVGKaDwW7G*ww#2BXyPyBm?3{_56g@(gu!bVYzE5Do<$;9vj`T_I+ zo%e;spu(3LHW7S;{3lag8 zEPjG8qUdgn=8MN(L#s;mJ0zcl#1X*WZUyWMN{LdR1jhKP(gfJrA1hel^G#$`{K&&! zQHKsKxhfWvTm==PM_YQ^RSh46Zyv~Z_)@7(cMRUFhfM~TBtn&5po5UpAn-_k(9wJH3#+_w9W+i`d1HeEal%qpHl&Zvc^|S5Xgk#{f>X zEw6$O?@loxTCV!*h zoBU-^#Z`Dqfz;cHBI8Q$78W1blwWt=ym4PZA)Hk|#ou@Yn&<@H*vtBQ*vzs5mlZ{*_0-<_L?LK2(;tLH4>yOfc!8zo8zglF5KHi&w0IDn zyB?qtvkz5lJV6b@Gi-OHhN=4Sdr(-0t=2JIh`~~;QPsx@eTzEHLfFz;N%vX68jrY& zO>hTzWxm>5)Mpfa(c#KY_<}xT(9F}x@esa}6?rTE0)&20^I+Q#^4>uCm^rD#SEJtC z`PjSSTW#Y8zsFO{1v}b4JhgN)ZwKL&`xZ~Ric{KfPd@3Oc%w?w^U0TY1u6~v9*+k- zxB(FAiE?{_;w)=4|5I@V`Giex>v%(0d`h6k&cmEN9%rkv_?OZl1^jeXF{FSmYJ7WF zVD;QxCCQ-4;mUn?Qx!qHG)1zCZ%&m|NgJepBn)|1BE`MFomK;T{bYl))+I+&3a=Mt zFw0M7i}vyJP7Wkbpw3Cb7eTT_IM0MyfF z2&#dv4fRX+XD%@PId?c;U^&Iq!SL2`y>(D67GRwgb6wORM-X70j)zxT0&HuL4PE2B zheopBalOUxHUMlJVLNP__o2M62QLqYXW&$M@$ztZ22Np&#(R7QV&NHprtV4b3`~s0 zSN#5bwI}$B-w#56(hNil#`U(}6I7QJNcbGQ$LF9!6F1e*3?#6NUv<3t6L0WB^|E`| z-T#f7K%6)?DJ(zCAMR@~8n&z8vcASDP+zxa4 zX_nen0CxRTVeq_koMs)v{jh(1S~otyjcG=tm_89m)n)AA{L|&<&F9%$zZD%8qaQZJ zUG9f1*U4qa-{8HEU?h5oD$ko+Rp-u^R3G6*NndiMDTcvClU7kd59fh>?GrL;Hs7vKN{jMyYFn|J4D~{%rJCLKBpTZ2@lDekz!4 zIO+bBwT^$mhr{WmkV1NTDP%(S>VtgA?e{RYwyHmm7EIkzr&eG3+fR^*m6&c{K zS#b$miY*`SrX5B9-cj`L_2$FiNFN9B%fE3Dl%X(a(O%$ak~d{74Fyyz4J_8b&SI9p)+y`v>E9#a^eW^ha zJtRrrQYCbmghzZ{`>$(Lph)1We35OP`#Y!+n2&0{Ug?y8a|VBSm{&FqOse9&pYM|g zrb<;>E`3~-Q0rH|)g!RpC$L_67+VM!%gP8o9P+p;%+h?*yYea%-;N2Z3enleLaPchYDDIkZ9Ca`lnnmBH{F z9JbN>(JVI-o`Y}UJR5^18>qQcIRl=9qirR3ehf*ZOzL;u1j6X2<*S`X4PzQ^&nsYi z-n9<4XK4C7>3);{dPlg{iCqAD_bPlfoQ79J%4K*p{D?2_E=X{&J-GsvgXXL0nx|oh z`|Phe;eC$1-x@ou;)+M~X7FHb`Vp0b=38}g+_et2$R6EthpTE$SHrfk>y^X<%#q#Q zvf|*;gg*`64$Tu}M_Yv|Qjg}Y)2o^pG{8RHZd$uu1U%bz*?j@|#*d{!{}n`O&C|=n zW}i0T1XdYbBgHZ?upmDb0t>u8>g{>;z~EY8Eb|T&2qZSwC;@xRzC21WyXhe~pdK0% zubWPIS=dj5y2*H97V(~B8Ssc=97Odrn`JUpTz`dNCA zpfc}l@^q@yJwa;5I^ywdnytrGE+?HBYoMjCS}~ODmCBF+OGb0bq{J-FS>8N`rp+(*zbGMee2c#rtamFj-J}v=(+veD&jey zd9aGzgTHEOj>fE)6zcRX-bC43UyXG8bXI2ro_wigthMMqJ-!g^IW$G+j#DR0-N!CSz;>lp@a<% zFxmNK(z(?0qF4hBeb;~O;mvvUdS&>cMO;l<8u6}yw!Z1IJ-ny!wp3A-XGrl=OZw~} z+wc?7u|MX(KY|iG^w*gi*K#f15GH)Zcc}6q)uuR~P7WvQd*l~6luqznC3M>xmmI_) zOkh^k4085O4kqi1@``GB6L?2L*b@!U()I1~ES~)9q`>CPgejX(PaU*&&xV!VfSa$w*2CDUi9a|BO-?(3bOlMXk#xNI>fa-2>rcSVYgs^RCbsHe zD-Bw2BT0ZHB9cx5NoyC7M!yDa-hv zup67U;t$ROsSZhpf%NhEH0H2Ah@6+aZp zR!QB<29hUN>(|cDpB^-Sytsz7;V{pZkWniNf~W$~ol?P*jI|VF%_hb&sHj;%9+xT9 zy2LiB4P5v##^9Mv860*a(oNF0LDq;-no%|<4?}O@&9MG?d4!5VdV$+y zu+hsg%WZPY5HEzX;A`O+&~C$b+KF`-rhcb7?uECG;p8kZ)p)~R|9%JT^$we0uOIgv zm}>q&wFpUTku(BHhw!THK$?f7AxQdN$8aDpSo0e+X+aYnX#a5y4z!J?a7h!sM<~#A zhy=fSjifpxc>?K6B*nTqg4t$g1n5l}h@x4Cs#H9@#U~@_5t6ErbQehP!hv)fNfk(n z1Jb3cV#_!pjcD~u*n;L^%hAnK>CP4kZwrIx2xiUnFasM zg;wuqXg!6k+mXaYQWTKZA!!YgI7mX2&k;!a>8`Hm8k}<%LDR)lXaYm#q0QjaO1TM_ zTtXDUDfp`tXiA9$5`;un9~gzCM@YIs7sKxR0RCK#*jD|qRgMahh$IAJd4TqZ3RE)V zkc9S!-;tDur0ABaJDB-Wat)ehK@;jZJ5kNLhnHZ?zBhVNUVZXyPYgp+D3DH-6-(#o zPYi~Cr-Zx%6=-LfOtWH}%dUB^>QYRHiv}OtwINdX0dKKOG9993M5%6FQ z1~ECNX7qGOLA1ERYJ{T71`wT@eve@Z6&&VYtQ;c{WLQE~<@pzF4Zg^s&E*!U?*P06 zs2_gbMla1Q*AHy}+FY005U#c@nCE#SCI+JK)u+RG8IBMKY`*@=GQ?xfBrKzB`O`1T zl;%Y%Pp1s-gRTD;T$?knHW#5#gbIuoDo)|rbRd-#!(BZ%$b$wn5B0jXb7yspt4Bbk zWOToE+p~NyP?HHf|8Kx{e+AXJ-j+D-w5D@Be#J+FXqXnP`U9tXJMLGz(7v~?$TqoP|gCO^@iFf8Y4bHZu)Oyp2`Zo+K zE=+GaS9SU&L}SMNSQH;Tu+FW)fovR9&#SwBrRwh|UM45dbozyGdUQ~uf$kZ;)s#Zc z!bH|uPh*P)UfqV&Wz__qLh`r-p%#`uEEwr$lAChf_I;L%S))fB+c)nWZJ?^_Qqb8S zM5WHvB@{TkefKxB4=*2TPSulg-P>hQd0!TdJ@n<$bq;^^^K)`sil;t5Jm^k=jd&QI zeW9txq%IktXiq`WUXI(&Dcoc5L_8T!#O+9Q%~LS5*o30J97Ve~gUMI(!(;p3hYq4W zOnwaPvS%DjX|eZZcw6A0K(r^GLec&^udYcthEve5@%Kps(O$X^M7z^_Zk>iW-N|Ux z$LRpk_P&h1lE3rnlJqKd_zJKIcd=Y3+TAYzz%Jv78)rz`P<8*86XN|NCU1jubz&sa=uH@dT(4CTRJ|+l^~yW{=d~ zkn1_*b}H+qT)(pN()}My@?L_+b}k4xs3o?+$pCtj2cS1JEqM`!pwy^T`z4aQ$==65 zne#_MLrnCV0|B8tNFZ4c2_zYiK(Zd=K`+UA$^X3xJ(PvFVL25O9P2{9quM2w&IT4L$x4+zSYF$DZYbp$A=smx^MO z8(s?=Y!9X(Urifbb={5A9!CcP-R_=SrvYM-KvV0`RDjpQ6WfC|(J?fFm&#|ySv|b- z1&GtN#u&}!g)q+x4PkFElDK>rwKFp#*-7UmDN7?QeLiKoZ?>*+!#uCRCU?_U?t_^b zrm_pBH(0~njf)~RDB#NqPhU%Bc7O(P+>*NA%l5uE^B1CSP%eNLKseiZ)y1+ z0`Y|NJU4@{nb}+wvcV8g&CTh?fD>{MRC6^@%?FSJjPEmGYKqritXv4Hc?^A4)eI+x zw#-14ywZpHE;R>sGfCrD!bk)VAJpN8EIqR*;dija>1tGaRC&zii8-xw%`tNgHeL) z_*xmUCgCbWe)ja0)|KC%pkCc*BXZfFZ|ya+BAp$c)*$+sFhQ2e5nG5t4{I=_)ph9v z$=AlRR~)v-Dpw;(qcL^M*jkcm{WD{#x#~Vys%pKPzbuQxhFY-ftJDUTtXw0@pDU|w zpt337%WCF%ZHSV+FC~&ifLt8Lk`-G`E+fwR2)8hxv)tie zrJ2cfF^P>XdK#s^8PdZc)EHvY?4Sv>oWal(6J7M6xpMe9?=s$`b7ilQ>e9vG{AGEYG`61HU2p; z8I^d+LgBe(mFcCkzoQ|@O~*hqp3|Pp(ktaE<%Ye~509f8BpfTbN(>8_7sU7THe&7i~CwR>IsvuD>XkH}q}bUU0~yVb=% ze|GJti+6cu_+$f6JiGQl7w`7$+Flp$v0b6wF8dvHMY>fZ;`OYMiN#R{euP{$7+|69O87h=6<*#DVW z%jFI9_LhU_=f%2NxFCkCGs8%)#ajN{g5KV85dFMZHycLKh|-B+q}O6CH=}^w-h2@4 zfmqA!2B5chdeZKbST`@ga99B0=2pwk#8W8NBdeO2$Ku#|bvoXoS7>ld%Pt)EE6>$y zGrlCQUN&WD36CAlu4k$W?oCi3B0iJ!LgLS_2tL{5aS=kTEqtqM1)SvxEC-QefGkk< zEmw9y_6=7iI@0*tb-wDDRN)hOS|B5-h9Hlq0lT~Pf=@v;tVpu4rjP*!v1N9)hW-(( zB%^f>ns=g$?mO2v$ClAa`#s`|9z0eb3);#)Tf-wzEfcgAh?&H!*GjN7w$J%nA(%gC zFl>&C70hg1o#(qZ()4t-Ix&?n(9CD>OBZ&!PHbzSxO6m?C~QKYB6reF7o>v_Pq{oU zeMC2Qx(;uFh))vQQ(I6MJvTqQXx^*3)pHv!C@X(68usu(?Q{j3_m~FFPg_Vr%;*&| zGrzhBqEU*NEqfws*hAGxS9!;jIJwBTFeiym&7}bkbK(QImj`C?H6%(VKSC*uQRnTe{=_VyVu?jA)@Eqdg zV(^ti{hh)rjgRRAml*O6{$*=0Ca3sdO{_#<%sZl^@r`Zm{TB<`zD8~IHB2af-9*v9 zo2;2bNMk+p)zwh(O%4(_42J-M6+$u; zNe)UPOwg%{d_VE7h_~5en7PrJiI+|NZkvJ|T9668W-7YUx1+y$6Z)$$2H*&icA~!; zN!m#AMba+33Zo4+Y@D(gV-U^(^(4k1JVL5FUU(5n7=y4B0}jq3DHur@gYXDRu^Xo( zz;8dAK?H(V{5O+w0={385#Y zh9UfE=6Bf)hCdJE1k!-{FbqGKg0Ti`k(7lb3_rMxBnKoFAPK_{rkML_LHI$6&Dh1o zf|?%>y}84N~` z|Civ8KlvLlKZK;2Ncsjz2Z8h@#ultV(kLVy{`u8m_$`0;Agk=;XT#pzfd2INLVv^P z-!EDI2>P2G38Ym>8il0C)1I9a{&;9hMbYj-3CL#NcPoB`0ES^cz;a-L9o0hRN)0T`x0Ec>Q87QL@|1{h_Djh+0$iiaql*CNrCA zA+3;MoN2I-8A3>%Zf#uaF1nCt=aI&;GOpd6!|^-?2FV~oDpU>Jwa2!0>?@aDO&-=} z6{B4&^iJ@|rVABP?EDcB!QA?YHLrX%SIkk%pTB$70dlmes?AB$(C00U7Z zGg-ScxO(?E;u^cTk7~v3r;R~0r8y=D{qG1b?P9doXNf^;E4oSb?)$Jb+ zL-&Lxbe-No^QRqjG3#2-X>x)8C7?9$R3_P?2tg9)v=|Nan)Dj~c zhG2w)0d|uH-B{iN(o+mjn1iIJNWvh8V@R5Sq@^>ks%X`AsH5H4JlLz}>LX@YQJNCjL1;lf~%fv|bZ^}Yi~R7FUS zbSY@tLJwQo^ zp`(!Z9Fqiue9da%=BMZb?Y^5X2Gb4?M9u(&dY)eDEv+EX*0b@FGx4)Y74;VxQ*+SERi&PGP0A$@r7DB)YYV!w%5R?%4RtLvOyCg zse!O|b(Bv{4vk1M_R(X#OLDU{^eL}!0C861E?_s-xf%K%*Q0=@4*7nQ1sxL zsRl0&rvLR4a7F>=rtQIilV~#x4JIMB3UQ~R-i-3&c?h0+*u=X-7HVVP?y64Yx;CFh zEn>%f75Nn60>nHLS0h{QM7kk&BI(7>Ih|(Xw%zx1?TBV*CODUFfOBaZOh*A{Mm%et zo3Um!BMB0;6PcWCW~?jW>?VyM;gjKz@mkBP%S>6uBlx6}$DJ2y&EZ>_6pUP9k{f)j z(z`~GvHa3I+5lBoeb}7ACO#7Kw6ByFE}R3P@?b0<%5`x9V>u){O@jC?NMeN~kJTXW zZ*pk;xZe#qxfGA0z+v$hr%H;KU&1$XFl=p8(BFL&)*G67Oj3#gUGu1Qr`<6im%`rNj+C#q0;6593G66S*23ccTZVoRVjicUZ>P(i<%7{N9086= z`Jlj#vH~6Yy_rYI0Stzn{_nH?h5*Zes!?b6+&T>}Q~j1=1|-Z7ng>Te*_KhyOLnUJ>F4js64ZvWd zUX7*54#ftK|yBs6SXA(I+Y zMdSVJPQ%~qtM=C&y;6%gs`bI=(n+9%l=})uL&S|d=ifdGj(g}!=`3Ng(}s1%0OreM zNDs59rKKcy5tkwLVNuIV5gC{veQ1IFe)HOWOToceDlD`R56^Xg$Sny4L6ef&Wul6` zdHc;`Vl-h_9v@y=0`d&@!sZ-n+6Zv;!%qGCB{8Xd=s=3fV2aAu6qTVA6&1>% zfy4&~HQwI$t$t(ZR;{VuFnmJOpgxgV)o*6%gWsO<;Gj}}eyhTG2)Z?BAa2V1dA1t7 zm~Mkr%pZV|EAi)074wI%X@j~AN=e`Uyi*Or4lYgb1S|EYib}!5gTiXq$3X+{`=7Af zu-1cAz_qE=pTMO3e?@l(hMkhu>CB$_DD*OH^yOxS;}_vZKMOZ{CuWng*H|7D#$hiy z)h;64-p|Qcv!0PuPVmVhj|&rOt>ar=0JX;SIf?rr`(@K_1oM}h5?Owp#zhdVE0}Bu zHubj<^rAifzEF$8x2h}PWCNB5*%*wkU_}pl%3ZH{>X_b6v%Hias=W6(K(02}(-)CD zdqmuY5ZEZ;x)jJ-lU08!eAsVt2xZQW7ISgm+#k)pzrJ~H+L_9gVbE)5YzO1 zyKP#$&dM-QX3g-$K1G4ST)UrNF=f9thc9~l5?D@OD)$!E($N_j=rl!pqv;BbjG`Jj zP9#X?PihLGi!GVg=~f$FWqKvo4y>%HFqs!SrQ z1_IfIjHD_8yz71Pb7-^Su(@)UT}9Rc7aP6FX1=bgKtTc3Ts6G%Z@No?#6}O%^4ddd ztPEw6mfzce+KcIm=9kz$eBmSMEs#KeF~fIi&xvbR=p=7IEvPR)Zt12)mFZ>A9mi<$ zD%Am%g1+C&zE2vR689q4{+t}mP(SE6!rt6qvx1|{y~wrFd^JLeQ2S2}N9Xw=4YOOwhTuxo+%adOcs2U?b zoIRVoD%j|IgL9`>$JLO=l$_YGf>|2mT*aI!@N<0N{$9HI)q}*QolzO?8`2LFj2z@> z+5rXq95UL9;V_oLYax?7E`-Es5^J!VstVcSOnVtGBGIeSN@7>yCf%Msdt9ne>kN^T zeDHdq-k2Ivw)n6w;+2s&dRKf9ic+YR#<%*jkTZro9qdT+%yY*;8Ou6@e3EYsKsKqm zzV9t$lP-*C1R4Yew1=wwjIE#x>tH*q+uk$i6UuP=Zj@o5h_c(I?X!J%igTb0gJ!!^ z*Szs)){Q|{0pR(w=G%_lD6Ux^Yhc&~>9wb&0*ytICbIX2)yz`O{OcNOf%7RhSYMI@HO{$x7;@!z*JTe4t}Whoc~((hTg8+;#v=t3riZQxNT8 zXv*cjBV@F|MJU6d8C;@;5gcE84s-EufVYU#1;CR}I2mweO~C_nZ$_XDgVN#@JfQZb zJG85{;dm&;Kyl5WVDU7`Tb*CmdHdt0-FTf@Z~>)xXR|by4*-h|2y~W$K>I;{k~P4+ zE7o(p{bQ+Ub(MFbuUfiLD}Zm+lBU$8opAT{j6~Kvz|V$!B|gEYfIRuM_4ovc(Jf#t zn+8tNn3y6!TpAu;d2XL=?Vi=?4xOp+u~5l!4yZik?Qr0yWs--DIEgWhyI!UG;mdFr zzN7mBxuP5c9m8p8$U_~gZzE8KLEn*fT4qWa21=mZG|!YW3=|g~_UGBBrJK&z{9ztd|sH3kejUzwJjcE&_NBaPilW0rq$4!psE^Y{moR5w(Ez%-8>zo;9QnH9JG8 z4V^ec0URta3<4NGl5%6EZP}!U)+Y>{gwURreZ?Pb2N&8m0Mlj$JpeBqhB{@t?m*3K zM^c7C4}e3vhh$3St-pvd-v()8IEC{3GYJ{rPGcjBd! z8s;<&BtIy=P(9yEE%wqo$hRWXE}U(tQ_#FU`v|qZgUtQ{&cb-s+6L`>eef!LmrX?4h!_KWK3;4y;l}9YnW{ zQVf(*2T|`;ih-g&*$16k83zAFhX^R6z55l(WSXRbGV{^X%jtE)^}JL8doI#(b;EfB zTHUsWq(sW*u`cGBO9;Ni{d}uDijl?#Cu0jZ8$t*cmptyeP-`RK>N3S>_EpiGCa?FF ziL7?fX}(Yki`b?bZV6@xh4S$Hh#(y!Txt5cDr z41j;!$(7|Wg`#DgCf#RYY5E`ysCM8C!^pI^Vr4DEM*R9gHzTWk%Mn%Xu zwy+kq=8(J9Ux-CT!mq^#g+T=4>LdJ8kKZE-BgQw#N~rfX9+4CcB&%i-YwB1G>2nT~ zEIPhNw3kIJIUZbN=P4FRL<6cw1mAjt*KEpF@nA}{N)!E3aShk1sq$cgh75pwCG!(F zc|kZh$YqbryHT1$ zTgk0ITeApiUb}t|8KL0l?+1}A`)vQZ_va>3(8=v9uf@KAkC>TQg>xoW;q3FryQ_~N z*YN5i$Sds2$1(Z{EX+E>2C_Q)`Z3#XCDv7io9f%g|E57caf;JmK-e_3{ulpju{e}8 zapO_1tG;=$cG^rZk4*ow#XLd}hv-@_N&Q2S2QU8GKr*8l*CL?cD~G%SPH+Ni9;5)Z z_&g&@zrA>R0r$@S>q) zqhgDIfC#bzq!kAaKv0W)r3Q7no0ttaYlK=Ar5Tam#^y}}t zzQ5Pi>rn6W=Dh3V59eMp+&X%hTK7@|!Q_L(F6qFn>>5Yqa-7K(ev8$_)LIdcT&O%2? zH%|B7bt*DI!DucfmUQ=q+pa*70bHC#Wdb!i|gFv?b~+NeisWilm?O%qFa?jPw!^= zbIr^h6_71nqC^WI_^i!u%d0JxX~=Ytf~dSupth?w?9fj3dZoyA3?HpR11Pi|!%e0_ z1N;~5=RUGuZreV}@2cfDgxwoJ{-q1K=>wvfLWx)^=1C1~_z$Ea5!AMcpGg}6Nj^fA zh2Jip=^f=JX^LY1C=1tYZCSxh>O2N%SFAJOjH|G*0Ec!;bhSG%vYMJvMDV{&R^2Pq z89Kfrd=zGb_a16~w$ z@Q^^J7fkedAQ;nJA+Z9gBi_&x+8gPx-K72eX}hV&Zc!HKQDlJsw(TZOoMAEG(lqXL z?^EeJe8nfKeb*i5A1^eOTn#Qt+1b}KAZ*0N=xUJqRnqm|ULZBHrC)S&8uOupJM_V} zz04h%Vs{AMV2r&n-KXht+PPVUye~`}3H}0~^Nu8+wY=wE%IlvS#Ab1TXlp9)ZVjl@ zQ3pk9>kUL8gRK4Lk?TQEn(FtzKlUevDAn|8|U`ELv$ z|IX0seOmH%)S5}RZO<_HiwCm47dmGs)#>EOjFfM_*ZnK*+`Mc%Q0~n!#e$zWt|pLz zqBMIOYa;9FlCt}>NRN#q))=9c#Am0BMGn-dVOB%N2&9gj@~GI#gOC_=t_CY1i{1S&;v3u-h^q3sk&6&XNYJ+rIYcJ0JE6&avI-PLwuqh;_>0Z@eo=ty_;H`NKsMUGXRgX$IEg*o43@SRRM zJ_XU1yB__?s)vO-8uX|@i{$p&>}1v5B&PLvU=LkkuzW(v8UgGlIb>OiR5S6dB($(# z>rlvsN{d#3oLb05;SnH4?hnE)Q+P`?5AVkiyk4wT;Aoa>1$YdngU7G~+uL69@I#Lw z7$e{@1epSFk@|?RypkA>rym=l^KXXZ4 zEPmYAQ_Tl`BH~b^n^2)C=kkVNjyQDrf^~ZL0!te2wsU%eND<^hb;558ytYX-M(ZSb z6OdI!^X86=cN|6D2&IHr)q!bxIo&~3h={wAvvOWm%M_6t!m9=0hKe;xk1k7r}u;wTZ0;U2G0Qy z)M1qz20qWR@GlVb4Fu->r57gv-)O_oEd~oyiT-gX_J?Te}zzp-qRPcZ={4uvLN%1@Nw_E?U|ttL5JkqqY#YDl$N)jGiAQg>A>} zs>lFxl$Mw<+704f8RM@a19VR3+3xN>c2NoqApg#2YUe{m2hN@`_P%aA>GoN$s&nSD z0$pW!Q3lO21fpI|@Z^*hJ|FUdMnkX)%GtG*EG#6meS z#ZrBrz%Dv@pxwNDZiJGpQxFfLUcL z%yd<<#wFXZz�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Ï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