fzkuji commited on
Commit
02a577e
1 Parent(s): ead4213

Upload data files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,3 +1,211 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ language:
7
+ - en
8
+ license:
9
+ - apache-2.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - text-generation
18
+ task_ids:
19
+ - language-modeling
20
+ paperswithcode_id: pg-19
21
+ pretty_name: PG-19
22
+ dataset_info:
23
+ features:
24
+ - name: short_book_title
25
+ dtype: string
26
+ - name: publication_date
27
+ dtype: int32
28
+ - name: url
29
+ dtype: string
30
+ - name: text
31
+ dtype: string
32
+ splits:
33
+ - name: train
34
+ num_bytes: 11453688452
35
+ num_examples: 28602
36
+ - name: validation
37
+ num_bytes: 17402295
38
+ num_examples: 50
39
+ - name: test
40
+ num_bytes: 40482852
41
+ num_examples: 100
42
+ download_size: 11740397875
43
+ dataset_size: 11511573599
44
  ---
45
+
46
+ # Dataset Card for "pg19"
47
+
48
+ ## Table of Contents
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+ - [Dataset Creation](#dataset-creation)
58
+ - [Curation Rationale](#curation-rationale)
59
+ - [Source Data](#source-data)
60
+ - [Annotations](#annotations)
61
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
62
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
63
+ - [Social Impact of Dataset](#social-impact-of-dataset)
64
+ - [Discussion of Biases](#discussion-of-biases)
65
+ - [Other Known Limitations](#other-known-limitations)
66
+ - [Additional Information](#additional-information)
67
+ - [Dataset Curators](#dataset-curators)
68
+ - [Licensing Information](#licensing-information)
69
+ - [Citation Information](#citation-information)
70
+ - [Contributions](#contributions)
71
+
72
+ ## Dataset Description
73
+
74
+ - **Homepage:** [https://github.com/deepmind/pg19](https://github.com/deepmind/pg19)
75
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
76
+ - **Paper:** [Compressive Transformers for Long-Range Sequence Modelling](https://arxiv.org/abs/1911.05507)
77
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
78
+ - **Size of downloaded dataset files:** 11.74 GB
79
+ - **Size of the generated dataset:** 11.51 GB
80
+ - **Total amount of disk used:** 23.25 GB
81
+
82
+ ### Dataset Summary
83
+
84
+ This repository contains the PG-19 language modeling benchmark.
85
+ It includes a set of books extracted from the Project Gutenberg books library, that were published before 1919.
86
+ It also contains metadata of book titles and publication dates.
87
+
88
+ PG-19 is over double the size of the Billion Word benchmark and contains documents that are 20X longer, on average, than the WikiText long-range language modelling benchmark.
89
+ Books are partitioned into a train, validation, and test set. Book metadata is stored in metadata.csv which contains (book_id, short_book_title, publication_date).
90
+
91
+ Unlike prior benchmarks, we do not constrain the vocabulary size --- i.e. mapping rare words to an UNK token --- but instead release the data as an open-vocabulary benchmark. The only processing of the text that has been applied is the removal of boilerplate license text, and the mapping of offensive discriminatory words as specified by Ofcom to placeholder tokens. Users are free to model the data at the character-level, subword-level, or via any mechanism that can model an arbitrary string of text.
92
+ To compare models we propose to continue measuring the word-level perplexity, by calculating the total likelihood of the dataset (via any chosen subword vocabulary or character-based scheme) divided by the number of tokens --- specified below in the dataset statistics table.
93
+ One could use this dataset for benchmarking long-range language models, or use it to pre-train for other natural language processing tasks which require long-range reasoning, such as LAMBADA or NarrativeQA. We would not recommend using this dataset to train a general-purpose language model, e.g. for applications to a production-system dialogue agent, due to the dated linguistic style of old texts and the inherent biases present in historical writing.
94
+
95
+ ### Supported Tasks and Leaderboards
96
+
97
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
98
+
99
+ ### Languages
100
+
101
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
102
+
103
+ ## Dataset Structure
104
+
105
+ ### Data Instances
106
+
107
+ #### default
108
+
109
+ - **Size of downloaded dataset files:** 11.74 GB
110
+ - **Size of the generated dataset:** 11.51 GB
111
+ - **Total amount of disk used:** 23.25 GB
112
+
113
+ An example of 'train' looks as follows.
114
+ ```
115
+ This example was too long and was cropped:
116
+
117
+ {
118
+ "publication_date": 1907,
119
+ "short_book_title": "La Fiammetta by Giovanni Boccaccio",
120
+ "text": "\"\\n\\n\\n\\nProduced by Ted Garvin, Dave Morgan and PG Distributed Proofreaders\\n\\n\\n\\n\\nLA FIAMMETTA\\n\\nBY\\n\\nGIOVANNI BOCCACCIO\\n...",
121
+ "url": "http://www.gutenberg.org/ebooks/10006"
122
+ }
123
+ ```
124
+
125
+ ### Data Fields
126
+
127
+ The data fields are the same among all splits.
128
+
129
+ #### default
130
+ - `short_book_title`: a `string` feature.
131
+ - `publication_date`: a `int32` feature.
132
+ - `url`: a `string` feature.
133
+ - `text`: a `string` feature.
134
+
135
+ ### Data Splits
136
+
137
+ | name |train|validation|test|
138
+ |-------|----:|---------:|---:|
139
+ |default|28602| 50| 100|
140
+
141
+ ## Dataset Creation
142
+
143
+ ### Curation Rationale
144
+
145
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
146
+
147
+ ### Source Data
148
+
149
+ #### Initial Data Collection and Normalization
150
+
151
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
152
+
153
+ #### Who are the source language producers?
154
+
155
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
156
+
157
+ ### Annotations
158
+
159
+ #### Annotation process
160
+
161
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
162
+
163
+ #### Who are the annotators?
164
+
165
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
166
+
167
+ ### Personal and Sensitive Information
168
+
169
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
170
+
171
+ ## Considerations for Using the Data
172
+
173
+ ### Social Impact of Dataset
174
+
175
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
176
+
177
+ ### Discussion of Biases
178
+
179
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
180
+
181
+ ### Other Known Limitations
182
+
183
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
184
+
185
+ ## Additional Information
186
+
187
+ ### Dataset Curators
188
+
189
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
190
+
191
+ ### Licensing Information
192
+
193
+ The dataset is licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
194
+
195
+ ### Citation Information
196
+
197
+ ```
198
+ @article{raecompressive2019,
199
+ author = {Rae, Jack W and Potapenko, Anna and Jayakumar, Siddhant M and
200
+ Hillier, Chloe and Lillicrap, Timothy P},
201
+ title = {Compressive Transformers for Long-Range Sequence Modelling},
202
+ journal = {arXiv preprint},
203
+ url = {https://arxiv.org/abs/1911.05507},
204
+ year = {2019},
205
+ }
206
+ ```
207
+
208
+
209
+ ### Contributions
210
+
211
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@lucidrains](https://github.com/lucidrains), [@lhoestq](https://github.com/lhoestq) for adding this dataset.
data/LICENSE ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # PG-19 Language Modelling Benchmark
2
+ This repository contains the PG-19 language modeling benchmark. It includes a
3
+ set of books extracted rom the Project Gutenberg books library [1], that were
4
+ published before 1919. It also contains metadata of book titles and publication
5
+ dates.
6
+
7
+ <b><a href="https://console.cloud.google.com/storage/browser/deepmind-gutenberg">Full dataset download link</a></b>
8
+
9
+ PG-19 is over double the size of the Billion Word benchmark [2] and contains
10
+ documents that are 20X longer, on average, than the WikiText long-range language
11
+ modelling benchmark [3].
12
+
13
+ Books are partitioned into a `train`, `validation`, and `test` set. Book
14
+ metadata is stored in `metadata.csv` which contains
15
+ `(book_id, short_book_title, publication_date)`.
16
+
17
+ Unlike prior benchmarks, we do not constrain the vocabulary size ---
18
+ i.e. mapping rare words to an UNK token --- but instead release the data as an
19
+ open-vocabulary benchmark. The only processing of the text that has been applied
20
+ is the removal of boilerplate license text, and the mapping of offensive
21
+ discriminatory words as specified by Ofcom [4] to placeholder <DW> tokens. Users
22
+ are free to model the data at the character-level, subword-level, or via any
23
+ mechanism that can model an arbitrary string of text.
24
+
25
+ To compare models we propose to continue measuring the word-level perplexity,
26
+ by calculating the total likelihood of the dataset (via any chosen subword
27
+ vocabulary or character-based scheme) divided by the number of tokens ---
28
+ specified below in the dataset statistics table.
29
+
30
+ One could use this dataset for benchmarking long-range language models, or
31
+ use it to pre-train for other natural language processing tasks which require
32
+ long-range reasoning, such as LAMBADA [5] or NarrativeQA [6]. We would not
33
+ recommend using this dataset to train a general-purpose language model, e.g.
34
+ for applications to a production-system dialogue agent, due to the dated
35
+ linguistic style of old texts and the inherent biases present in historical
36
+ writing.
37
+
38
+ ### Dataset Statistics
39
+
40
+ <table >
41
+ <tbody>
42
+ <tr>
43
+ <td> </td>
44
+ <td> Train </td>
45
+ <td> Validation </td>
46
+ <td> Test </td>
47
+ </tr>
48
+ <tr>
49
+ <td> Books </td>
50
+ <td> 28,602 </td>
51
+ <td> 50 </td>
52
+ <td> 100 </td>
53
+ </tr>
54
+ <tr>
55
+ <td>Num. Tokens </td>
56
+ <td> 1,973,136,207 </td>
57
+ <td> 3,007,061 </td>
58
+ <td> 6,966,499 </td>
59
+ </tr>
60
+ </tbody>
61
+ </table>
62
+
63
+ ### Bibtex
64
+
65
+ ```
66
+ @article{raecompressive2019,
67
+ author = {Rae, Jack W and Potapenko, Anna and Jayakumar, Siddhant M and
68
+ Hillier, Chloe and Lillicrap, Timothy P},
69
+ title = {Compressive Transformers for Long-Range Sequence Modelling},
70
+ journal = {arXiv preprint},
71
+ url = {https://arxiv.org/abs/1911.05507},
72
+ year = {2019},
73
+ }
74
+ ```
75
+
76
+ ### Dataset Metadata
77
+ The following table is necessary for this dataset to be indexed by search
78
+ engines such as <a href="https://g.co/datasetsearch">Google Dataset Search</a>.
79
+ <div itemscope itemtype="http://schema.org/Dataset">
80
+ <table>
81
+ <tr>
82
+ <th>property</th>
83
+ <th>value</th>
84
+ </tr>
85
+ <tr>
86
+ <td>name</td>
87
+ <td><code itemprop="name">The PG-19 Language Modeling Benchmark</code></td>
88
+ </tr>
89
+ <tr>
90
+ <td>alternateName</td>
91
+ <td><code itemprop="alternateName">PG-19</code></td>
92
+ </tr>
93
+ <tr>
94
+ <td>url</td>
95
+ <td><code itemprop="url">https://github.com/deepmind/pg19</code></td>
96
+ </tr>
97
+ <tr>
98
+ <td>sameAs</td>
99
+ <td><code itemprop="sameAs">https://github.com/deepmind/pg19</code></td>
100
+ </tr>
101
+ <tr>
102
+ <td>description</td>
103
+ <td><code itemprop="description">This repository contains the PG-19 dataset.
104
+ It includes a set of books extracted from the Project Gutenberg
105
+ books project (https://www.gutenberg.org), that were published before
106
+ 1919. It also contains metadata of book titles and publication dates.</code></td>
107
+ </tr>
108
+ <tr>
109
+ <td>provider</td>
110
+ <td>
111
+ <div itemscope itemtype="http://schema.org/Organization" itemprop="provider">
112
+ <table>
113
+ <tr>
114
+ <th>property</th>
115
+ <th>value</th>
116
+ </tr>
117
+ <tr>
118
+ <td>name</td>
119
+ <td><code itemprop="name">DeepMind</code></td>
120
+ </tr>
121
+ <tr>
122
+ <td>sameAs</td>
123
+ <td><code itemprop="sameAs">https://en.wikipedia.org/wiki/DeepMind</code></td>
124
+ </tr>
125
+ </table>
126
+ </div>
127
+ </td>
128
+ </tr>
129
+ <tr>
130
+ <td>license</td>
131
+ <td>
132
+ <div itemscope itemtype="http://schema.org/CreativeWork" itemprop="license">
133
+ <table>
134
+ <tr>
135
+ <th>property</th>
136
+ <th>value</th>
137
+ </tr>
138
+ <tr>
139
+ <td>name</td>
140
+ <td><code itemprop="name">Apache License, Version 2.0</code></td>
141
+ </tr>
142
+ <tr>
143
+ <td>url</td>
144
+ <td><code itemprop="url">https://www.apache.org/licenses/LICENSE-2.0.html</code></td>
145
+ </tr>
146
+ </table>
147
+ </div>
148
+ </td>
149
+ </tr>
150
+ <tr>
151
+ <td>citation</td>
152
+ <td><code itemprop="citation">https://identifiers.org/arxiv:1911.05507</code></td>
153
+ </tr>
154
+ </table>
155
+ </div>
156
+
157
+ ### Contact
158
+
159
+ If you have any questions, please contact <a href="mailto:jwrae@google.com">Jack Rae</a>.
160
+
161
+ ### References
162
+
163
+ <ul style="list-style: none;">
164
+ <li>[1] <a href="https://www.gutenberg.org/">https://www.gutenberg.org</a></li>
165
+ <li>[2] Chelba et al. "One Billion Word Benchmark for Measuring Progress in Statistical Language Modeling" (2013)</li>
166
+ <li>[3] Merity et al. "Pointer Sentinel Mixture Models" (2016)</li>
167
+ <li>[4] <a href="https://www.ofcom.org.uk/__data/assets/pdf_file/0023/91625/OfcomQRG-AOC.pdf">Ofcom offensive language guide</a></li>
168
+ <li>[5] Paperno et al. "The LAMBADA dataset: Word prediction requiring a broad discourse context" (2016)</li>
169
+ <li>[6] Kočiský et al. "The narrativeqa reading comprehension challenge" (2018)</li>
170
+ </ul>
171
+
172
+
data/metadata.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/test/10146.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/10321.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/10356.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/10762.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/12204.txt ADDED
@@ -0,0 +1,539 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+ Produced by David Widger
6
+
7
+
8
+
9
+
10
+ ODD CRAFT
11
+
12
+ By W.W. Jacobs
13
+
14
+
15
+
16
+ BILL'S LAPSE
17
+
18
+ Strength and good-nature--said the night-watchman, musingly, as he felt
19
+ his biceps--strength and good-nature always go together. Sometimes you
20
+ find a strong man who is not good-natured, but then, as everybody he
21
+ comes in contack with is, it comes to the same thing.
22
+
23
+ The strongest and kindest-'earted man I ever come across was a man o' the
24
+ name of Bill Burton, a ship-mate of Ginger Dick's. For that matter 'e
25
+ was a shipmate o' Peter Russet's and old Sam Small's too. Not over and
26
+ above tall; just about my height, his arms was like another man's legs
27
+ for size, and 'is chest and his back and shoulders might ha' been made
28
+ for a giant. And with all that he'd got a soft blue eye like a gal's
29
+ (blue's my favourite colour for gals' eyes), and a nice, soft, curly
30
+ brown beard. He was an A.B., too, and that showed 'ow good-natured he
31
+ was, to pick up with firemen.
32
+
33
+ He got so fond of 'em that when they was all paid off from the _Ocean
34
+ King_ he asked to be allowed to join them in taking a room ashore. It
35
+ pleased every-body, four coming cheaper than three, and Bill being that
36
+ good-tempered that 'e'd put up with anything, and when any of the three
37
+ quarrelled he used to act the part of peacemaker.
38
+
39
+ [Illustration: "When any of the three quarrelled he used to act the part
40
+ of peacemaker."]
41
+
42
+ The only thing about 'im that they didn't like was that 'e was a
43
+ teetotaler. He'd go into public-'ouses with 'em, but he wouldn't drink;
44
+ leastways, that is to say, he wouldn't drink beer, and Ginger used to say
45
+ that it made 'im feel uncomfortable to see Bill put away a bottle o'
46
+ lemonade every time they 'ad a drink. One night arter 'e had 'ad
47
+ seventeen bottles he could 'ardly got home, and Peter Russet, who knew a
48
+ lot about pills and such-like, pointed out to 'im 'ow bad it was for his
49
+ constitushon. He proved that the lemonade would eat away the coats o'
50
+ Bill's stomach, and that if 'e kept on 'e might drop down dead at any
51
+ moment.
52
+
53
+ That frightened Bill a bit, and the next night, instead of 'aving
54
+ lemonade, 'e had five bottles o' stone ginger-beer, six of different
55
+ kinds of teetotal beer, three of soda-water, and two cups of coffee. I'm
56
+ not counting the drink he 'ad at the chemist's shop arterward, because he
57
+ took that as medicine, but he was so queer in 'is inside next morning
58
+ that 'e began to be afraid he'd 'ave to give up drink altogether.
59
+
60
+ He went without the next night, but 'e was such a generous man that 'e
61
+ would pay every fourth time, and there was no pleasure to the other chaps
62
+ to see 'im pay and 'ave nothing out of it. It spoilt their evening, and
63
+ owing to 'aving only about 'arf wot they was accustomed to they all got
64
+ up very disagreeable next morning.
65
+
66
+ "Why not take just a little beer, Bill?" asks Ginger.
67
+
68
+ Bill 'ung his 'ead and looked a bit silly. "I'd rather not, mate," he
69
+ ses, at last. "I've been teetotal for eleven months now."
70
+
71
+ "Think of your 'ealth, Bill," ses Peter Russet; "your 'ealth is more
72
+ important than the pledge. Wot made you take it?"
73
+
74
+ Bill coughed. "I 'ad reasons," he ses, slowly. "A mate o' mine wished
75
+ me to."
76
+
77
+ "He ought to ha' known better," ses Sam. "He 'ad 'is reasons," ses Bill.
78
+
79
+ "Well, all I can say is, Bill," ses Ginger, "all I can say is, it's very
80
+ disobligin' of you."
81
+
82
+ "Disobligin'?" ses Bill, with a start; "don't say that, mate."
83
+
84
+ "I must say it," ses Ginger, speaking very firm.
85
+
86
+ "You needn't take a lot, Bill," ses Sam; "nobody wants you to do that.
87
+ Just drink in moderation, same as wot we do."
88
+
89
+ "It gets into my 'ead," ses Bill, at last.
90
+
91
+ "Well, and wot of it?" ses Ginger; "it gets into everybody's 'ead
92
+ occasionally. Why, one night old Sam 'ere went up behind a policeman and
93
+ tickled 'im under the arms; didn't you, Sam?"
94
+
95
+ "I did nothing o' the kind," ses Sam, firing up.
96
+
97
+ "Well, you was fined ten bob for it next morning, that's all I know," ses
98
+ Ginger.
99
+
100
+ "I was fined ten bob for punching 'im," ses old Sam, very wild. "I never
101
+ tickled a policeman in my life. I never thought o' such a thing. I'd no
102
+ more tickle a policeman than I'd fly. Anybody that ses I did is a liar.
103
+ Why should I? Where does the sense come in? Wot should I want to do it
104
+ for?"
105
+
106
+ "All right, Sam," ses Ginger, sticking 'is fingers in 'is ears, "you
107
+ didn't, then."
108
+
109
+ "No, I didn't," ses Sam, "and don't you forget it. This ain't the fust
110
+ time you've told that lie about me. I can take a joke with any man; but
111
+ anybody that goes and ses I tickled--"
112
+
113
+ "All right," ses Ginger and Peter Russet together. "You'll 'ave tickled
114
+ policeman on the brain if you ain't careful, Sam," ses Peter.
115
+
116
+ Old Sam sat down growling, and Ginger Dick turned to Bill agin. "It gets
117
+ into everybody's 'ead at times," he ses, "and where's the 'arm? It's wot
118
+ it was meant for."
119
+
120
+ Bill shook his 'ead, but when Ginger called 'im disobligin' agin he gave
121
+ way and he broke the pledge that very evening with a pint o' six 'arf.
122
+
123
+ Ginger was surprised to see the way 'e took his liquor. Arter three or
124
+ four pints he'd expected to see 'im turn a bit silly, or sing, or do
125
+ something o' the kind, but Bill kept on as if 'e was drinking water.
126
+
127
+ "Think of the 'armless pleasure you've been losing all these months,
128
+ Bill," ses Ginger, smiling at him.
129
+
130
+ Bill said it wouldn't bear thinking of, and, the next place they came to
131
+ he said some rather 'ard things of the man who'd persuaded 'im to take
132
+ the pledge. He 'ad two or three more there, and then they began to see
133
+ that it was beginning to have an effect on 'im. The first one that
134
+ noticed it was Ginger Dick. Bill 'ad just lit 'is pipe, and as he threw
135
+ the match down he ses: "I don't like these 'ere safety matches," he ses.
136
+
137
+ "Don't you, Bill?" ses Ginger. "I do, rather."
138
+
139
+ "Oh, you do, do you?" ses Bill, turning on 'im like lightning; "well,
140
+ take that for contradictin'," he ses, an' he gave Ginger a smack that
141
+ nearly knocked his 'ead off.
142
+
143
+ It was so sudden that old Sam and Peter put their beer down and stared at
144
+ each other as if they couldn't believe their eyes. Then they stooped
145
+ down and helped pore Ginger on to 'is legs agin and began to brush 'im
146
+ down.
147
+
148
+ "Never mind about 'im, mates," ses Bill, looking at Ginger very wicked.
149
+ "P'r'aps he won't be so ready to give me 'is lip next time. Let's come
150
+ to another pub and enjoy ourselves."
151
+
152
+ Sam and Peter followed 'im out like lambs, 'ardly daring to look over
153
+ their shoulder at Ginger, who was staggering arter them some distance
154
+ behind a 'olding a handerchief to 'is face.
155
+
156
+ "It's your turn to pay, Sam," ses Bill, when they'd got inside the next
157
+ place. "Wot's it to be? Give it a name."
158
+
159
+ "Three 'arf pints o' four ale, miss," ses Sam, not because 'e was mean,
160
+ but because it wasn't 'is turn. "Three wot?" ses Bill, turning on 'im.
161
+
162
+ "Three pots o' six ale, miss," ses Sam, in a hurry.
163
+
164
+ "That wasn't wot you said afore," ses Bill. "Take that," he ses, giving
165
+ pore old Sam a wipe in the mouth and knocking 'im over a stool; "take
166
+ that for your sauce."
167
+
168
+ Peter Russet stood staring at Sam and wondering wot Bill ud be like when
169
+ he'd 'ad a little more. Sam picked hisself up arter a time and went
170
+ outside to talk to Ginger about it, and then Bill put 'is arm round
171
+ Peter's neck and began to cry a bit and say 'e was the only pal he'd got
172
+ left in the world. It was very awkward for Peter, and more awkward still
173
+ when the barman came up and told 'im to take Bill outside.
174
+
175
+ "Go on," he ses, "out with 'im."
176
+
177
+ "He's all right," ses Peter, trembling; "we's the truest-'arted gentleman
178
+ in London. Ain't you, Bill?"
179
+
180
+ Bill said he was, and 'e asked the barman to go and hide 'is face because
181
+ it reminded 'im of a little dog 'e had 'ad once wot 'ad died.
182
+
183
+ "You get outside afore you're hurt," ses the bar-man.
184
+
185
+ Bill punched at 'im over the bar, and not being able to reach 'im threw
186
+ Peter's pot o' beer at 'im. There was a fearful to-do then, and the
187
+ landlord jumped over the bar and stood in the doorway, whistling for the
188
+ police. Bill struck out right and left, and the men in the bar went down
189
+ like skittles, Peter among them. Then they got outside, and Bill, arter
190
+ giving the landlord a thump in the back wot nearly made him swallow the
191
+ whistle, jumped into a cab and pulled Peter Russet in arter 'im.
192
+
193
+ [Illustration: "Bill jumped into a cab and pulled Peter Russet in arter
194
+ 'im."]
195
+
196
+ "I'll talk to you by-and-by," he ses, as the cab drove off at a gallop;
197
+ "there ain't room in this cab. You wait, my lad, that's all. You just
198
+ wait till we get out, and I'll knock you silly."
199
+
200
+ "Wot for, Bill?" ses Peter, staring.
201
+
202
+ "Don't you talk to me," roars Bill. "If I choose to knock you about
203
+ that's my business, ain't it? Besides, you know very well."
204
+
205
+ He wouldn't let Peter say another word, but coming to a quiet place near
206
+ the docks he stopped the cab and pulling 'im out gave 'im such a dressing
207
+ down that Peter thought 'is last hour 'ad arrived. He let 'im go at
208
+ last, and after first making him pay the cab-man took 'im along till they
209
+ came to a public-'ouse and made 'im pay for drinks.
210
+
211
+ They stayed there till nearly eleven o'clock, and then Bill set off home
212
+ 'olding the unfortunit Peter by the scruff o' the neck, and wondering out
213
+ loud whether 'e ought to pay 'im a bit more or not. Afore 'e could make
214
+ up 'is mind, however, he turned sleepy, and, throwing 'imself down on the
215
+ bed which was meant for the two of 'em, fell into a peaceful sleep.
216
+
217
+ Sam and Ginger Dick came in a little while arterward, both badly marked
218
+ where Bill 'ad hit them, and sat talking to Peter in whispers as to wot
219
+ was to be done. Ginger, who 'ad plenty of pluck, was for them all to set
220
+ on to 'im, but Sam wouldn't 'ear of it, and as for Peter he was so sore
221
+ he could 'ardly move.
222
+
223
+ They all turned in to the other bed at last, 'arf afraid to move for fear
224
+ of disturbing Bill, and when they woke up in the morning and see 'im
225
+ sitting up in 'is bed they lay as still as mice.
226
+
227
+ "Why, Ginger, old chap," ses Bill, with a 'earty smile, "wot are you all
228
+ three in one bed for?" "We was a bit cold," ses Ginger.
229
+
230
+ "Cold?" ses Bill. "Wot, this weather? We 'ad a bit of a spree last
231
+ night, old man, didn't we? My throat's as dry as a cinder."
232
+
233
+ "It ain't my idea of a spree," ses Ginger, sitting up and looking at 'im.
234
+
235
+ "Good 'eavens, Ginger!" ses Bill, starting back, "wotever 'ave you been
236
+ a-doing to your face? Have you been tumbling off of a 'bus?"
237
+
238
+ Ginger couldn't answer; and Sam Small and Peter sat up in bed alongside
239
+ of 'im, and Bill, getting as far back on 'is bed as he could, sat staring
240
+ at their pore faces as if 'e was having a 'orrible dream.
241
+
242
+ "And there's Sam," he ses. "Where ever did you get that mouth, Sam?"
243
+
244
+ "Same place as Ginger got 'is eye and pore Peter got 'is face," ses Sam,
245
+ grinding his teeth.
246
+
247
+ "You don't mean to tell me," ses Bill, in a sad voice--"you don't mean to
248
+ tell me that I did it?"
249
+
250
+ "You know well enough," ses Ginger.
251
+
252
+ Bill looked at 'em, and 'is face got as long as a yard measure.
253
+
254
+ "I'd 'oped I'd growed out of it, mates," he ses, at last, "but drink
255
+ always takes me like that. I can't keep a pal."
256
+
257
+ "You surprise me," ses Ginger, sarcastic-like. "Don't talk like that,
258
+ Ginger," ses Bill, 'arf crying.
259
+
260
+ "It ain't my fault; it's my weakness. Wot did I do it for?"
261
+
262
+ "I don't know," ses Ginger, "but you won't get the chance of doing it
263
+ agin, I'll tell you that much."
264
+
265
+ "I daresay I shall be better to-night, Ginger," ses Bill, very humble;
266
+ "it don't always take me that way.
267
+
268
+ "Well, we don't want you with us any more," ses old Sam, 'olding his 'ead
269
+ very high.
270
+
271
+ "You'll 'ave to go and get your beer by yourself, Bill," ses Peter
272
+ Russet, feeling 'is bruises with the tips of 'is fingers.
273
+
274
+ "But then I should be worse," ses Bill. "I want cheerful company when
275
+ I'm like that. I should very likely come 'ome and 'arf kill you all in
276
+ your beds. You don't 'arf know what I'm like. Last night was nothing,
277
+ else I should 'ave remembered it."
278
+
279
+ "Cheerful company?" ses old Sam. 'Ow do you think company's going to be
280
+ cheerful when you're carrying on like that, Bill? Why don't you go away
281
+ and leave us alone?"
282
+
283
+ "Because I've got a 'art," ses Bill. "I can't chuck up pals in that
284
+ free-and-easy way. Once I take a liking to anybody I'd do anything for
285
+ 'em, and I've never met three chaps I like better than wot I do you.
286
+ Three nicer, straight-forrad, free-'anded mates I've never met afore."
287
+
288
+ "Why not take the pledge agin, Bill?" ses Peter Russet.
289
+
290
+ "No, mate," ses Bill, with a kind smile; "it's just a weakness, and I
291
+ must try and grow out of it. I'll tie a bit o' string round my little
292
+ finger to-night as a re-minder."
293
+
294
+ He got out of bed and began to wash 'is face, and Ginger Dick, who was
295
+ doing a bit o' thinking, gave a whisper to Sam and Peter Russet.
296
+
297
+ "All right, Bill, old man," he ses, getting out of bed and beginning to
298
+ put his clothes on; "but first of all we'll try and find out 'ow the
299
+ landlord is."
300
+
301
+ "Landlord?" ses Bill, puffing and blowing in the basin. "Wot landlord?"
302
+
303
+ "Why, the one you bashed," ses Ginger, with a wink at the other two. "He
304
+ 'adn't got 'is senses back when me and Sam came away."
305
+
306
+ Bill gave a groan and sat on the bed while 'e dried himself, and Ginger
307
+ told 'im 'ow he 'ad bent a quart pot on the landlord's 'ead, and 'ow the
308
+ landlord 'ad been carried upstairs and the doctor sent for. He began to
309
+ tremble all over, and when Ginger said he'd go out and see 'ow the land
310
+ lay 'e could 'ardly thank 'im enough.
311
+
312
+ He stayed in the bedroom all day, with the blinds down, and wouldn't eat
313
+ anything, and when Ginger looked in about eight o'clock to find out
314
+ whether he 'ad gone, he found 'im sitting on the bed clean shaved, and
315
+ 'is face cut about all over where the razor 'ad slipped.
316
+
317
+ Ginger was gone about two hours, and when 'e came back he looked so
318
+ solemn that old Sam asked 'im whether he 'ad seen a ghost. Ginger didn't
319
+ answer 'im; he set down on the side o' the bed and sat thinking.
320
+
321
+ "I s'pose--I s'pose it's nice and fresh in the streets this morning?"
322
+ ses Bill, at last, in a trembling voice.
323
+
324
+ Ginger started and looked at 'im. "I didn't notice, mate," he ses. Then
325
+ 'e got up and patted Bill on the back, very gentle, and sat down again.
326
+
327
+ [Illustration: "Patted Bill on the back, very gentle."]
328
+
329
+ "Anything wrong, Ginger?" asks Peter Russet, staring at 'im.
330
+
331
+ "It's that landlord," ses Ginger; "there's straw down in the road
332
+ outside, and they say that he's dying. Pore old Bill don't know 'is own
333
+ strength. The best thing you can do, old pal, is to go as far away as
334
+ you can, at once."
335
+
336
+ "I shouldn't wait a minnit if it was me," ses old Sam.
337
+
338
+ Bill groaned and hid 'is face in his 'ands, and then Peter Russet went
339
+ and spoilt things by saying that the safest place for a murderer to 'ide
340
+ in was London. Bill gave a dreadful groan when 'e said murderer, but 'e
341
+ up and agreed with Peter, and all Sam and Ginger Dick could do wouldn't
342
+ make 'im alter his mind. He said that he would shave off 'is beard and
343
+ moustache, and when night came 'e would creep out and take a lodging
344
+ somewhere right the other end of London.
345
+
346
+ "It'll soon be dark," ses Ginger, "and your own brother wouldn't know you
347
+ now, Bill. Where d'you think of going?"
348
+
349
+ Bill shook his 'ead. "Nobody must know that, mate," he ses. "I must go
350
+ into hiding for as long as I can--as long as my money lasts; I've only
351
+ got six pounds left."
352
+
353
+ "That'll last a long time if you're careful," ses Ginger.
354
+
355
+ "I want a lot more," ses Bill. "I want you to take this silver ring as a
356
+ keepsake, Ginger. If I 'ad another six pounds or so I should feel much
357
+ safer. 'Ow much 'ave you got, Ginger?"
358
+
359
+ "Not much," ses Ginger, shaking his 'ead.
360
+
361
+ "Lend it to me, mate," ses Bill, stretching out his 'and. "You can easy
362
+ get another ship. Ah, I wish I was you; I'd be as 'appy as 'appy if I
363
+ hadn't got a penny."
364
+
365
+ "I'm very sorry, Bill," ses Ginger, trying to smile, "but I've already
366
+ promised to lend it to a man wot we met this evening. A promise is a
367
+ promise, else I'd lend it to you with pleasure."
368
+
369
+ "Would you let me be 'ung for the sake of a few pounds, Ginger?" ses
370
+ Bill, looking at 'im reproach-fully. "I'm a desprit man, Ginger, and I
371
+ must 'ave that money."
372
+
373
+ Afore pore Ginger could move he suddenly clapped 'is hand over 'is mouth
374
+ and flung 'im on the bed. Ginger was like a child in 'is hands, although
375
+ he struggled like a madman, and in five minutes 'e was laying there with
376
+ a towel tied round his mouth and 'is arms and legs tied up with the cord
377
+ off of Sam's chest.
378
+
379
+ "I'm very sorry, Ginger," ses Bill, as 'e took a little over eight pounds
380
+ out of Ginger's pocket. "I'll pay you back one o' these days, if I can.
381
+ If you'd got a rope round your neck same as I 'ave you'd do the same as
382
+ I've done."
383
+
384
+ He lifted up the bedclothes and put Ginger inside and tucked 'im up.
385
+ Ginger's face was red with passion and 'is eyes starting out of his 'ead.
386
+
387
+ "Eight and six is fifteen," ses Bill, and just then he 'eard somebody
388
+ coming up the stairs. Ginger 'eard it, too, and as Peter Russet came
389
+ into the room 'e tried all 'e could to attract 'is attention by rolling
390
+ 'is 'ead from side to side.
391
+
392
+ "Why, 'as Ginger gone to bed?" ses Peter. "Wot's up, Ginger?"
393
+
394
+ "He's all right," ses Bill; "just a bit of a 'eadache."
395
+
396
+ Peter stood staring at the bed, and then 'e pulled the clothes off and
397
+ saw pore Ginger all tied up, and making awful eyes at 'im to undo him.
398
+
399
+ "I 'ad to do it, Peter," ses Bill. "I wanted some more money to escape
400
+ with, and 'e wouldn't lend it to me. I 'aven't got as much as I want
401
+ now. You just came in in the nick of time. Another minute and you'd ha'
402
+ missed me. 'Ow much 'ave you got?"
403
+
404
+ "Ah, I wish I could lend you some, Bill," ses Peter Russet, turning pale,
405
+ "but I've 'ad my pocket picked; that's wot I came back for, to get some
406
+ from Ginger."
407
+
408
+ Bill didn't say a word.
409
+
410
+ "You see 'ow it is, Bill," ses Peter, edging back toward the door; "three
411
+ men laid 'old of me and took every farthing I'd got."
412
+
413
+ "Well, I can't rob you, then," ses Bill, catching 'old of 'im.
414
+ "Whoever's money this is," he ses, pulling a handful out o' Peter's
415
+ pocket, "it can't be yours. Now, if you make another sound I'll knock
416
+ your 'ead off afore I tie you up."
417
+
418
+ "Don't tie me up, Bill," ses Peter, struggling.
419
+
420
+ "I can't trust you," ses Bill, dragging 'im over to the washstand and
421
+ taking up the other towel; "turn round."
422
+
423
+ Peter was a much easier job than Ginger Dick, and arter Bill 'ad done 'im
424
+ 'e put 'im in alongside o' Ginger and covered 'em up, arter first tying
425
+ both the gags round with some string to prevent 'em slipping.
426
+
427
+ "Mind, I've only borrowed it," he ses, standing by the side o' the bed;
428
+ "but I must say, mates, I'm disappointed in both of you. If either of
429
+ you 'ad 'ad the misfortune wot I've 'ad, I'd have sold the clothes off my
430
+ back to 'elp you. And I wouldn't 'ave waited to be asked neither."
431
+
432
+ He stood there for a minute very sorrowful, and then 'e patted both their
433
+ 'eads and went downstairs. Ginger and Peter lay listening for a bit, and
434
+ then they turned their pore bound-up faces to each other and tried to
435
+ talk with their eyes.
436
+
437
+ Then Ginger began to wriggle and try and twist the cords off, but 'e
438
+ might as well 'ave tried to wriggle out of 'is skin. The worst of it was
439
+ they couldn't make known their intentions to each other, and when Peter
440
+ Russet leaned over 'im and tried to work 'is gag off by rubbing it up
441
+ agin 'is nose, Ginger pretty near went crazy with temper. He banged
442
+ Peter with his 'ead, and Peter banged back, and they kept it up till
443
+ they'd both got splitting 'eadaches, and at last they gave up in despair
444
+ and lay in the darkness waiting for Sam.
445
+
446
+ And all this time Sam was sitting in the Red Lion, waiting for them. He
447
+ sat there quite patient till twelve o'clock and then walked slowly 'ome,
448
+ wondering wot 'ad happened and whether Bill had gone.
449
+
450
+ Ginger was the fust to 'ear 'is foot on the stairs, and as he came into
451
+ the room, in the darkness, him an' Peter Russet started shaking their bed
452
+ in a way that scared old Sam nearly to death. He thought it was Bill
453
+ carrying on agin, and 'e was out o' that door and 'arf-way downstairs
454
+ afore he stopped to take breath. He stood there trembling for about ten
455
+ minutes, and then, as nothing 'appened, he walked slowly upstairs agin on
456
+ tiptoe, and as soon as they heard the door creak Peter and Ginger made
457
+ that bed do everything but speak.
458
+
459
+ "Is that you, Bill?" ses old Sam, in a shaky voice, and standing ready
460
+ to dash downstairs agin.
461
+
462
+ There was no answer except for the bed, and Sam didn't know whether Bill
463
+ was dying or whether 'e 'ad got delirium trimmings. All 'e did know was
464
+ that 'e wasn't going to sleep in that room. He shut the door gently and
465
+ went downstairs agin, feeling in 'is pocket for a match, and, not finding
466
+ one, 'e picked out the softest stair 'e could find and, leaning his 'ead
467
+ agin the banisters, went to sleep.
468
+
469
+ [Illustration: "Picked out the softest stair 'e could find."]
470
+
471
+ It was about six o'clock when 'e woke up, and broad daylight. He was
472
+ stiff and sore all over, and feeling braver in the light 'e stepped
473
+ softly upstairs and opened the door. Peter and Ginger was waiting for
474
+ 'im, and as he peeped in 'e saw two things sitting up in bed with their
475
+ 'air standing up all over like mops and their faces tied up with
476
+ bandages. He was that startled 'e nearly screamed, and then 'e stepped
477
+ into the room and stared at 'em as if he couldn't believe 'is eyes.
478
+
479
+ "Is that you, Ginger?" he ses. "Wot d'ye mean by making sights of
480
+ yourselves like that? 'Ave you took leave of your senses?"
481
+
482
+ Ginger and Peter shook their 'eads and rolled their eyes, and then Sam
483
+ see wot was the matter with 'em. Fust thing 'e did was to pull out 'is
484
+ knife and cut Ginger's gag off, and the fust thing Ginger did was to call
485
+ 'im every name 'e could lay his tongue to.
486
+
487
+ "You wait a moment," he screams, 'arf crying with rage. "You wait till I
488
+ get my 'ands loose and I'll pull you to pieces. The idea o' leaving us
489
+ like this all night, you old crocodile. I 'eard you come in. I'll pay
490
+ you."
491
+
492
+ Sam didn't answer 'im. He cut off Peter Russet's gag, and Peter Russet
493
+ called 'im 'arf a score o' names without taking breath.
494
+
495
+ "And when Ginger's finished I'll 'ave a go at you," he ses. "Cut off
496
+ these lines."
497
+
498
+ "At once, d'ye hear?" ses Ginger. "Oh, you wait till I get my 'ands on
499
+ you."
500
+
501
+ Sam didn't answer 'em; he shut up 'is knife with a click and then 'e sat
502
+ at the foot o' the bed on Ginger's feet and looked at 'em. It wasn't the
503
+ fust time they'd been rude to 'im, but as a rule he'd 'ad to put up with
504
+ it. He sat and listened while Ginger swore 'imself faint.
505
+
506
+ "That'll do," he ses, at last; "another word and I shall put the
507
+ bedclothes over your 'ead. Afore I do anything more I want to know wot
508
+ it's all about."
509
+
510
+ Peter told 'im, arter fust calling 'im some more names, because Ginger
511
+ was past it, and when 'e'd finished old Sam said 'ow surprised he was
512
+ at them for letting Bill do it, and told 'em how they ought to 'ave
513
+ prevented it. He sat there talking as though 'e enjoyed the sound of 'is
514
+ own voice, and he told Peter and Ginger all their faults and said wot
515
+ sorrow it caused their friends. Twice he 'ad to throw the bedclothes
516
+ over their 'eads because o' the noise they was making.
517
+
518
+ [Illustration: "Old Sam said 'ow surprised he was at them for letting
519
+ Bill do it."]
520
+
521
+ "_Are you going--to undo--us?_" ses Ginger, at last.
522
+
523
+ "No, Ginger," ses old Sam; "in justice to myself I couldn't do it. Arter
524
+ wot you've said--and arter wot I've said--my life wouldn't be safe.
525
+ Besides which, you'd want to go shares in my money."
526
+
527
+ He took up 'is chest and marched downstairs with it, and about 'arf an
528
+ hour arterward the landlady's 'usband came up and set 'em free. As soon
529
+ as they'd got the use of their legs back they started out to look for
530
+ Sam, but they didn't find 'im for nearly a year, and as for Bill, they
531
+ never set eyes on 'im again.
532
+
533
+
534
+
535
+
536
+
537
+ End of the Project Gutenberg EBook of Bill's Lapse, by W.W. Jacobs
538
+
539
+ ***
data/test/15562.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/22424.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/24553.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/2544.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/25646.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/25773.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/25830.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/26183.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/26239.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/26493.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/26618.txt ADDED
@@ -0,0 +1,1413 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+ Produced by Julia Miller and the Online Distributed
6
+ Proofreading Team at http://www.pgdp.net (This file was
7
+ produced from images generously made available by The
8
+ Internet Archive/American Libraries.)
9
+
10
+
11
+
12
+
13
+
14
+ Transcriber's Note
15
+
16
+ Obvious typographical errors have been corrected. A list of corrections
17
+ is found at the end of the text. Oe ligatures have been expanded.
18
+
19
+
20
+
21
+
22
+ [Illustration: MONKEY IN CHURCH. Page 88.]
23
+
24
+
25
+ [Illustration: MINNIE and her PETS.
26
+ BY MRS MADELINE LESLIE.
27
+ MINNIE'S PET MONKEY.]
28
+
29
+
30
+
31
+
32
+ MINNIE'S PET MONKEY.
33
+
34
+
35
+ BY
36
+
37
+ MRS. MADELINE LESLIE,
38
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
39
+ ETC.
40
+
41
+
42
+ ILLUSTRATED.
43
+
44
+
45
+ BOSTON:
46
+ LEE AND SHEPARD,
47
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
48
+ 1864.
49
+
50
+
51
+
52
+
53
+ Entered, according to Act of Congress, in the year 1863, by
54
+
55
+ A. R. BAKER,
56
+
57
+ In the Clerk's Office of the District Court of the District of
58
+ Massachusetts.
59
+
60
+ ELECTROTYPED AT THE BOSTON STEREOTYPE FOUNDRY.
61
+
62
+
63
+
64
+
65
+ TO MY YOUNG FRIEND,
66
+
67
+ HENRY FOWLE DURANT, JR.
68
+
69
+ =These Little Volumes=
70
+
71
+ ARE AFFECTIONATELY INSCRIBED
72
+
73
+ BY THE AUTHOR,
74
+
75
+ IN THE EARNEST HOPE THAT THEY MAY INCREASE IN HIM THAT
76
+ LOVE OF NATURE AND OF RURAL LIFE WHICH HAS EVER
77
+ EXERTED SO SALUTARY AN INFLUENCE IN THE
78
+ FORMATION OF THE CHARACTERS OF
79
+ THE WISE AND GOOD.
80
+
81
+
82
+
83
+
84
+ MINNIE AND HER PETS.
85
+
86
+ Minnie's Pet Parrot.
87
+ Minnie's Pet Cat.
88
+ Minnie's Pet Dog.
89
+ Minnie's Pet Horse.
90
+ Minnie's Pet Lamb.
91
+ Minnie's Pet Monkey.
92
+
93
+
94
+
95
+
96
+ MINNIE'S PET MONKEY.
97
+
98
+
99
+
100
+
101
+ CHAPTER I.
102
+
103
+ JACKO AND HIS WOUNDED TAIL.
104
+
105
+
106
+ Did you ever see a monkey? If you have not, I suppose you will like to
107
+ hear a description of Jacko, Minnie's sixth pet.
108
+
109
+ He was about eighteen inches high, with long arms, covered with short
110
+ hair, which he used as handily as a boy, flexible fingers, with flat
111
+ nails, and a long tail, covered with hair, which seemed to answer the
112
+ purpose of a third hand.
113
+
114
+ Though monkeys are usually very ugly and unpleasant, from their
115
+ approaching so nearly to the human face, and still bearing so strongly
116
+ the marks of the mere brute, yet Jacko was a pretty little fellow.
117
+
118
+ He had bright eyes, which sparkled like diamonds from beneath his
119
+ deep-set eyebrows. His teeth were of the most pearly whiteness, and he
120
+ made a constant display of them, grinning and chattering continually.
121
+ But I ought to tell you about his passage in uncle Frank's ship.
122
+
123
+ On one of Captain Lee's voyages, he touched upon the coast of Africa,
124
+ where he saw the little fellow in a hen-coop, just about to be carried
125
+ on board a whaler. The gentleman had often thought he should like to
126
+ carry his favorite niece a little pet; but as she already had a parrot,
127
+ he did not know what she would wish.
128
+
129
+ But when he listened to the chattering of the monkey, and heard the
130
+ sailor who owned him say what a funny little animal it was, he thought
131
+ he would buy it and take it home to her.
132
+
133
+ On the voyage, Jacko met with a sad accident. The hen-coop in which he
134
+ was confined was too small to contain the whole of his tail, and he was
135
+ obliged, when he slept, to let the end of it hang out. This was a great
136
+ affliction to the poor animal, for he was very proud of his tail, which
137
+ was indeed quite an addition to his good looks.
138
+
139
+ It so happened that there were two large cats on board ship; and one
140
+ night, as they were prowling about, they saw the tail hanging out while
141
+ Jacko was sound asleep; and before he had time to move, one of them
142
+ seized it and bit it off.
143
+
144
+ The monkey was very indignant, and if he could have had a fair chance at
145
+ his enemies, would have soon punished them for their impudence. It was
146
+ really amusing to see him afterward. He would pull his bleeding tail in
147
+ through the bars of the hen-coop, and give it a malicious bite, as much
148
+ as to say,--
149
+
150
+ "I wish you were off. You are of no use to me now; and you look terribly
151
+ short."
152
+
153
+ When they reached New York, at the end of their voyage, Captain Lee took
154
+ Jacko out of the hen-coop, and put him in a bag, which was carried into
155
+ the depot while he was purchasing his ticket. The monkey, who must needs
156
+ see every thing that was going on, suddenly poked his head out of the
157
+ bag, and gave a malicious grin at the ticket-master.
158
+
159
+ The man was much frightened, but presently recovered himself, and
160
+ returned the insult by saying,--
161
+
162
+ "Sir, that's a dog! It's the rule that no dog can go in the cars without
163
+ being paid for."
164
+
165
+ It was all in vain that the captain tried to convince him that Jacko
166
+ was not a dog, but a monkey. He even took him out of the bag; but in the
167
+ face of this evidence, the man would persist in saying,--
168
+
169
+ "He is a dog, and must have a ticket before he enters the cars."
170
+
171
+ So a ticket was bought, and Jacko was allowed to proceed on his journey.
172
+
173
+ The little fellow was as pleased as the captain when he arrived at the
174
+ end of his journey, and took possession of his pleasant quarters in the
175
+ shed adjoining Mr. Lee's fine house. He soon grew fond of his little
176
+ mistress, and played all manner of tricks, jumping up and down, swinging
177
+ with his tail, which had begun to heal, and chattering with all his
178
+ might in his efforts to please her.
179
+
180
+ Mr. Lee, at the suggestion of his brother, the captain, had a nice
181
+ house or cage made for Minnie's new pet, into which he could be put if
182
+ he became troublesome, and where he always went to sleep. The rest of
183
+ the time he was allowed his liberty, as far as his chain would reach.
184
+
185
+ Jacko came from a very warm climate, and therefore often suffered from
186
+ the cold in the northern latitude to which he had been brought.
187
+
188
+ Mrs. Lee could not endure to see a monkey dressed like a man, as they
189
+ sometimes are in shows. She said they looked disgustingly; but she
190
+ consented that the little fellow should have a tight red jacket, and
191
+ some drawers, to keep him comfortable. Minnie, too, begged from her some
192
+ old pieces of carpeting, to make him a bed, when Jacko seemed greatly
193
+ delighted. He did not now, as before, often stand in the morning
194
+ shaking, and blue with the cold, but laughed, and chattered, and showed
195
+ his gratitude in every possible way.
196
+
197
+ Not many months after Jacko came, and when he had become well acquainted
198
+ with all the family, Fidelle had a family of kittens, which she often
199
+ carried in her mouth back and forth through the shed. The very sight of
200
+ these little animals seemed to excite Jacko exceedingly. He would
201
+ spring the entire length of his chain, trying to reach them.
202
+
203
+ One day, when the kittens had begun to run alone, and were getting to be
204
+ very playful, the cook heard a great noise in the shed, and Fidelle
205
+ crying with all her might. She ran to see what was the matter, and, to
206
+ her surprise, found Jacko sitting up in the cage, grinning with delight,
207
+ while he held one of the kittens in his arms, hugging it as if it had
208
+ been a baby.
209
+
210
+ Cook knew the sight would please Minnie, and she ran to call her. But
211
+ the child sympathized too deeply in Fidelle's distress to enjoy it. She
212
+ tried to get the kitten away from Jacko, but he had no idea of giving it
213
+ up, until at last, when Mrs. Lee, who had come to the rescue, gave him a
214
+ piece of cake, of which he was very fond, he relaxed his hold, and she
215
+ instantly released the poor, frightened little animal.
216
+
217
+ Fidelle took warning by this occurrence, and never ventured through the
218
+ shed again with her babies, though Jacko might seem to be sound asleep
219
+ in his cage.
220
+
221
+ Jacko had been at Mr. Lee's more than a year before they knew him to
222
+ break his chain and run about by himself. The first visit he made was to
223
+ Leo, in the barn, and he liked it so well that, somehow or other, he
224
+ contrived to repeat the visit quite as often as it was agreeable to the
225
+ dog, who never could endure him.
226
+
227
+ After this, he became very mischievous, so that every one of the
228
+ servants, though they often had a great laugh at his tricks, would have
229
+ been glad to have the little fellow carried back to his home in Africa.
230
+
231
+ I don't think even Minnie loved her pet monkey as well as she did her
232
+ other pets. She could not take him in her arms as she did Fidelle and
233
+ Tiney, nor play with him as she did with Nannie and her lamb, and he
234
+ could not carry her on his back, as Star did.
235
+
236
+ "Well," she said, one day, after discussing the merits of her animals
237
+ with her mamma, "Poll talks to me, and Jacko makes me laugh; but if I
238
+ should have to give up one of my pets, I had rather it would be the
239
+ monkey."
240
+
241
+
242
+
243
+
244
+ CHAPTER II.
245
+
246
+ JACKO BLACKING THE TABLE.
247
+
248
+
249
+ One morning, cook went to her mistress with loud complaints of Jacko's
250
+ tricks.
251
+
252
+ "What has he been doing now?" inquired the lady, with some anxiety.
253
+
254
+ "All kinds of mischief, ma'am. If I didn't like you, and the master, and
255
+ Miss Minnie so well, I wouldn't be living in the same house with a
256
+ monkey, no ways."
257
+
258
+ Here the woman, having relieved her mind, began to relate Jacko's new
259
+ offence, and soon was joining heartily in the laugh her story caused her
260
+ mistress.
261
+
262
+ "Since the trickish fellow found the way to undo his chain, ma'am, he
263
+ watches every thing that is done in the kitchen. Yesterday I polished
264
+ the range, and the door to the oven. I suppose he saw me at work, and
265
+ thought it would be good fun; for when I was out of the kitchen hanging
266
+ some towels to dry on the line, in he walks to the closet where I keep
267
+ the blacking and brushes, and what should he do but black the table and
268
+ chairs? Such a sight, ma'am, as would make your eyes cry to see. It'll
269
+ take me half the forenoon to clean them."
270
+
271
+ "I think you will have to take a little stick, Hepsy," said Mrs. Lee,
272
+ smiling, "and whip him when he does mischief."
273
+
274
+ "Indeed, ma'am, and it's little strength I'd have left me to do the
275
+ cooking if I gave him half the whippings he deserves; besides, I'd be
276
+ sure to get the cratur's ill will; and they say that's unlucky for any
277
+ one."
278
+
279
+ "What does she mean, mamma, by its being unlucky?" inquired Minnie, when
280
+ the cook had returned to her work in the kitchen.
281
+
282
+ "I can't say, my dear. You know Hepsy has some strange ideas which she
283
+ brought with her from Ireland. It may be she has heard of the
284
+ superstitious reverence some nations have for the monkey."
285
+
286
+ "O, mamma, will you please tell me about it?"
287
+
288
+ "I have read that in many parts of India, monkeys are made objects of
289
+ worship; and splendid temples are dedicated to their honor.
290
+
291
+ "At one time, when the Portuguese plundered the Island of Ceylon, they
292
+ found, in one of the temples dedicated to these animals, a small golden
293
+ casket containing the tooth of a monkey. This was held in such
294
+ estimation by the natives, that they offered nearly a million of dollars
295
+ to redeem it. But the viceroy, thinking it would be a salutary
296
+ punishment to them, ordered it to be burned.
297
+
298
+ "Some years after, a Portuguese, having obtained a similar tooth,
299
+ pretended that he had recovered the old one, which so rejoiced the
300
+ priests that they purchased it from him for more than fifty thousand
301
+ dollars."
302
+
303
+ Minnie laughed. "I should suppose," she said, "that if cook thinks so
304
+ much of monkeys, she would be pleased to live with them. Do you know
305
+ any more about monkeys, mamma?"
306
+
307
+ "I confess, my dear, that monkeys have never been among my favorites.
308
+ There are a great many kinds, but all are mischievous, troublesome, and
309
+ thievish. The dispositions of some of them are extremely bad, while
310
+ others are so mild and tractable as to be readily tamed and taught a
311
+ great variety of tricks. They live together in large groups, leaping
312
+ with surprising agility from tree to tree. Travellers say it is very
313
+ amusing to listen to the chattering of these animals, which they compare
314
+ to the shouting of a grand cavalcade, all speaking together, and yet
315
+ seeming perfectly to understand one another.
316
+
317
+ "In the countries of the Eastern Peninsula, where they abound, the
318
+ matrons are often observed, in the cool of the evening, sitting in a
319
+ circle round their little ones, which amuse themselves with their
320
+ various gambols. The merriment of the young, as they jump over each
321
+ other's heads, and wrestle in sport, is most ludicrously contrasted with
322
+ the gravity of their seniors, who are secretly delighted with the fun,
323
+ but far too dignified to let it appear.
324
+
325
+ "But when any foolish little one behaves ill, the mamma will be seen to
326
+ jump into the throng, seize the juvenile by the tail, take it over her
327
+ knee, and give it a good whipping."
328
+
329
+ "O, how very funny, mamma! I wonder whether Jacko was treated so. Will
330
+ you please tell me more? I do like to hear about monkeys."
331
+
332
+ "If you will bring me that book from the library next the one about
333
+ cats, perhaps I can find some anecdotes to read to you."
334
+
335
+ The little girl clapped her hands with delight, and running gayly to the
336
+ next room, soon returned with the book, when her mother read as
337
+ follows:--
338
+
339
+ "A family in England had a pet monkey. On one occasion, the footman
340
+ retired to his room to shave himself, without noticing that the animal
341
+ had followed him. The little fellow watched him closely during the
342
+ process, and noticed where the man put his razor and brush.
343
+
344
+ "No sooner had the footman left the room, than the monkey slyly took the
345
+ razor, and, mounting on a chair opposite the small mirror, began to
346
+ scrape away at his throat, as he had seen the man do; but alas! not
347
+ understanding the nature of the instrument he was using, the poor
348
+ creature cut so deep a gash, that he bled profusely. He was found in
349
+ the situation described, with the razor still in his fingers, but
350
+ unfortunately was too far gone to be recovered, and soon died, leaving a
351
+ caution to his fellows against playing with edged tools."
352
+
353
+ "I hope Jacko will never see any body shave," said Minnie, in a
354
+ faltering voice.
355
+
356
+ "Here is a funny story, my dear, about a monkey in the West Indies. The
357
+ little fellow was kept tied to a stake in the open air, and was
358
+ frequently deprived of his food by the Johnny Crows. He tried to drive
359
+ them off, but without success, and at last made the following plan for
360
+ punishing the thieves.
361
+
362
+ "Perceiving a flock of these birds coming toward him one day just after
363
+ his food had been brought, he lay down near his stake, and pretended to
364
+ be dead. For some time, he lay perfectly motionless, when the birds,
365
+ really deceived, approached by degrees, and got near enough to steal his
366
+ food, which he allowed them to do. This game he repeated several times,
367
+ till they became so bold as to come within reach of his claws, when he
368
+ suddenly sprang up and caught his victim in his firm grasp. Death was
369
+ not his plan of punishment. He wished to make a man of him, according
370
+ to the ancient definition, 'a biped without feathers,' and therefore,
371
+ plucking the crow neatly, he let him go to show himself to his
372
+ companions. This proved so effectual a punishment, that he was
373
+ afterwards left to eat his food in peace."
374
+
375
+ "I don't see," said Minnie, thoughtfully, "how a monkey could ever think
376
+ of such a way."
377
+
378
+ "It certainly does show a great deal of sagacity," responded the lady,
379
+ "and a great deal of cunning in carrying out his plan."
380
+
381
+ "I hope there are ever so many anecdotes, mamma."
382
+
383
+ Mrs. Lee turned over the leaves. "Yes, my dear," she said, cheerfully,
384
+ "there are quite a number; some of them seem to be very amusing, but I
385
+ have only time to read you one more to-day."
386
+
387
+ "Dr. Guthrie gives an amusing account of a monkey named Jack.
388
+
389
+ "Seeing his master and friends drinking whiskey with great apparent
390
+ relish, he took the opportunity, when he thought he was unseen, to empty
391
+ their half-filled glasses; and while they were roaring with laughter, he
392
+ began to hop, skip, and jump. Poor Jack was drunk.
393
+
394
+ "The next day, his master wanted to repeat the experiment, but found
395
+ Jack had not recovered from the effects of his dissipation. He commanded
396
+ him to come to the table; but the poor fellow put his hand to his head,
397
+ and not all their endeavors could induce him to taste another drop all
398
+ his life.
399
+
400
+ "Jack became a thorough teetotaller."
401
+
402
+
403
+
404
+
405
+ CHAPTER III.
406
+
407
+ JACKO RUNNING AWAY.
408
+
409
+
410
+ Minnie had a cousin Frank, the son of Mr. Harry Lee. He was three years
411
+ older than Minnie, and was full of life and frolic.
412
+
413
+ At one time he came to visit Minnie; and fine fun indeed they had with
414
+ the pets, the monkey being his especial favorite.
415
+
416
+ Every day some new experiment was to be tried with Jacko, who, as Frank
417
+ declared, could be taught any thing that they wished. One time, he took
418
+ the little fellow by the chain for a walk, Minnie gayly running by his
419
+ side, and wondering what her cousin was going to do.
420
+
421
+ On their way to the barn, they met Leo, who at once began to bark
422
+ furiously.
423
+
424
+ "That will never do, my brave fellow," exclaimed the boy; "for we want
425
+ you to turn horse, and take Jacko to ride."
426
+
427
+ "O, Frank! Leo will kill him. Don't do that!" urged Minnie, almost
428
+ crying.
429
+
430
+ "But I mean to make them good friends," responded the lad. "Here, you
431
+ take hold of the chain, and I will coax the dog to be quiet while I put
432
+ Jacko on his back."
433
+
434
+ This was not so easy as he had supposed; for no amount of coaxing or
435
+ flattery would induce Leo to be impressed into this service. He hated
436
+ the monkey, and was greatly disgusted at his appearance as he hopped,
437
+ first on Frank's shoulder, and then to the ground, his head sticking out
438
+ of his little red jacket, and his face wearing a malicious grin.
439
+
440
+ Finding they could not succeed in this, they went into the stable to
441
+ visit Star, when, with a quick motion, Jacko twitched the chain from
442
+ Minnie's hand, and running up the rack above the manger, began to laugh
443
+ and chatter in great glee.
444
+
445
+ His tail, which had now fully healed, was of great use to him on this
446
+ occasion, when, to Minnie's great surprise, he clung with it to the bar
447
+ of the rack, and began to swing himself about.
448
+
449
+ [Illustration: JACKO RUNNING AWAY. Page 52.]
450
+
451
+ "I heard of a monkey once," exclaimed Frank, laughing merrily, "who made
452
+ great use of his tail. If a nut or apple were thrown to him which fell
453
+ beyond his reach, he would run to the full length of his chain, turn his
454
+ back, then stretch out his tail, and draw toward him the coveted
455
+ delicacy."
456
+
457
+ "Let's see whether Jacko would do so," shouted Minnie, greatly excited
458
+ with the project.
459
+
460
+ "When we can catch him. But see how funny he looks. There he goes up the
461
+ hay mow, the chain dangling after him."
462
+
463
+ "If we don't try to catch him, he'll come quicker," said Minnie,
464
+ gravely.
465
+
466
+ "I know another story about a monkey--a real funny one," added the boy.
467
+ "I don't know what his name was; but he used to sleep in the barn with
468
+ the cattle and horses. I suppose monkeys are always cold here; at any
469
+ rate, this one was; and when he saw the hostler give the horse a nice
470
+ feed of hay, he said to himself, 'What a comfortable bed that would make
471
+ for me!'
472
+
473
+ "When the man went away, he jumped into the hay and hid, and every time
474
+ the horse came near enough to eat, he sprang forward and bit her ears
475
+ with his sharp teeth.
476
+
477
+ "Of course, as the poor horse couldn't get her food, she grew very thin,
478
+ and at last was so frightened that the hostler could scarcely get her
479
+ into the stall. Several times he had to whip her before she would enter
480
+ it, and then she stood as far back as possible, trembling like a leaf.
481
+
482
+ "It was a long time before they found out what the matter was; and then
483
+ the monkey had to take a whipping, I guess."
484
+
485
+ "If his mother had been there, she would have whipped him," said Minnie,
486
+ laughing.
487
+
488
+ "What do you mean?"
489
+
490
+ The little girl then repeated what her mother had told her of the
491
+ discipline among monkeys, at which he was greatly amused.
492
+
493
+ All this time, they were standing at the bottom of the hay mow, and
494
+ supposed that Jacko was safe at the top; but the little fellow was more
495
+ cunning than they thought. He found the window open near the roof, where
496
+ hay was sometimes pitched in, and ran down into the yard as quick as
497
+ lightning.
498
+
499
+ The first they knew of it was when John called out from the barnyard,
500
+ "Jacko, Jacko! Soh, Jacko! Be quiet, sir!"
501
+
502
+ It was a wearisome chase they had for the next hour, and at the end they
503
+ could not catch the runaway; but at last, when they sat down calmly in
504
+ the house, he stole back to his cage, and lay there quiet as a lamb.
505
+
506
+ Minnie's face was flushed with her unusual exercise, but in a few
507
+ minutes she grew very pale, until her mother became alarmed. After a few
508
+ drops of lavender, however, she said she felt better, and that if Frank
509
+ would tell her a story she should be quite well.
510
+
511
+ "That I will," exclaimed the boy, eagerly. "I know a real funny one;
512
+ you like funny stories--don't you?"
513
+
514
+ "Yes, when they're true," answered Minnie.
515
+
516
+ "Well, this is really true. A man was hunting, and he happened to kill a
517
+ monkey that had a little baby on her back. The little one clung so close
518
+ to her dead mother, that they could scarcely get it away. When they
519
+ reached the gentleman's house, the poor creature began to cry at
520
+ finding itself alone. All at once it ran across the room to a block,
521
+ where a wig belonging to the hunter's father was placed, and thinking
522
+ that was its mother, was so comforted that it lay down and went to
523
+ sleep.
524
+
525
+ "They fed it with goat's milk, and it grew quite contented, for three
526
+ weeks clinging to the wig with great affection.
527
+
528
+ "The gentleman had a large and valuable collection of insects, which
529
+ were dried upon pins, and placed in a room appropriated to such
530
+ purposes.
531
+
532
+ "One day, when the monkey had become so familiar as to be a favorite
533
+ with all in the family, he found his way to this apartment, and made a
534
+ hearty breakfast on the insects.
535
+
536
+ "The owner, entering when the meal was almost concluded, was greatly
537
+ enraged, and was about to chastise the animal, who had so quickly
538
+ destroyed the work of years, when he saw that the act had brought its
539
+ own punishment. In eating the insects, the animal had swallowed the
540
+ pins, which very soon caused him such agony that he died."
541
+
542
+ "I don't call the last part funny at all," said Minnie, gravely.
543
+
544
+ "But wasn't it queer for it to think the wig was its mother?" asked the
545
+ boy, with a merry laugh. "I don't think it could have had much sense to
546
+ do that."
547
+
548
+ "But it was only a baby monkey then, Harry."
549
+
550
+ "How did it happen," inquired Mrs. Lee, "that Jacko got away from you?"
551
+
552
+ "He watched his chance, aunty, and twitched the chain away from Minnie.
553
+ Now he's done it once, he'll try the game again, I suppose, he is so
554
+ fond of playing us tricks."
555
+
556
+ And true enough, the very next morning the lady was surprised at a visit
557
+ from the monkey in her chamber, where he made himself very much at home,
558
+ pulling open drawers, and turning over the contents, in the hope of
559
+ finding some confectionery, of which he was extremely fond.
560
+
561
+ "Really," she exclaimed to her husband, "if Jacko goes on so, I shall
562
+ be of cook's mind, and not wish to live in the house with him."
563
+
564
+
565
+
566
+
567
+ CHAPTER IV.
568
+
569
+ THE MONKEY IN CHURCH.
570
+
571
+
572
+ One day, Jacko observed nurse washing out some fine clothes for her
573
+ mistress, and seemed greatly interested in the suds which she made in
574
+ the progress of her work.
575
+
576
+ Watching his chance, he went to Mrs. Lee's room while the family were at
577
+ breakfast one morning, and finding some nice toilet soap on the marble
578
+ washstand, began to rub it on some fine lace lying on the bureau. After
579
+ a little exertion, he was delighted to find that he had a bowl full of
580
+ nice, perfumed suds, and was chattering to himself in great glee, when
581
+ Ann came in and spoiled his sport.
582
+
583
+ "You good for nothing, mischievous creature," she cried out, in sudden
584
+ wrath, "I'll cure you of prowling about the house in this style."
585
+ Giving him a cuff across his head with a shoe, "Go back to your cage,
586
+ where you belong."
587
+
588
+ "Jacko is really getting to be very troublesome," remarked the lady to
589
+ her husband. "I can't tell how much longer my patience with him will
590
+ last."
591
+
592
+ "Would Minnie mourn very much if she were to lose him?" asked Mr. Lee.
593
+
594
+ "I suppose she would for a time; but then she has so many pets to take
595
+ up her attention."
596
+
597
+ Just then the child ran in, her eyes filled with tears, exclaiming,--
598
+
599
+ "Father, does Jacko know any better? Is he to blame for trying to wash?"
600
+
601
+ Mr. Lee laughed.
602
+
603
+ "Because," she went on, "I found him crouched down in his cage, looking
604
+ very sorry; and nurse says he ought to be ashamed of himself, cutting
605
+ up such ridiculous capers."
606
+
607
+ "I dare say he feels rather guilty," remarked Mr. Lee. "He must be
608
+ taught better, or your mother will be tired of him."
609
+
610
+ When her father had gone to the city, Minnie looked so grave that her
611
+ mother, to comfort her, took the book and read her some stories. A few
612
+ of them I will repeat to you.
613
+
614
+ "A lady was returning from India, in a ship on board of which there was
615
+ a monkey. She was a very mild, gentle creature, and readily learned any
616
+ thing that was taught her. When she went to lie down at night, she made
617
+ up her bed in imitation of her mistress, then got in and wrapped herself
618
+ up neatly with the quilt. Sometimes she would wrap her head with a
619
+ handkerchief.
620
+
621
+ "When she did wrong, she would kneel and clasp her hands, seeming
622
+ earnestly to ask to be forgiven."
623
+
624
+ "That's a good story, mamma."
625
+
626
+ "Yes, dear; and here is another."
627
+
628
+ "A gentleman boarding with his wife at a hotel in Paris had a pet
629
+ monkey, who was very polite. One day his master met him going down
630
+ stairs; and when the gentleman said 'good morning,' the animal took off
631
+ his cap and made a very polite bow.
632
+
633
+ "'Are you going away?' asked the owner. 'Where is your passport?' Upon
634
+ this the monkey held out a square piece of paper.
635
+
636
+ "'See!' said the gentleman; 'your mistress' gown is dusty.'
637
+
638
+ "Jack instantly took a small brush from his master's pocket, raised the
639
+ hem of the lady's dress, cleaned it, and then did the same to his
640
+ master's shoes, which were also dusty.
641
+
642
+ "When they gave him any thing to eat, he did not cram his pouches with
643
+ it, but delicately and tidily devoured it; and when, as frequently
644
+ occurred, strangers gave him money, he always put it in his master's
645
+ hands."
646
+
647
+ "Do you think, mamma, I could teach Jacko to do so?" inquired Minnie,
648
+ eagerly.
649
+
650
+ "I can't say, my dear; and indeed I think it would be hardly worth the
651
+ pains to spend a great deal of time in teaching him. He seems to learn
652
+ quite fast enough by himself. Indeed, he is so full of tricks, and so
653
+ troublesome to cook in hiding her kitchen utensils, I am afraid we shall
654
+ have to put him in close confinement."
655
+
656
+ "I had rather uncle Frank would carry him back to Africa," sighed the
657
+ child. "He would be so unhappy."
658
+
659
+ "Well, dear, I wouldn't grieve about it now. We must manage somehow till
660
+ uncle Frank comes, and then perhaps he can tell us what to do. Now I'll
661
+ read you another story."
662
+
663
+ "A monkey living with a gentleman in the country became so troublesome
664
+ that the servants were constantly complaining."
665
+
666
+ "That seems similar to our case," said the lady, smiling, as she
667
+ interrupted the reading.
668
+
669
+ "One day, having his offers of assistance rudely repulsed, he went into
670
+ the next house by a window in the second story, which was unfortunately
671
+ open. Here he pulled out a small drawer, where the lady kept ribbons,
672
+ laces, and handkerchiefs, and putting them in a foot-tub, rubbed away
673
+ vigorously for an hour, with all the soap and water there were to be
674
+ found in the room.
675
+
676
+ "When the lady returned to the chamber, he was busily engaged in
677
+ spreading the torn and disfigured remnants to dry.
678
+
679
+ "He knew well enough he was doing wrong; for, without her speaking to
680
+ him, he made off quickly and ran home, where he hid himself in the case
681
+ of the large kitchen clock.
682
+
683
+ "The servants at once knew he had been in mischief, as this was his
684
+ place of refuge when he was in disgrace.
685
+
686
+ "One day he watched the cook while she was preparing some partridges for
687
+ dinner, and concluded that all birds ought to be so treated. He soon
688
+ managed to get into the yard, where his mistress kept a few pet bantam
689
+ fowls, and, after eating their eggs, he secured one of the hens, and
690
+ began plucking it. The noise of the poor bird called some of the
691
+ servants to the rescue, when they found the half-plucked creature in
692
+ such a pitiable condition that they killed it at once. After this, Mr.
693
+ Monkey was chained up, and soon died."
694
+
695
+ Minnie looked very grave after hearing this story, and presently said,
696
+ "I wonder how old that monkey was."
697
+
698
+ "The book does not mention his age, my dear. Why?"
699
+
700
+ "I was thinking that perhaps, as Jacko grows older, he may learn better;
701
+ and then I said to myself, 'That one must have been young.'"
702
+
703
+ "If a monkey is really inclined to be vicious, he is almost unbearable,"
704
+ remarked the lady. "His company does not begin to compensate for the
705
+ trouble he makes. Sometimes he is only cunning, but otherwise mild and
706
+ tractable."
707
+
708
+ "And which, mamma, do you think Jacko is?"
709
+
710
+ "I have always thought, until lately, that he was one of the better
711
+ kind; but I have now a good many doubts whether you enjoy her funny
712
+ tricks enough to compensate cook for all the mischief she does. If I
713
+ knew any one who wanted a pet monkey, and would treat him kindly, I
714
+ should be glad to have him go. I should hate to have him killed."
715
+
716
+ "Killed!" screamed Minnie, with a look of horror; "O, mamma, I wouldn't
717
+ have one of my pets killed for any thing."
718
+
719
+ Mrs. Lee thought that would probably be at some time Nannie's fate, but
720
+ she wisely said nothing.
721
+
722
+ "Please read more, mamma. I don't want to think about such awful
723
+ things."
724
+
725
+ The lady cast her eyes over the page, and laughed heartily. Presently
726
+ she said, "Here is a very curious anecdote, which I will read you; but
727
+ first I must explain to you what a sounding-board is.
728
+
729
+ "In old fashioned churches, there used to hang, directly over the
730
+ pulpit, a large, round board, like the top of a table, which, it was
731
+ thought, assisted the minister's voice to be heard by all the
732
+ congregation. I can remember, when I was a child, going to visit my
733
+ grandmother, and accompanying her to church, where there was a
734
+ sounding-board. I worried, through the whole service, for fear it would
735
+ fall on the minister's head and kill him. But I will read."
736
+
737
+ "There was once an eminent clergyman by the name of Casaubon, who kept
738
+ in his family a tame monkey, of which he was very fond. This animal,
739
+ which was allowed its liberty, liked to follow the minister, when he
740
+ went out, but on the Sabbath was usually shut up till his owner was out
741
+ of sight, on his way to church.
742
+
743
+ "But one Sabbath morning, when the clergyman, taking his sermon under
744
+ his arm, went out, the monkey followed him unobserved, and watching the
745
+ opportunity while his master was speaking to a gentleman on the steps,
746
+ ran up at the back of the pulpit, and jumped upon the sounding-board.
747
+
748
+ "Here he gravely seated himself, looking round in a knowing manner on
749
+ the congregation, who were greatly amused at so strange a spectacle.
750
+
751
+ "The services proceeded as usual, while the monkey, who evidently much
752
+ enjoyed the sight of so many people, occasionally peeped over the
753
+ sounding-board, to observe the movements of his master, who was
754
+ unconscious of his presence.
755
+
756
+ "When the sermon commenced, many little forms were convulsed with
757
+ laughter, which conduct so shocked the good pastor, that he thought it
758
+ his duty to administer a reproof, which he did with considerable action
759
+ of his hands and arms.
760
+
761
+ "The monkey, who had now become familiar with the scene, imitated every
762
+ motion, until at last a scarcely suppressed smile appeared upon the
763
+ countenance of most of the audience. This occurred, too, in one of the
764
+ most solemn passages in the discourse; and so horrible did the levity
765
+ appear to the good minister, that he launched forth into violent rebuke,
766
+ every word being enforced by great energy of action.
767
+
768
+ "All this time, the little fellow overhead mimicked every movement with
769
+ ardor and exactness.
770
+
771
+ "The audience, witnessing this apparent competition between the good man
772
+ and his monkey, could no longer retain the least appearance of
773
+ composure, and burst into roars of laughter, in the midst of which one
774
+ of the congregation kindly relieved the horror of the pastor at the
775
+ irreverence and impiety of his flock, by pointing out the cause of the
776
+ merriment.
777
+
778
+ "Casting his eyes upward, the minister could just discern the animal
779
+ standing on the end of the sounding-board, and gesturing with all his
780
+ might, when he found it difficult to control himself, though highly
781
+ exasperated at the occurrence. He gave directions to have the monkey
782
+ removed, and sat down to compose himself, and allow his congregation to
783
+ recover their equanimity while the order was being obeyed."
784
+
785
+
786
+
787
+
788
+ CHAPTER V.
789
+
790
+ JACKO IN THE PANTRY.
791
+
792
+
793
+ In his frequent visits to the stable, Jacko amused himself by catching
794
+ mice that crept out to pick up the corn.
795
+
796
+ The servants, having noticed his skill, thought they would turn it to
797
+ good account, and having been troubled with mice in the pantry,
798
+ determined to take advantage of the absence of Mrs. Lee on a journey,
799
+ and shut the monkey up in it. So, one evening, they took him out of his
800
+ comfortable bed, and chained him up in the larder, having removed every
801
+ thing except some jam pots, which they thought out of his reach, and
802
+ well secured with bladder stretched over the top.
803
+
804
+ Poor Jacko was evidently much astonished, and quite indignant, at this
805
+ treatment, but presently consoled himself by jumping into a soup
806
+ tureen, where he fell sound asleep, while the mice scampered all over
807
+ the place.
808
+
809
+ As soon as it was dawn, the mice retired to their holes. Jacko awoke
810
+ shivering with cold, stretched himself, and then, pushing the soup
811
+ tureen from the shelf, broke it to pieces. After this achievement, he
812
+ began to look about for something to eat, when he spied the jam pots on
813
+ the upper shelf.
814
+
815
+ "There is something good," he thought, smelling them. "I'll see."
816
+
817
+ His sharp teeth soon worked an entrance, when the treasured jams, plums,
818
+ raspberry, strawberry, candied apricots, the pride and care of the cook,
819
+ disappeared in an unaccountably short time.
820
+
821
+ At last, his appetite for sweets was satisfied, and coiling his tail in
822
+ a corner, he lay quietly awaiting the servant's coming to take him out.
823
+
824
+ Presently he heard the door cautiously open, when the chamber girl gave
825
+ a scream of horror as she saw the elegant China dish broken into a
826
+ thousand bits, and lying scattered on the floor.
827
+
828
+ She ran in haste to summon Hepsy and the nurse, her heart misgiving her
829
+ that this was not the end of the calamity. They easily removed Jacko,
830
+ who began already to experience the sad effects of overloading his
831
+ stomach, and then found, with alarm and grief, the damage he had done.
832
+
833
+ For several days the monkey did not recover from the effects of his
834
+ excess. He was never shut up again in the pantry.
835
+
836
+ When Mrs. Lee returned she blamed the servants for trying such an
837
+ experiment in her absence. Jacko was now well, and ready for some new
838
+ mischief; and Minnie, who heard a ludicrous account of the story,
839
+ laughed till she cried.
840
+
841
+ She repeated it, in great glee, to her father, who looked very grave as
842
+ he said, "We think a sea voyage would do the troublesome fellow good;
843
+ but you shall have a Canary or a pair of Java sparrows instead."
844
+
845
+ "Don't you know any stories of good monkeys, father?"
846
+
847
+ "I don't recollect any at this moment, my dear; but I will see whether I
848
+ can find any for you."
849
+
850
+ He opened the book, and then asked,--
851
+
852
+ "Did you know, Minnie, that almost all monkeys have bags or pouches in
853
+ their cheeks, the skin of which is loose, and when empty makes the
854
+ animal look wrinkled?"
855
+
856
+ "No, sir; I never heard about it."
857
+
858
+ "Yes, that is the case. He puts his food in them, and keeps it there
859
+ till he wishes to devour it.
860
+
861
+ "There are some kinds, too, that have what is called prehensile tails;
862
+ that is, tails by which they can hang themselves to the limb of a tree,
863
+ and which they use with nearly as much ease as they can their hands. The
864
+ facility which this affords them for moving about quickly among the
865
+ branches of trees is astonishing. The firmness of the grasp which it
866
+ makes is very surprising; for if it winds a single coil around a branch,
867
+ it is quite sufficient, not only to support its weight, but to enable it
868
+ to swing in such a manner as to gain a fresh hold with its feet."
869
+
870
+ "I'm sure, father," eagerly cried Minnie, "that Jacko has a prehensile
871
+ tail, for I have often seen him swing from the ladder which goes up the
872
+ hay mow."
873
+
874
+ "I dare say, child. He seems to be up to every thing. But here is an
875
+ account of an Indian monkey, of a light grayish yellow color, with black
876
+ hands and feet. The face is black, with a violet tinge. This is called
877
+ Hoonuman, and is much venerated by the Hindoos. They believe it to be
878
+ one of the animals into which the souls of their friends pass at death.
879
+ If one of these monkeys is killed, the murderer is instantly put to
880
+ death; and, thus protected, they become a great nuisance, and destroy
881
+ great quantities of fruit. But in South America, monkeys are killed by
882
+ the natives as game, for the sake of the flesh. Absolute necessity alone
883
+ would compel us to eat them. A great naturalist named Humboldt tells us
884
+ that their manner of cooking them is especially disgusting. They are
885
+ raised a foot from the ground, and bent into a sitting position, in
886
+ which they greatly resemble a child, and are roasted in that manner. A
887
+ hand and arm of a monkey, roasted in this way, are exhibited in a museum
888
+ in Paris."
889
+
890
+ "Monkeys have a curious way of introducing their tails into the fissures
891
+ or hollows of trees, for the purpose of hooking out eggs and other
892
+ substances. On approaching a spot where there is a supply of food, they
893
+ do not alight at once, but take a survey of the neighborhood, a general
894
+ cry being kept up by the party."
895
+
896
+
897
+
898
+
899
+ CHAPTER VI.
900
+
901
+ THE CRUEL MONKEY.
902
+
903
+
904
+ One afternoon, Minnie ran out of breath to the parlor. "Mamma," she
905
+ exclaimed, "cook says monkeys are real cruel in their families. Is it
906
+ true?"
907
+
908
+ The lady smiled. "I suppose, my dear," she responded, "that there is a
909
+ difference of disposition among them. I have heard that they are very
910
+ fond of their young, and that, when threatened with danger, they mount
911
+ them on their back, or clasp them to their breast with great affection.
912
+
913
+ "But I saw lately an anecdote of the cruelty of a monkey to his wife,
914
+ and if I can find the book, I will read it to you."
915
+
916
+ "There is an animal called the fair monkey, which, though the most
917
+ beautiful of its tribe, is gloomy and cruel. One of these, which, from
918
+ its extreme beauty and apparent gentleness, was allowed to ramble at
919
+ liberty over a ship, soon became a great favorite with the crew, and in
920
+ order to make him perfectly happy, as they imagined, they procured him a
921
+ wife.
922
+
923
+ "For some weeks, he was a devoted husband, and showed her every
924
+ attention and respect. He then grew cool, and began to use her with much
925
+ cruelty. His treatment made her wretched and dull.
926
+
927
+ "One day, the crew noticed that he treated her with more kindness than
928
+ usual, but did not suspect the wicked scheme he had in mind. At last,
929
+ after winning her favor anew, he persuaded her to go aloft with him, and
930
+ drew her attention to an object in the distance, when he suddenly gave
931
+ her a push, which threw her into the sea.
932
+
933
+ "This cruel act seemed to afford him much gratification, for he
934
+ descended in high spirits."
935
+
936
+ "I should think they would have punished him," said Minnie, with great
937
+ indignation.
938
+
939
+ "Perhaps they did, love. At any rate, it proves that beauty is by no
940
+ means always to be depended upon."
941
+
942
+ Mrs. Lee then took her sewing, but Minnie plead so earnestly for one
943
+ more story, a good long one, that her mother, who loved to gratify her,
944
+ complied, and read the account which I shall give you in closing this
945
+ chapter on Minnie's pet monkey.
946
+
947
+ "A gentleman, returning from India, brought a monkey, which he presented
948
+ to his wife. She called it Sprite, and soon became very fond of it.
949
+
950
+ "Sprite was very fond of beetles, and also of spiders, and his mistress
951
+ used sometimes to hold his chain, lengthened by a string, and make him
952
+ run up the curtains, and clear out the cobwebs for the housekeeper.
953
+
954
+ "On one occasion, he watched his opportunity, and snatching the chain,
955
+ ran off, and was soon seated on the top of a cottage, grinning and
956
+ chattering to the assembled crowd of schoolboys, as much as to say,
957
+ 'Catch me if you can.' He got the whole town in an uproar, but finally
958
+ leaped over every thing, dragging his chain after him, and nestled
959
+ himself in his own bed, where he lay with his eyes closed, his mouth
960
+ open, his sides ready to burst with his running.
961
+
962
+ "Another time, the little fellow got loose, but remembering his former
963
+ experience, only stole into the shed, where he tried his hand at
964
+ cleaning knives. He did not succeed very well in this, however, for the
965
+ handle was the part he attempted to polish, and, cutting his fingers, he
966
+ relinquished the sport.
967
+
968
+ "Resolved not to be defeated, he next set to work to clean the shoes and
969
+ boots, a row of which were awaiting the boy. But Sprite, not remembering
970
+ all the steps of the performance, first covered the entire shoe, sole
971
+ and all, with the blacking, and then emptied the rest of the Day &
972
+ Martin into it, nearly filling it with the precious fluid. His coat was
973
+ a nice mess for some days after.
974
+
975
+ "One morning, when the servants returned to the kitchen, they found
976
+ Sprite had taken all the kitchen candlesticks out of the cupboard, and
977
+ arranged them on the fender, as he had once seen done. As soon as he
978
+ heard the servants returning, he ran to his basket, and tried to look as
979
+ though nothing had happened.
980
+
981
+ "Sprite was exceedingly fond of a bath. Occasionally a bowl of water was
982
+ given him, when he would cunningly try the temperature by putting in his
983
+ finger, after which he gradually stepped in, first one foot, then the
984
+ other, till he was comfortably seated. Then he took the soap and rubbed
985
+ himself all over. Having made a dreadful splashing all around, he jumped
986
+ out and ran to the fire, shivering. If any body laughed at him during
987
+ this performance, he made threatening gestures, chattering with all his
988
+ might to show his displeasure, and sometimes he splashed water all over
989
+ them.
990
+
991
+ "Poor Sprite one day nearly committed suicide. As he was brought from a
992
+ very warm climate, he often suffered exceedingly, in winter, from the
993
+ cold.
994
+
995
+ "The cooking was done by a large fire on the open hearth, and as his
996
+ basket, where he slept, was in one corner of the kitchen, before morning
997
+ he frequently awoke shivering and blue. The cook was in the habit of
998
+ making the fire, and then returning to her room to finish her toilet.
999
+
1000
+ "One morning, having lighted the pile of kindlings as usual, she hung on
1001
+ the tea-kettle and went out, shutting the door carefully behind her.
1002
+
1003
+ "Sprite thought this a fine opportunity to warm himself. He jumped from
1004
+ his basket, ran to the hearth, and took the lid of the kettle off.
1005
+ Cautiously touching the water with the tip of his finger, he found it
1006
+ just the right heat for a bath, and sprang in, sitting down, leaving
1007
+ only his head above the water.
1008
+
1009
+ "This he found exceedingly comfortable for a time; but soon the water
1010
+ began to grow hot. He rose, but the air outside was so cold, he quickly
1011
+ sat down again. He did this several times, and would, no doubt, have
1012
+ been boiled to death, and become a martyr to his own want of pluck and
1013
+ firmness in action, had it not been for the timely return of the cook,
1014
+ who, seeing him sitting there almost lifeless, seized him by the head
1015
+ and pulled him out.
1016
+
1017
+ "He was rolled in blankets, and laid in his basket, where he soon
1018
+ recovered, and, it is to be hoped, learned a lesson from this hot
1019
+ experience, not to take a bath when the water is on the fire."
1020
+
1021
+
1022
+
1023
+
1024
+ CHAPTER VII.
1025
+
1026
+ KEES STEALING EGGS.
1027
+
1028
+
1029
+ When Minnie was nine years of age, she accompanied her parents to a
1030
+ menagerie, and there, among other animals, she saw a baboon. She was
1031
+ greatly excited by his curious, uncouth manoeuvres, asking twenty
1032
+ questions about him, without giving her father time to answer. On their
1033
+ way home, she inquired,--
1034
+
1035
+ "Are baboons one kind of monkeys, father?"
1036
+
1037
+ "Yes, my daughter; and a more disagreeable, disgusting animal I cannot
1038
+ conceive of."
1039
+
1040
+ "I hope you are not wishing for a baboon to add to your pets," added her
1041
+ mother, laughing.
1042
+
1043
+ "I don't believe Jacko would get along with that great fellow at all,"
1044
+ answered the child. "But, father, will you please tell me something
1045
+ more about the curious animals?"
1046
+
1047
+ The conversation was here interrupted by seeing that a carriage had
1048
+ stopped just in front of their own, and that quite a crowd had gathered
1049
+ about some person who seemed to be hurt.
1050
+
1051
+ Minnie's sympathies were alive in an instant. She begged her father to
1052
+ get out, as possibly he might be of some use.
1053
+
1054
+ The driver stopped of his own accord, and inquired what had happened,
1055
+ and then they saw that it was a spaniel that was hurt. He had been in
1056
+ the road, and not getting out of the way quick enough, the wheel had
1057
+ gone over his body.
1058
+
1059
+ The young lady who was in the buggy was greatly distressed, from which
1060
+ Minnie argued that she was kind to animals, and that they should like
1061
+ her.
1062
+
1063
+ The owner of the dog held the poor creature in her arms, though it
1064
+ seemed to be in convulsions, and wept bitterly as she found it must die.
1065
+
1066
+ Mr. Lee, to please his little daughter, waited a few minutes; but he
1067
+ found her getting so much excited over the suffering animal, he gave
1068
+ John orders to proceed.
1069
+
1070
+ During the rest of the drive, she could talk of nothing else, wondering
1071
+ whether the spaniel was alive now, or whether the young man in the buggy
1072
+ paid for hurting it.
1073
+
1074
+ The next day, however, having made up her mind that the poor creature
1075
+ must be dead, and his sufferings ended, and having given Tiney many
1076
+ admonitions to keep out of the road when carriages were passing, her
1077
+ thoughts turned once more to the baboon.
1078
+
1079
+ Mr. Lee found in his library a book which gave a short account of the
1080
+ animal, which he read to her.
1081
+
1082
+ "The baboon is of the monkey tribe, notwithstanding its long, dog-like
1083
+ head, flat, compressed cheeks, and strong and projecting teeth. The form
1084
+ and position of the eyes, combined with the similarity of the arms and
1085
+ hands, give to these creatures a resemblance to humanity as striking as
1086
+ it is disgusting."
1087
+
1088
+ "Then follows an account," the gentleman went on, "of the peculiarities
1089
+ of different kinds of baboons, which you would not understand."
1090
+
1091
+ "But can't you tell me something about them yourself, father?"
1092
+
1093
+ "I know very little about the creatures, my dear; but I have read that
1094
+ they are exceedingly strong, and of a fiery, vicious temper.
1095
+
1096
+ "They can never be wholly tamed, and it is only while restraint of the
1097
+ severest kind is used, that they can be governed at all. If left to
1098
+ their own will, their savage nature resumes its sway, and their actions
1099
+ are cruel, destructive, and disgusting."
1100
+
1101
+ "I saw the man at the menagerie giving them apples," said Minnie; "but
1102
+ he did not give them any meat all the time I was there."
1103
+
1104
+ "No; they subsist exclusively on fruits, seeds, and other vegetable
1105
+ matter. In the countries where they live, especially near the Cape of
1106
+ Good Hope, the inhabitants chase them with dogs and guns in order to
1107
+ destroy them, on account of the ravages they commit in the fields and
1108
+ gardens. It is said that they make a very obstinate resistance to the
1109
+ dogs, and often have fierce battles with them; but they greatly fear the
1110
+ gun.
1111
+
1112
+ "As the baboon grows older, instead of becoming better, his rage
1113
+ increases, so that the slightest cause will provoke him to terrible
1114
+ fury."
1115
+
1116
+ "Is that all you know about them?"
1117
+
1118
+ "Why, Minnie, in order to satisfy you, any one must become a walking
1119
+ encyclopaedia. What other question have you to ask?"
1120
+
1121
+ "Why, they must have something to eat, and how are they to get it unless
1122
+ they go into gardens?"
1123
+
1124
+ Mr. Lee laughed aloud. "I rather think I should soon convince them they
1125
+ were not to enter my garden," he said, emphatically. "But seriously,
1126
+ they descend in vast numbers upon the orchards of fruit, destroying, in
1127
+ a few hours, the work of months, or even of years. In these excursions,
1128
+ they move on a concerted plan, placing sentinels on commanding spots, to
1129
+ give notice of the approach of an enemy. As soon as he perceives danger,
1130
+ the sentinel gives a loud yell, and then the whole troop rush away with
1131
+ the greatest speed, cramming the fruit which they have gathered into
1132
+ their cheek pouches."
1133
+
1134
+ Minnie looked so much disappointed when he ceased speaking, that her
1135
+ mother said, "I read somewhere an account of a baboon that was named
1136
+ Kees, who was the best of his kind that I ever heard of."
1137
+
1138
+ "Yes, that was quite an interesting story, if you can call it to mind,"
1139
+ said the gentleman, rising.
1140
+
1141
+ "It was in a book of travels in Africa," the lady went on. "The
1142
+ traveller, whose name was Le Vaillant, took Kees through all his
1143
+ journey, and the creature really made himself very useful. As a
1144
+ sentinel, he was better than any of the dogs. Indeed, so quick was his
1145
+ sense of danger, that he often gave notice of the approach of beasts of
1146
+ prey, when every thing was apparently secure.
1147
+
1148
+ "There was another way in which Kees made himself useful. Whenever they
1149
+ came across any fruits or roots with which the Hottentots were
1150
+ unacquainted, they waited to see whether Kees would taste them. If he
1151
+ threw them down, the traveller concluded they were poisonous or
1152
+ disagreeable, and left them untasted.
1153
+
1154
+ "Le Vaillant used to hunt, and frequently took Kees with him on these
1155
+ excursions. The poor fellow understood the preparations making for the
1156
+ sport, and when his master signified his consent that he should go, he
1157
+ showed his joy in the most lively manner. On the way, he would dance
1158
+ about, and then run up into the trees to search for gum, of which he was
1159
+ very fond.
1160
+
1161
+ "I recall one amusing trick of Kees," said the lady, laughing, "which
1162
+ pleased me much when I read it. He sometimes found honey in the hollows
1163
+ of trees, and also a kind of root of which he was very fond, both of
1164
+ which his master insisted on sharing with him. On such occasions, he
1165
+ would run away with his treasure, or hide it in his pouches, or eat it
1166
+ as fast as possible, before Le Vaillant could have time to reach him.
1167
+
1168
+ "These roots were very difficult to pull from the ground. Kees' manner
1169
+ of doing it was this. He would seize the top of the root with his strong
1170
+ teeth, and then, planting himself firmly against the sod, drew himself
1171
+ gradually back, which forced it from the earth. If it proved stubborn,
1172
+ while he still held it in his teeth he threw himself heels over head,
1173
+ which gave such a concussion to the root that it never failed to come
1174
+ out.
1175
+
1176
+ "Another habit that Kees had was very curious. He sometimes grew tired
1177
+ with the long marches, and then he would jump on the back of one of the
1178
+ dogs, and oblige it to carry him whole hours. At last the dogs grew
1179
+ weary of this, and one of them determined not to be pressed into
1180
+ service. He now adopted an ingenious artifice. As soon as Kees leaped on
1181
+ his back, he stood still, and let the train pass without moving from the
1182
+ spot. Kees sat quiet, determined that the dog should carry him, until
1183
+ the party were almost out of sight, and then they both ran in great
1184
+ haste to overtake their master.
1185
+
1186
+ "Kees established a kind of authority over the dogs. They were
1187
+ accustomed to his voice, and in general obeyed without hesitation the
1188
+ slightest motions by which he communicated his orders, taking their
1189
+ places about the tent or carriage, as he directed them. If any of them
1190
+ came too near him when he was eating, he gave them a box on the ear,
1191
+ and thus compelled them to retire to a respectful distance."
1192
+
1193
+ "Why, mother, I think Kees was a very good animal, indeed," said Minnie,
1194
+ with considerable warmth.
1195
+
1196
+ "I have told you the best traits of his character," she answered,
1197
+ smiling. "He was, greatly to his master's sorrow, an incurable thief. He
1198
+ could not be left alone for a moment with any kind of food. He
1199
+ understood perfectly how to loose the strings of a basket, or to take
1200
+ the cork from a bottle. He was very fond of milk, and would drink it
1201
+ whenever he had a chance. He was whipped repeatedly for these
1202
+ misdemeanors, but the punishment did him no good.
1203
+
1204
+ "Le Vaillant was accustomed to have eggs for his breakfast; but his
1205
+ servants complained one morning there were none to be had. Whenever any
1206
+ thing was amiss, the fault was always laid to Kees, who, indeed,
1207
+ generally deserved it. The gentleman determined to watch him.
1208
+
1209
+ "The next morning, hearing the cackling of a hen, he started for the
1210
+ place; but found Kees had been before him, and nothing remained but the
1211
+ broken shell. Having caught him in his pilfering, his master gave him a
1212
+ severe beating; but he was soon at his old habit again, and the
1213
+ gentleman was obliged to train one of his dogs to run for the egg as
1214
+ soon as it was laid, before he could enjoy his favorite repast.
1215
+
1216
+ "One day, Le Vaillant was eating his dinner, when he heard the voice of
1217
+ a bird, with which he was not acquainted. Leaving the beans he had
1218
+ carefully prepared for himself on his plate, he seized his gun, and ran
1219
+ out of the tent. In a short time he returned, with the bird in his hand,
1220
+ but found not a bean left, and Kees missing.
1221
+
1222
+ "When he had been stealing, the baboon often staid out of sight for some
1223
+ hours; but, this time, he hid himself for several days. They searched
1224
+ every where for him, but in vain, till his master feared he had really
1225
+ deserted them. On the third day, one of the men, who had gone to a
1226
+ distance for water, saw him hiding in a tree. Le Vaillant went out and
1227
+ spoke to him, but he knew he had deserved punishment, and he would not
1228
+ come down; so that, at last, his master had to go up the tree and take
1229
+ him."
1230
+
1231
+ "And was he whipped, mother?"
1232
+
1233
+ "No; he was forgiven that time, as he seemed so penitent. There is only
1234
+ one thing more I can remember about him. An officer who was visiting Le
1235
+ Vaillant, wishing to try the affection of the baboon for his master,
1236
+ pretended to strike him. Kees flew into a violent rage, and from that
1237
+ time could never endure the sight of the officer. If he only saw him at
1238
+ a distance, he ground his teeth, and used every endeavor to fly at him;
1239
+ and had he not been chained, he would speedily have revenged the
1240
+ insult."
1241
+
1242
+ * * * * *
1243
+
1244
+ "Nature is man's best teacher. She unfolds
1245
+ Her treasures to his search, unseals his eye,
1246
+ Illumes his mind, and purifies his heart,--
1247
+ An influence breathes from all the sights and sounds
1248
+ Of her existence; she is wisdom's self."
1249
+
1250
+ * * * * *
1251
+
1252
+ "There's not a plant that springeth
1253
+ But bears some good to earth;
1254
+ There's not a life but bringeth
1255
+ Its store of harmless mirth;
1256
+ The dusty wayside clover
1257
+ Has honey in her cells,--
1258
+ The wild bee, humming over,
1259
+ Her tale of pleasure tells.
1260
+ The osiers, o'er the fountain,
1261
+ Keep cool the water's breast,
1262
+ And on the roughest mountain
1263
+ The softest moss is pressed.
1264
+ Thus holy Nature teaches
1265
+ The worth of blessings small;
1266
+ That Love pervades, and reaches,
1267
+ And forms the bliss of all."
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+ MRS. LESLIE'S JUVENILE SERIES.
1274
+
1275
+ 16mo.
1276
+
1277
+ FOR BOYS.
1278
+
1279
+ Vol. I. THE MOTHERLESS CHILDREN.
1280
+ " II. PLAY AND STUDY.
1281
+ " III. HOWARD AND HIS TEACHER.
1282
+ " IV. JACK, THE CHIMNEY SWEEPER.
1283
+
1284
+ FOR GIRLS.
1285
+
1286
+ Vol. I. TRYING TO BE USEFUL.
1287
+ " II. LITTLE AGNES.
1288
+ " III. I'LL TRY.
1289
+ " IV. ART AND ARTLESSNESS.
1290
+
1291
+
1292
+
1293
+
1294
+ MINNIE'S PET CAT.
1295
+
1296
+
1297
+ BY
1298
+
1299
+ MRS. MADELINE LESLIE,
1300
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
1301
+ ETC.
1302
+
1303
+
1304
+ ILLUSTRATED.
1305
+
1306
+
1307
+ BOSTON:
1308
+ LEE AND SHEPARD,
1309
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
1310
+ 1864.
1311
+
1312
+
1313
+
1314
+
1315
+ MINNIE'S PET PARROT.
1316
+
1317
+
1318
+ BY
1319
+
1320
+ MRS. MADELINE LESLIE,
1321
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
1322
+ ETC.
1323
+
1324
+
1325
+ ILLUSTRATED.
1326
+
1327
+
1328
+ BOSTON:
1329
+ LEE AND SHEPARD,
1330
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
1331
+ 1864.
1332
+
1333
+
1334
+
1335
+
1336
+ MINNIE'S PET DOG.
1337
+
1338
+
1339
+ BY
1340
+
1341
+ MRS. MADELINE LESLIE,
1342
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
1343
+ ETC.
1344
+
1345
+
1346
+ ILLUSTRATED.
1347
+
1348
+
1349
+ BOSTON:
1350
+ LEE AND SHEPARD,
1351
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
1352
+ 1864.
1353
+
1354
+
1355
+
1356
+
1357
+ MINNIE'S PET LAMB.
1358
+
1359
+
1360
+ BY
1361
+
1362
+ MRS. MADELINE LESLIE,
1363
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
1364
+ ETC.
1365
+
1366
+
1367
+ ILLUSTRATED.
1368
+
1369
+
1370
+ BOSTON:
1371
+ LEE AND SHEPARD,
1372
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
1373
+ 1864.
1374
+
1375
+
1376
+
1377
+
1378
+ MINNIE'S PET HORSE.
1379
+
1380
+
1381
+ BY
1382
+
1383
+ MRS. MADELINE LESLIE,
1384
+ AUTHOR OF "THE LESLIE STORIES," "TIM, THE SCISSORS-GRINDER,"
1385
+ ETC.
1386
+
1387
+
1388
+ ILLUSTRATED.
1389
+
1390
+
1391
+ BOSTON:
1392
+ LEE AND SHEPARD,
1393
+ SUCCESSORS TO PHILLIPS, SAMPSON & CO.
1394
+ 1864.
1395
+
1396
+
1397
+
1398
+
1399
+ Transcriber's Note
1400
+
1401
+ The following typographical errors were corrected:
1402
+
1403
+ Page Error
1404
+ 73 "good morning," changed to 'good morning,'
1405
+ 112 pet monkey." changed to pet monkey.
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+ End of the Project Gutenberg EBook of Minnie's Pet Monkey, by Madeline Leslie
1412
+
1413
+ ***
data/test/27454.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/28444.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/28988.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/29594.txt ADDED
@@ -0,0 +1,1731 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+ Produced by David Edwards, Emmy and the Online Distributed
6
+ Proofreading Team at http://www.pgdp.net (This file was
7
+ produced from images generously made available by The
8
+ Internet Archive)
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+ [Illustration: BULL RUN.]
18
+
19
+
20
+
21
+ THE SOCK STORIES,
22
+
23
+ BY "AUNT FANNY'S" DAUGHTER.
24
+
25
+ RED, WHITE, AND BLUE SOCKS.
26
+
27
+ Part Second.
28
+
29
+ BEING
30
+
31
+ THE SECOND BOOK OF THE SERIES.
32
+
33
+ BY
34
+
35
+ "AUNT FANNY'S" DAUGHTER,
36
+
37
+ THE AUTHOR OF "THE LITTLE WHITE ANGEL."
38
+
39
+ NEW YORK:
40
+ LEAVITT & ALLEN, 21 & 23 MERCER ST.
41
+ 1863.
42
+
43
+
44
+
45
+
46
+ ENTERED, according to Act of Congress, in the year 1862, by
47
+ S. L. BARROW,
48
+ In the Clerk's Office of the District Court of the United States
49
+ for the
50
+ Southern District of New York.
51
+
52
+ JOHN F. TROW,
53
+ PRINTER, STEREOTYPER, AND ELECTROTYPER,
54
+ 50 Greene Street, New York.
55
+
56
+
57
+
58
+
59
+ CONTENTS OF VOL. II.
60
+
61
+
62
+ PAGE
63
+
64
+ COLONEL FREDDY; OR, THE MARCH AND ENCAMPMENT
65
+ OF THE DASHAHED ZOUAVES,
66
+
67
+ CHAP. I.--BELLIGERENT POWERS, 5
68
+
69
+ II.--BULL RUN, 30
70
+
71
+ III.--BEFORE MONTEREY, 50
72
+
73
+ IV.--A GRAND REVIEW, 87
74
+
75
+ V.--"HOME! SWEET HOME!" 111
76
+
77
+ CONCLUSION, 125
78
+
79
+
80
+
81
+
82
+ COLONEL FREDDY;
83
+
84
+ OR,
85
+
86
+ THE MARCH AND ENCAMPMENT OF THE DASHAHED ZOUAVES.
87
+
88
+ PART II.
89
+
90
+
91
+
92
+
93
+ CHAPTER I.
94
+
95
+ BELLIGERENT POWERS.
96
+
97
+
98
+ TUESDAY morning dawned "as clear as a bell," as an old lady once said,
99
+ and the Dashahed Zouaves, if not exactly up with the sun, were awake and
100
+ stirring at a much earlier hour than usual; and after a rather more
101
+ careful washing and brushing than soldiers usually indulge in,
102
+ assembled on the lawn, looking as bright as their own buttons.
103
+
104
+ "What fun it is to be soldiers!" cried a little lisping fellow, one of
105
+ the privates. "I only wish thome Southerners would come along now, and
106
+ you'd thee how I'd _thmash_ 'em."
107
+
108
+ "Bravo, Louie!" said Harry, laughing; "I dare say, if we were to go to
109
+ the wars, you'd keep on fighting the battles of your country till you
110
+ were chopped into inch bits!"
111
+
112
+ "And pickled! I expect to be made Lieutenant-general,
113
+ Commander-in-chief, Colonel, Major, Captain, Lieutenant, Sergeant
114
+ Hamilton at the very least!"
115
+
116
+ "Pooh! that's nothing to the feats of bravery I intend to perform!"
117
+ cried Peter. "In my first battle I shall capture a 2,000-pound
118
+ columbiad with one hand tied behind me, and carry it home for a paper
119
+ weight!"
120
+
121
+ "While I'm charging a regiment of mounted infantry single handed, and
122
+ making them throw away their swords, and pistols, and things, and run
123
+ for that 'last ditch' of theirs double quick!" said Will Costar,
124
+ laughing; "but here comes breakfast, I'm happy to say. It strikes me
125
+ camping out makes a fellow awful hungry, as well as no end of brave."
126
+
127
+ A servant who had been sent from the house with breakfast materials, now
128
+ approached, and the table being laid, the soldiers drew their camp
129
+ stools around it; Colonel Freddy sitting at the head and pouring out
130
+ coffee with great gravity. Everything was going on smoothly enough, when
131
+ Harry tilted the tray on one side, and Charley knocked his elbow on the
132
+ other, and away went the coffee to the very end of the table!
133
+
134
+ "Charley," exclaimed the Colonel, severely, "what do you mean, sir? I'll
135
+ have you put in arrest if you don't look out!"
136
+
137
+ "Who'll put me there?"
138
+
139
+ "Me!" shouted Peter. "I'm the boy to manage refractories. You'll see how
140
+ I will come after you with a sharp stick--bayonet, I mean--and put you
141
+ in arrest like that!" snapping his fingers.
142
+
143
+ "By the way, when we've caught our rebels, where is the prison to be?"
144
+ asked Jimmy.
145
+
146
+ "Why, in the smoke house. There's a patent spring bolt on the
147
+ door--father had it fixed the last time we had hams made; and if anybody
148
+ was once in there, they'd never get out in the world, unless they could
149
+ draw themselves fine like a wire and squeeze through the chimney."
150
+
151
+ "We'll take care to keep out of it, then!" said Charley; "so, Colonel, I
152
+ beg pardon for tilting the biggin--I didn't mean to do it so
153
+ much--really!"
154
+
155
+ "I, too!" cried Harry; "shake hands, old chap!"
156
+
157
+ Good-tempered Freddy, always ready to "make up," caught a hand of each
158
+ of his comrades, and breakfast went on amicably.
159
+
160
+ Now, there lived in the house an old English man servant named Jerry
161
+ Pike. He had formerly been a groom and attendant on Peter's uncle, Major
162
+ Schermerhorn, and volunteered in the army at the time of the war with
163
+ Mexico, that he might follow his dear master, whom he had served and
164
+ loved ever since the Major was a mere boy. He had fought bravely beside
165
+ him in many a hard battle, and, for his gallant conduct, been promoted
166
+ to the rank of sergeant. When the hand of death removed that kind
167
+ master, Mr. Schermerhorn had gladly taken Jerry to his own house, and
168
+ promised him that should be his home as long as he lived. So now, like
169
+ a gallant old war horse, who has a fresh green paddock, and lives in
170
+ clover in his infirm age, Jerry not only stood at ease, but lived at
171
+ ease; and worked or not as he felt disposed.
172
+
173
+ When breakfast was over, Peter suddenly cried out, "I say, fellows,
174
+ suppose we employ ourselves by having a drill! You know old Jerry that I
175
+ told you about? I'll ask him to give us a lesson!"
176
+
177
+ "Yes! that will be grand fun!" said Freddy. "Do go and find him, Peter;
178
+ I should really like to learn how to drill as the soldiers do; so when
179
+ General McClellan comes along, he'll admire us as much as the English
180
+ General, old Sir Goutby Slogo, did the Seventh Regiment when they
181
+ paraded before the Prince. 'Really, most extraordinary style of marching
182
+ these American troops have,' said he, 'most hequal to the 'Orse Guards
183
+ and the Hoxford Blues coming down Regent street!'"
184
+
185
+ Meanwhile, Peter had scampered off to the house, and in a short time
186
+ returned with a comical-looking little old man, dressed in faded
187
+ regimentals.
188
+
189
+ He touched his cap to the boys as he approached, in military style, and
190
+ then drew himself up so very stiff and straight, awaiting their orders,
191
+ that, as Freddy whispered to Tom, it was a perfect wonder he didn't snap
192
+ short off at the waist.
193
+
194
+ "Now, Jerry," began the Colonel, "we want you to give us a _real_
195
+ drill, you know, just as you used to learn."
196
+
197
+ "Yes, a regular one!" chimed in the rest; "we'll run for our guns."
198
+
199
+ "Not fur your fust drill, I reckon, genl'men. You'll do bad enough
200
+ without 'em, hech, hech!" cackled Jerry.
201
+
202
+ "Very well--come begin then, Jerry!" cried impatient Will.
203
+
204
+ "Are ye all ready?"
205
+
206
+ "Yes, and waiting."
207
+
208
+ "Then, genl'men, FALL IN!" exclaimed the sergeant, the first two words
209
+ being uttered in his natural voice, but the last in an awful sepulchral
210
+ tone, like two raps on the base kettle drum. Off duty, Jerry rather
211
+ resembled a toy soldier, but when in giving his orders he stiffened his
212
+ body, threw up his head, and stuck out his hands, he looked so like the
213
+ wooden figures out of Noah's ark, that the boys burst into a shout of
214
+ laughter.
215
+
216
+ "Now, genl'men," exclaimed Jerry in a severe tone, "this won't do.
217
+ Silence in the ranks. Squad! 'Shun. The fust manoover I shel teach you,
218
+ genl'men, is the manoover of 'parade rest.' Now look at me, and do as I
219
+ do."
220
+
221
+ Anybody would have supposed, naturally enough, that to stand at rest
222
+ meant to put your hands in your pockets and lean against a tree; but
223
+ what Jerry did, was to slap his right hand against his left, like a
224
+ torpedo going off, and fold them together; stick out his left foot, lean
225
+ heavily upon his right, and look more like a Dutch doll than ever.
226
+
227
+ The boys accordingly endeavored to imitate this performance; but when
228
+ they came to try it, a difficulty arose. Whatever might be their usual
229
+ ideas on the subject, there was a diversity of opinion now as to the
230
+ proper foot to be advanced, and a wild uncertainty which was the left
231
+ foot. The new soldiers shuffled backward and forward as if they were
232
+ dancing hornpipes; while Jerry shouted, "Now, then, genl'men, I can't
233
+ hear them hands come together smartly as I'd wished, not like a row of
234
+ Jarsey cider bottles a poppin' one arter the other, but all at once.
235
+ Now, then, SQUAD! 'SHUN!" in a voice of thunder, "Stan' at parade rest!
236
+ No--no--them _lef futs_ adwanced! Well if ever!" And Jerry in his
237
+ indignation gave himself such a thump on his chest that he knocked all
238
+ the breath out of his body, and had to wait some moments before he could
239
+ go on; while the boys, bubbling over with fun, took his scoldings in
240
+ high good humor, and shrieked with laughter at their own ridiculous
241
+ blunders, to the high wrath of their ancient instructor; who was so
242
+ deeply interested and in earnest about his pursuit, that he didn't fail
243
+ to lecture them well for their "insubornation;" which, indeed, nobody
244
+ minded, except Tom Pringle, who, by the by, was from Maryland, and many
245
+ of whose relations were down South. He had been looking rather sulky
246
+ from the beginning of the drill, and now suddenly stepped from his place
247
+ in the ranks, exclaiming, "I won't play! now I vow I won't!"
248
+
249
+ "Why, Tom, what is the matter? Are you mad at us?" cried half a dozen
250
+ voices at once.
251
+
252
+ "Humm--" grumbled sulky Tom.
253
+
254
+ "What say? I can't hear you," said Freddy. "Nonsense, Tom, don't be
255
+ poky, come back and drill."
256
+
257
+ "I won't! Let us alone, will you?"
258
+
259
+ "All we want is, let us alone!" chanted Peter. "There, Fred, let him be
260
+ cross if he wants to, we can play without him;" and the boys ran back to
261
+ their places in the ranks, Freddy calling out, "Come fellows, let's try
262
+ that old parade rest once more;" and on Jerry's giving the command, they
263
+ really _did_ do it this time, and were pronounced capable of passing to
264
+ grander evolutions.
265
+
266
+ The first of these was the turn about so as to fall in ranks; something
267
+ the Dashahed Zouaves hadn't dreamt of before. Get into ranks? Nothing
268
+ could be easier than to stand four in a row, as they had done before;
269
+ but when it came to "right face," most of the soldiers were found to
270
+ have opposite views on the subject, and faced each other, to their
271
+ mutual astonishment. The natural consequence was, that in three seconds
272
+ the regiment was in such a snarl and huddle, that no one could tell
273
+ which rank he belonged to or anything else; so Jerry, perfectly purple
274
+ in the face with shouting, by way of helping them out of the scrape,
275
+ gave them the following remarkable advice: "Squad, 'shun! At th' wud
276
+ 'Foz' the rer-rank will stepsmartly off wi' th' leffut, tekkinapesstoth'
277
+ rare--Fo-o-o-res!"
278
+
279
+ "W-h-a-t!" was the unanimous exclamation.
280
+
281
+ Jerry repeated his mandate, which, after infinite puzzling (the honest
282
+ sergeant being no assistance whatever), was discovered to mean, "At the
283
+ word 'Fours,' the rear rank will step smartly off with the left foot,
284
+ taking a pace to the rear. Fours!"
285
+
286
+ This difficulty solved, the next "article on the programme," as Peter
287
+ said, was the command March! or "harch!" according to Jerry.
288
+
289
+ Out stepped Freddy, confident that he knew this much at any rate,
290
+ followed by the others; but here again that celebrated left foot got
291
+ them into trouble. The right foot _would_ pop out here and there, and as
292
+ sure as it did, at the third step the unlucky Zouave found his leg
293
+ firmly stuck between the ankles of the boy in front; and the "man"
294
+ behind him treading on his heels in a way calculated to aggravate a
295
+ saint; while meantime, the fellows in the rear rank, who were forever
296
+ falling behind while they were staring at their feet to make sure which
297
+ was the left one, _would_ endeavor to make up for it by taking a wide
298
+ straddling step all of a sudden, and encircled the legs of people in
299
+ front; a proceeding which, not being in accordance with "Hardee's
300
+ Tactics," was not received with approbation by Jerry; who, looking at
301
+ them with a sort of deprecating pity, hoarsely said, "Now, Company D!
302
+ wot--wrong agin? fowod squad! wun, too, three, foore; hup! hup! hup!
303
+ hold your head up, Mr. Fred; turn out your toes, Master William, and
304
+ keep STEADY!"
305
+
306
+ "Goody!" exclaimed Freddy at last, stopping short in the middle of his
307
+ marching, "I can't stand this any longer! There, Jerry, we've had drill
308
+ enough, thank you; I am knocked into a cocked hat, for my part!"
309
+
310
+ "Very well, sir; it _is_ powerful hot; an' I must say you young genl'men
311
+ have kep' at it steadier nor I expected, a gred deal."
312
+
313
+ "Thank you, Jerry," said George, laughing, "we shall not forget our
314
+ first drill in a hurry. I can't tell, for my part, which has been most
315
+ bothered, you or we."
316
+
317
+ "Allers glad to give you a little practice," grinned Jerry, "though
318
+ you'd rive the gizzard out of an army drill sergeant, I'd wenture to
319
+ say, if he hed the teachin' of you. Hech! hech! hech! Mornin', genl'men,
320
+ your sarvent," and Jerry touched his cap to Colonel Freddy and marched
321
+ off chuckling.
322
+
323
+ As soon as he had made his exit, the boys clustered around Tom, as he
324
+ sat turning his back on as many of the company as possible, and all
325
+ began in a breath, "Now, Tom, do tell us what you're mad at; what have
326
+ we done? please speak!"
327
+
328
+ "Well, then," shouted Tom, springing up, "I'll tell you what, Frederic
329
+ Jourdain! I won't be ordered around by any old monkey like
330
+ that,"--pointing toward Jerry--"and as for _you_ and _your_ ordering
331
+ about, I won't stand that either! fine as you think yourself; the
332
+ Colonel, indeed!"
333
+
334
+ "Why, Tom, how can you talk so? can't you play like the rest of us? I'm
335
+ sure I haven't taken advantage of being Colonel to be domineering; have
336
+ I, boys?"
337
+
338
+ "No, no! not a bit, Fred--never mind what he says!"
339
+
340
+ "Oh _do_--_don't_ appeal to them! You do that because you daren't say
341
+ outright you mean to have everything your own way. That may be very well
342
+ for them--you're all a parcel of Yankee shopkeepers together--but, I can
343
+ tell you, no Southern _gentleman_ will stand it!"
344
+
345
+ "North or South, Tom," began Will Costar, pretty sharply, "every
346
+ regiment must have a head--and obey the head. We've chosen Fred our
347
+ Colonel, and you must mind him. When he tells you to drill you've _got
348
+ to do it_!"
349
+
350
+ Tom wheeled round perfectly furious. "You say that again," he shouted,
351
+ "and I'll leave the regiment! I will. I won't be told by any Northerner
352
+ that I'm his subordinate, and if my State hadn't thought so too, she'd
353
+ never have left the Union."
354
+
355
+ "What! you dare to say anything against the Union!" cried George,
356
+ turning white with rage; "do you mean to say that you _admire_ the South
357
+ for seceding?"
358
+
359
+ "Yes! I've a great mind to secede myself, what's more!"
360
+
361
+ Freddy, as I said, was as sweet-tempered a little fellow as ever lived;
362
+ but he was fairly aroused now. His blue eyes flashed fire; he crimsoned
363
+ to the temples; his fists were clenched--and shouting, "you traitor!"
364
+ like a flash, he sent Tom flying over on his back, with the camp stool
365
+ about his ears.
366
+
367
+ Up jumped Tom, kicked away the stool, and rushed toward Fred. But the
368
+ others were too quick for him; they seized his arms and dragged him
369
+ back; Peter calling out "No, don't fight him, Colonel; he's not worth
370
+ it; let's have a court martial--that's the way to serve traitors!"
371
+
372
+ Amid a perfect uproar of rage and contempt for this shameful attack on
373
+ their Colonel, the Zouaves hastily arranged some camp stools for judge
374
+ and jury; and George being chosen judge, the oldest members of the
375
+ regiment took their places around him, and Tom was hauled up before the
376
+ Court.
377
+
378
+ "Oh stop, pray stop!" cried Freddy at this stage of affairs. "Indeed, I
379
+ forgive him for what he said to me, if he will take back his language
380
+ about the Union. I can't stand _that_."
381
+
382
+ "You hear what the Colonel says," said George, sternly; "will you
383
+ retract?"
384
+
385
+ "No, never! if you think I'm going to be frightened into submission to a
386
+ Northerner you're very much mistaken! No Southerner will ever be that!
387
+ and as for your precious Union, I don't care if I say I hope there never
388
+ will be a Union any more."
389
+
390
+ "Then, by George!" shouted the judge, fairly springing from his seat,
391
+ "You're a traitor, sir! Fellows, whoever is in favor of having this
392
+ secessionist put under arrest, say Aye!"
393
+
394
+ "Aye! AYE! AYE!" in a perfect roar.
395
+
396
+ "Does any one object?" Nobody spoke.
397
+
398
+ "Then I sentence him to be confined in the guard house till he begs
399
+ pardon; Livingston, Costar, and Boorman to take him there."
400
+
401
+ His captors pounced upon their prisoner with very little ceremony when
402
+ this sentence was pronounced; when Tom, without attempting to escape,
403
+ suddenly commenced striking out at every one he could reach. A grand
404
+ hurley-burley ensued; but before long Tom was overpowered and dragged to
405
+ the smoke, _alias_ guard house; heaping insults and taunts on the Union
406
+ and the regiment all the way. Harry flung open the door of the prison,
407
+ a picturesque little hut built of rough gray stone, and covered with
408
+ Virginia creepers and wild honeysuckles. The others pushed Tom in, and
409
+ Peter, dashing forward, slammed the door on him with a bang. Snap! went
410
+ the bolt, and now nothing earthly could open it again but a Bramah key
411
+ or a gunpowder explosion. Young Secession was fast, and the North
412
+ triumphant. Hurrah!
413
+
414
+
415
+
416
+
417
+ CHAPTER II.
418
+
419
+ BULL RUN.
420
+
421
+
422
+ THEIR first excitement over, the gallant Zouaves couldn't help looking
423
+ at each other in rather a comical way. To be sure, it was very
424
+ aggravating to have their country run down, and themselves assailed
425
+ without leave or license; but they were by no means certain, now they
426
+ came to think of it, that they had acted rightly in doing justice to the
427
+ little rebel in such a summary manner. Peter especially, who had
428
+ proposed the court martial, had an instinctive feeling that if his
429
+ father were to learn the action they had taken, he would scarcely
430
+ consider it to tally with the exercise of strict politeness to company.
431
+ In short, without a word said, there was a tacit understanding in the
432
+ corps that this was an affair to be kept profoundly secret.
433
+
434
+ While they were still silently revolving this delicate question, little
435
+ Louie Hamilton suddenly started violently, exclaiming, "Only listen a
436
+ moment, felloth! what a strange noithe! It sounds like thome wild
437
+ beast!"
438
+
439
+ "Noise? I don't hear any," said Freddy; "yes I do, though--like
440
+ something trampling the bushes!"
441
+
442
+ "There's nothing worse than four cows and a house dog about our place,"
443
+ said Peter; "but what that is I don't know--hush!"
444
+
445
+ The boys listened with all their ears and elbows, and nearly stared
446
+ themselves blind looking around to see what was the matter. They had not
447
+ long to wait, however, for the trampling increased in the wood, a
448
+ curious, low growling was heard, which presently swelled to a roar, and
449
+ in a moment more, an immense brindled bull was seen dashing through the
450
+ locusts, his head down and heels in the air, looking not unlike a great
451
+ wheel-barrow, bellowing at a prodigious rate, and making straight toward
452
+ the place where they stood!
453
+
454
+ "Murder, what _shall_ we do?" cried Louie, turning deadly pale with
455
+ terror, while the Zouaves, for an instant, appeared perfectly paralyzed.
456
+
457
+ "Why run! run for your lives!" shouted George, who was the first to
458
+ recover himself. "Peter, you lead the way; take us the shortest cut to
459
+ the house, and--oh!"
460
+
461
+ Not another word did George utter. He was saving his breath for the
462
+ race. And now, indeed, began a most prodigious "skedaddle;" the boys
463
+ almost flying on ahead, running nearly abreast, and their terrible enemy
464
+ close behind, tearing up the ground with his horns, and galloping like
465
+ an express!
466
+
467
+ On sped the gallant Zouaves, making off as rapidly from the scene of
468
+ action as their namesakes from Manassas, without pausing to remark
469
+ which way the wind blew, until, at last, they had skirted the grove, and
470
+ were on the straight road for the house. Here Peter stopped a moment,
471
+ "Because some of the men will be near here, perhaps," he pantingly said,
472
+ "and Master Bull will be caught if he ventures after us." Scarcely had
473
+ he spoken, when the furious animal was once more seen, dashing on faster
474
+ than ever, and flaming with rage, till he might have exploded a powder
475
+ mill! Now for a last effort! One determined burst over the smooth road,
476
+ and they are safe in the house!
477
+
478
+ Little Louie, who was only nine years old, and the youngest of the
479
+ party, had grasped hold of Freddy's hand when they first started; and
480
+ been half pulled along by him so far; but now that safety was close at
481
+ hand, he suddenly sank to the ground, moaning out, "Oh Fred, you must go
482
+ on and leave me; I can't run any more. Oh mamma!"
483
+
484
+ "No, no, Louie! don't do so!" cried Freddy. "Get up, little man! why,
485
+ you can't think I would leave you, surely?" and, stooping down, the
486
+ brave little fellow caught Louie up in his arms, and, thus burdened,
487
+ tried to run on toward the house.
488
+
489
+ The rest of the boys were now far beyond them; and had just placed their
490
+ feet upon the doorstone, when a loud shout of "help!" made them turn
491
+ round; and there was Freddy, with Louie in his arms, staggering up the
492
+ road, the horns of the bull within a yard of his side!
493
+
494
+ Like a flash of lightning, Will snatched up a large rake which one of
495
+ the men had left lying on the grass, and dashed down the road. There is
496
+ one minute to spare, just one! but in that minute Will has reached the
497
+ spot, and launching his weapon, the iron points descend heavily on the
498
+ animal's head.
499
+
500
+ The bull, rather aghast at this reception, which did not appear to be at
501
+ all to his taste, seemed to hesitate a moment whether to charge his
502
+ adversary or not; then, with a low growl of baffled fury, he slowly
503
+ turned away, and trotted off toward the wood.
504
+
505
+ The help had not come a minute too soon; for Freddy, his sensitive
506
+ organization completely overwrought by the events of the morning and his
507
+ narrow escape from death, had fallen fainting to the ground; his hands
508
+ still clenched in the folds of little Louie's jacket. Will instantly
509
+ raised him, when he saw that all danger was over, and he and some of the
510
+ others, who had come crowding down the road, very gently and quickly
511
+ carried the insensible boy to the house, and laid him on the lounge in
512
+ the library; while Peter ran for the housekeeper to aid in bringing him
513
+ to life.
514
+
515
+ Good Mrs. Lockitt hurried up stairs as fast as she could with camphor,
516
+ ice water, and everything else she could think of good for fainting.
517
+
518
+ "Mrs. Lockitt, where is papa?" asked Peter, as he ran on beside her.
519
+
520
+ "Gone to New York, Master Peter," she replied; "I don't think he will be
521
+ home before dinner time."
522
+
523
+ Our little scapegrace breathed more freely; at least there were a few
524
+ hours' safety from detection, and he reentered the library feeling
525
+ considerably relieved.
526
+
527
+ There lay Colonel Freddy, his face white as death; one little hand
528
+ hanging lax and pulseless over the side of the lounge, and the ruffled
529
+ shirt thrust aside from the broad, snowy chest. Harry stood over him,
530
+ fanning his forehead; while poor Louie was crouched in a corner,
531
+ sobbing as though his heart would break, and the others stood looking on
532
+ as if they did not know what to do with themselves.
533
+
534
+ Mrs. Lockitt hastened to apply her remedies; and soon a faint color came
535
+ back to the cheek, and with a long sigh, the great blue eyes opened once
536
+ more, and the little patient murmured, "Where am I?"
537
+
538
+ "Oh, then he's not killed, after all!" cried Louie, running to his side.
539
+ "Dear, dear Freddy! how glad I am you have come to life again!"
540
+
541
+ This funny little speech made even Freddy laugh, and then Mrs. Lockitt
542
+ said, "But, Master Peter, you have not told me yet how it happened that
543
+ Master Frederic got in such a way."
544
+
545
+ The eyes of the whole party became round and saucer-y at once; as, all
546
+ talking together, they began the history of their fearful adventure.
547
+ Mrs. Lockitt's wiry false curls would certainly have dropped off with
548
+ astonishment if they hadn't been sewed fast to her cap, and she fairly
549
+ wiped her eyes on her spectacle case, which she had taken out of her
550
+ pocket instead of her handkerchief, as they described Freddy's noble
551
+ effort to save his helpless companion without thinking of himself. When
552
+ the narrative was brought to a close, she could only exclaim, "Well,
553
+ Master Freddy, you are a little angel, sure enough! and Master William
554
+ is as brave as a lion. To think of his stopping that great creetur, to
555
+ be sure! Wherever in the world it came from is the mystery." So saying,
556
+ Mrs. Lockitt bustled out of the room, and after she had gone, there was
557
+ a very serious and grateful talk among the elder boys about the escape
558
+ they had had, and a sincere thankfulness to God for having preserved
559
+ their lives.
560
+
561
+ The puzzle now was, how they were to return to the camp, where poor Tom
562
+ had been in captivity all this time. It was certainly necessary to get
563
+ back--but then the bull! While they were yet deliberating on the horns
564
+ of this dilemma, the library door suddenly opened, and in walked--Mr.
565
+ Schermerhorn!
566
+
567
+ "Why, boys!" he exclaimed, "how do you come to be here? Fred, what's the
568
+ matter? you look as pale as a ghost!"
569
+
570
+ There was general silence for a moment; but these boys had been taught
571
+ by pious parents to speak the truth always, whatever came of it. Ah!
572
+ that is the right principle to go on, dear children; TELL THE TRUTH when
573
+ you have done anything wrong, even if you are sure of being punished
574
+ when that truth is known.
575
+
576
+ So George, as the eldest, with one brave look at his comrades, frankly
577
+ related everything that had happened; beginning at the quarrel with
578
+ Tom, down to the escape from the bull. To describe the varied expression
579
+ of his auditor's face between delight and vexation, would require a
580
+ painter; and when George at last said, "Do you think we deserve to be
581
+ punished, sir? or have we paid well enough already for our court
582
+ martial?" Mr. Schermerhorn exclaimed, trying to appear highly incensed,
583
+ yet scarcely able to help smiling:
584
+
585
+ "I declare I hardly know! I certainly am terribly angry with you. How
586
+ dare you treat a young gentleman so on my place? answer me that, you
587
+ scapegraces! It is pretty plain who is at the bottom of all this--Peter
588
+ dares not look at me, I perceive. At the same time, I am rather glad
589
+ that Master Tom has been taught what to expect if he runs down the
590
+ Union--it will probably save him from turning traitor any more, though
591
+ you were not the proper persons to pass sentence on him. As for our
592
+ plucky little Colonel here--shake hands, Freddy! you have acted like a
593
+ hero! and for your sake I excuse the court martial. Now, let us see what
594
+ has become of the bull, and then go to the release of our friend Tom. He
595
+ must be thoroughly repentant for his misdeeds by this time."
596
+
597
+ Mr. Schermerhorn accordingly gave orders that the bull should be hunted
598
+ up and secured, until his master should be discovered; so that the
599
+ Zouaves might be safe from his attacks hereafter. If any of our readers
600
+ feel an interest in the fate of this charming animal, they are informed
601
+ that he was, with great difficulty, hunted into the stables; and before
602
+ evening taken away by his master, the farmer from whom he had strayed.
603
+
604
+ Leaving the others to await his capture, let us return to Tom. He had
605
+ not been ten minutes in the smoke house before his wrath began to cool,
606
+ and he would have given sixpence for any way of getting out but by
607
+ begging pardon. That was a little too much just yet, and Tom stamped
608
+ with rage and shook the door; which resisted his utmost efforts to
609
+ burst. Then came the sounds without, the rushing, trampling steps, the
610
+ furious bellow, and the shout, "Run! run for your lives!" Run! why on
611
+ earth must they? What had happened? and especially what would become of
612
+ him left alone there, with this unseen enemy perhaps coming at him next.
613
+ He hunted in vain in every direction for some cranny to peep through;
614
+ and if it had been possible, would have squeezed his head up the
615
+ chimney. He shouted for help, but nobody heard him; they were all too
616
+ frightened for that. He could hear them crunching along the road,
617
+ presently; another cry, and then all was still.
618
+
619
+ "What shall I do?" thought poor Tom. "Oh, where have they gone to?
620
+ Please let me out, Freddy! do forgive me, boys! I'll f-fight for the
621
+ Union as m-much as you like! oh! oh!" and at last--must it be
622
+ confessed?--the gallant Secesh finished by bursting out crying!
623
+
624
+ Time passed on--of course seeming doubly long to the prisoner--and still
625
+ the boys did not return. Tom cried till he could cry no more; sniffling
626
+ desperately, and rubbing his nose violently up in the air--a proceeding
627
+ which did not ameliorate its natural bent in that direction. He really
628
+ felt thoroughly sorry, and quite ready to beg pardon as soon as the boys
629
+ should return; particularly as they had forgotten to provide the captive
630
+ with even the traditional bread and water, and dinner-time was close at
631
+ hand. While he was yet struggling between repentance and stomachache,
632
+ the welcome sound of their voices was heard. They came nearer, and then
633
+ a key was hastily applied to the fastenings of the door, and it flew
634
+ open, disclosing the Zouaves, with Freddy at the head, and Mr.
635
+ Schermerhorn bringing up the rear.
636
+
637
+ Tom hung back a moment yet; then with a sudden impulse he walked toward
638
+ Freddy, saying, "I beg your pardon, Colonel; please forgive me for
639
+ insulting you; and as for the flag"--and without another word, Tom ran
640
+ toward the flag staff, and catching the long folds of the banner in both
641
+ hands, pressed them to his lips.
642
+
643
+ "The chivalry forever!" said Mr. Schermerhorn, smiling. "That's right,
644
+ Tom! bless the old banner! it is your safeguard, and your countrymen's
645
+ too, if they would only believe it. Go and shake hands with him, boys;
646
+ he is in his right place now, and if ever you are tempted to quarrel
647
+ again, I am sure North and South will both remember
648
+
649
+ "BULL RUN!"
650
+
651
+
652
+
653
+
654
+ CHAPTER III.
655
+
656
+ BEFORE MONTEREY.
657
+
658
+
659
+ IT is not necessary to describe the particular proceedings of the
660
+ Dashahed Zouaves during every day of their camp life. They chattered,
661
+ played, drilled, quarrelled a little once in a while, and made it up
662
+ again, eat and slept considerably, and grew sunburnt to an astonishing
663
+ degree.
664
+
665
+ It was Thursday morning, the fourth of their delightful days in camp.
666
+ Jerry had been teaching them how to handle a musket and charge
667
+ bayonets, until they were quite excited, and rather put out that there
668
+ was no enemy to practise on but the grasshoppers. At length, when they
669
+ had tried everything that was to be done, Harry exclaimed, "I wish,
670
+ Jerry, you would tell us a story about the wars! Something real
671
+ splendid, now; perfectly crammed with Indians and scalps and awful
672
+ battles and elegant Mexican palaces full of diamonds and gold saucepans
673
+ and lovely Spanish girls carried off by the hair of their heads!"
674
+
675
+ This flourishing rigmarole, which Harry delivered regardless of stops,
676
+ made the boys shout with laughter.
677
+
678
+ "You'd better tell the story yourself, since you know so much about
679
+ it!" said Tom.
680
+
681
+ "I allow you've never been in Mexico, sir," said Jerry, grinning. "I
682
+ doubt but thar's palisses somewhar in Mexico, but I and my mates hev
683
+ been thar, an' _we_ never seed none o' 'em. No, Master Harry, I can't
684
+ tell ye sich stories as that, but I do mind a thing what happened on the
685
+ field afore Monterey."
686
+
687
+ The boys, delightedly exclaiming, "A story! a story! hurrah!" drew their
688
+ camp stools around him; and Jerry, after slowly rubbing his hand round
689
+ and round over his bristling chin, while he considered what to say
690
+ first, began his story as follows:
691
+
692
+
693
+ JERRY'S STORY.
694
+
695
+ "It wor a Sunday night, young genl'men, the 21st
696
+ of September, and powerful hot. We had been
697
+ fightin' like mad, wi' not a moment's rest, all
698
+ day, an' now at last wor under the canwas, they of
699
+ us as wor left alive, a tryin' to sleep. The
700
+ skeeters buzzed aroun' wonderful thick, and the
701
+ groun' aneath our feet wor like red-hot tin
702
+ plates, wi' the sun burnin' an blisterin' down. At
703
+ last my mate Bill says, says he, 'Jerry, my mate,
704
+ hang me ef I can stan' this any longer. Let you
705
+ an' me get up an' see ef it be cooler
706
+ out-o'-doors.'
707
+
708
+ "I wor tired enough wi' the day's fight, an'
709
+ worrited, too, wi' a wound in my shoulder; but
710
+ the tent wor no better nor the open field, an' we
711
+ got up an' went out. Thar wor no moon, but the sky
712
+ was wonderful full o' stars, so we could see how
713
+ we wor stannin' wi' our feet among the bodies o'
714
+ the poor fellows as had fired their last shot that
715
+ day. It wor a sight, young genl'men, what would
716
+ make sich as you sick an' faint to look on; but
717
+ sogers must larn not to min' it; an' we stood
718
+ thar, not thinkin' how awful it wor, and yet still
719
+ an' quiet, too.
720
+
721
+ "'Ah, Jerry,' says Bill--he wor a young lad, an'
722
+ brought up by a pious mother, I allow--'I dunnot
723
+ like this fightin' on the Sabba' day. The Lord
724
+ will not bless our arms, I'm afeard, if we go agin
725
+ His will so.'
726
+
727
+ "I laughed--more shame to me--an' said, 'I'm a
728
+ sight older nor you, mate, an' I've seed a sight
729
+ o' wictories got on a Sunday. The better the day,
730
+ the better the deed, I reckon.'
731
+
732
+ "'Well, I don't know,' he says; 'mebbe things is
733
+ allers mixed in time o' war, an' right an' wrong
734
+ change sides a' purpose to suit them as wants
735
+ battle an' tumult to be ragin'; but it don't go
736
+ wi' my grain, noways.'
737
+
738
+ "I hadn't experienced a change o' heart then, as I
739
+ did arterward, bless the Lord! an' I hardly
740
+ unnerstood what he said. While we wor a stannin'
741
+ there, all to onct too dark figgers kim a creepin'
742
+ over the field to'ard the Major's tent. 'Look
743
+ thar, Jerry,' whispered Bill, kind o' startin'
744
+ like, 'thar's some of them rascally Mexicans.' I
745
+ looked at 'em wi'out sayin' a wured, an' then I
746
+ went back to the tent fur my six-shooter--Bill
747
+ arter me;--fur ef it ain't the dooty o' every
748
+ Christian to extarminate them warmints o'
749
+ Mexicans, I'll be drummed out of the army
750
+ to-morrer.
751
+
752
+ "Wall, young genl'men--we tuck our pistols, and
753
+ slow and quiet we moved to whar we seed the two
754
+ Greasers, as they call 'em. On they kim, creepin'
755
+ to'ard my Major's tent, an' at las' one o' 'em
756
+ raised the canwas a bit. Bill levelled his
757
+ rewolver in a wink, an' fired. You shud ha' seed
758
+ how they tuck to their heels! yelling all the way,
759
+ till wun o' em' dropped. The other didn't stop,
760
+ but just pulled ahead. I fired arter him wi'out
761
+ touching him; but the noise woke the Major, an'
762
+ when he hearn wot the matter wor, he ordered the
763
+ alarm to be sounded an' the men turned out. 'It's
764
+ a 'buscade to catch us,' he says, 'an' I'm fur
765
+ being fust on the field.'
766
+
767
+ "Bill an' I buckled on our cartridge boxes, caught
768
+ up our muskets, an' were soon in the ranks. On we
769
+ marched, stiddy an' swift, to the enemy's
770
+ fortifications; an' wen we were six hundred yards
771
+ distant, kim the command, 'Double quick.' The sky
772
+ hed clouded up all of a suddent, an' we couldn't
773
+ see well where we wor, but thar was suthin' afore
774
+ us like a low, black wall. As we kim nearer, it
775
+ moved kind o' cautious like, an' when we wor
776
+ within musket range, wi' a roar like ten thousand
777
+ divils, they charged forred! Thar wor the flash
778
+ and crack o' powder, and the ring! ping! o' the
779
+ bullets, as we power'd our shot on them an' they
780
+ on us; but not another soun'; cr-r-r-ack went the
781
+ muskets on every side agin, an' the rascals wor
782
+ driven back a minnit. 'Charge bayonets!' shouted
783
+ the Major, wen he seed that. Thar wos a pause; a
784
+ rush forred; we wor met by the innimy half way;
785
+ an' then I hearn the awfullest o' created
786
+ soun's--a man's scream. I looked roun', an' there
787
+ wos Bill, lying on his face, struck through an'
788
+ through. Thar wos no time to see to him then, fur
789
+ the men wor fur ahead o' me, an' I hed to run an'
790
+ jine the rest.
791
+
792
+ "We hed a sharp, quick skirmish o' it--for ef thar
793
+ is a cowardly critter on the created airth it's a
794
+ Greaser--an' in less nor half an' hour wor beatin'
795
+ back to quarters. When all wor quiet agin, I left
796
+ my tent, an' away to look fur Bill. I sarched an'
797
+ sarched till my heart were almost broke, an at
798
+ last I cried out, 'Oh Bill, my mate, whar be you?'
799
+ an' I hearn a fibble v'ice say, 'Here I be,
800
+ Jerry!'
801
+
802
+ "I swon! I wor gladder nor anything wen I hearn
803
+ that. I hugged him to my heart, I wor moved so
804
+ powerful, an' then I tuck him on my back, an' off
805
+ to camp; werry slow an' patient, fur he were sore
806
+ wownded, an' the life in him wery low.
807
+
808
+ "Wall, young genl'men, I'll not weary you wi' the
809
+ long hours as dragged by afore mornin'. I med him
810
+ as snug as I could, and at daybreak we hed him
811
+ took to the sugeon's tent.
812
+
813
+ "I wor on guard all that mornin' an' could not get
814
+ to my lad; but at last the relief kim roun', an'
815
+ the man as was to take my place says, says he,
816
+ 'Jerry, my mate, ef I was you I'd go right to the
817
+ hosp'tl an' stay by poor Bill' (fur they all knew
818
+ as I sot gret store by him); 'He is werry wild in
819
+ his head, I hearn, an' the sugeon says as how he
820
+ can't last long.'
821
+
822
+ "Ye may b'lieve how my hairt jumped wen I hearn
823
+ that. I laid down my gun, an' ran fur the wooden
824
+ shed, which were all the place they hed fur them
825
+ as was wownded. An' thar wor Bill--my mate
826
+ Bill--laying on a blanket spred on the floore, wi'
827
+ his clothes all on (fur it's a hard bed, an' his
828
+ own bloody uniform, that a sojer must die in), wi'
829
+ the corpse o' another poor fellow as had died all
830
+ alone in the night a'most touching him, an'
831
+ slopped wi' blood. I moved it fur away all in a
832
+ trimble o' sorrer, an' kivered it decent like, so
833
+ as Bill mightn't see it an' get downhearted fur
834
+ hisself. Then I went an' sot down aside my mate.
835
+ He didn't know me, no more nor if I wor a
836
+ stranger; but kept throwin' his arms about, an'
837
+ moanin' out continual, 'Oh mother! mother! Why
838
+ don't you come to your boy?'
839
+
840
+ "I bust right out crying, I do own, wen I hearn
841
+ that, an' takin' his han' in mine, I tried to
842
+ quiet him down a bit; telling him it wor bad fur
843
+ his wownd to be so res'less (fur every time he
844
+ tossed, thar kim a little leap o' blood from his
845
+ breast); an' at last, about foore o'clock in the
846
+ day, he opened his eyes quite sensible like, an'
847
+ says to me, he says, 'Dear matey, is that you?
848
+ Thank you fur coming to see me afore I die.'
849
+
850
+ "'No, Bill, don't talk so,' I says, a strivin' to
851
+ be cheerful like, tho' I seed death in his face,
852
+ 'You'll be well afore long.'
853
+
854
+ "'Aye, well in heaven,' he says; and then, arter a
855
+ minnit, 'Jerry,' he says, 'thar's a little bounty
856
+ money as belongs to me in my knapsack, an' my
857
+ month's wages. I want you, wen I am gone, to take
858
+ it to my mother, an' tell her--'(he wor gaspin'
859
+ fearful)--'as I died--fightin' fur my country--an'
860
+ the flag. God bless you, Jerry--you hev been a
861
+ good frien' to me, an' I knows as you'll do
862
+ this--an' bid the boys good-by--fur me.'
863
+
864
+ "I promised, wi' the tears streamin' down my
865
+ cheeks; an' then we wor quiet a bit, fur it hurt
866
+ Bill's breast to talk, an' I could not say a wured
867
+ fur the choke in my throat. Arter a while he says,
868
+ 'Jerry, won't you sing me the hymn as I taught you
869
+ aboard the transport? about the Lord our Captin?'
870
+
871
+ "I could hardly find v'ice to begin, but it wor
872
+ Bill's dying wish, an' I made shift to sing as
873
+ well as I could--
874
+
875
+ "'We air marchin' on together
876
+ To our etarnal rest;
877
+ Niver askin' why we're ordered--
878
+ For the Lord He knoweth best.
879
+ Christ is our Captain!
880
+ 'Forred!' is His word;
881
+ Ranks all steady, muskets ready,
882
+ In the army o' the Lord!
883
+
884
+ "'Satan's hosts are all aroun' us,
885
+ An' strive to enter in;
886
+ But our outworks they are stronger
887
+ Nor the dark brigades o' sin!
888
+ Christ is our Fortress!
889
+ Righteousness our sword;
890
+ Truth the standard--in the vanguard--
891
+ O' the army o' the Lord!
892
+
893
+ "'Comrads, we air ever fightin'
894
+ A battle fur the right;
895
+ Ever on the on'ard movement
896
+ Fur our home o' peace an' light.
897
+ Christ is our Leader!
898
+ Heaven our reward,
899
+ Comin' nearer, shinin' clearer--
900
+ In the army o' the Lord!'
901
+
902
+ "Arter I hed sung the hymn--an' it wor all I could
903
+ do to get through--Bill seemed to be a sight
904
+ easier. He lay still, smilin' like a child on the
905
+ mother's breast. Pretty soon arter, the Major kim
906
+ in; an' wen he seed Bill lookin' so peaceful, he
907
+ says, says he, 'Why, cheer up, my lad! the sugeon
908
+ sayd as how you wor in a bad way; but you look
909
+ finely now;'--fur he didn't know it wor the death
910
+ look coming over him. 'You'll be about soon,'
911
+ says the Major, 'an' fightin' fur the flag as
912
+ brave as ever,'
913
+
914
+ "Bill didn't say nothing--he seemed to be getting
915
+ wild agin;--an' looked stupid like at our Major
916
+ till he hearn the wureds about the flag. Then he
917
+ caught his breath suddint like, an', afore we
918
+ could stop him, he had sprang to his feet--shakin'
919
+ to an' fro like a reed--but as straight as he ever
920
+ wor on parade; an', his v'ice all hoarse an' full
921
+ o' death, an' his arm in the air, he shouted,
922
+ 'Aye! God--bless--the--flag! we'll fight fur it
923
+ till--' an' then we hearn a sort o' snap, an' he
924
+ fell forred--dead!
925
+
926
+ "We buried him that night, I an' my mates. I cut
927
+ off a lock o' his hair fur his poor mother, afore
928
+ we put the airth over him; an' giv it to her, wi'
929
+ poor Bill's money, faithful an' true, wen we kim
930
+ home. I've lived to be an old man since then, an'
931
+ see the Major go afore me, as I hoped to sarve
932
+ till my dyin' day; but Lord willing I shel go
933
+ next, to win the Salwation as I've fitten for, by
934
+ Bill's side, a sojer in Christ's army, in the
935
+ Etarnal Jerusalem!"
936
+
937
+ The boys took a long breath when Jerry had finished his story, and more
938
+ than one bright eye was filled with tears. The rough words, and plain,
939
+ unpolished manner of the old soldier, only heightened the impression
940
+ made by his story; and as he rose to go away, evidently much moved by
941
+ the painful recollections it excited, there was a hearty, "Thank you,
942
+ sergeant, for your story--it was real good!" Jerry only touched his cap
943
+ to the young soldiers, and marched off hastily, while the boys looked
944
+ after him in respectful silence. But young spirits soon recover from
945
+ gloomy influences, and in a few moments they were all chattering merrily
946
+ again.
947
+
948
+ "What a pity we must go home Monday!" cried Louie; "I wish we could camp
949
+ out forever! Oh, Freddy, do write a letter to General McClellan, and ask
950
+ him to let us join the army right away! Tell him we'll buy some new
951
+ india-rubber back-bones and stretch ourselves out big directly, if he'll
952
+ only send right on for us!"
953
+
954
+ "Perhaps he would, if he knew how jolly we can drill already!" said
955
+ Peter, laughing. "I tell you what, boys, the very thing! let's have a
956
+ review before we go home. I'll ask all the boys and girls I know to come
957
+ and look on, and we might have quite a grand entertainment. Won't that
958
+ be splendid? We can march about all over, and fire off the cannons and
959
+ everything! I'm sure father will let us."
960
+
961
+ "Yes, but how's General McClellan to hear anything about it?" inquired
962
+ practical Louie.
963
+
964
+ "Why--I don't know," said Peter, rather taken aback by this view of the
965
+ subject. "Well, somehow--never mind, it will be grand fun, and I mean
966
+ to ask my father right away."
967
+
968
+ "Take me with you?" called a dozen fellows directly. Finally it was
969
+ concluded that it might make more impression on Mr. Schermerhorn's mind,
970
+ if the application came from the regiment in a body; so, running for
971
+ their swords and guns, officers and men found their places in the
972
+ battalion, and the grand procession started on its way--chattering all
973
+ the time, in utter defiance of that "article of war" which forbids
974
+ "talking in the ranks." Just as they were passing the lake, they heard
975
+ carriage wheels crunching on the gravel, and drew up in a long line on
976
+ the other side of the road to let the vehicle pass them; much to the
977
+ astonishment of two pretty young ladies and a sweet little girl, about
978
+ Freddy's age, who were leaning comfortably back in the handsome
979
+ barouche.
980
+
981
+ "Why, Peter!" exclaimed one of the ladies, "what in the world is all
982
+ this?"
983
+
984
+ "This!" cried Peter, running up to the carriage, "why, these are the
985
+ Dashahed Zouaves, Miss Carlton. We have been in camp ever since Monday.
986
+ Good morning, Miss Jessie," to the little girl on the front seat, who
987
+ was looking on with deep interest.
988
+
989
+ "Oh, to be sure, I remember," said Miss Carlton, laughing; "come,
990
+ introduce the Zouaves, Peter; we are wild to know them!"
991
+
992
+ The boys clustered eagerly about the carriage and a lively chat took
993
+ place. The Zouaves, some blushing and bashful, others frank and
994
+ confident, and all desperately in love already with pretty little
995
+ Jessie, related in high glee their adventures--except the celebrated
996
+ court martial--and enlarged glowingly upon the all-important subject of
997
+ the grand review.
998
+
999
+ Colonel Freddy, of course, played a prominent part in all this, and with
1000
+ his handsome face, bright eyes, and frank, gentlemanly ways, needed only
1001
+ those poor lost curls to be a perfect picture of a soldier. He chattered
1002
+ away with Miss Lucy, the second sister, and obtained her special promise
1003
+ that she would plead their cause with Mr. Schermerhorn in case the
1004
+ united petitions of the corps should fail. The young ladies did not know
1005
+ of Mrs. Schermerhorn's departure, but Freddy and Peter together coaxed
1006
+ them to come up to the house "anyhow." The carriage was accordingly
1007
+ taken into the procession, and followed it meekly to the house; the
1008
+ Zouaves insisting on being escort, much to the terror of the young
1009
+ ladies; who were in constant apprehension that the rear rank and the
1010
+ horses might come to kicks--not to say blows--and the embarrassment of
1011
+ the coachman; who, as they were constantly stopping unexpectedly to turn
1012
+ round and talk, didn't know "where to have them," as the saying is.
1013
+ However, they reached their destination in safety before long, and
1014
+ found Mr. Schermerhorn seated on the piazza. He hastened forward to meet
1015
+ them, with the cordial greeting of an old friend.
1016
+
1017
+ "Well, old bachelor," said Miss Carlton, gayly, as the young ladies
1018
+ ascended the steps, "you see we have come to visit you in state, with
1019
+ the military escort befitting patriotic young ladies who have four
1020
+ brothers on the Potomac. What has become of Madame, please?"
1021
+
1022
+ "Gone to Niagara and left me a 'lone lorn creetur;'" said Mr.
1023
+ Schermerhorn, laughing. "Basely deserted me when my farming couldn't be
1024
+ left. But how am I to account for the presence of the military,
1025
+ mademoiselle?"
1026
+
1027
+ "Really, I beg their pardons," exclaimed Miss Carlton. "They have come
1028
+ on a special deputation to you, Mr. Schermerhorn, so pray don't let us
1029
+ interrupt business."
1030
+
1031
+ Thus apostrophised, the boys scampered eagerly up the steps; and Freddy,
1032
+ a little bashful, but looking as bright as a button, delivered the
1033
+ following brief oration: "Mr. Schermerhorn: I want--that is, the boys
1034
+ want--I mean we all want--to have a grand review on Saturday, and ask
1035
+ our friends to look on. Will you let us do it, please?"
1036
+
1037
+ "Certainly, with the greatest pleasure!" replied Mr. Schermerhorn,
1038
+ smiling; "but what will become of you good people when I tell you that
1039
+ I have just received a letter from Mrs. Schermerhorn, asking me to join
1040
+ her this week instead of next, and bring Peter with me."
1041
+
1042
+ "Oh! father, please let me stay!" interrupted Peter; "can't you tell ma
1043
+ I've joined the army for the war? We all want to stay like everything!"
1044
+
1045
+ "And forage for yourselves?" said his father, laughing. "No, the army
1046
+ must give you up, and lose a valuable member, Master Peter; but just
1047
+ have the goodness to listen a moment. The review shall take place, but
1048
+ as the camp will have to break up on Saturday instead of Monday, as I
1049
+ had intended, the performances must come off to-morrow. Does that suit
1050
+ your ideas?"
1051
+
1052
+ The boys gave a delighted consent to this arrangement, and now the only
1053
+ thing which dampened their enjoyment was the prospect of such a speedy
1054
+ end being put to their camp life. "Confound it! what was the fun for a
1055
+ fellow to be poked into a stupid watering place, where he must bother to
1056
+ keep his hair parted down the middle, and a clean collar stiff enough to
1057
+ choke him on from morning till night?" as Tom indignantly remarked to
1058
+ George and Will the same evening. "The fact is, this sort of thing is
1059
+ _the_ thing for a _man_ after all!" an opinion in which the other _men_
1060
+ fully concurred.
1061
+
1062
+ But let us return to the piazza, where we have left the party. After a
1063
+ few moments more spent in chatting with Mr. Schermerhorn, it was decided
1064
+ to accept Colonel Freddy's polite invitation, which he gave with such a
1065
+ bright little bow, to inspect the camp. You may be sure it was in
1066
+ apple-pie order, for Jerry, who had taken the Zouaves under his special
1067
+ charge, insisted on their keeping it in such a state of neatness as only
1068
+ a soldier ever achieved. The party made an extremely picturesque
1069
+ group--the gay uniforms of the Zouaves, and light summer dresses of the
1070
+ ladies, charmingly relieved against the background of trees; while Mr.
1071
+ Schermerhorn's stately six feet, and somewhat portly proportions, quite
1072
+ reminded one of General Scott; especially among such a small army; in
1073
+ which George alone quite came up to the regulation "63 inches."
1074
+
1075
+ Little Jessie ran hither and thither, surrounded by a crowd of adorers,
1076
+ who would have given their brightest buttons, every "man" of them, to be
1077
+ the most entertaining fellow of the corps. They showed her the battery
1078
+ and the stacks of shining guns--made to stand up by Jerry in a wonderful
1079
+ fashion that the boys never could hope to attain--the inside of all the
1080
+ tents, and the smoke guard house (Tom couldn't help a blush as he looked
1081
+ in); and finally, as a parting compliment (which, let me tell you, is
1082
+ the greatest, in a boy's estimation, that can possibly be paid), Freddy
1083
+ made her a present of his very largest and most gorgeous "glass agates;"
1084
+ one of which was all the colors of the rainbow, and the other
1085
+ patriotically adorned with the Stars and Stripes in enamel. Peter
1086
+ climbed to the top of the tallest cherry tree, and brought her down a
1087
+ bough at least a yard and a half long, crammed with "ox hearts;" Harry
1088
+ eagerly offered to make any number of "stunning baskets" out of the
1089
+ stones, and in short there never was such a belle seen before.
1090
+
1091
+ "Oh, a'int she jolly!" was the ruling opinion among the Zouaves. A
1092
+ private remark was also circulated to the effect that "Miss Jessie was
1093
+ stunningly pretty."
1094
+
1095
+ The young ladies at last said good-by to the camp; promising faithfully
1096
+ to send all the visitors they could to the grand review, and drove off
1097
+ highly entertained with their visit. Mr. Schermerhorn decided to take
1098
+ the afternoon boat for the city and return early Friday morning, and the
1099
+ boys, left to themselves, began to think of dinner, as it was two
1100
+ o'clock. A brisk discussion was kept up all dinner time you may be sure,
1101
+ concerning the event to come off on the morrow.
1102
+
1103
+ "I should like to know, for my part, what we do in a review," said
1104
+ Jimmy, balancing his fork artistically on the end of his finger, and
1105
+ looking solemnly round the table.
1106
+
1107
+ "Why, show off everything we know!" said Charley Spicer. "March about,
1108
+ and form into ranks and columns, and all that first, then do charming
1109
+ "parade rest," "'der humps!" and the rest of it; and finish off by
1110
+ firing off our guns, and showing how we can't hit anything by any
1111
+ possibility!"
1112
+
1113
+ "But these guns won't fire off!" objected Jimmy.
1114
+
1115
+ "Well, the cannon then!"
1116
+
1117
+ "But I'm sure father won't let us have any powder," said Peter
1118
+ disconsolately. "You can't think how I burnt the end of my nose last
1119
+ Fourth with powder! It was so sore I couldn't blow it for a week!"
1120
+
1121
+ The boys all burst out laughing at this dreadful disaster, and George
1122
+ said, "You weren't lighting it with the end of your nose, were you?"
1123
+
1124
+ "No; but I was stooping over, charging one of my cannon, and I dropped
1125
+ the 'punk' right in the muzzle somehow, and, would you believe it, the
1126
+ nasty thing went off and burnt my nose! and father said I shouldn't play
1127
+ with powder any more, because I might have put out my eyes."
1128
+
1129
+ "Well, we must take it out in marching, then," said Freddy, with a
1130
+ tremendous sigh.
1131
+
1132
+ "No, hold on; I'll tell you what we can do!" cried Tom, eagerly. "I have
1133
+ some 'double headers' left from the Fourth; we might fire them out of
1134
+ the cannon; they make noise enough, I'm sure. I'll write to my mother
1135
+ this afternoon and get them."
1136
+
1137
+ The boys couldn't help being struck with the generosity of this offer,
1138
+ coming from Tom after their late rather unkind treatment of him; and the
1139
+ older ones especially were very particular to thank him for his present.
1140
+ As soon as dinner was over, he started for the house to ask Mr.
1141
+ Schermerhorn to carry his message. As he hurried along the road, his
1142
+ bright black eyes sparkling with the happiness of doing a good action,
1143
+ he heard trotting steps behind him, felt an arm stealing round his neck,
1144
+ schoolboy fashion, and there was Freddy.
1145
+
1146
+ "I ran after you all the way," he pantingly said. "I want to tell you,
1147
+ dear Tom, how much we are obliged to you for giving us your crackers,
1148
+ and how sorry we are that we acted so rudely to you the other day.
1149
+ Please forgive us; we all like you so much, and we would feel as mean as
1150
+ anything to take your present without begging pardon. George, Peter, and
1151
+ I feel truly ashamed of ourselves every time we think of that abominable
1152
+ court martial."
1153
+
1154
+ "There, old fellow, don't say a word more about it!" was the hearty
1155
+ response; and Tom threw his arm affectionately about his companion. "It
1156
+ was my fault, Freddy, and all because I was mad at poor old Jerry; how
1157
+ silly! I was sorry for what I said right afterward."
1158
+
1159
+ "Then we are friends again?" cried Freddy, joyfully.
1160
+
1161
+ "Yes; I'll like you as long as I live! and ever so much longer." And so
1162
+ we will leave the two on their walk to the house, and close this
1163
+ abominably long chapter.
1164
+
1165
+
1166
+
1167
+
1168
+ CHAPTER IV.
1169
+
1170
+ A GRAND REVIEW.
1171
+
1172
+
1173
+ THERE are really scarcely words enough in the dictionary properly to
1174
+ describe the immense amount of drill got through with by the Dashahed
1175
+ Zouaves between three o'clock that afternoon and twelve, noon, of the
1176
+ following day. This Friday afternoon was going to be memorable in
1177
+ history for one of the most splendid reviews on record. They almost ran
1178
+ poor old Jerry off his legs in their eagerness to go over every possible
1179
+ variety of exercise known to "Hardee's Tactics," and nearly dislocated
1180
+ their shoulder blades trying to waggle their elbows backward and forward
1181
+ all at once when they went at "double quick;" at the same time keeping
1182
+ the other arm immovably pinioned to their sides. Then that wonderful
1183
+ operation of stacking the rebellious guns, which obstinately clattered
1184
+ down nine times and a half out of ten, had to be gone through with, and
1185
+ a special understanding promulgated in the corps as to when Jerry's
1186
+ "'der arms!" meant "shoulder arms," and when "order arms" (or bringing
1187
+ all the muskets down together with a bang); and, in short, there never
1188
+ was such a busy time seen in camp before.
1189
+
1190
+ Friday morning dawned, if possible, still more splendidly than any of
1191
+ the preceding days, with a cool, refreshing breeze, just enough snowy
1192
+ clouds in the sky to keep off the fiery summer heat in a measure, and
1193
+ not a headache nor a heartache among the Zouaves to mar the pleasure of
1194
+ the day. The review was to come off at four o'clock, when the July sun
1195
+ would be somewhat diminished in warmth, and from some hints that Jerry
1196
+ let fall, Mrs. Lockitt, and the fat cook, Mrs. Mincemeat, were holding
1197
+ high council up at the house, over a certain collation to be partaken of
1198
+ at the end of the entertainments.
1199
+
1200
+ As the day wore on the excitement of our friends the Zouaves increased.
1201
+ They could hardly either eat their dinners, or sit down for more than a
1202
+ moment at a time; and when, about three o'clock, Mr. Schermerhorn
1203
+ entered the busy little camp, he was surrounded directly with a crowd of
1204
+ eager questioners, all talking at once, and making as much noise as a
1205
+ colony of rooks.
1206
+
1207
+ "Patience, patience, my good friends!" laughed Mr. Schermerhorn, holding
1208
+ up a finger for silence. "Every one in turn. Tom, here are your 'double
1209
+ headers,' with love from your mother. Fred, I saw your father to-day,
1210
+ and they are all coming down to the review. George, here is a note left
1211
+ for you in my box at the Post Office, and Dashahed Zouaves in
1212
+ general--I have one piece of advice to give you. Get dressed quietly,
1213
+ and then sit down and rest yourselves. You will be tired out by the end
1214
+ of the afternoon, at all events; so don't frisk about more than you can
1215
+ help at present;" and Mr. Schermerhorn left the camp; while the boys,
1216
+ under strong pressure of Jerry, and the distant notes of a band which
1217
+ suddenly began to make itself heard, dressed themselves as nicely as
1218
+ they could, and sat down with heroic determination to wait for four
1219
+ o'clock.
1220
+
1221
+ Presently, carriages began to crunch over the gravel road one after
1222
+ another, filled with merry children, and not a few grown people besides.
1223
+ Mr. and Mrs. Jourdain, with Bella, were among the first to arrive; and
1224
+ soon after the Carltons' barouche drove up. Jessie, for some unknown
1225
+ reason, was full of half nervous glee, and broke into innumerable little
1226
+ trilling laughs when any one spoke to her. A sheet of lilac note paper,
1227
+ folded up tight, which she held in her hand, seemed to have something to
1228
+ do with it, and her soft brown curls and spreading muslin skirts were in
1229
+ equal danger of irremediable "mussing," as she fidgetted about on the
1230
+ carriage seat, fully as restless as any of the Zouaves.
1231
+
1232
+ Mr. Schermerhorn received his guests on the piazza, where all the chairs
1233
+ in the house, one would think, were placed for the company, as the best
1234
+ view of the lawn was from this point. To the extreme right were the
1235
+ white tents of the camp, half hidden by the immense trunk of a
1236
+ magnificent elm, the only tree that broke the smooth expanse of the
1237
+ lawn. On the left a thick hawthorne hedge separated the ornamental
1238
+ grounds from the cultivated fields of the place, while in front the view
1239
+ was bounded by the blue and sparkling waters of the Sound.
1240
+
1241
+ Soon four o'clock struck; and, punctual to the moment, the Zouaves could
1242
+ be seen in the distance, forming their ranks. Jerry, in his newest suit
1243
+ of regimentals, bustled about here and there, and presently his voice
1244
+ was heard shouting, "Are ye all ready now? SQUAD, 'SHUN! HARCH!" and to
1245
+ the melodious notes of "Dixie," performed by the band, which was
1246
+ stationed nearer the house, the regiment started up the lawn! Jerry
1247
+ marching up beside them, and occasionally uttering such mysterious
1248
+ mandates as, "Easy in the centre! keep your fours in the wheel! _Steady_
1249
+ now!"
1250
+
1251
+ Oh, what a burst of delighted applause greeted them as they neared the
1252
+ house! The boys hurrahed, the girls clapped their hands, ladies and
1253
+ gentlemen waved their hats and handkerchiefs; while the Dashahed
1254
+ Zouaves, too soldierly _now_ to grin, drew up in a long line, and stood
1255
+ like statues, without so much as winking.
1256
+
1257
+ And now the music died away, and everybody was as still as a mouse,
1258
+ while Jerry advanced to the front, and issued the preliminary order:
1259
+
1260
+ "To the rear--open order!" and the rear rank straightway fell back;
1261
+ executing, in fact, that wonderful "tekkinapesstoth'rare" which had
1262
+ puzzled them so much on the first day of their drilling. Then came those
1263
+ other wonderful orders:
1264
+
1265
+ "P'_sent_ humps!
1266
+ "_Der_ humps!
1267
+ "Gr'_nd_ humps!"
1268
+
1269
+ And so on, at which the muskets flew backward and forward, up and down,
1270
+ with such wonderful precision. The spectators were delighted beyond
1271
+ measure; an enthusiastic young gentleman, with about three hairs on
1272
+ each side of his mustache, who belonged to the Twenty-second Regiment,
1273
+ declared "It was the best drill he had seen out of his company room!" a
1274
+ celebrated artist, whose name I dare not tell for the world, sharpened
1275
+ his pencil, and broke the point off three times in his hurry, and at
1276
+ last produced the beautiful sketch which appears at the front of this
1277
+ volume; while all the little boys who were looking on, felt as if they
1278
+ would give every one of their new boots and glass agates to belong to
1279
+ the gallant Dashahed Zouaves.
1280
+
1281
+ [Illustration: "DOUBLE-QUICK."]
1282
+
1283
+ After the guns had been put in every possible variety of position, the
1284
+ regiment went through their marching. They broke into companies,
1285
+ formed the line again, divided in two equal parts, called "breaking into
1286
+ platoons," showed how to "wheel on the right flank," and all manner of
1287
+ other mysteries.
1288
+
1289
+ Finally, they returned to their companies, and on Jerry's giving the
1290
+ order, they started at "double quick" (which is the most comical
1291
+ tritty-trot movement you can think of), dashed down the <DW72> of the
1292
+ lawn, round the great elm, up hill again full speed, and in a moment
1293
+ more were drawn up in unbroken lines before the house, and standing once
1294
+ again like so many statues.
1295
+
1296
+ It was really splendid! Round after round of applause greeted the
1297
+ Zouaves, who kept their positions for a moment, then snatching off
1298
+ their saucy little fez caps, they gave the company three cheers in
1299
+ return, of the most tremendous description; which quite took away the
1300
+ little remaining breath they had after the "double quick."
1301
+
1302
+ Thus ended the first part of the review; and now, with the assistance of
1303
+ their rather Lilliputian battery, and Tom's double headers, they went
1304
+ through some firing quite loud enough to make the little girls start and
1305
+ jump uncomfortably; so this part of the entertainment was brought to
1306
+ rather a sudden conclusion. Jerry had just issued the order, "Close up
1307
+ in ranks to dismiss," when Mr. Schermerhorn, who, with Miss Carlton and
1308
+ Jessie, had left the piazza a few minutes before, came forward, saying,
1309
+ "Have the goodness to wait a moment, Colonel; there is one more ceremony
1310
+ to go through with."
1311
+
1312
+ The boys looked at each other in silent curiosity, wondering what could
1313
+ be coming; when, all at once, the chairs on the piazza huddled back in a
1314
+ great hurry, to make a lane for a beautiful little figure, which came
1315
+ tripping from the open door.
1316
+
1317
+ It was Jessie; but a great change had been made in her appearance. Over
1318
+ her snowy muslin skirts she had a short classic tunic of red, white, and
1319
+ blue silk; a wreath of red and white roses and bright blue jonquils
1320
+ encircled her curls, and in her hand she carried a superb banner. It
1321
+ was made of dark blue silk, trimmed with gold fringe; on one side was
1322
+ painted an American eagle, and on the other the words "Dashahed
1323
+ Zouaves," surrounded with a blaze of glory and gold stars. She advanced
1324
+ to the edge of the piazza, and in a clear, sweet voice, a little
1325
+ tremulous, but very distinct, she said:
1326
+
1327
+ "COLONEL AND BRAVE SOLDIERS:
1328
+
1329
+ "I congratulate you, in the name of our friends,
1330
+ on the success you have achieved. You have shown
1331
+ us to-day what Young America can do; and as a
1332
+ testimonial of our high admiration, I present you
1333
+ the colors of your regiment!
1334
+
1335
+ "Take them, as the assurance that our hearts are
1336
+ with you; bear them as the symbol of the Cause you
1337
+ have enlisted under; and should you fall beneath
1338
+ them on the field of battle, I bid you lay down
1339
+ your lives cheerfully for the flag of your
1340
+ country, and breathe with your last sigh the name
1341
+ of the Union! Colonel, take your colors!"
1342
+
1343
+ Freddy's cheeks grew crimson, and the great tears swelled to his eyes as
1344
+ he advanced to take the flag which Jessie held toward him. And now our
1345
+ little Colonel came out bright, sure enough. Perhaps not another member
1346
+ of the regiment, called upon to make a speech in this way, could have
1347
+ thought of a word to reply; but Freddy's quick wit supplied him with
1348
+ the right ideas; and it was with a proud, happy face, and clear voice
1349
+ that he responded:
1350
+
1351
+ "LADIES AND GENTLEMEN:
1352
+
1353
+ "I thank you, in the name of my regiment, for the
1354
+ honor you have done us. Inspired by your praises,
1355
+ proud to belong to the army of the Republic, we
1356
+ hope to go on as we have begun. To your kindness
1357
+ we owe the distinguishing colors under which we
1358
+ march hereafter; and by the Union for which we
1359
+ fight, they shall never float over a retreating
1360
+ battalion!"
1361
+
1362
+ Oh! the cheers and clapping of hands which followed this little speech!
1363
+ Everybody was looking at Freddy as he stood there, the colors in his
1364
+ hand, and the bright flush on his cheek, with the greatest admiration.
1365
+ Of course, his parents weren't proud of him; certainly not!
1366
+
1367
+ But the wonders were not at an end yet; for suddenly the band began
1368
+ playing a new air, and to this accompaniment, the sweet voice of some
1369
+ lady unseen, but which sounded to those who knew, wonderfully like Miss
1370
+ Lucy Carlton's, sang the following patriotic ballad:
1371
+
1372
+ "We will stand by our Flag--let it lead where it will--
1373
+ Our hearts and our hopes fondly cling to it still;
1374
+ Through battle and danger our Cause must be won--
1375
+ Yet forward! undaunted we'll follow it on!
1376
+ 'Tis the Flag! the old Flag! still unsullied and bright,
1377
+ As when first its fair stars lit oppression's dark night
1378
+ And the standard that guides us forever shall be
1379
+ The Star-spangled Banner, the Flag of the Free!
1380
+
1381
+ "A handful of living--an army of dead,
1382
+ The last charge been made and the last prayer been said;
1383
+ What is it--as sad we retreat from the plain
1384
+ That cheers us, and nerves us to rally again?
1385
+ 'Tis the Flag! the old Flag! to our country God-given,
1386
+ That gleams through our ranks like a glory from heaven!
1387
+ And the foe, as they fly, in our vanguard shall see
1388
+ The Star-spangled Banner, the Flag of the Free!
1389
+
1390
+ "We will fight for the Flag, by the love that we bear
1391
+ In the Union and Freedom, we'll baffle despair;
1392
+ Trust on in our country, strike home for the right,
1393
+ And Treason shall vanish like mists of the night.
1394
+ Then cheer the old Flag! every star in it glows,
1395
+ The terror of traitors! the curse of our foes!
1396
+ And the victory that crowns us shall glorified be,
1397
+ 'Neath the Star-spangled Banner, the Flag of the Free!"
1398
+
1399
+ As the song ended, there was another tumult of applause; and then the
1400
+ band struck up a lively quickstep, and the company, with the Zouaves
1401
+ marching ahead, poured out on the lawn toward the camp, where a
1402
+ bountiful collation was awaiting them, spread on the regimental table.
1403
+ Two splendid pyramids of flowers ornamented the centre, and all manner
1404
+ of "goodies," as the children call them, occupied every inch of space on
1405
+ the sides. At the head of the table Jerry had contrived a canopy from a
1406
+ large flag, and underneath this, Miss Jessie, Colonel Freddy, with the
1407
+ other officers, and some favored young ladies of their own age, took
1408
+ their seats. The other children found places around the table, and a
1409
+ merrier fete champetre never was seen. The band continued to play lively
1410
+ airs from time to time, and I really can give you my word as an author,
1411
+ that nobody looked cross for a single minute!
1412
+
1413
+ Between you and me, little reader, there had been a secret arrangement
1414
+ among the grown folks interested in the regiment, to get all this up in
1415
+ such fine style. Every one had contributed something to give the Zouaves
1416
+ their flag and music, while to Mr. Schermerhorn it fell to supply the
1417
+ supper; and arrangements had been made and invitations issued since the
1418
+ beginning of the week. The regiment, certainly, had the credit, however,
1419
+ of getting up the review, it only having been the idea of their good
1420
+ friends to have the entertainment and flag presentation. So there was a
1421
+ pleasant surprise on both sides; and each party in the transaction, was
1422
+ quite as much astonished and delighted as the other could wish.
1423
+
1424
+ The long sunset shadows were rapidly stealing over the velvet sward as
1425
+ the company rose from table, adding a new charm to the beauty of the
1426
+ scene. Everywhere the grass was dotted with groups of elegant ladies and
1427
+ gentlemen, and merry children, in light summer dresses and quaintly
1428
+ pretty uniforms. The little camp, with the stacks of guns down its
1429
+ centre, the bayonets flashing in the last rays of the sun, was all
1430
+ crowded and brilliant with happy people; looking into the tents and
1431
+ admiring their exquisite order, inspecting the bright muskets, and
1432
+ listening eagerly or good-humoredly, as they happened to be children or
1433
+ grown people, to the explanations and comments of the Zouaves.
1434
+
1435
+ And on the little grassy knoll, where the flag staff was planted,
1436
+ central figure of the scene, stood Colonel Freddy, silent and thoughtful
1437
+ for the first time to-day, with Jerry beside him. The old man had
1438
+ scarcely left his side since the boy took the flag; he would permit no
1439
+ one else to wait upon him at table, and his eyes followed him as he
1440
+ moved among the gay crowd, with a glance of the utmost pride and
1441
+ affection. The old volunteer seemed to feel that the heart of a soldier
1442
+ beat beneath the little dandy ruffled shirt and gold-laced jacket of the
1443
+ young Colonel. Suddenly, the boy snatches up again the regimental
1444
+ colors; the Stars and Stripes, and little Jessie's flag, and shakes
1445
+ them out to the evening breeze; and as they flash into view and once
1446
+ more the cheers of the Zouaves greet their colors, he says, with
1447
+ quivering lip and flashing eye, "Jerry, if God spares me to be a man,
1448
+ I'll live and die a soldier!"
1449
+
1450
+ The soft evening light was deepening into night, and the beautiful
1451
+ planet Venus rising in the west, when the visitors bade adieu to the
1452
+ camp; the Zouaves were shaken hands with until their wrists fairly
1453
+ ached; and then they all shook hands with "dear" Jessie, as Charley was
1454
+ heard to call her before the end of the day, and heard her say in her
1455
+ soft little voice how sorry she was they must go to-morrow (though she
1456
+ certainly couldn't have been sorrier than _they_ were), and then the
1457
+ good people all got into their carriages again, and drove off; waving
1458
+ their handkerchiefs for good-by as long as the camp could be seen; and
1459
+ so, with the sound of the last wheels dying away in the distance, ended
1460
+ the very end of
1461
+
1462
+ THE GRAND REVIEW.
1463
+
1464
+
1465
+
1466
+
1467
+ CHAPTER V.--AND LAST.
1468
+
1469
+ "HOME, SWEET HOME."
1470
+
1471
+
1472
+ AND now, at last, had come that "day of disaster," when Camp McClellan
1473
+ must be deserted. The very sun didn't shine so brilliantly as usual,
1474
+ thought the Zouaves; and it was positively certain that the past five
1475
+ days, although they had occurred in the middle of summer, were the very
1476
+ shortest ever known! Eleven o'clock was the hour appointed for the
1477
+ breaking up of the camp, in order that they might return to the city by
1478
+ the early afternoon boat.
1479
+
1480
+ "Is it possible we have been here a week?" exclaimed Jimmy, as he sat
1481
+ down to breakfast. "It seems as if we had only come yesterday."
1482
+
1483
+ "What a jolly time it has been!" chimed in Charley Spicer. "I don't want
1484
+ to go to Newport a bit. Where are you going, Tom?"
1485
+
1486
+ "To Baltimore--but I don't mean to Secesh!" added Tom, with a little
1487
+ blush. "I have a cousin in the Palmetto Guards at Charleston, and that's
1488
+ one too many rebels in the family."
1489
+
1490
+ "Never mind!" cried George Chadwick; "the Pringles are a first rate
1491
+ family; the rest of you are loyal enough, I'm sure!" and George gave
1492
+ Tom such a slap on the back, in token of his good will, that it quite
1493
+ brought the tears into his eyes.
1494
+
1495
+ When breakfast was over, the Zouaves repaired to their tents, and
1496
+ proceeded to pack their clothes away out of the lockers. They were not
1497
+ very scientific packers, and, in fact, the usual mode of doing the
1498
+ business was to ram everything higgledy-piggledy into their valises, and
1499
+ then jump on them until they consented to come together and be locked.
1500
+ Presently Jerry came trotting down with a donkey cart used on the farm,
1501
+ and under his directions the boys folded their blankets neatly up, and
1502
+ placed them in the vehicle, which then drove off with its load, leaving
1503
+ them to get out and pile together the other furnishings of the tents;
1504
+ for, of course, as soldiers, they were expected to wind up their own
1505
+ affairs, and we all know that boys will do considerable _hard work_ when
1506
+ it comes in the form of _play_. Just as the cart, with its vicious
1507
+ little wrong-headed steed, had tugged, and jerked, and worried itself
1508
+ out of sight, a light basket carriage, drawn by two dashing black
1509
+ Canadian ponies, drew up opposite the camp, and the reins were let fall
1510
+ by a young lady in a saucy "pork pie" straw hat, who was driving--no
1511
+ other than Miss Carlton, with Jessie beside her. The boys eagerly
1512
+ surrounded the little carriage, and Miss Carlton said, laughing, "Jessie
1513
+ begged so hard for a last look at the camp, that I had to bring her. So
1514
+ you are really going away?"
1515
+
1516
+ "Really," repeated Freddy; "but I am so glad you came, Miss Jessie, just
1517
+ in time to see us off."
1518
+
1519
+ "You know soldiers take themselves away houses and all," said George;
1520
+ "you will see the tents come down with a run presently."
1521
+
1522
+ "And here comes Jerry to help us!" added Harry. As he spoke, the donkey
1523
+ cart rattled up, and Jerry, touching his cap to the ladies, got out, and
1524
+ prepared to superintend the downfall of the tents. By his directions,
1525
+ two of the Zouaves went to each tent, and pulled the stakes first from
1526
+ one corner, then the other; then they grasped firmly the pole which
1527
+ supported the centre, and when the sergeant ejaculated "Now!" like a
1528
+ flash! the tents slid smoothly to the ground all at the same moment,
1529
+ just as you may have made a row of blocks fall down by upsetting the
1530
+ first one.
1531
+
1532
+ And now came the last ceremony, the hauling down of the flag.
1533
+
1534
+ "Stand by to fire a salute!" shouted Jerry, and instantly a company was
1535
+ detached, who brought the six little cannon under the flagstaff, and
1536
+ charged them with the last of the double headers, saved for this
1537
+ purpose; Freddy stood close to the flagstaff, with the halyards ready in
1538
+ his hands. Crack! fizz! went six matches for the cannon. "Make ready!
1539
+ apply light, FIRE!"
1540
+
1541
+ BANG! and the folds of the flag stream out proudly in the breeze, as it
1542
+ rapidly descends the halyards, and flutters softly to the greensward.
1543
+
1544
+ There was perfectly dead silence for a moment; then the voice of Mr.
1545
+ Schermerhorn was heard calling, "Come, boys, are you ready? Jump in,
1546
+ then, it is time to start for the boat." The boys turned and saw the
1547
+ carriages which had brought them so merrily to the camp waiting to
1548
+ convey them once more to the wharf; while a man belonging to the farm
1549
+ was rapidly piling the regimental luggage into a wagon.
1550
+
1551
+ With sorrowful faces the Zouaves clustered around the pretty pony
1552
+ chaise; shaking hands once more with Jessie, and internally vowing to
1553
+ adore her as long as they lived. Then they got into the carriages, and
1554
+ old Jerry grasped Freddy's hand with an affectionate "Good-by, my little
1555
+ Colonel, God bless ye! Old Jerry won't never forget your noble face as
1556
+ long as he lives." It would have seemed like insulting the old man to
1557
+ offer him money in return for his loving admiration, but the handsome
1558
+ gilt-edged Bible that found its way to him soon after the departure of
1559
+ the regiment, was inscribed with the irregular schoolboy signature of
1560
+ "Freddy Jourdain, with love to his old friend Jeremiah Pike."
1561
+
1562
+ As for the regimental standards, they were found to be rather beyond
1563
+ the capacity of a rockaway crammed full of Zouaves, so Tom insisted on
1564
+ riding on top of the baggage, that he might have the pleasure of
1565
+ carrying them all the way. Up he mounted, as brisk as a lamplighter,
1566
+ with that monkey, Peter, after him, the flags were handed up, and with
1567
+ three ringing cheers, the vehicles started at a rapid trot, and the
1568
+ regiment was fairly off. They almost broke their necks leaning back to
1569
+ see the last of "dear Jessie," until the locusts hid them from sight,
1570
+ when they relapsed into somewhat dismal silence for full five minutes.
1571
+
1572
+ As Peter was going on to Niagara with his father, Mr. Schermerhorn
1573
+ accompanied the regiment to the city, which looked dustier and red
1574
+ brickier (what a word!) than ever, now that they were fresh from the
1575
+ lovely green of the country. By Mr. Schermerhorn's advice, the party
1576
+ took possession of two empty Fifth avenue stages which happened to be
1577
+ waiting at the Fulton ferry, and rode slowly up Broadway to Chambers
1578
+ street, where Peter and his father bid them good-by, and went off to the
1579
+ depot. As Peter had declined changing his clothes before he left, they
1580
+ had to travel all the way to Buffalo with our young friend in this
1581
+ unusual guise; but, as people had become used to seeing soldiers
1582
+ parading about in uniform, they didn't seem particularly surprised,
1583
+ whereat Master Peter was rather disappointed.
1584
+
1585
+ To go back to the Zouaves, however. When the stages turned into Fifth
1586
+ avenue, they decided to get out; and after forming their ranks in fine
1587
+ style, they marched up the avenue, on the sidewalk this time, stopping
1588
+ at the various houses or street corners where they must bid adieu to one
1589
+ and another of their number, promising to see each other again as soon
1590
+ as possible.
1591
+
1592
+ At last only Tom and Freddy were left to go home by themselves. As they
1593
+ marched along, keeping faultless step, Freddy exclaimed, "I tell you
1594
+ what, Tom! I mean to ask my father, the minute he comes home, to let me
1595
+ go to West Point as soon as I leave school! I must be a soldier--I
1596
+ can't think of anything else!"
1597
+
1598
+ "That's just what I mean to do!" cried Tom, with sparkling eyes; "and,
1599
+ Fred, if you get promoted before me, promise you will have me in your
1600
+ regiment, won't you?"
1601
+
1602
+ "Yes I will, certainly!" answered Freddy; "but you're the oldest, Tom,
1603
+ and, you know, the oldest gets promoted first; so mind you don't forget
1604
+ me when you come to your command!"
1605
+
1606
+ As he spoke, they reached his own home; and our hero, glad after all to
1607
+ come back to father, mother, and sister, bounded up the steps, and rang
1608
+ the bell good and _hard_, just to let Joseph know that a personage of
1609
+ eminence had arrived. As the door opened, he turned gayly round, cap in
1610
+ hand, saying, "Good-by, Maryland; you've left the regiment, but you'll
1611
+ never leave the Union!" and the last words he heard Tom say were, "No,
1612
+ by George, _never_!"
1613
+
1614
+ * * * * *
1615
+
1616
+ And now, dear little readers, my boy friends in particular, the history
1617
+ of Freddy Jourdain must close. He still lives in New York, and attends
1618
+ Dr. Larned's school, where he is at the head of all his classes.
1619
+
1620
+ The Dashahed Zouaves have met very often since the encampment, and had
1621
+ many a good drill in their room--the large attic floor which Mr.
1622
+ Jourdain allowed them for their special accommodation, and where the
1623
+ beautiful regimental colors are carefully kept, to be proudly displayed
1624
+ in every parade of the Zouaves.
1625
+
1626
+ When he is sixteen, the boy Colonel is to enter West Point Academy, and
1627
+ learn to be a real soldier; while Tom--poor Tom, who went down to
1628
+ Baltimore that pleasant July month, promising so faithfully to join
1629
+ Freddy in the cadet corps, may never see the North again.
1630
+
1631
+ And in conclusion let me say, that should our country again be in danger
1632
+ in after years, which God forbid, we may be sure that first in the
1633
+ field, and foremost in the van of the grand army, will be our gallant
1634
+ young friend,
1635
+
1636
+ COLONEL FREDDY.
1637
+
1638
+
1639
+
1640
+
1641
+ CONCLUSION.
1642
+
1643
+
1644
+ IT took a great many Saturday afternoons to finish the story of "Colonel
1645
+ Freddy," and the children returned to it at each reading with renewed
1646
+ and breathless interest. George and Helen couldn't help jumping up off
1647
+ their seats once or twice and clapping their hands with delight when
1648
+ anything specially exciting took place in the pages of the wonderful
1649
+ story that was seen "before it was printed," and a great many "oh's" and
1650
+ "ah's" testified to their appreciation of the gallant "Dashahed
1651
+ Zouaves." They laughed over the captive Tom, and cried over the true
1652
+ story of the old sergeant; and when at length the very last word had
1653
+ been read, and their mother had laid down the manuscript, George sprang
1654
+ up once more, exclaiming; "Oh, I wish I could be a boy soldier! Mamma,
1655
+ mayn't I recruit a regiment and camp out too?" "And oh! if I could only
1656
+ present a flag!" cried his sister; "I wish I had been Jessie; what a
1657
+ pity it wasn't all true!"
1658
+
1659
+ "And what if I should tell you," said their mother, laughing, "that a
1660
+ little bird has whispered in my ear that 'Colonel Freddy' was
1661
+ wonderfully like your little Long Island friend Hilton R----?"
1662
+
1663
+ "Oh, mamma! why, what makes you think so?"
1664
+
1665
+ "Oh, something funny I heard about him last summer; never mind what!"
1666
+
1667
+ The children wisely concluded that it was no use to ask any more
1668
+ questions; at the same moment solemnly resolving that the very next time
1669
+ they paid a visit to their aunt, who lived at Astoria, they would beg
1670
+ her to let them drive over to Mr. R----'s place, and find out all about
1671
+ it.
1672
+
1673
+ After this, there were no more readings for several Saturdays; but at
1674
+ last one morning when the children had almost given up all hopes of more
1675
+ stories, George opened his eyes on the sock hanging against the door,
1676
+ which looked more bulgy than ever. "Hurrah!" he shouted; "Aunt Fanny's
1677
+ daughter hasn't forgotten us, after all!" and dressing himself in a
1678
+ double quick, helter-skelter fashion, George dashed out into the entry,
1679
+ forgot his good resolution, and slid down the banisters like a streak of
1680
+ lightning and began pummelling on his sister's door with both fists;
1681
+ shouting, "Come, get up! get up, Nelly! here's another Sock story for
1682
+ us!"
1683
+
1684
+ This delightful announcement was quite sufficient to make Helen's
1685
+ stockings, which she was just drawing on in a lazy fashion, fly up to
1686
+ their places in a hurry; then she popped her button-over boots on the
1687
+ wrong feet, and had to take them off and try again; and, in short, the
1688
+ whole of her dressing was an excellent illustration of that time-honored
1689
+ maxim, "The more _haste_, the worse _speed_;" George, meanwhile,
1690
+ performing a distracted Indian war dance in the entry outside, until his
1691
+ father opened his door and wanted to know what the racket was all about.
1692
+
1693
+ "Socks! socks! father!" cried George, joyfully.
1694
+
1695
+ At this moment Helen came out, and the two children scampered down
1696
+ stairs, and sitting down side by side on the sofa, they proceeded to
1697
+ examine this second instalment of the Sock stories. They found it was
1698
+ again a whole book; and the title, on a little page by itself, read
1699
+ "GERMAN SOCKS."
1700
+
1701
+ "Oh, I am so glad!" said Helen. "These must be more stories like that
1702
+ dear 'Little White Angel.'"
1703
+
1704
+ And so they proved to be; for, on their mother's commencing to read the
1705
+ first story, it was found to be called, "God's Pensioners;" and
1706
+ commenced, "It was a cold--" but stop! halt! This book was to be devoted
1707
+ to "Colonel Freddy;" but if you will only go to Mr. Leavitt's, the
1708
+ publishers, you will there discover what was the rest of the second Sock
1709
+ Stories.
1710
+
1711
+ THE END.
1712
+
1713
+ * * * * *
1714
+
1715
+ Transcriber's Notes:
1716
+
1717
+ Obvious punctuation errors repaired.
1718
+
1719
+ Page 41, "dilemna" changed to "dilemma" (horns of this dilemma)
1720
+
1721
+ Page 81, "arttisically" changed to "artistically" (his fork
1722
+ artistically)
1723
+
1724
+
1725
+
1726
+
1727
+
1728
+ End of the Project Gutenberg EBook of Red, White, Blue Socks. Part Second, by
1729
+ Sarah L. Barrow
1730
+
1731
+ ***
data/test/29973.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/30312.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/30752.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/30754.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/30909.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/30981.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/31065.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/3129.txt ADDED
@@ -0,0 +1,1352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+ Produced by David Widger
5
+
6
+
7
+
8
+
9
+
10
+ THE STORY OF POCAHONTAS
11
+
12
+ By Charles Dudley Warner
13
+
14
+
15
+
16
+ The simple story of the life of Pocahontas is sufficiently romantic
17
+ without the embellishments which have been wrought on it either by the
18
+ vanity of Captain Smith or the natural pride of the descendants of this
19
+ dusky princess who have been ennobled by the smallest rivulet of her red
20
+ blood.
21
+
22
+ That she was a child of remarkable intelligence, and that she early
23
+ showed a tender regard for the whites and rendered them willing and
24
+ unwilling service, is the concurrent evidence of all contemporary
25
+ testimony. That as a child she was well-favored, sprightly, and
26
+ prepossessing above all her copper-colored companions, we can believe,
27
+ and that as a woman her manners were attractive. If the portrait taken
28
+ of her in London--the best engraving of which is by Simon de Passe--in
29
+ 1616, when she is said to have been twenty-one years old, does her
30
+ justice, she had marked Indian features.
31
+
32
+ The first mention of her is in "The True Relation," written by Captain
33
+ Smith in Virginia in 1608. In this narrative, as our readers have seen,
34
+ she is not referred to until after Smith's return from the captivity
35
+ in which Powhatan used him "with all the kindness he could devise." Her
36
+ name first appears, toward the close of the relation, in the following
37
+ sentence:
38
+
39
+ "Powhatan understanding we detained certain salvages, sent his daughter,
40
+ a child of tenne yeares old, which not only for feature, countenance,
41
+ and proportion, much exceedeth any of the rest of his people, but for
42
+ wit and spirit the only nonpareil of his country: this hee sent by his
43
+ most trusty messenger, called Rawhunt, as much exceeding in deformitie
44
+ of person, but of a subtill wit and crafty understanding, he with a long
45
+ circumstance told mee how well Powhatan loved and respected mee, and in
46
+ that I should not doubt any way of his kindness, he had sent his child,
47
+ which he most esteemed, to see mee, a Deere, and bread, besides for
48
+ a present: desiring mee that the Boy [Thomas Savage, the boy given by
49
+ Newport to Powhatan] might come again, which he loved exceedingly, his
50
+ little Daughter he had taught this lesson also: not taking notice at all
51
+ of the Indians that had been prisoners three daies, till that morning
52
+ that she saw their fathers and friends come quietly, and in good termes
53
+ to entreate their libertie.
54
+
55
+ "In the afternoon they [the friends of the prisoners] being gone, we
56
+ guarded them [the prisoners] as before to the church, and after prayer,
57
+ gave them to Pocahuntas the King's Daughter, in regard of her father's
58
+ kindness in sending her: after having well fed them, as all the time of
59
+ their imprisonment, we gave them their bows, arrowes, or what else
60
+ they had, and with much content, sent them packing: Pocahuntas, also we
61
+ requited with such trifles as contented her, to tel that we had used the
62
+ Paspaheyans very kindly in so releasing them."
63
+
64
+ The next allusion to her is in the fourth chapter of the narratives
65
+ which are appended to the "Map of Virginia," etc. This was sent home by
66
+ Smith, with a description of Virginia, in the late autumn of 1608. It
67
+ was published at Oxford in 1612, from two to three years after Smith's
68
+ return to England. The appendix contains the narratives of several of
69
+ Smith's companions in Virginia, edited by Dr. Symonds and overlooked
70
+ by Smith. In one of these is a brief reference to the above-quoted
71
+ incident.
72
+
73
+ This Oxford tract, it is scarcely necessary to repeat, contains no
74
+ reference to the saving of Smith's life by Pocahontas from the clubs of
75
+ Powhatan.
76
+
77
+ The next published mention of Pocahontas, in point of time, is in
78
+ Chapter X. and the last of the appendix to the "Map of Virginia," and is
79
+ Smith's denial, already quoted, of his intention to marry Pocahontas.
80
+ In this passage he speaks of her as "at most not past 13 or 14 years of
81
+ age." If she was thirteen or fourteen in 1609, when Smith left Virginia,
82
+ she must have been more than ten when he wrote his "True Relation,"
83
+ composed in the winter of 1608, which in all probability was carried to
84
+ England by Captain Nelson, who left Jamestown June 2d.
85
+
86
+ The next contemporary authority to be consulted in regard to Pocahontas
87
+ is William Strachey, who, as we have seen, went with the expedition of
88
+ Gates and Somers, was shipwrecked on the Bermudas, and reached Jamestown
89
+ May 23 or 24, 1610, and was made Secretary and Recorder of the colony
90
+ under Lord Delaware. Of the origin and life of Strachey, who was a
91
+ person of importance in Virginia, little is known. The better impression
92
+ is that he was the William Strachey of Saffron Walden, who was married
93
+ in 1588 and was living in 1620, and that it was his grandson of the same
94
+ name who was subsequently connected with the Virginia colony. He was,
95
+ judged by his writings, a man of considerable education, a good deal of
96
+ a pedant, and shared the credulity and fondness for embellishment of the
97
+ writers of his time. His connection with Lord Delaware, and his part
98
+ in framing the code of laws in Virginia, which may be inferred from
99
+ the fact that he first published them, show that he was a trusted and
100
+ capable man.
101
+
102
+ William Strachey left behind him a manuscript entitled "The Historie of
103
+ Travaile into Virginia Britanica, &c., gathered and observed as well by
104
+ those who went first thither, as collected by William Strachey, gent.,
105
+ three years thither, employed as Secretaire of State." How long he
106
+ remained in Virginia is uncertain, but it could not have been "three
107
+ years," though he may have been continued Secretary for that period, for
108
+ he was in London in 1612, in which year he published there the laws of
109
+ Virginia which had been established by Sir Thomas Gates May 24, 1610,
110
+ approved by Lord Delaware June 10, 1610, and enlarged by Sir Thomas Dale
111
+ June 22, 1611.
112
+
113
+ The "Travaile" was first published by the Hakluyt Society in 1849. When
114
+ and where it was written, and whether it was all composed at one time,
115
+ are matters much in dispute. The first book, descriptive of Virginia and
116
+ its people, is complete; the second book, a narration of discoveries in
117
+ America, is unfinished. Only the first book concerns us. That Strachey
118
+ made notes in Virginia may be assumed, but the book was no doubt written
119
+ after his return to England.
120
+
121
+
122
+ [This code of laws, with its penalty of whipping and death for what are
123
+ held now to be venial offenses, gives it a high place among the Black
124
+ Codes. One clause will suffice:
125
+
126
+ "Every man and woman duly twice a day upon the first towling of the Bell
127
+ shall upon the working daies repaire unto the church, to hear divine
128
+ service upon pain of losing his or her allowance for the first omission,
129
+ for the second to be whipt, and for the third to be condemned to the
130
+ Gallies for six months. Likewise no man or woman shall dare to violate
131
+ the Sabbath by any gaming, publique or private, abroad or at home, but
132
+ duly sanctifie and observe the same, both himselfe and his familie, by
133
+ preparing themselves at home with private prayer, that they may be the
134
+ better fitted for the publique, according to the commandments of God,
135
+ and the orders of our church, as also every man and woman shall repaire
136
+ in the morning to the divine service, and sermons preached upon the
137
+ Sabbath day, and in the afternoon to divine service, and Catechism upon
138
+ paine for the first fault to lose their provision, and allowance for the
139
+ whole week following, for the second to lose the said allowance and also
140
+ to be whipt, and for the third to suffer death."]
141
+
142
+
143
+ Was it written before or after the publication of Smith's "Map and
144
+ Description" at Oxford in 1612? The question is important, because
145
+ Smith's "Description" and Strachey's "Travaile" are page after page
146
+ literally the same. One was taken from the other. Commonly at that time
147
+ manuscripts seem to have been passed around and much read before they
148
+ were published. Purchas acknowledges that he had unpublished manuscripts
149
+ of Smith when he compiled his narrative. Did Smith see Strachey's
150
+ manuscript before he published his Oxford tract, or did Strachey enlarge
151
+ his own notes from Smith's description? It has been usually assumed
152
+ that Strachey cribbed from Smith without acknowledgment. If it were a
153
+ question to be settled by the internal evidence of the two accounts,
154
+ I should incline to think that Smith condensed his description from
155
+ Strachey, but the dates incline the balance in Smith's favor.
156
+
157
+ Strachey in his "Travaile" refers sometimes to Smith, and always with
158
+ respect. It will be noted that Smith's "Map" was engraved and published
159
+ before the "Description" in the Oxford tract. Purchas had it, for he
160
+ says, in writing of Virginia for his "Pilgrimage" (which was published
161
+ in 1613):
162
+
163
+ "Concerning-the latter [Virginia], Capt. John Smith, partly by word
164
+ of mouth, partly by his mappe thereof in print, and more fully by a
165
+ Manuscript which he courteously communicated to mee, hath acquainted
166
+ me with that whereof himselfe with great perill and paine, had been
167
+ the discoverer." Strachey in his "Travaile" alludes to it, and pays a
168
+ tribute to Smith in the following: "Their severall habitations are more
169
+ plainly described by the annexed mappe, set forth by Capt. Smith, of
170
+ whose paines taken herein I leave to the censure of the reader to judge.
171
+ Sure I am there will not return from thence in hast, any one who hath
172
+ been more industrious, or who hath had (Capt. Geo. Percie excepted)
173
+ greater experience amongst them, however misconstruction may traduce
174
+ here at home, where is not easily seen the mixed sufferances, both of
175
+ body and mynd, which is there daylie, and with no few hazards and hearty
176
+ griefes undergon."
177
+
178
+ There are two copies of the Strachey manuscript. The one used by the
179
+ Hakluyt Society is dedicated to Sir Francis Bacon, with the title of
180
+ "Lord High Chancellor," and Bacon had not that title conferred on him
181
+ till after 1618. But the copy among the Ashmolean manuscripts at Oxford
182
+ is dedicated to Sir Allen Apsley, with the title of "Purveyor to His
183
+ Majestie's Navie Royall"; and as Sir Allen was made "Lieutenant of
184
+ the Tower" in 1616, it is believed that the manuscript must have been
185
+ written before that date, since the author would not have omitted the
186
+ more important of the two titles in his dedication.
187
+
188
+ Strachey's prefatory letter to the Council, prefixed to his "Laws"
189
+ (1612), is dated "From my lodging in the Black Friars. At your best
190
+ pleasures, either to return unto the colony, or pray for the success of
191
+ it heere." In his letter he speaks of his experience in the Bermudas and
192
+ Virginia: "The full storie of both in due time [I] shall consecrate unto
193
+ your view.... Howbit since many impediments, as yet must detaine such
194
+ my observations in the shadow of darknesse, untill I shall be able to
195
+ deliver them perfect unto your judgments," etc.
196
+
197
+ This is not, as has been assumed, a statement that the observations were
198
+ not written then, only that they were not "perfect"; in fact, they
199
+ were detained in the "shadow of darknesse" till the year 1849. Our
200
+ own inference is, from all the circumstances, that Strachey began his
201
+ manuscript in Virginia or shortly after his return, and added to it and
202
+ corrected it from time to time up to 1616.
203
+
204
+ We are now in a position to consider Strachey's allusions to Pocahontas.
205
+ The first occurs in his description of the apparel of Indian women:
206
+
207
+ "The better sort of women cover themselves (for the most part) all over
208
+ with skin mantells, finely drest, shagged and fringed at the skyrt,
209
+ carved and coloured with some pretty work, or the proportion of beasts,
210
+ fowle, tortayses, or other such like imagry, as shall best please or
211
+ expresse the fancy of the wearer; their younger women goe not shadowed
212
+ amongst their owne companie, until they be nigh eleaven or twelve
213
+ returnes of the leafe old (for soe they accompt and bring about the
214
+ yeare, calling the fall of the leaf tagnitock); nor are thev much
215
+ ashamed thereof, and therefore would the before remembered Pocahontas,
216
+ a well featured, but wanton yong girle, Powhatan's daughter, sometymes
217
+ resorting to our fort, of the age then of eleven or twelve yeares, get
218
+ the boyes forth with her into the markett place, and make them wheele,
219
+ falling on their hands, turning up their heeles upwards, whome she would
220
+ followe and wheele so herself, naked as she was, all the fort over;
221
+ but being once twelve yeares, they put on a kind of semecinctum lethern
222
+ apron (as do our artificers or handycrafts men) before their bellies,
223
+ and are very shamefac't to be seene bare. We have seene some use
224
+ mantells made both of Turkey feathers, and other fowle, so prettily
225
+ wrought and woven with threeds, that nothing could be discerned but the
226
+ feathers, which were exceedingly warme and very handsome."
227
+
228
+ Strachey did not see Pocahontas. She did not resort to the camp after
229
+ the departure of Smith in September, 1609, until she was kidnapped by
230
+ Governor Dale in April, 1613. He repeats what he heard of her. The
231
+ time mentioned by him of her resorting to the fort, "of the age then of
232
+ eleven or twelve yeares," must have been the time referred to by Smith
233
+ when he might have married her, namely, in 1608-9, when he calls her
234
+ "not past 13 or 14 years of age." The description of her as a "yong
235
+ girle" tumbling about the fort, "naked as she was," would seem to
236
+ preclude the idea that she was married at that time.
237
+
238
+ The use of the word "wanton" is not necessarily disparaging, for
239
+ "wanton" in that age was frequently synonymous with "playful" and
240
+ "sportive"; but it is singular that she should be spoken of as "well
241
+ featured, but wanton." Strachey, however, gives in another place what is
242
+ no doubt the real significance of the Indian name "Pocahontas." He says:
243
+
244
+ "Both men, women, and children have their severall names; at first
245
+ according to the severall humor of their parents; and for the men
246
+ children, at first, when they are young, their mothers give them a name,
247
+ calling them by some affectionate title, or perhaps observing their
248
+ promising inclination give it accordingly; and so the great King
249
+ Powhatan called a young daughter of his, whom he loved well, Pocahontas,
250
+ which may signify a little wanton; howbeyt she was rightly called
251
+ Amonata at more ripe years."
252
+
253
+ The Indian girls married very young. The polygamous Powhatan had a large
254
+ number of wives, but of all his women, his favorites were a dozen "for
255
+ the most part very young women," the names of whom Strachey obtained
256
+ from one Kemps, an Indian a good deal about camp, whom Smith certifies
257
+ was a great villain. Strachey gives a list of the names of twelve of
258
+ them, at the head of which is Winganuske. This list was no doubt written
259
+ down by the author in Virginia, and it is followed by a sentence,
260
+ quoted below, giving also the number of Powhatan's children. The
261
+ "great darling" in this list was Winganuske, a sister of Machumps,
262
+ who, according to Smith, murdered his comrade in the Bermudas. Strachey
263
+ writes:
264
+
265
+ "He [Powhatan] was reported by the said Kemps, as also by the Indian
266
+ Machumps, who was sometyme in England, and comes to and fro amongst us
267
+ as he dares, and as Powhatan gives him leave, for it is not otherwise
268
+ safe for him, no more than it was for one Amarice, who had his braynes
269
+ knockt out for selling but a baskett of corne, and lying in the English
270
+ fort two or three days without Powhatan's leave; I say they often
271
+ reported unto us that Powhatan had then lyving twenty sonnes and ten
272
+ daughters, besyde a young one by Winganuske, Machumps his sister, and a
273
+ great darling of the King's; and besides, younge Pocohunta, a daughter
274
+ of his, using sometyme to our fort in tymes past, nowe married to a
275
+ private Captaine, called Kocoum, some two years since."
276
+
277
+ This passage is a great puzzle. Does Strachey intend to say that
278
+ Pocahontas was married to an Iniaan named Kocoum? She might have been
279
+ during the time after Smith's departure in 1609, and her kidnapping
280
+ in 1613, when she was of marriageable age. We shall see hereafter that
281
+ Powhatan, in 1614, said he had sold another favorite daughter of his,
282
+ whom Sir Thomas Dale desired, and who was not twelve years of age, to
283
+ be wife to a great chief. The term "private Captain" might perhaps be
284
+ applied to an Indian chief. Smith, in his "General Historie," says
285
+ the Indians have "but few occasions to use any officers more than one
286
+ commander, which commonly they call Werowance, or Caucorouse, which is
287
+ Captaine." It is probably not possible, with the best intentions, to
288
+ twist Kocoum into Caucorouse, or to suppose that Strachey intended to
289
+ say that a private captain was called in Indian a Kocoum. Werowance
290
+ and Caucorouse are not synonymous terms. Werowance means "chief," and
291
+ Caucorouse means "talker" or "orator," and is the original of our word
292
+ "caucus."
293
+
294
+ Either Strachey was uninformed, or Pocahontas was married to an
295
+ Indian--a not violent presumption considering her age and the fact
296
+ that war between Powhatan and the whites for some time had cut off
297
+ intercourse between them--or Strachey referred to her marriage with
298
+ Rolfe, whom he calls by mistake Kocoum. If this is to be accepted,
299
+ then this paragraph must have been written in England in 1616, and have
300
+ referred to the marriage to Rolfe it "some two years since," in 1614.
301
+
302
+ That Pocahontas was a gentle-hearted and pleasing girl, and, through her
303
+ acquaintance with Smith, friendly to the whites, there is no doubt; that
304
+ she was not different in her habits and mode of life from other Indian
305
+ girls, before the time of her kidnapping, there is every reason to
306
+ suppose. It was the English who magnified the imperialism of her father,
307
+ and exaggerated her own station as Princess. She certainly put on no
308
+ airs of royalty when she was "cart-wheeling" about the fort. Nor
309
+ does this detract anything from the native dignity of the mature, and
310
+ converted, and partially civilized woman.
311
+
312
+ We should expect there would be the discrepancies which have been
313
+ noticed in the estimates of her age. Powhatan is not said to have kept
314
+ a private secretary to register births in his family. If Pocahontas gave
315
+ her age correctly, as it appears upon her London portrait in 1616,
316
+ aged twenty-one, she must have been eighteen years of age when she was
317
+ captured in 1613 This would make her about twelve at the time of Smith's
318
+ captivity in 1607-8. There is certainly room for difference of opinion
319
+ as to whether so precocious a woman, as her intelligent apprehension of
320
+ affairs shows her to have been, should have remained unmarried till the
321
+ age of eighteen. In marrying at least as early as that she would have
322
+ followed the custom of her tribe. It is possible that her intercourse
323
+ with the whites had raised her above such an alliance as would be
324
+ offered her at the court of Werowocomoco.
325
+
326
+ We are without any record of the life of Pocahontas for some years.
327
+ The occasional mentions of her name in the "General Historie" are so
328
+ evidently interpolated at a late date, that they do not aid us. When
329
+ and where she took the name of Matoaka, which appears upon her London
330
+ portrait, we are not told, nor when she was called Amonata, as Strachey
331
+ says she was "at more ripe yeares." How she was occupied from the
332
+ departure of Smith to her abduction, we can only guess. To follow her
333
+ authentic history we must take up the account of Captain Argall and of
334
+ Ralph Hamor, Jr., secretary of the colony under Governor Dale.
335
+
336
+ Captain Argall, who seems to have been as bold as he was unscrupulous
337
+ in the execution of any plan intrusted to him, arrived in Virginia
338
+ in September, 1612, and early in the spring of 1613 he was sent on an
339
+ expedition up the Patowomek to trade for corn and to effect a capture
340
+ that would bring Powhatan to terms. The Emperor, from being a friend,
341
+ had become the most implacable enemy of the English. Captain Argall
342
+ says: "I was told by certain Indians, my friends, that the great
343
+ Powhatan's daughter Pokahuntis was with the great King Potowomek,
344
+ whither I presently repaired, resolved to possess myself of her by any
345
+ stratagem that I could use, for the ransoming of so many Englishmen as
346
+ were prisoners with Powhatan, as also to get such armes and tooles as
347
+ he and other Indians had got by murther and stealing some others of our
348
+ nation, with some quantity of corn for the colonies relief."
349
+
350
+ By the aid of Japazeus, King of Pasptancy, an old acquaintance and
351
+ friend of Argall's, and the connivance of the King of Potowomek,
352
+ Pocahontas was enticed on board Argall's ship and secured. Word was sent
353
+ to Powhatan of the capture and the terms on which his daughter would be
354
+ released; namely, the return of the white men he held in slavery, the
355
+ tools and arms he had gotten and stolen, and a great quantity of corn.
356
+ Powhatan, "much grieved," replied that if Argall would use his daughter
357
+ well, and bring the ship into his river and release her, he would accede
358
+ to all his demands. Therefore, on the 13th of April, Argall repaired to
359
+ Governor Gates at Jamestown, and delivered his prisoner, and a few days
360
+ after the King sent home some of the white captives, three pieces, one
361
+ broad-axe, a long whip-saw, and a canoe of corn. Pocahontas, however,
362
+ was kept at Jamestown.
363
+
364
+ Why Pocahontas had left Werowocomoco and gone to stay with Patowomek
365
+ we can only conjecture. It is possible that Powhatan suspected her
366
+ friendliness to the whites, and was weary of her importunity, and it may
367
+ be that she wanted to escape the sight of continual fighting, ambushes,
368
+ and murders. More likely she was only making a common friendly visit,
369
+ though Hamor says she went to trade at an Indian fair.
370
+
371
+ The story of her capture is enlarged and more minutely related by Ralph
372
+ Hamor, Jr., who was one of the colony shipwrecked on the Bermudas in
373
+ 1609, and returned to England in 1614, where he published (London, 1615)
374
+ "A True Discourse of Virginia, and the Success of the Affairs there
375
+ till the 18th of June, 1614." Hamor was the son of a merchant tailor in
376
+ London who was a member of the Virginia company. Hamor writes:
377
+
378
+ "It chanced Powhatan's delight and darling, his daughter Pocahuntas
379
+ (whose fame has even been spread in England by the title of Nonparella
380
+ of Firginia) in her princely progresse if I may so terme it, tooke some
381
+ pleasure (in the absence of Captaine Argall) to be among her friends at
382
+ Pataomecke (as it seemeth by the relation I had), implored thither as
383
+ shopkeeper to a Fare, to exchange some of her father's commodities for
384
+ theirs, where residing some three months or longer, it fortuned upon
385
+ occasion either of promise or profit, Captaine Argall to arrive there,
386
+ whom Pocahuntas, desirous to renew her familiaritie with the English,
387
+ and delighting to see them as unknown, fearefull perhaps to be
388
+ surprised, would gladly visit as she did, of whom no sooner had Captaine
389
+ Argall intelligence, but he delt with an old friend Iapazeus, how and
390
+ by what meanes he might procure her caption, assuring him that now or
391
+ never, was the time to pleasure him, if he intended indeede that love
392
+ which he had made profession of, that in ransome of hir he might redeeme
393
+ some of our English men and armes, now in the possession of her father,
394
+ promising to use her withall faire and gentle entreaty; Iapazeus well
395
+ assured that his brother, as he promised, would use her courteously,
396
+ promised his best endeavors and service to accomplish his desire, and
397
+ thus wrought it, making his wife an instrument (which sex have ever been
398
+ most powerful in beguiling inticements) to effect his plot which hee
399
+ had thus laid, he agreed that himself, his wife and Pocahuntas, would
400
+ accompanie his brother to the water side, whither come, his wife should
401
+ faine a great and longing desire to goe aboorde, and see the shippe,
402
+ which being there three or four times before she had never seene, and
403
+ should be earnest with her husband to permit her--he seemed angry with
404
+ her, making as he pretended so unnecessary request, especially being
405
+ without the company of women, which denial she taking unkindly,
406
+ must faine to weepe (as who knows not that women can command teares)
407
+ whereupon her husband seeming to pitty those counterfeit teares, gave
408
+ her leave to goe aboord, so that it would pleese Pocahuntas to accompany
409
+ her; now was the greatest labour to win her, guilty perhaps of her
410
+ father's wrongs, though not knowne as she supposed, to goe with her, yet
411
+ by her earnest persuasions, she assented: so forthwith aboord they went,
412
+ the best cheere that could be made was seasonably provided, to supper
413
+ they went, merry on all hands, especially Iapazeus and his wife, who to
414
+ expres their joy would ere be treading upon Captaine Argall's foot, as
415
+ who should say tis don, she is your own. Supper ended Pocahuntas was
416
+ lodged in the gunner's roome, but Iapazeus and his wife desired to have
417
+ some conference with their brother, which was onely to acquaint him by
418
+ what stratagem they had betraied his prisoner as I have already
419
+ related: after which discourse to sleepe they went, Pocahuntas nothing
420
+ mistrusting this policy, who nevertheless being most possessed with
421
+ feere, and desire of returne, was first up, and hastened Iapazeus to be
422
+ gon. Capt. Argall having secretly well rewarded him, with a small Copper
423
+ kittle, and some other les valuable toies so highly by him esteemed,
424
+ that doubtlesse he would have betraied his own father for them,
425
+ permitted both him and his wife to returne, but told him that for divers
426
+ considerations, as for that his father had then eigh [8] of our Englishe
427
+ men, many swords, peeces, and other tooles, which he hid at severall
428
+ times by trecherous murdering our men, taken from them which though
429
+ of no use to him, he would not redeliver, he would reserve Pocahuntas,
430
+ whereat she began to be exceeding pensive, and discontented, yet
431
+ ignorant of the dealing of Japazeus who in outward appearance was no les
432
+ discontented that he should be the meanes of her captivity, much adoe
433
+ there was to pursuade her to be patient, which with extraordinary
434
+ curteous usage, by little and little was wrought in her, and so to
435
+ Jamestowne she was brought."
436
+
437
+ Smith, who condenses this account in his "General Historie," expresses
438
+ his contempt of this Indian treachery by saying: "The old Jew and his
439
+ wife began to howle and crie as fast as Pocahuntas." It will be noted
440
+ that the account of the visit (apparently alone) of Pocahontas and her
441
+ capture is strong evidence that she was not at this time married to
442
+ "Kocoum" or anybody else.
443
+
444
+ Word was despatched to Powhatan of his daughter's duress, with a
445
+ demand made for the restitution of goods; but although this savage is
446
+ represented as dearly loving Pocahontas, his "delight and darling," it
447
+ was, according to Hamor, three months before they heard anything from
448
+ him. His anxiety about his daughter could not have been intense. He
449
+ retained a part of his plunder, and a message was sent to him that
450
+ Pocahontas would be kept till he restored all the arms.
451
+
452
+ This answer pleased Powhatan so little that they heard nothing from him
453
+ till the following March. Then Sir Thomas Dale and Captain Argall, with
454
+ several vessels and one hundred and fifty men, went up to Powhatan's
455
+ chief seat, taking his daughter with them, offering the Indians a chance
456
+ to fight for her or to take her in peace on surrender of the stolen
457
+ goods. The Indians received this with bravado and flights of arrows,
458
+ reminding them of the fate of Captain Ratcliffe. The whites landed,
459
+ killed some Indians, burnt forty houses, pillaged the village, and went
460
+ on up the river and came to anchor in front of Matchcot, the Emperor's
461
+ chief town. Here were assembled four hundred armed men, with bows and
462
+ arrows, who dared them to come ashore. Ashore they went, and a palaver
463
+ was held. The Indians wanted a day to consult their King, after which
464
+ they would fight, if nothing but blood would satisfy the whites.
465
+
466
+ Two of Powhatan's sons who were present expressed a desire to see their
467
+ sister, who had been taken on shore. When they had sight of her, and
468
+ saw how well she was cared for, they greatly rejoiced and promised to
469
+ persuade their father to redeem her and conclude a lasting peace. The
470
+ two brothers were taken on board ship, and Master John Rolfe and Master
471
+ Sparkes were sent to negotiate with the King. Powhatan did not show
472
+ himself, but his brother Apachamo, his successor, promised to use his
473
+ best efforts to bring about a peace, and the expedition returned to
474
+ Jamestown.
475
+
476
+ "Long before this time," Hamor relates, "a gentleman of approved
477
+ behaviour and honest carriage, Master John Rolfe, had been in love with
478
+ Pocahuntas and she with him, which thing at the instant that we were
479
+ in parlee with them, myselfe made known to Sir Thomas Dale, by a letter
480
+ from him [Rolfe] whereby he entreated his advice and furtherance to his
481
+ love, if so it seemed fit to him for the good of the Plantation, and
482
+ Pocahuntas herself acquainted her brethren therewith." Governor Dale
483
+ approved this, and consequently was willing to retire without other
484
+ conditions. "The bruite of this pretended marriage [Hamor continues]
485
+ came soon to Powhatan's knowledge, a thing acceptable to him, as
486
+ appeared by his sudden consent thereunto, who some ten daies after sent
487
+ an old uncle of hirs, named Opachisco, to give her as his deputy in the
488
+ church, and two of his sonnes to see the mariage solemnized which was
489
+ accordingly done about the fifth of April [1614], and ever since we have
490
+ had friendly commerce and trade, not only with Powhatan himself, but
491
+ also with his subjects round about us; so as now I see no reason why the
492
+ collonie should not thrive a pace."
493
+
494
+ This marriage was justly celebrated as the means and beginning of a firm
495
+ peace which long continued, so that Pocahontas was again entitled to the
496
+ grateful remembrance of the Virginia settlers. Already, in 1612, a plan
497
+ had been mooted in Virginia of marrying the English with the natives,
498
+ and of obtaining the recognition of Powhatan and those allied to him as
499
+ members of a fifth kingdom, with certain privileges. Cunega, the Spanish
500
+ ambassador at London, on September 22, 1612, writes: "Although some
501
+ suppose the plantation to decrease, he is credibly informed that there
502
+ is a determination to marry some of the people that go over to Virginia;
503
+ forty or fifty are already so married, and English women intermingle and
504
+ are received kindly by the natives. A zealous minister hath been wounded
505
+ for reprehending it."
506
+
507
+ Mr. John Rolfe was a man of industry, and apparently devoted to the
508
+ welfare of the colony. He probably brought with him in 1610 his wife,
509
+ who gave birth to his daughter Bermuda, born on the Somers Islands at
510
+ the time of the shipwreck. We find no notice of her death. Hamor gives
511
+ him the distinction of being the first in the colony to try, in 1612,
512
+ the planting and raising of tobacco. "No man [he adds] hath labored to
513
+ his power, by good example there and worthy encouragement into England
514
+ by his letters, than he hath done, witness his marriage with Powhatan's
515
+ daughter, one of rude education, manners barbarous and cursed
516
+ generation, meerely for the good and honor of the plantation: and
517
+ least any man should conceive that some sinister respects allured him
518
+ hereunto, I have made bold, contrary to his knowledge, in the end of my
519
+ treatise to insert the true coppie of his letter written to Sir Thomas
520
+ Dale."
521
+
522
+ The letter is a long, labored, and curious document, and comes nearer to
523
+ a theological treatise than any love-letter we have on record. It reeks
524
+ with unction. Why Rolfe did not speak to Dale, whom he saw every day,
525
+ instead of inflicting upon him this painful document, in which the
526
+ flutterings of a too susceptible widower's heart are hidden under a
527
+ great resolve of self-sacrifice, is not plain.
528
+
529
+ The letter protests in a tedious preamble that the writer is moved
530
+ entirely by the Spirit of God, and continues:
531
+
532
+ "Let therefore this my well advised protestation, which here I make
533
+ between God and my own conscience, be a sufficient witness, at the
534
+ dreadful day of judgment (when the secrets of all men's hearts shall be
535
+ opened) to condemne me herein, if my chiefest interest and purpose be
536
+ not to strive with all my power of body and mind, in the undertaking
537
+ of so weighty a matter, no way led (so far forth as man's weakness may
538
+ permit) with the unbridled desire of carnall affection; but for the good
539
+ of this plantation, for the honour of our countrie, for the glory of
540
+ God, for my owne salvation, and for the converting to the true knowledge
541
+ of God and Jesus Christ, an unbelieving creature, namely Pokahuntas.
542
+ To whom my heartie and best thoughts are, and have a long time bin so
543
+ entangled, and inthralled in so intricate a laborinth, that I was even
544
+ awearied to unwinde myself thereout."
545
+
546
+ Master Rolfe goes on to describe the mighty war in his meditations on
547
+ this subject, in which he had set before his eyes the frailty of mankind
548
+ and his proneness to evil and wicked thoughts. He is aware of God's
549
+ displeasure against the sons of Levi and Israel for marrying strange
550
+ wives, and this has caused him to look about warily and with good
551
+ circumspection "into the grounds and principall agitations which should
552
+ thus provoke me to be in love with one, whose education hath bin rude,
553
+ her manners barbarous, her generation accursed, and so discrepant in
554
+ all nurtriture from myselfe, that oftentimes with feare and trembling,
555
+ I have ended my private controversie with this: surely these are
556
+ wicked instigations, fetched by him who seeketh and delighteth in man's
557
+ distruction; and so with fervent prayers to be ever preserved from such
558
+ diabolical assaults (as I looke those to be) I have taken some rest."
559
+
560
+ The good man was desperately in love and wanted to marry the Indian, and
561
+ consequently he got no peace; and still being tormented with her image,
562
+ whether she was absent or present, he set out to produce an ingenious
563
+ reason (to show the world) for marrying her. He continues:
564
+
565
+ "Thus when I thought I had obtained my peace and quietnesse, beholde
566
+ another, but more gracious tentation hath made breaches into my holiest
567
+ and strongest meditations; with which I have been put to a new triall,
568
+ in a straighter manner than the former; for besides the weary passions
569
+ and sufferings which I have dailey, hourely, yea and in my sleepe
570
+ indured, even awaking me to astonishment, taxing me with remissnesse,
571
+ and carelessnesse, refusing and neglecting to perform the duteie of a
572
+ good Christian, pulling me by the eare, and crying: Why dost thou not
573
+ indeavor to make her a Christian? And these have happened to my greater
574
+ wonder, even when she hath been furthest seperated from me, which
575
+ in common reason (were it not an undoubted work of God) might breede
576
+ forgetfulnesse of a far more worthie creature."
577
+
578
+ He accurately describes the symptoms and appears to understand the
579
+ remedy, but he is after a large-sized motive:
580
+
581
+ "Besides, I say the holy Spirit of God hath often demanded of me, why I
582
+ was created? If not for transitory pleasures and worldly vanities, but
583
+ to labour in the Lord's vineyard, there to sow and plant, to nourish and
584
+ increase the fruites thereof, daily adding with the good husband in the
585
+ gospell, somewhat to the tallent, that in the ends the fruites may be
586
+ reaped, to the comfort of the labourer in this life, and his salvation
587
+ in the world to come.... Likewise, adding hereunto her great appearance
588
+ of love to me, her desire to be taught and instructed in the knowledge
589
+ of God, her capablenesse of understanding, her aptness and willingness
590
+ to receive anie good impression, and also the spirituall, besides her
591
+ owne incitements stirring me up hereunto."
592
+
593
+ The "incitements" gave him courage, so that he exclaims: "Shall I be of
594
+ so untoward a disposition, as to refuse to lead the blind into the right
595
+ way? Shall I be so unnatural, as not to give bread to the hungrie, or
596
+ uncharitable, as not to cover the naked?"
597
+
598
+ It wasn't to be thought of, such wickedness; and so Master Rolfe screwed
599
+ up his courage to marry the glorious Princess, from whom thousands
600
+ of people were afterwards so anxious to be descended. But he made the
601
+ sacrifice for the glory of the country, the benefit of the plantation,
602
+ and the conversion of the unregenerate, and other and lower motive
603
+ he vigorously repels: "Now, if the vulgar sort, who square all men's
604
+ actions by the base rule of their own filthinesse, shall tax or taunt
605
+ mee in this my godly labour: let them know it is not hungry appetite, to
606
+ gorge myselfe with incontinency; sure (if I would and were so sensually
607
+ inclined) I might satisfy such desire, though not without a seared
608
+ conscience, yet with Christians more pleasing to the eie, and less
609
+ fearefull in the offense unlawfully committed. Nor am I in so desperate
610
+ an estate, that I regard not what becometh of me; nor am I out of hope
611
+ but one day to see my country, nor so void of friends, nor mean in
612
+ birth, but there to obtain a mach to my great con'tent.... But shall it
613
+ please God thus to dispose of me (which I earnestly desire to fulfill
614
+ my ends before set down) I will heartily accept of it as a godly taxe
615
+ appointed me, and I will never cease (God assisting me) untill I have
616
+ accomplished, and brought to perfection so holy a worke, in which I will
617
+ daily pray God to bless me, to mine and her eternal happiness."
618
+
619
+ It is to be hoped that if sanctimonious John wrote any love-letters to
620
+ Amonata they had less cant in them than this. But it was pleasing to Sir
621
+ Thomas Dale, who was a man to appreciate the high motives of Mr. Rolfe.
622
+ In a letter which he despatched from Jamestown, June 18, 1614, to a
623
+ reverend friend in London, he describes the expedition when Pocahontas
624
+ was carried up the river, and adds the information that when she went on
625
+ shore, "she would not talk to any of them, scarcely to them of the best
626
+ sort, and to them only, that if her father had loved her, he would not
627
+ value her less than old swords, pieces, or axes; wherefore she would
628
+ still dwell with the Englishmen who loved her."
629
+
630
+ "Powhatan's daughter [the letter continues] I caused to be carefully
631
+ instructed in Christian Religion, who after she had made some good
632
+ progress therein, renounced publically her countrey idolatry, openly
633
+ confessed her Christian faith, was, as she desired, baptized, and is
634
+ since married to an English Gentleman of good understanding (as by his
635
+ letter unto me, containing the reasons for his marriage of her you may
636
+ perceive), an other knot to bind this peace the stronger. Her father
637
+ and friends gave approbation to it, and her uncle gave her to him in
638
+ the church; she lives civilly and lovingly with him, and I trust will
639
+ increase in goodness, as the knowledge of God increaseth in her. She
640
+ will goe into England with me, and were it but the gayning of this one
641
+ soule, I will think my time, toile, and present stay well spent."
642
+
643
+ Hamor also appends to his narration a short letter, of the same date
644
+ with the above, from the minister Alexander Whittaker, the genuineness
645
+ of which is questioned. In speaking of the good deeds of Sir Thomas Dale
646
+ it says: "But that which is best, one Pocahuntas or Matoa, the
647
+ daughter of Powhatan, is married to an honest and discreet English
648
+ Gentleman--Master Rolfe, and that after she had openly renounced her
649
+ countrey Idolatry, and confessed the faith of Jesus Christ, and was
650
+ baptized, which thing Sir Thomas Dale had laboured a long time to ground
651
+ her in." If, as this proclaims, she was married after her conversion,
652
+ then Rolfe's tender conscience must have given him another twist for
653
+ wedding her, when the reason for marrying her (her conversion) had
654
+ ceased with her baptism. His marriage, according to this, was a pure
655
+ work of supererogation. It took place about the 5th of April, 1614. It
656
+ is not known who performed the ceremony.
657
+
658
+ How Pocahontas passed her time in Jamestown during the period of her
659
+ detention, we are not told. Conjectures are made that she was an inmate
660
+ of the house of Sir Thomas Dale, or of that of the Rev. Mr. Whittaker,
661
+ both of whom labored zealously to enlighten her mind on religious
662
+ subjects. She must also have been learning English and civilized ways,
663
+ for it is sure that she spoke our language very well when she went to
664
+ London. Mr. John Rolfe was also laboring for her conversion, and we may
665
+ suppose that with all these ministrations, mingled with her love of Mr.
666
+ Rolfe, which that ingenious widower had discovered, and her desire to
667
+ convert him into a husband, she was not an unwilling captive. Whatever
668
+ may have been her barbarous instincts, we have the testimony of Governor
669
+ Dale that she lived "civilly and lovingly" with her husband.
670
+
671
+
672
+
673
+
674
+
675
+ STORY OF POCAHONTAS, CONTINUED
676
+
677
+ Sir Thomas Dale was on the whole the most efficient and discreet
678
+ Governor the colony had had. One element of his success was no doubt the
679
+ change in the charter of 1609. By the first charter everything had
680
+ been held in common by the company, and there had been no division of
681
+ property or allotment of land among the colonists. Under the new regime
682
+ land was held in severalty, and the spur of individual interest began
683
+ at once to improve the condition of the settlement. The character of the
684
+ colonists was also gradually improving. They had not been of a sort
685
+ to fulfill the earnest desire of the London promoter's to spread vital
686
+ piety in the New World. A zealous defense of Virginia and Maryland,
687
+ against "scandalous imputation," entitled "Leah and Rachel; or, The
688
+ Two Fruitful Sisters," by Mr. John Hammond, London, 1656, considers
689
+ the charges that Virginia "is an unhealthy place, a nest of rogues,
690
+ abandoned women, dissolut and rookery persons; a place of intolerable
691
+ labour, bad usage and hard diet"; and admits that "at the first
692
+ settling, and for many years after, it deserved most of these
693
+ aspersions, nor were they then aspersions but truths.... There were
694
+ jails supplied, youth seduced, infamous women drilled in, the provision
695
+ all brought out of England, and that embezzled by the Trustees."
696
+
697
+ Governor Dale was a soldier; entering the army in the Netherlands as a
698
+ private he had risen to high position, and received knighthood in 1606.
699
+ Shortly after he was with Sir Thomas Gates in South Holland. The States
700
+ General in 1611 granted him three years' term of absence in Virginia.
701
+ Upon his arrival he began to put in force that system of industry and
702
+ frugality he had observed in Holland. He had all the imperiousness of a
703
+ soldier, and in an altercation with Captain Newport, occasioned by some
704
+ injurious remarks the latter made about Sir Thomas Smith, the treasurer,
705
+ he pulled his beard and threatened to hang him. Active operations for
706
+ settling new plantations were at once begun, and Dale wrote to Cecil,
707
+ the Earl of Salisbury, for 2,000 good colonists to be sent out, for the
708
+ three hundred that came were "so profane, so riotous, so full of mutiny,
709
+ that not many are Christians but in name, their bodies so diseased and
710
+ crazed that not sixty of them may be employed." He served afterwards
711
+ with credit in Holland, was made commander of the East Indian fleet in
712
+ 1618, had a naval engagement with the Dutch near Bantam in 1619, and
713
+ died in 1620 from the effects of the climate. He was twice married, and
714
+ his second wife, Lady Fanny, the cousin of his first wife, survived him
715
+ and received a patent for a Virginia plantation.
716
+
717
+ Governor Dale kept steadily in view the conversion of the Indians to
718
+ Christianity, and the success of John Rolfe with Matoaka inspired
719
+ him with a desire to convert another daughter of Powhatan, of whose
720
+ exquisite perfections he had heard. He therefore despatched Ralph Hamor,
721
+ with the English boy, Thomas Savage, as interpreter, on a mission to
722
+ the court of Powhatan, "upon a message unto him, which was to deale with
723
+ him, if by any means I might procure a daughter of his, who (Pocahuntas
724
+ being already in our possession) is generally reported to be his delight
725
+ and darling, and surely he esteemed her as his owne Soule, for surer
726
+ pledge of peace." This visit Hamor relates with great naivete.
727
+
728
+ At his town of Matchcot, near the head of York River, Powhatan
729
+ himself received his visitors when they landed, with great cordiality,
730
+ expressing much pleasure at seeing again the boy who had been presented
731
+ to him by Captain Newport, and whom he had not seen since he gave him
732
+ leave to go and see his friends at Jamestown four years before; he also
733
+ inquired anxiously after Namontack, whom he had sent to King James's
734
+ land to see him and his country and report thereon, and then led the way
735
+ to his house, where he sat down on his bedstead side. "On each hand of
736
+ him was placed a comely and personable young woman, which they called
737
+ his Queenes, the howse within round about beset with them, the outside
738
+ guarded with a hundred bowmen."
739
+
740
+ The first thing offered was a pipe of tobacco, which Powhatan "first
741
+ drank," and then passed to Hamor, who "drank" what he pleased and then
742
+ returned it. The Emperor then inquired how his brother Sir Thomas Dale
743
+ fared, "and after that of his daughter's welfare, her marriage, his
744
+ unknown son, and how they liked, lived and loved together." Hamor
745
+ replied "that his brother was very well, and his daughter so well
746
+ content that she would not change her life to return and live with him,
747
+ whereat he laughed heartily, and said he was very glad of it."
748
+
749
+ Powhatan then desired to know the cause of his unexpected coming, and
750
+ Mr. Hamor said his message was private, to be delivered to him without
751
+ the presence of any except one of his councilors, and one of the guides,
752
+ who already knew it.
753
+
754
+ Therefore the house was cleared of all except the two Queens, who may
755
+ never sequester themselves, and Mr. Hamor began his palaver. First there
756
+ was a message of love and inviolable peace, the production of presents
757
+ of coffee, beads, combs, fish-hooks, and knives, and the promise of
758
+ a grindstone when it pleased the Emperor to send for it. Hamor then
759
+ proceeded:
760
+
761
+ "The bruite of the exquesite perfection of your youngest daughter, being
762
+ famous through all your territories, hath come to the hearing of your
763
+ brother, Sir Thomas Dale, who for this purpose hath addressed me hither,
764
+ to intreate you by that brotherly friendship you make profession of, to
765
+ permit her (with me) to returne unto him, partly for the desire which
766
+ himselfe hath, and partly for the desire her sister hath to see her of
767
+ whom, if fame hath not been prodigall, as like enough it hath not, your
768
+ brother (by your favour) would gladly make his nearest companion, wife
769
+ and bed fellow [many times he would have interrupted my speech, which
770
+ I entreated him to heare out, and then if he pleased to returne me
771
+ answer], and the reason hereof is, because being now friendly and firmly
772
+ united together, and made one people [as he supposeth and believes] in
773
+ the bond of love, he would make a natural union between us, principally
774
+ because himself hath taken resolution to dwel in your country so long as
775
+ he liveth, and would not only therefore have the firmest assurance hee
776
+ may, of perpetuall friendship from you, but also hereby binde himselfe
777
+ thereunto."
778
+
779
+ Powhatan replied with dignity that he gladly accepted the salute of love
780
+ and peace, which he and his subjects would exactly maintain. But as to
781
+ the other matter he said: "My daughter, whom my brother desireth, I sold
782
+ within these three days to be wife to a great Weroance for two bushels
783
+ of Roanoke [a small kind of beads made of oyster shells], and it is true
784
+ she is already gone with him, three days' journey from me."
785
+
786
+ Hamor persisted that this marriage need not stand in the way; "that if
787
+ he pleased herein to gratify his Brother he might, restoring the Roanoke
788
+ without the imputation of injustice, take home his daughter again, the
789
+ rather because she was not full twelve years old, and therefore not
790
+ marriageable; assuring him besides the bond of peace, so much the
791
+ firmer, he should have treble the price of his daughter in beads,
792
+ copper, hatchets, and many other things more useful for him."
793
+
794
+ The reply of the noble old savage to this infamous demand ought to have
795
+ brought a blush to the cheeks of those who made it. He said he loved his
796
+ daughter as dearly as his life; he had many children, but he delighted
797
+ in none so much as in her; he could not live if he did not see her
798
+ often, as he would not if she were living with the whites, and he
799
+ was determined not to put himself in their hands. He desired no other
800
+ assurance of friendship than his brother had given him, who had already
801
+ one of his daughters as a pledge, which was sufficient while she lived;
802
+ "when she dieth he shall have another child of mine." And then he broke
803
+ forth in pathetic eloquence: "I hold it not a brotherly part of your
804
+ King, to desire to bereave me of two of my children at once; further
805
+ give him to understand, that if he had no pledge at all, he should not
806
+ need to distrust any injury from me, or any under my subjection; there
807
+ have been too many of his and my men killed, and by my occasion there
808
+ shall never be more; I which have power to perform it have said it; no
809
+ not though I should have just occasion offered, for I am now old and
810
+ would gladly end my days in peace; so as if the English offer me any
811
+ injury, my country is large enough, I will remove myself farther from
812
+ you."
813
+
814
+ The old man hospitably entertained his guests for a day or two, loaded
815
+ them with presents, among which were two dressed buckskins, white as
816
+ snow, for his son and daughter, and, requesting some articles sent him
817
+ in return, bade them farewell with this message to Governor Dale: "I
818
+ hope this will give him good satisfaction, if it do not I will go three
819
+ days' journey farther from him, and never see Englishmen more." It
820
+ speaks well for the temperate habits of this savage that after he had
821
+ feasted his guests, "he caused to be fetched a great glass of sack, some
822
+ three quarts or better, which Captain Newport had given him six or seven
823
+ years since, carefully preserved by him, not much above a pint in all
824
+ this time spent, and gave each of us in a great oyster shell some three
825
+ spoonfuls."
826
+
827
+ We trust that Sir Thomas Dale gave a faithful account of all this to his
828
+ wife in England.
829
+
830
+ Sir Thomas Gates left Virginia in the spring of 1614 and never returned.
831
+ After his departure scarcity and severity developed a mutiny, and six
832
+ of the settlers were executed. Rolfe was planting tobacco (he has the
833
+ credit of being the first white planter of it), and his wife was getting
834
+ an inside view of Christian civilization.
835
+
836
+ In 1616 Sir Thomas Dale returned to England with his company and John
837
+ Rolfe and Pocahontas, and several other Indians. They reached Plymouth
838
+ early in June, and on the 20th Lord Carew made this note: "Sir Thomas
839
+ Dale returned from Virginia; he hath brought divers men and women of
840
+ thatt countrye to be educated here, and one Rolfe who married a daughter
841
+ of Pohetan (the barbarous prince) called Pocahuntas, hath brought his
842
+ wife with him into England." On the 22d Sir John Chamberlain wrote to
843
+ Sir Dudley Carlton that there were "ten or twelve, old and young, of
844
+ that country."
845
+
846
+ The Indian girls who came with Pocahontas appear to have been a great
847
+ care to the London company. In May, 1620, is a record that the company
848
+ had to pay for physic and cordials for one of them who had been living
849
+ as a servant in Cheapside, and was very weak of a consumption. The same
850
+ year two other of the maids were shipped off to the Bermudas, after
851
+ being long a charge to the company, in the hope that they might there
852
+ get husbands, "that after they were converted and had children, they
853
+ might be sent to their country and kindred to civilize them." One of
854
+ them was there married. The attempt to educate them in England was not
855
+ very successful, and a proposal to bring over Indian boys obtained this
856
+ comment from Sir Edwin Sandys:
857
+
858
+ "Now to send for them into England, and to have them educated here, he
859
+ found upon experience of those brought by Sir Thomas Dale, might be far
860
+ from the Christian work intended." One Nanamack, a lad brought over by
861
+ Lord Delaware, lived some years in houses where "he heard not much of
862
+ religion but sins, had many times examples of drinking, swearing and
863
+ like evils, ran as he was a mere Pagan," till he fell in with a
864
+ devout family and changed his life, but died before he was baptized.
865
+ Accompanying Pocahontas was a councilor of Powhatan, one Tomocomo, the
866
+ husband of one of her sisters, of whom Purchas says in his "Pilgrimes":
867
+ "With this savage I have often conversed with my good friend Master
868
+ Doctor Goldstone where he was a frequent geust, and where I have seen
869
+ him sing and dance his diabolical measures, and heard him discourse of
870
+ his country and religion.... Master Rolfe lent me a discourse which
871
+ I have in my Pilgrimage delivered. And his wife did not only accustom
872
+ herself to civility, but still carried herself as the daughter of a
873
+ king, and was accordingly respected, not only by the Company which
874
+ allowed provision for herself and her son, but of divers particular
875
+ persons of honor, in their hopeful zeal by her to advance Christianity.
876
+ I was present when my honorable and reverend patron, the Lord Bishop of
877
+ London, Doctor King, entertained her with festival state and pomp beyond
878
+ what I had seen in his great hospitality offered to other ladies. At
879
+ her return towards Virginia she came at Gravesend to her end and grave,
880
+ having given great demonstration of her Christian sincerity, as the
881
+ first fruits of Virginia conversion, leaving here a goodly memory,
882
+ and the hopes of her resurrection, her soul aspiring to see and enjoy
883
+ permanently in heaven what here she had joyed to hear and believe of her
884
+ blessed Saviour. Not such was Tomocomo, but a blasphemer of what he knew
885
+ not and preferring his God to ours because he taught them (by his own
886
+ so appearing) to wear their Devil-lock at the left ear; he acquainted me
887
+ with the manner of that his appearance, and believed that their Okee or
888
+ Devil had taught them their husbandry."
889
+
890
+ Upon news of her arrival, Captain Smith, either to increase his own
891
+ importance or because Pocahontas was neglected, addressed a letter or
892
+ "little booke" to Queen Anne, the consort of King James. This letter is
893
+ found in Smith's "General Historie" ( 1624), where it is introduced
894
+ as having been sent to Queen Anne in 1616. Probably he sent her such a
895
+ letter. We find no mention of its receipt or of any acknowledgment of
896
+ it. Whether the "abstract" in the "General Historie" is exactly like
897
+ the original we have no means of knowing. We have no more confidence in
898
+ Smith's memory than we have in his dates. The letter is as follows:
899
+
900
+ "To the most high and vertuous Princesse Queene Anne of Great Brittaine.
901
+
902
+ "Most ADMIRED QUEENE.
903
+
904
+ "The love I beare my God, my King and Countrie hath so oft emboldened me
905
+ in the worst of extreme dangers, that now honestie doth constraine mee
906
+ presume thus farre beyond my selfe, to present your Majestie this short
907
+ discourse: if ingratitude be a deadly poyson to all honest vertues,
908
+ I must be guiltie of that crime if I should omit any meanes to bee
909
+ thankful. So it is.
910
+
911
+ "That some ten yeeres agoe being in Virginia, and taken prisoner by the
912
+ power of Powhaten, their chiefe King, I received from this great Salvage
913
+ exceeding great courtesie, especially from his sonne Nantaquaus, the
914
+ most manliest, comeliest, boldest spirit, I ever saw in a Salvage and
915
+ his sister Pocahontas, the Kings most deare and well-beloved daughter,
916
+ being but a childe of twelve or thirteen yeeres of age, whose
917
+ compassionate pitifull heart, of desperate estate, gave me much cause
918
+ to respect her: I being the first Christian this proud King and his grim
919
+ attendants ever saw, and thus enthralled in their barbarous power, I
920
+ cannot say I felt the least occasion of want that was in the power of
921
+ those my mortall foes to prevent notwithstanding al their threats. After
922
+ some six weeks fatting amongst those Salvage Courtiers, at the minute of
923
+ my execution, she hazarded the beating out of her owne braines to save
924
+ mine, and not onely that, but so prevailed with her father, that I was
925
+ safely conducted to Jamestowne, where I found about eight and thirty
926
+ miserable poore and sicke creatures, to keepe possession of all those
927
+ large territories of Virginia, such was the weaknesse of this poore
928
+ Commonwealth, as had the Salvages not fed us, we directly had starved.
929
+
930
+ "And this reliefe, most gracious Queene, was commonly brought us by
931
+ this Lady Pocahontas, notwithstanding all these passages when inconstant
932
+ Fortune turned our Peace to warre, this tender Virgin would still not
933
+ spare to dare to visit us, and by her our jarres have been oft appeased,
934
+ and our wants still supplyed; were it the policie of her father thus to
935
+ imploy her, or the ordinance of God thus to make her his instrument, or
936
+ her extraordinarie affection to our Nation, I know not: but of this I am
937
+ sure: when her father with the utmost of his policie and power, sought
938
+ to surprize mee, having but eighteene with mee, the dark night could not
939
+ affright her from comming through the irksome woods, and with watered
940
+ eies gave me intilligence, with her best advice to escape his furie:
941
+ which had hee known hee had surely slaine her. Jamestowne with her wild
942
+ traine she as freely frequented, as her father's habitation: and during
943
+ the time of two or three yeares, she next under God, was still the
944
+ instrument to preserve this Colonie from death, famine and utter
945
+ confusion, which if in those times had once beene dissolved, Virginia
946
+ might have laine as it was at our first arrivall to this day. Since
947
+ then, this buisinesse having been turned and varied by many accidents
948
+ from that I left it at: it is most certaine, after a long and
949
+ troublesome warre after my departure, betwixt her father and our
950
+ Colonie, all which time shee was not heard of, about two yeeres longer,
951
+ the Colonie by that meanes was releived, peace concluded, and at last
952
+ rejecting her barbarous condition, was maried to an English Gentleman,
953
+ with whom at this present she is in England; the first Christian ever of
954
+ that Nation, the first Virginian ever spake English, or had a childe
955
+ in mariage by an Englishman, a matter surely, if my meaning bee truly
956
+ considered and well understood, worthy a Princes understanding.
957
+
958
+ "Thus most gracious Lady, I have related to your Majestic, what at your
959
+ best leasure our approved Histories will account you at large, and done
960
+ in the time of your Majesties life, and however this might bee presented
961
+ you from a more worthy pen, it cannot from a more honest heart, as yet
962
+ I never begged anything of the State, or any, and it is my want of
963
+ abilitie and her exceeding desert, your birth, meanes, and authoritie,
964
+ her birth, vertue, want and simplicitie, doth make mee thus bold, humbly
965
+ to beseech your Majestic: to take this knowledge of her though it be
966
+ from one so unworthy to be the reporter, as myselfe, her husband's
967
+ estate not being able to make her fit to attend your Majestic: the most
968
+ and least I can doe, is to tell you this, because none so oft hath tried
969
+ it as myselfe: and the rather being of so great a spirit, however her
970
+ station: if she should not be well received, seeing this Kingdome
971
+ may rightly have a Kingdome by her meanes: her present love to us and
972
+ Christianitie, might turne to such scorne and furie, as to divert all
973
+ this good to the worst of evill, when finding so great a Queene should
974
+ doe her some honour more than she can imagine, for being so kinde to
975
+ your servants and subjects, would so ravish her with content, as endeare
976
+ her dearest bloud to effect that, your Majestic and all the Kings honest
977
+ subjects most earnestly desire: and so I humbly kisse your gracious
978
+ hands."
979
+
980
+ The passage in this letter, "She hazarded the beating out of her owne
981
+ braines to save mine," is inconsistent with the preceding portion of the
982
+ paragraph which speaks of "the exceeding great courtesie" of Powhatan;
983
+ and Smith was quite capable of inserting it afterwards when he made up
984
+ his
985
+
986
+ "General Historie."
987
+
988
+ Smith represents himself at this time--the last half of 1616 and the
989
+ first three months of 1617--as preparing to attempt a third voyage to
990
+ New England (which he did not make), and too busy to do Pocahontas the
991
+ service she desired. She was staying at Branford, either from neglect
992
+ of the company or because the London smoke disagreed with her, and there
993
+ Smith went to see her. His account of his intercourse with her, the only
994
+ one we have, must be given for what it is worth. According to this she
995
+ had supposed Smith dead, and took umbrage at his neglect of her. He
996
+ writes:
997
+
998
+ "After a modest salutation, without any word, she turned about, obscured
999
+ her face, as not seeming well contented; and in that humour, her husband
1000
+ with divers others, we all left her two or three hours repenting myself
1001
+ to have writ she could speak English. But not long after she began to
1002
+ talke, remembering me well what courtesies she had done: saying, 'You
1003
+ did promise Powhatan what was yours should be his, and he the like to
1004
+ you; you called him father, being in his land a stranger, and by the
1005
+ same reason so must I do you:' which though I would have excused, I
1006
+ durst not allow of that title, because she was a king's daughter. With
1007
+ a well set countenance she said: 'Were you not afraid to come into my
1008
+ father's country and cause fear in him and all his people (but me), and
1009
+ fear you have I should call you father; I tell you then I will, and
1010
+ you shall call me childe, and so I will be forever and ever, your
1011
+ contrieman. They did tell me alwaies you were dead, and I knew no other
1012
+ till I came to Plymouth, yet Powhatan did command Uttamatomakkin to seek
1013
+ you, and know the truth, because your countriemen will lie much."'
1014
+
1015
+ This savage was the Tomocomo spoken of above, who had been sent by
1016
+ Powhatan to take a census of the people of England, and report what they
1017
+ and their state were. At Plymouth he got a long stick and began to make
1018
+ notches in it for the people he saw. But he was quickly weary of that
1019
+ task. He told Smith that Powhatan bade him seek him out, and get him
1020
+ to show him his God, and the King, Queen, and Prince, of whom Smith had
1021
+ told so much. Smith put him off about showing his God, but said he had
1022
+ heard that he had seen the King. This the Indian denied, James probably
1023
+ not coming up to his idea of a king, till by circumstances he was
1024
+ convinced he had seen him. Then he replied very sadly: "You gave
1025
+ Powhatan a white dog, which Powhatan fed as himself, but your king gave
1026
+ me nothing, and I am better than your white dog."
1027
+
1028
+ Smith adds that he took several courtiers to see Pocahontas, and "they
1029
+ did think God had a great hand in her conversion, and they have seen
1030
+ many English ladies worse favoured, proportioned, and behavioured;" and
1031
+ he heard that it had pleased the King and Queen greatly to esteem her,
1032
+ as also Lord and Lady Delaware, and other persons of good quality, both
1033
+ at the masques and otherwise.
1034
+
1035
+ Much has been said about the reception of Pocahontas in London, but
1036
+ the contemporary notices of her are scant. The Indians were objects of
1037
+ curiosity for a time in London, as odd Americans have often been since,
1038
+ and the rank of Pocahontas procured her special attention. She was
1039
+ presented at court. She was entertained by Dr. King, Bishop of London.
1040
+ At the playing of Ben Jonson's "Christmas his Mask" at court, January
1041
+ 6, 1616-17, Pocahontas and Tomocomo were both present, and Chamberlain
1042
+ writes to Carleton: "The Virginian woman Pocahuntas with her father
1043
+ counsellor have been with the King and graciously used, and both she and
1044
+ her assistant were pleased at the Masque. She is upon her return though
1045
+ sore against her will, if the wind would about to send her away."
1046
+
1047
+ Mr. Neill says that "after the first weeks of her residence in England
1048
+ she does not appear to be spoken of as the wife of Rolfe by the letter
1049
+ writers," and the Rev. Peter Fontaine says that "when they heard that
1050
+ Rolfe had married Pocahontas, it was deliberated in council whether he
1051
+ had not committed high treason by so doing, that is marrying an Indian
1052
+ princesse."
1053
+
1054
+ It was like James to think so. His interest in the colony was never
1055
+ the most intelligent, and apt to be in things trivial. Lord Southampton
1056
+ (Dec. 15, 1609) writes to Lord Salisbury that he had told the King of
1057
+ the Virginia squirrels brought into England, which are said to fly. The
1058
+ King very earnestly asked if none were provided for him, and said he was
1059
+ sure Salisbury would get him one. Would not have troubled him, "but that
1060
+ you know so well how he is affected to these toys."
1061
+
1062
+ There has been recently found in the British Museum a print of a
1063
+ portrait of Pocahontas, with a legend round it in Latin, which is
1064
+ translated: "Matoaka, alias Rebecka, Daughter of Prince Powhatan,
1065
+ Emperor of Virginia; converted to Christianity, married Mr. Rolff; died
1066
+ on shipboard at Gravesend 1617." This is doubtless the portrait engraved
1067
+ by Simon De Passe in 1616, and now inserted in the extant copies of the
1068
+ London edition of the "General Historie," 1624. It is not probable that
1069
+ the portrait was originally published with the "General Historie." The
1070
+ portrait inserted in the edition of 1624 has this inscription:
1071
+
1072
+ Round the portrait:
1073
+
1074
+ "Matoaka als Rebecca Filia Potentiss Princ: Pohatani Imp: Virginim."
1075
+
1076
+ In the oval, under the portrait:
1077
+
1078
+ "Aetatis suae 21 A.
1079
+ 1616"
1080
+ Below:
1081
+
1082
+ "Matoaks als Rebecka daughter to the mighty Prince Powhatan Emprour of
1083
+ Attanoughkomouck als virginia converted and baptized in the Christian
1084
+ faith, and wife to the worth Mr. job Rolff. i: Pass: sculp. Compton
1085
+ Holland excud."
1086
+
1087
+
1088
+ Camden in his "History of Gravesend" says that everybody paid this
1089
+ young lady all imaginable respect, and it was believed she would have
1090
+ sufficiently acknowledged those favors, had she lived to return to her
1091
+ own country, by bringing the Indians to a kinder disposition toward the
1092
+ English; and that she died, "giving testimony all the time she lay sick,
1093
+ of her being a very good Christian."
1094
+
1095
+ The Lady Rebecka, as she was called in London, died on shipboard at
1096
+ Gravesend after a brief illness, said to be of only three days, probably
1097
+ on the 21st of March, 1617. I have seen somewhere a statement, which
1098
+ I cannot confirm, that her disease was smallpox. St. George's Church,
1099
+ where she was buried, was destroyed by fire in 1727. The register of
1100
+ that church has this record:
1101
+
1102
+
1103
+ "1616, May 21 Rebecca Wrothe
1104
+ Wyff of Thomas Wroth gent
1105
+ A Virginia lady borne, here was buried
1106
+ in ye chaunncle."
1107
+
1108
+ Yet there is no doubt, according to a record in the Calendar of State
1109
+ Papers, dated "1617, 29 March, London," that her death occurred March
1110
+ 21, 1617.
1111
+
1112
+ John Rolfe was made Secretary of Virginia when Captain Argall became
1113
+ Governor, and seems to have been associated in the schemes of that
1114
+ unscrupulous person and to have forfeited the good opinion of the
1115
+ company. August 23, 1618, the company wrote to Argall: "We cannot
1116
+ imagine why you should give us warning that Opechankano and the natives
1117
+ have given the country to Mr. Rolfe's child, and that they reserve it
1118
+ from all others till he comes of years except as we suppose as some
1119
+ do here report it be a device of your own, to some special purpose for
1120
+ yourself." It appears also by the minutes of the company in 1621 that
1121
+ Lady Delaware had trouble to recover goods of hers left in Rolfe's hands
1122
+ in Virginia, and desired a commission directed to Sir Thomas Wyatt and
1123
+ Mr. George Sandys to examine what goods of the late "Lord Deleware had
1124
+ come into Rolfe's possession and get satisfaction of him." This George
1125
+ Sandys is the famous traveler who made a journey through the Turkish
1126
+ Empire in 1610, and who wrote, while living in Virginia, the first book
1127
+ written in the New World, the completion of his translation of Ovid's
1128
+ "Metamorphosis."
1129
+
1130
+ John Rolfe died in Virginia in 1622, leaving a wife and children.
1131
+ This is supposed to be his third wife, though there is no note of his
1132
+ marriage to her nor of the death of his first. October 7, 1622, his
1133
+ brother Henry Rolfe petitioned that the estate of John should be
1134
+ converted to the support of his relict wife and children and to his own
1135
+ indemnity for having brought up John's child by Powhatan's daughter.
1136
+
1137
+ This child, named Thomas Rolfe, was given after the death of Pocahontas
1138
+ to the keeping of Sir Lewis Stukely of Plymouth, who fell into evil
1139
+ practices, and the boy was transferred to the guardianship of his uncle
1140
+ Henry Rolfe, and educated in London. When he was grown up he returned
1141
+ to Virginia, and was probably there married. There is on record his
1142
+ application to the Virginia authorities in 1641 for leave to go into the
1143
+ Indian country and visit Cleopatra, his mother's sister. He left an only
1144
+ daughter who was married, says Stith (1753), "to Col. John Bolling; by
1145
+ whom she left an only son, the late Major John Bolling, who was father
1146
+ to the present Col. John Bolling, and several daughters, married to
1147
+ Col. Richard Randolph, Col. John Fleming, Dr. William Gay, Mr. Thomas
1148
+ Eldridge, and Mr. James Murray." Campbell in his "History of Virginia"
1149
+ says that the first Randolph that came to the James River was an
1150
+ esteemed and industrious mechanic, and that one of his sons, Richard,
1151
+ grandfather of the celebrated John Randolph, married Jane Bolling, the
1152
+ great granddaughter of Pocahontas.
1153
+
1154
+ In 1618 died the great Powhatan, full of years and satiated with
1155
+ fighting and the savage delights of life. He had many names and titles;
1156
+ his own people sometimes called him Ottaniack, sometimes Mamauatonick,
1157
+ and usually in his presence Wahunsenasawk. He ruled, by inheritance and
1158
+ conquest, with many chiefs under him, over a large territory with not
1159
+ defined borders, lying on the James, the York, the Rappahannock, the
1160
+ Potomac, and the Pawtuxet Rivers. He had several seats, at which he
1161
+ alternately lived with his many wives and guard of bowmen, the chief of
1162
+ which at the arrival of the English was Werowomocomo, on the Pamunkey
1163
+ (York) River. His state has been sufficiently described. He is said
1164
+ to have had a hundred wives, and generally a dozen--the
1165
+ youngest--personally attending him. When he had a mind to add to his
1166
+ harem he seems to have had the ancient oriental custom of sending into
1167
+ all his dominions for the fairest maidens to be brought from whom to
1168
+ select. And he gave the wives of whom he was tired to his favorites.
1169
+
1170
+ Strachey makes a striking description of him as he appeared about 1610:
1171
+ "He is a goodly old man not yet shrincking, though well beaten with cold
1172
+ and stormeye winters, in which he hath been patient of many necessityes
1173
+ and attempts of his fortune to make his name and famely great. He is
1174
+ supposed to be little lesse than eighty yeares old, I dare not saye how
1175
+ much more; others saye he is of a tall stature and cleane lymbes, of a
1176
+ sad aspect, rownd fatt visaged, with graie haires, but plaine and thin,
1177
+ hanging upon his broad showlders; some few haires upon his chin, and so
1178
+ on his upper lippe: he hath been a strong and able salvadge, synowye,
1179
+ vigilant, ambitious, subtile to enlarge his dominions:... cruell he hath
1180
+ been, and quarellous as well with his own wcrowanccs for trifles, and
1181
+ that to strike a terrour and awe into them of his power and condicion,
1182
+ as also with his neighbors in his younger days, though now delighted in
1183
+ security and pleasure, and therefore stands upon reasonable conditions
1184
+ of peace with all the great and absolute werowances about him, and is
1185
+ likewise more quietly settled amongst his own."
1186
+
1187
+ It was at this advanced age that he had the twelve favorite young wives
1188
+ whom Strachey names. All his people obeyed him with fear and adoration,
1189
+ presenting anything he ordered at his feet, and trembling if he frowned.
1190
+ His punishments were cruel; offenders were beaten to death before him,
1191
+ or tied to trees and dismembered joint by joint, or broiled to death on
1192
+ burning coals. Strachey wondered how such a barbarous prince should put
1193
+ on such ostentation of majesty, yet he accounted for it as belonging to
1194
+ the necessary divinity that doth hedge in a king: "Such is (I believe)
1195
+ the impression of the divine nature, and however these (as other
1196
+ heathens forsaken by the true light) have not that porcion of the
1197
+ knowing blessed Christian spiritt, yet I am perswaded there is an
1198
+ infused kind of divinities and extraordinary (appointed that it shall
1199
+ be so by the King of kings) to such as are his ymedyate instruments on
1200
+ earth."
1201
+
1202
+ Here is perhaps as good a place as any to say a word or two about the
1203
+ appearance and habits of Powhatan's subjects, as they were observed
1204
+ by Strachey and Smith. A sort of religion they had, with priests or
1205
+ conjurors, and houses set apart as temples, wherein images were kept
1206
+ and conjurations performed, but the ceremonies seem not worship, but
1207
+ propitiations against evil, and there seems to have been no conception
1208
+ of an overruling power or of an immortal life. Smith describes a
1209
+ ceremony of sacrifice of children to their deity; but this is doubtful,
1210
+ although Parson Whittaker, who calls the Indians "naked slaves of the
1211
+ devil," also says they sacrificed sometimes themselves and sometimes
1212
+ their own children. An image of their god which he sent to England
1213
+ "was painted upon one side of a toadstool, much like unto a deformed
1214
+ monster." And he adds: "Their priests, whom they call Quockosoughs, are
1215
+ no other but such as our English witches are." This notion I believe
1216
+ also pertained among the New England colonists. There was a belief
1217
+ that the Indian conjurors had some power over the elements, but not a
1218
+ well-regulated power, and in time the Indians came to a belief in the
1219
+ better effect of the invocations of the whites. In "Winslow's Relation,"
1220
+ quoted by Alexander Young in his "Chronicles of the Pilgrim Fathers,"
1221
+ under date of July, 1623, we read that on account of a great drought
1222
+ a fast day was appointed. When the assembly met the sky was clear. The
1223
+ exercise lasted eight or nine hours. Before they broke up, owing to
1224
+ prayers the weather was overcast. Next day began a long gentle rain.
1225
+ This the Indians seeing, admired the goodness of our God: "showing the
1226
+ difference between their conjuration and our invocation in the name
1227
+ of God for rain; theirs being mixed with such storms and tempests, as
1228
+ sometimes, instead of doing them good, it layeth the corn flat on the
1229
+ ground; but ours in so gentle and seasonable a manner, as they never
1230
+ observed the like."
1231
+
1232
+ It was a common opinion of the early settlers in Virginia, as it was of
1233
+ those in New England, that the Indians were born white, but that they
1234
+ got a brown or tawny color by the use of red ointments, made of earth
1235
+ and the juice of roots, with which they besmear themselves either
1236
+ according to the custom of the country or as a defense against the
1237
+ stinging of mosquitoes. The women are of the same hue as the men, says
1238
+ Strachey; "howbeit, it is supposed neither of them naturally borne so
1239
+ discolored; for Captain Smith (lyving sometymes amongst them) affirmeth
1240
+ how they are from the womb indifferent white, but as the men, so doe the
1241
+ women," "dye and disguise themselves into this tawny cowler, esteeming
1242
+ it the best beauty to be nearest such a kind of murrey as a sodden
1243
+ quince is of," as the Greek women colored their faces and the ancient
1244
+ Britain women dyed themselves with red; "howbeit [Strachey slyly adds]
1245
+ he or she that hath obtained the perfected art in the tempering of this
1246
+ collour with any better kind of earth, yearb or root preserves it not
1247
+ yet so secrett and precious unto herself as doe our great ladyes their
1248
+ oyle of talchum, or other painting white and red, but they frindly
1249
+ communicate the secret and teach it one another."
1250
+
1251
+ Thomas Lechford in his "Plain Dealing; or Newes from New England,"
1252
+ London, 1642, says: "They are of complexion swarthy and tawny; their
1253
+ children are borne white, but they bedawbe them with oyle and colors
1254
+ presently."
1255
+
1256
+ The men are described as tall, straight, and of comely proportions; no
1257
+ beards; hair black, coarse, and thick; noses broad, flat, and full at
1258
+ the end; with big lips and wide mouths', yet nothing so unsightly as
1259
+ the Moors; and the women as having "handsome limbs, slender arms, pretty
1260
+ hands, and when they sing they have a pleasant tange in their voices.
1261
+ The men shaved their hair on the right side, the women acting as
1262
+ barbers, and left the hair full length on the left side, with a lock an
1263
+ ell long." A Puritan divine--"New England's Plantation, 1630"--says of
1264
+ the Indians about him, "their hair is generally black, and cut before
1265
+ like our gentlewomen, and one lock longer than the rest, much like to
1266
+ our gentlemen, which fashion I think came from hence into England."
1267
+
1268
+ Their love of ornaments is sufficiently illustrated by an extract from
1269
+ Strachey, which is in substance what Smith writes:
1270
+
1271
+ "Their eares they boare with wyde holes, commonly two or three, and in
1272
+ the same they doe hang chaines of stayned pearle braceletts, of white
1273
+ bone or shreeds of copper, beaten thinne and bright, and wounde up
1274
+ hollowe, and with a grate pride, certaine fowles' legges, eagles,
1275
+ hawkes, turkeys, etc., with beasts clawes, bears, arrahacounes,
1276
+ squirrells, etc. The clawes thrust through they let hang upon the cheeke
1277
+ to the full view, and some of their men there be who will weare in these
1278
+ holes a small greene and yellow-couloured live snake, neere half a yard
1279
+ in length, which crawling and lapping himself about his neck oftentymes
1280
+ familiarly, he suffreeth to kisse his lippes. Others weare a dead ratt
1281
+ tyed by the tayle, and such like conundrums."
1282
+
1283
+ This is the earliest use I find of our word "conundrum," and the sense
1284
+ it bears here may aid in discovering its origin.
1285
+
1286
+ Powhatan is a very large figure in early Virginia history, and deserves
1287
+ his prominence. He was an able and crafty savage, and made a good fight
1288
+ against the encroachments of the whites, but he was no match for
1289
+ the crafty Smith, nor the double-dealing of the Christians. There is
1290
+ something pathetic about the close of his life, his sorrow for the death
1291
+ of his daughter in a strange land, when he saw his territories overrun
1292
+ by the invaders, from whom he only asked peace, and the poor privilege
1293
+ of moving further away from them into the wilderness if they denied him
1294
+ peace.
1295
+
1296
+ In the midst of this savagery Pocahontas blooms like a sweet, wild rose.
1297
+ She was, like the Douglas, "tender and true." Wanting apparently the
1298
+ cruel nature of her race generally, her heroic qualities were all of the
1299
+ heart. No one of all the contemporary writers has anything but gentle
1300
+ words for her. Barbarous and untaught she was like her comrades, but of
1301
+ a gentle nature. Stripped of all the fictions which Captain Smith has
1302
+ woven into her story, and all the romantic suggestions which later
1303
+ writers have indulged in, she appears, in the light of the few facts
1304
+ that industry is able to gather concerning her, as a pleasing and
1305
+ unrestrained Indian girl, probably not different from her savage sisters
1306
+ in her habits, but bright and gentle; struck with admiration at the
1307
+ appearance of the white men, and easily moved to pity them, and so
1308
+ inclined to a growing and lasting friendship for them; tractable and apt
1309
+ to learn refinements; accepting the new religion through love for those
1310
+ who taught it, and finally becoming in her maturity a well-balanced,
1311
+ sensible, dignified Christian woman.
1312
+
1313
+ According to the long-accepted story of Pocahontas, she did something
1314
+ more than interfere to save from barbarous torture and death a stranger
1315
+ and a captive, who had forfeited his life by shooting those who
1316
+ opposed his invasion. In all times, among the most savage tribes and in
1317
+ civilized society, women have been moved to heavenly pity by the sight
1318
+ of a prisoner, and risked life to save him--the impulse was as natural
1319
+ to a Highland lass as to an African maid. Pocahontas went further than
1320
+ efforts to make peace between the superior race and her own. When the
1321
+ whites forced the Indians to contribute from their scanty stores to the
1322
+ support of the invaders, and burned their dwellings and shot them on
1323
+ sight if they refused, the Indian maid sympathized with the exposed
1324
+ whites and warned them of stratagems against them; captured herself by a
1325
+ base violation of the laws of hospitality, she was easily reconciled to
1326
+ her situation, adopted the habits of the foreigners, married one of her
1327
+ captors, and in peace and in war cast in her lot with the strangers.
1328
+ History has not preserved for us the Indian view of her conduct.
1329
+
1330
+ It was no doubt fortunate for her, though perhaps not for the colony,
1331
+ that her romantic career ended by an early death, so that she always
1332
+ remains in history in the bloom of youth. She did not live to be pained
1333
+ by the contrast, to which her eyes were opened, between her own and her
1334
+ adopted people, nor to learn what things could be done in the Christian
1335
+ name she loved, nor to see her husband in a less honorable light than
1336
+ she left him, nor to be involved in any way in the frightful massacre
1337
+ of 1622. If she had remained in England after the novelty was over, she
1338
+ might have been subject to slights and mortifying neglect. The struggles
1339
+ of the fighting colony could have brought her little but pain. Dying
1340
+ when she did, she rounded out one of the prettiest romances of all
1341
+ history, and secured for her name the affection of a great nation, whose
1342
+ empire has spared little that belonged to her childhood and race, except
1343
+ the remembrance of her friendship for those who destroyed her people.
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+ End of Project Gutenberg's The Story of Pocahantas, by Charles Dudley Warner
1351
+
1352
+ ***
data/test/31974.txt ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+ Produced by The Online Distributed Proofreading Team at
6
+ http://www.pgdp.net (This file was produced from images
7
+ generously made available by The Internet Archive/American
8
+ Libraries.)
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+ LAST DAYS OF THE REBELLION.
19
+
20
+ THE SECOND NEW YORK CAVALRY
21
+ (HARRIS' LIGHT)
22
+ AT APPOMATTOX STATION AND APPOMATTOX COURT
23
+ HOUSE, APRIL 8 and 9, 1865.
24
+
25
+
26
+ BY
27
+ ALANSON M. RANDOL
28
+
29
+ _Major First U. S. Artillery (late Colonel Second New York
30
+ Cavalry), Bvt. Brig-General, U. S. Vols._
31
+
32
+
33
+ ALCATRAZ ISLAND, CAL.,
34
+ 1886.
35
+
36
+
37
+
38
+
39
+ LAST DAYS OF THE REBELLION.
40
+
41
+
42
+ During the winter of 1864-5 the Second New York (Harris' Light) Cavalry
43
+ was in winter quarters near Winchester, Va., on the Romney pike. Alanson
44
+ M. Randol, Captain First United States Artillery, was colonel of the
45
+ regiment, which, with the First Connecticut, Second Ohio, and Third New
46
+ Jersey, constituted the first brigade, third division, cavalry corps. The
47
+ division was commanded by General George A. Custer; the brigade by A. C.
48
+ M. Pennington, Captain Second United States Artillery, Colonel Third New
49
+ Jersey Cavalry. On the 27th of February, 1865, the divisions of Merritt
50
+ and Custer, with the batteries of Miller (Fourth United States Artillery)
51
+ and Woodruff (Second United States Artillery), all under command of
52
+ General Sheridan, left their winter quarters in and around Winchester,
53
+ and, after a series of splendid victories, and unsurpassed marches and
54
+ fortunes, joined the Army of the Potomac in front of Petersburg on the
55
+ 27th of March. The Second New York Cavalry shared largely in the glories
56
+ and miseries of this great and successful raid. At Five Forks, Deep Creek,
57
+ and Sailors Creek, it not only maintained its gallant and meritorious
58
+ record, but added to its great renown. At the gentle and joyous passage
59
+ of arms at Appomattox Station, on the 8th of April, it reached the climax
60
+ of its glory, and, by its deeds of daring, touched the pinnacle of fame.
61
+ On that day it performed prodigies of valor, and achieved successes as
62
+ pregnant with good results as any single action of the war. By forcing a
63
+ passage through the rebel lines and heading off Lee's army, it contributed
64
+ largely to the result that followed the next day--the surrender of the
65
+ Confederate Army of Northern Virginia.
66
+
67
+ * * * * *
68
+
69
+ On the night of the 7th of April we camped on Buffalo River. Moving at an
70
+ early hour on the 8th, we crossed the Lynchburg Railroad at Prospect
71
+ Station, and headed for Appomattox Station, where it was expected we would
72
+ strike, if not intercept, Lee's retreating, disintegrating army. The trail
73
+ was fresh and the chase hot. Joy beamed in every eye, for all felt that
74
+ the end was drawing near, and we earnestly hoped that ours might be the
75
+ glorious opportunity of striking the final blow. About noon the regiment
76
+ was detached to capture a force of the enemy said to be at one of the
77
+ crossings of the Appomattox. Some few hundreds, unarmed, half-starved,
78
+ stragglers, with no fight in them, were found, and turned over to the
79
+ Provost Marshall. Resuming its place in the column, I received orders to
80
+ report with the regiment to General Custer, who was at its head. Reporting
81
+ in compliance with this order, General Custer informed me that his scouts
82
+ had reported three large trains of cars at Appomattox Station, loaded with
83
+ supplies for the rebel army; that he expected to have made a junction
84
+ with Merritt's division near this point; that his orders were to wait here
85
+ till Merritt joined him; that he had not heard from him since morning, and
86
+ had sent an officer to communicate with him, but if he did not hear from
87
+ him in half an hour, he wished me to take my regiment and capture the
88
+ trains of cars, and, if possible, reach and hold the pike to Lynchburg.
89
+ While talking, the whistle of the locomotive was distinctly but faintly
90
+ heard, and the column was at once moved forward, the Second New York in
91
+ advance. As we neared the station the whistles became more and more
92
+ distinct, and a scout reported the trains rapidly unloading, and that the
93
+ advance of the rebel army was passing through Appomattox Court House.
94
+ Although Custer's orders were to make a junction with Merritt before
95
+ coming in contact with the enemy, here was a chance to strike a decisive
96
+ blow, which, if successful, would add to his renown and glory, and if not,
97
+ Merritt would soon be up to help him out of the scrape. Our excitement was
98
+ intense, but subdued. All saw the vital importance of heading off the
99
+ enemy. Another whistle, nearer and clearer, and another scout decided the
100
+ question. I was ordered to move rapidly to Appomattox Station, seize the
101
+ trains there, and, if possible, get possession of the Lynchburg pike.
102
+ General Custer rode up alongside of me and, laying his hand on my
103
+ shoulder, said, "Go in, old fellow, don't let anything stop you; now is
104
+ the chance for your stars. Whoop 'em up; I'll be after you." The regiment
105
+ left the column at a slow trot, which became faster and faster until we
106
+ caught sight of the cars, which were preparing to move away, when, with a
107
+ cheer, we charged down on the station, capturing in an instant the three
108
+ trains of cars, with the force guarding them. I called for engineers and
109
+ firemen to take charge of the trains, when at least a dozen of my men
110
+ around me offered their services. I chose the number required, and ordered
111
+ the trains to be run to the rear, where I afterwards learned they were
112
+ claimed as captures by General Ord's corps. The cars were loaded with
113
+ commissary stores, a portion of which had been unloaded, on which the
114
+ rebel advance were regaling themselves when we pounced so unexpectedly
115
+ down on them.
116
+
117
+ While the regiment was rallying after the charge, the enemy opened on it a
118
+ fierce fire from all kinds of guns--field and siege--which, however, did
119
+ but little damage, as the regiment was screened from the enemy's sight by
120
+ a dense woods. I at once sent notification to General Custer and Colonel
121
+ Pennington of my success, moved forward--my advance busily
122
+ skirmishing--and followed with the regiment in line of battle, mounted.
123
+ The advance was soon checked by the enemy formed behind hastily
124
+ constructed intrenchments in a dense wood of the second growth of pine.
125
+ Flushed with success and eager to gain the Lynchburg pike, along which
126
+ immense wagon and siege trains were rapidly moving, the regiment was
127
+ ordered to charge. Three times did it try to break through the enemy's
128
+ lines, but failed. Colonel Pennington arrived on the field with the rest
129
+ of the brigade, when, altogether, a rush was made, but it failed. Then
130
+ Custer, with the whole division, tried it, but he, too, failed. Charge and
131
+ charge again, was now the order, but it was done in driblets, without
132
+ organization and in great disorder. General Custer was here, there, and
133
+ everywhere, urging the men forward with cheers and oaths. The great prize
134
+ was so nearly in his grasp that it seemed a pity to lose it; but the rebel
135
+ infantry held on hard and fast, while his artillery belched out death and
136
+ destruction on every side of us. Merritt and night were fast coming on, so
137
+ as soon as a force, however small, was organized, it was hurled forward,
138
+ only to recoil in confusion and loss. Confident that this mode of fighting
139
+ would not bring us success, and fearful lest the enemy should assume the
140
+ offensive, which, in our disorganized state, must result in disaster, I
141
+ went to General Custer soon after dark, and said to him that if he would
142
+ let me get my regiment together, I could break through the rebel line. He
143
+ excitedly replied, "Never mind your regiment; take anything and everything
144
+ you can find, horse-holders and all, and break through: we must get hold
145
+ of the pike to-night." Acting on this order, a force was soon organized by
146
+ me, composed chiefly of the Second New York, but in part of other
147
+ regiments, undistinguishable in the darkness. With this I made a charge
148
+ down a narrow lane, which led to an open field where the rebel artillery
149
+ was posted. As the charging column debouched from the woods, six bright
150
+ lights suddenly flashed directly before us. A toronado of canister-shot
151
+ swept over our heads, and the next instant we were in the battery. The
152
+ line was broken, and the enemy routed. Custer, with the whole division,
153
+ now pressed through the gap pell-mell, in hot pursuit, halting for neither
154
+ prisoners nor guns, until the road to Lynchburg, crowded with wagons and
155
+ artillery, was in our possession. We then turned short to the right and
156
+ headed for the Appomattox Court House; but just before reaching it we
157
+ discovered the thousands of camp fires of the rebel army, and the pursuit
158
+ was checked. The enemy had gone into camp, in fancied security that his
159
+ route to Lynchburg was still open before him; and he little dreamed that
160
+ our cavalry had planted itself directly across his path, until some of our
161
+ men dashed into Appomattox Court House, where, unfortunately, Lieutenant
162
+ Colonel Root, of the Fifteenth New York Cavalry, was instantly killed by a
163
+ picket guard. After we had seized the road, we were joined by other
164
+ divisions of the cavalry corps which came to our assistance, but too late
165
+ to take part in the fight.
166
+
167
+ Owing to the night attack, our regiments were so mixed up that it took
168
+ hours to reorganize them. When this was effected, we marched near to the
169
+ railroad station and bivouacked.
170
+
171
+ That night was passed in great anxiety. We threw ourselves on the ground
172
+ to rest, but not to sleep. We knew that the infantry was hastening to our
173
+ assistance, but unless they joined us before sunrise, our cavalry line
174
+ would be brushed away, and the rebels would escape after all our hard work
175
+ to head them off from Lynchburg. About daybreak I was aroused by loud
176
+ hurrahs, and was told that Ord's corps was coming up rapidly, and forming
177
+ in rear of our cavalry. Soon after we were in the saddle and moving
178
+ towards the Appomattox Court House road, where the firing was growing
179
+ lively; but suddenly our direction was changed, and the whole cavalry
180
+ corps rode at a gallop to the right of our line, passing between the
181
+ position of the rebels and the rapidly forming masses of our infantry, who
182
+ greeted us with cheers and shouts of joy as we galloped along their front.
183
+ At several places we had to "run the gauntlet" of fire from the enemy's
184
+ guns posted around the Court House, but this only added to the interest
185
+ of the scene, for we felt it to be the last expiring effort of the enemy
186
+ to put on a bold front; we knew that we had them this time, and that at
187
+ last Lee's proud army of Northern Virginia was at our mercy. While moving
188
+ at almost a charging gait we were suddenly brought to a halt by reports of
189
+ a surrender. General Sheridan and his staff rode up, and left in hot haste
190
+ for the Court House; but just after leaving us, they were fired into by a
191
+ party of rebel cavalry, who also opened fire on us, to which we promptly
192
+ replied, and soon put them to flight. Our lines were then formed for a
193
+ charge on the rebel infantry; but while the bugles were sounding the
194
+ charge, an officer with a white flag rode out from the rebel lines, and we
195
+ halted. It was fortunate for us that we halted when we did, for had we
196
+ charged we would have been swept into eternity, as directly in our front
197
+ was a creek, on the other side of which was a rebel brigade, entrenched,
198
+ with batteries in position, the guns double shotted with canister. To have
199
+ charged this formidable array, mounted, would have resulted in almost
200
+ total annihilation. After we had halted, we were informed that
201
+ preliminaries were being arranged for the surrender of Lee's whole army.
202
+ At this news, cheer after cheer rent the air for a few moments, when soon
203
+ all became as quiet as if nothing unusual had occurred. I rode forward
204
+ between the lines with Custer and Pennington, and met several old friends
205
+ among the rebels, who came out to see us. Among them, I remember Lee
206
+ (Gimlet), of Virginia, and Cowan, of North Carolina. I saw General Cadmus
207
+ Wilcox just across the creek, walking to and fro with his eyes on the
208
+ ground, just as was his wont when he was instructor at West Point. I
209
+ called to him, but he paid no attention, except to glance at me in a
210
+ hostile manner.
211
+
212
+ While we were thus discussing the probable terms of the surrender, General
213
+ Lee, in full uniform, accompanied by one of his staff, and General
214
+ Babcock, of General Grant's staff, rode from the Court House towards our
215
+ lines. As he passed us, we all raised our caps in salute, which he
216
+ gracefully returned.
217
+
218
+ Later in the day loud and continuous cheering was heard among the rebels,
219
+ which was taken up and echoed by our lines until the air was rent with
220
+ cheers, when all as suddenly subsided. The surrender was a fixed fact, and
221
+ the rebels were overjoyed at the very liberal terms they had received. Our
222
+ men, without arms, approached the rebel lines, and divided their rations
223
+ with the half-starved foe, and engaged in quiet, friendly conversation.
224
+ There was no bluster nor braggadocia,--nothing but quiet contentment that
225
+ the rebellion was crushed, and the war ended. In fact, many of the rebels
226
+ seemed as much pleased as we were. Now and then one would meet a surly,
227
+ dissatisfied look; but, as a general thing, we met smiling faces and hands
228
+ eager and ready to grasp our own, especially if they contained anything to
229
+ eat or drink. After the surrender, I rode over to the Court House with
230
+ Colonel Pennington and others and visited the house in which the surrender
231
+ had taken place, in search of some memento of the occasion. We found that
232
+ everything had been appropriated before our arrival. Mr. Wilmer McLean, in
233
+ whose house the surrender took place, informed us that on his farm at
234
+ Manassas the first battle of Bull Run was fought. I asked him to write his
235
+ name in my diary, for which, much to his surprise. I gave him a dollar.
236
+ Others did the same, and I was told that he thus received quite a golden
237
+ harvest.
238
+
239
+ While all of the regiments of the division shared largely in the glories
240
+ of these two days, none excelled the Second New York Cavalry in its record
241
+ of great and glorious deeds. Well might its officers and men carry their
242
+ heads high, and feel elated with pride as they received the
243
+ congratulations and commendations showered on them from all sides. They
244
+ felt they had done their duty, and given the "tottering giant" a blow that
245
+ laid him prostrate at their feet, never, it is to be hoped, to rise again.
246
+
247
+
248
+
249
+
250
+ Transcriber's Note:
251
+
252
+ The following misprints have been corrected:
253
+ "crowed" corrected to "crowded" (page 7)
254
+ "on on" corrected to "on" (page 9)
255
+ "unusal" corrected to "unusual" (page 9)
256
+
257
+
258
+
259
+
260
+
261
+
262
+ End of Project Gutenberg's Last Days of the Rebellion, by Alanson M. Randol
263
+
264
+ ***
data/test/3247.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/32761.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/3340.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/33426.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/33756.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/34467.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/35205.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/35246.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/3608.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/36256.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/37006.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/37328.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/37403.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/37443.txt ADDED
@@ -0,0 +1,641 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+ Produced by David E. Brown and The Online Distributed
6
+ Proofreading Team at http://www.pgdp.net (This file was
7
+ produced from images generously made available by the
8
+ Library of Congress)
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+ [Illustration]
19
+
20
+
21
+
22
+
23
+ THE FASCINATING
24
+ BOSTON
25
+
26
+ How to Dance and How to Teach the
27
+ Popular New Social Favorite
28
+
29
+ _By_
30
+ ALFONSO JOSEPHS SHEAFE
31
+ Master of Dancing
32
+
33
+ _Translator and Editor of
34
+ Zorn's Grammar of the Art of Dancing_
35
+
36
+
37
+ Boston, Mass.
38
+ THE BOSTON MUSIC COMPANY
39
+ New York: G. Schirmer, Incorporated
40
+
41
+ Copyright, 1913, by
42
+ THE BOSTON MUSIC CO.
43
+ For all countries
44
+
45
+
46
+ B. M. Co. 3366
47
+
48
+
49
+
50
+
51
+ Table of Contents
52
+
53
+
54
+ Page
55
+
56
+ FOREWORD 1
57
+
58
+ THE BOSTON
59
+ THE FUNDAMENTAL POSITIONS 5
60
+ THE POSITION OF THE PARTNERS 8
61
+ THE STEP OF THE BOSTON 12
62
+ THE LONG BOSTON 22
63
+ THE SHORT BOSTON 23
64
+ THE OPEN BOSTON 24
65
+ THE BOSTON DIP 25
66
+
67
+ THE TURKEY TROT 27
68
+
69
+ THE AEROPLANE GLIDE 28
70
+
71
+ THE TANGO 29
72
+
73
+
74
+
75
+
76
+ THE FASCINATING BOSTON
77
+
78
+
79
+
80
+
81
+ FOREWORD
82
+
83
+
84
+ Since the introduction of the waltz, more than a hundred years ago, it
85
+ has held the first place in the esteem of dancers throughout the
86
+ civilized world. There has appeared, however, a new claimant for the
87
+ place--one that possesses all the qualities that go to make a social
88
+ favorite, and has the additional advantages of greater ease of
89
+ execution, and wider possibilities of adaptation.
90
+
91
+ This is the BOSTON--not, as many persons suppose, a new creation nor
92
+ indeed is it a novelty even to the American public, for it was
93
+ introduced here more than a generation ago; but the great popularity of
94
+ the Two-Step, which had just then come into vogue, and was fast gaining
95
+ favor under the influence of such brilliant compositions as the
96
+ quick-step marches by Sousa, operated against its immediate acceptance.
97
+
98
+ One of the reasons why the Boston should prove today a more attractive
99
+ dance than any other, is the fact that now there are more captivating
100
+ airs written for this particular form of dance than for any other, and
101
+ as the Two-Step, in its time, found its most powerful ally in the music
102
+ to which it was adapted, the Boston has today the persuasive
103
+ intercession of such languorous and haunting melodies as "Love's
104
+ Awakening" and "On the Wings of Dream," by Danglas; Sinibaldi's
105
+ "Thrill," and others.
106
+
107
+ General taste has gradually found out the superior charm of the Boston;
108
+ the pendulum of public favor has again swung in the direction of skilful
109
+ dancing.
110
+
111
+ The recent revival of the Waltz in its proper form, has brought with it
112
+ a larger appreciation of the more worthy and graceful social dances,
113
+ and the entire world now recognizes the wonderful beauty of the Boston,
114
+ and has welcomed it as a real competitor.
115
+
116
+ The Boston is not a Waltz, yet it is the perfection of it. It is one of
117
+ those paradoxical things which, while it is impossible to be classified,
118
+ contains all that is to be found in almost any other dance. Even the
119
+ persons who have so long and so loyally clung to other forms of dancing,
120
+ and have abated none in their zeal for their favorites, have been
121
+ unconsciously, and perhaps unwillingly, charmed by the seductiveness of
122
+ the Boston, until they now freely declare the new dance to be the
123
+ superior of the Waltz. Therefore it is safe to say that the Boston will,
124
+ eventually, supersede the Waltz altogether.
125
+
126
+ We demand a dance which combines ease of execution with attractive
127
+ movement. That is just what the Boston does, and perhaps more. It is so
128
+ simple in construction that, when acquired, it becomes natural, and its
129
+ perfect adaptability assures it lasting popularity.
130
+
131
+ Owing to the urgent request of many of his pupils and colleagues, the
132
+ author has undertaken this little book in the hope that it will meet the
133
+ requirements of both teachers and students, and help to assure the
134
+ proper appreciation of what is in reality the most delightful and
135
+ artistic social dance since the Minuet.
136
+
137
+
138
+ THE FIVE FUNDAMENTAL POSITIONS
139
+
140
+ In order that the reader may the more readily understand the
141
+ descriptions given in this book, we will explain the five fundamental
142
+ positions upon which the art of dancing rests.
143
+
144
+ In the 1st position, the feet are together, heel against heel.
145
+
146
+ [Illustration]
147
+
148
+ In the 2nd position, the heels are separated sidewise, and on the same
149
+ line.
150
+
151
+ [Illustration]
152
+
153
+ In the 3rd position, the heel of one foot touches the middle of the
154
+ other.
155
+
156
+ [Illustration]
157
+
158
+ In the 4th position, the feet are separated as in walking, either
159
+ directly forward or directly backward.
160
+
161
+ [Illustration]
162
+
163
+ In the 5th position, the heel of one foot touches the point of the
164
+ other.
165
+
166
+ [Illustration]
167
+
168
+ In all these positions the feet must be turned outward to form not less
169
+ than a right angle.
170
+
171
+
172
+ THE POSITIONS OF THE PARTNERS
173
+
174
+ Much, if not all, of the adverse criticism of the Boston which has been
175
+ offered by educators, parents and other responsible objectors, has been
176
+ directed at the relative positions of the partners. This is, in fact, no
177
+ more than the general rule as regards the Social Round Dance, with the
178
+ possible exception that the positions have been sometimes distorted by
179
+ attempts to copy the freer forms of dancing that have been presented
180
+ upon the stage.
181
+
182
+ The Round Dance demands that a certain fixed grouping of the partners be
183
+ maintained in order that the rotation around a common moving centre may
184
+ be accomplished, and it is here that the most serious problem is to be
185
+ found.
186
+
187
+ The dancing profession long ago undertook to settle upon arbitrary
188
+ groupings satisfactory to the needs of the dancers, and conforming to
189
+ all the requirements of propriety and hygienic exercise.
190
+
191
+ [Illustration]
192
+
193
+ Acting upon this basis, the reputable teachers of dancing throughout the
194
+ world have adopted and promulgated three fundamental groupings for the
195
+ Round Dance which are so constructed as to provide the greatest ease of
196
+ execution and freedom of action. They are known as the Waltz Position,
197
+ the Open Position, and the Side Position of the Waltz. All round dances
198
+ are executed in one or another of these groupings, which are not only
199
+ accepted by all good teachers, but, with the exception of certain minor
200
+ and unimportant variations, rigidly adhered to in all their work.
201
+
202
+ In the Waltz Position the partners stand facing one another, with
203
+ shoulders parallel, and looking over one another's right shoulder.
204
+ Special attention must be paid to the parallel position of the
205
+ shoulders, in order to fit the individual movements of the partners
206
+ along the line of direction.
207
+
208
+ The gentleman places his right hand lightly upon the lady's back, at a
209
+ point about half-way across, between the waist-line and the
210
+ shoulder-blades. The fingers are so rounded as to permit the free
211
+ circulation of air between the palm of the hand and the lady's back, and
212
+ should not be spread.
213
+
214
+ The lady places her left hand lightly upon the gentleman's arm, allowing
215
+ her fore-arm to rest gently upon his arm. The partners stand at an easy
216
+ distance from one another, inclining toward the common centre very
217
+ slightly. The free hands are lightly joined at the side. This is merely
218
+ to provide occupation for the disengaged arms, and the gentleman holds
219
+ the tip of the lady's hand lightly in the bended fingers of his own.
220
+ Guiding is accomplished by the gentleman through a slight lifting of his
221
+ right elbow.
222
+
223
+ [Illustration]
224
+
225
+
226
+ THE OPEN POSITION
227
+
228
+ The Open Position needs no explanation, and can be readily understood
229
+ from the illustration facing page 8.
230
+
231
+
232
+ THE SIDE POSITION OF THE WALTZ
233
+
234
+ The side position of the Waltz differs from the Waltz Position only in
235
+ the fact that the partners stand side by side and with the engaged arms
236
+ more widely extended. The free arms are held as in the frontispiece. In
237
+ the actual rotation this position naturally resolves itself into the
238
+ regular Waltz Position.
239
+
240
+
241
+ THE STEP OF THE BOSTON
242
+
243
+ The preparatory step of the Boston differs materially from that of any
244
+ other Social Dance. There is _only one position_ of the feet in the
245
+ Boston--the 4th. That is to say, the feet are separated one from the
246
+ other as in walking.
247
+
248
+ On the first count of the measure the whole leg swings freely, and as a
249
+ unit, from the hip, and the foot is put down practically flat upon the
250
+ floor, where it immediately receives the entire weight of the body
251
+ _perpendicularly_. The weight is held entirely upon this foot during the
252
+ remainder of the measure, whether it be in 3/4 or 2/4 time.
253
+
254
+ The following preparatory exercises must be practiced forward and
255
+ backward until the movements become natural, before proceeding.
256
+
257
+ In going backward, the foot must be carried to the rear as far as
258
+ possible, and the weight must always be perpendicular to the supporting
259
+ foot.
260
+
261
+ These movements are identical with walking, and except the particular
262
+ care which must be bestowed upon the placing of the foot on the first
263
+ count of the measure, they require no special degree of attention.
264
+
265
+ On the second count the free leg swings forward until the knee has
266
+ become entirely straightened, and is held, suspended, during the third
267
+ count of the measure. This should be practiced, first with the weight
268
+ resting upon the entire sole of the supporting foot, and then, when this
269
+ has been perfectly accomplished, the same exercise may be supplemented
270
+ by raising the heel (of the supporting foot) on the second count and
271
+ lowering it on the third count. _Great care must be taken not to divide
272
+ the weight._
273
+
274
+ For the purpose of instruction, it is well to practice these steps to
275
+ Mazurka music, because of the clearness of the count.
276
+
277
+ [Illustration]
278
+
279
+ When the foregoing exercises have been so fully mastered as to become,
280
+ in a sense, muscular habits, we may, with safety, add the next feature.
281
+ This consists in touching the floor with the point of the free foot, at
282
+ a point as far forward or backward as can be done without dividing the
283
+ weight, on the second count of the measure. Thus, we have accomplished,
284
+ as it were, an interrupted, or, at least, an arrested step, and this is
285
+ the true essence of the Boston.
286
+
287
+ Too great care cannot be expended upon this phase of the step, and it
288
+ must be practiced over and over again, both forward and backward, until
289
+ the movement has become second nature. All this must precede any attempt
290
+ to turn.
291
+
292
+ The turning of the Boston is simplicity itself, but it is, nevertheless,
293
+ the one point in the instruction which is most bothersome to
294
+ learners. The turn is executed upon the ball of _the supporting foot_,
295
+ and consists in twisting half round without lifting either foot from the
296
+ ground. In this, the weight is held altogether upon the supporting foot,
297
+ and there is no crossing.
298
+
299
+ In carrying the foot forward for the second movement, the knees must
300
+ pass close to one another, and care must be taken that _the entire half
301
+ turn comes upon the last count of the measure_.
302
+
303
+ To sum up:--
304
+
305
+ Starting with the weight upon the left foot, step forward, placing the
306
+ entire weight upon the right foot, as in the illustration facing page 14
307
+ (count 1); swing left leg quickly forward, straightening the left knee
308
+ and raising the right heel, and touch the floor with the extended left
309
+ foot as in the illustration facing page 16, but without placing any
310
+ weight upon that foot (count 2); execute a half-turn to the left,
311
+ backward, upon the ball of the supporting (right) foot, at the same time
312
+ lowering the right heel, and finish as in the illustration opposite page
313
+ 18 (count 3). One measure.
314
+
315
+ [Illustration]
316
+
317
+ Starting again, this time with the weight wholly upon the right foot,
318
+ and with the left leg extended backward, and the point of the left foot
319
+ lightly touching the floor, step backward, throwing the weight entirely
320
+ upon the left foot which sinks to a position flat upon the floor, as
321
+ shown in the illustration facing page 21, (count 4); carry the right
322
+ foot quickly backward, and touch with the point as far back as possible
323
+ upon the line of direction without dividing the weight, at the same time
324
+ raising the left heel as in the illustration facing page 22, (count 5);
325
+ and complete the rotation by executing a half-turn to the right,
326
+ forward, upon the ball of the left foot, simultaneously lowering the
327
+ left heel, and finishing as in the illustration facing page 24, (count
328
+ 6).
329
+
330
+
331
+ THE REVERSE
332
+
333
+ The reverse of the step should be acquired at the same time as the
334
+ rotation to the right, and it is, therefore, of great importance to
335
+ alternate from the right to the left rotation from the beginning of the
336
+ turning exercise. The reverse itself, that is to say, the act of
337
+ alternating is effected in a single measure without turning (see
338
+ preparatory exercise, page 13) which may be taken backward by the
339
+ gentleman and forward by the lady, whenever they have completed a whole
340
+ turn.
341
+
342
+ The mechanism of the reverse turn is exactly the same as that of the
343
+ turn to the right, except that it is accomplished with the other foot,
344
+ and in the opposite direction.
345
+
346
+ There is no better or more efficacious exercise to perfect the Boston,
347
+ than that which is made up of one complete turn to the right, a measure
348
+ to reverse, and a complete turn to the left. This should be practised
349
+ until one has entirely mastered the motion and rhythm of the dance. The
350
+ writer has used this exercise in all his work, and finds it not only
351
+ helpful and interesting to the pupil, but of special advantage in
352
+ obviating the possibility of dizziness, and the consequent
353
+ unpleasantness and loss of time.
354
+
355
+ [Illustration]
356
+
357
+ After acquiring a degree of ease in the execution of these movements to
358
+ Mazurka music, it is advisable to vary the rhythm by the introduction of
359
+ Spanish or other clearly accented Waltz music, before using the more
360
+ liquid compositions of Strauss or such modern song waltzes as those of
361
+ Danglas, Sinibaldi, etc.
362
+
363
+ It is one of the remarkable features of the Boston that the weight is
364
+ always opposite the line of direction--that is to say, in going forward,
365
+ the weight is retained upon the rear foot, and in going backward, the
366
+ weight is always upon the front foot (direction always radiates from the
367
+ dancer). Thus, in proceeding around the room, the weight must always be
368
+ held back, instead of inclining slightly forward as in the other round
369
+ dances. This seeming contradiction of forces lends to the Boston a
370
+ unique charm which is to be found in no other dance.
371
+
372
+ As the dancer becomes more familiar with the Boston, the movement
373
+ becomes so natural that little or no thought need be paid to technique,
374
+ in order to develop the peculiar grace of it.
375
+
376
+ The fact of its being a dance altogether in one position calls for
377
+ greater skill in the execution of the Boston, than would be the case if
378
+ there were other changes and contrasts possible, just as it is more
379
+ difficult to play a melody upon a violin of only one string.
380
+
381
+ The Boston, in its completed form, resolves itself into a sort of
382
+ walking movement, so natural and easy that it may be enjoyed for a
383
+ whole evening without more fatigue than would be the result of a single
384
+ hour of the Waltz and Two-Step.
385
+
386
+ Aside from the attractiveness of the Boston as a social dance, its
387
+ physical benefits are more positive than those of any other Round Dance
388
+ that we have ever had. The action is so adjusted as to provide the
389
+ maximum of muscular exercise and the minimum of physical effort. This
390
+ tends towards the conservation of energy, and produces and maintains, at
391
+ the same time an evenness of blood pressure and circulation. The
392
+ movements also necessitate a constant exercise of the ankles and insteps
393
+ which is very strengthening to those parts, and cannot fail to raise and
394
+ support the arch of the foot.
395
+
396
+ Taken from any standpoint, the Boston is one of the most worthy forms of
397
+ the social dance ever devised, and the distortions of position which
398
+ are now occasionally practiced must soon give way to the genuinely
399
+ refining influence of the action.
400
+
401
+ [Illustration]
402
+
403
+ Of the various forms of the Boston, there is little to be said beyond
404
+ the description of the manner of their execution, which will be treated
405
+ in the following pages.
406
+
407
+ It is hoped that this book will help toward a more complete
408
+ understanding of the beauties and attractions of the Boston, and further
409
+ the proper appreciation of it.
410
+
411
+
412
+ _All descriptions of dances given in this book relate to the lady's
413
+ part. The gentleman's is exactly the same, but in the countermotion._
414
+
415
+
416
+ THE LONG BOSTON
417
+
418
+ The ordinary form of the Boston as described in the foregoing pages is
419
+ commonly known as the "Long" Boston to distinguish it from other forms
420
+ and variations. It is danced in 3/4 time, either Waltz or Mazurka, and
421
+ at any tempo desired. As this is the fundamental form of the Boston, it
422
+ should be thoroughly acquired before undertaking any other.
423
+
424
+ [Illustration]
425
+
426
+
427
+ THE SHORT BOSTON
428
+
429
+ The "Short" Boston differs from the "Long" Boston only in measure. It is
430
+ danced in either 2/4 or 6/8 time, and the first movement (in 2/4 time)
431
+ occupies the duration of a quarter-note. The second and third movements
432
+ each occupy the duration of an eighth-note. Thus, there exists between
433
+ the "Long" and the "Short" Boston the same difference as between the
434
+ Waltz and the Galop. In the more rapid forms of the "Short" Boston, the
435
+ rising and sinking upon the second and third movements naturally take
436
+ the form of a hop or skip. The dance is more enjoyable and less
437
+ fatiguing in moderate tempo.
438
+
439
+
440
+ THE OPEN BOSTON
441
+
442
+ The "Open" Boston contains two parts of eight measures each. The first
443
+ part is danced in the positions shown in the illustrations facing pages
444
+ 8 and 10, and the second part consists of 8 measures of the "Long"
445
+ Boston.
446
+
447
+ In the first part, the dancers execute three Boston steps forward,
448
+ without turning, and one Boston step turning (towards the partner) to
449
+ face directly backward (1/2 turn). 4 measures.
450
+
451
+ This is followed by three Boston steps backward (without turning) in the
452
+ position shown in the illustration facing page 10, followed by one
453
+ Boston step turning (toward the partner) and finishing in regular Waltz
454
+ Position for the execution of the second part.
455
+
456
+ [Illustration]
457
+
458
+
459
+ THE BOSTON DIP
460
+
461
+ The "Dip" is a combination dance in 3/4 or 3/8 time, and contains 4
462
+ measures of the "Long" Boston, preceded by 4 measures, as follows:
463
+
464
+ Standing upon the left foot, step directly to the side, and transfer the
465
+ weight to the right foot (count 1); swing the left leg to the right in
466
+ front of the right, at the same time raising the right heel (count 2);
467
+ lower the right heel (count 3); return the left foot to its original
468
+ place where it receives the weight (count 4); swing the right leg across
469
+ in front of the left, raising the left heel (count 5); and lower the
470
+ left heel (count 6). 2 measures.
471
+
472
+ Swing the right foot to the right, and put it down directly at the side
473
+ of the left (count 1); hop on the right foot and swing the left across
474
+ in front (count 2); fall back upon the right foot (count 3); put down
475
+ the left foot, crossing in front of the right, and transfer weight to it
476
+ (count 4); with right foot step a whole step to the right (count 5); and
477
+ finish by bringing the left foot against the right, where it receives
478
+ the weight (count 6). 2 measures.
479
+
480
+ In executing the hop upon counts 2 and 3 of the third measure, the
481
+ movement must be so far delayed that the falling back will exactly
482
+ coincide with the third count of the music.
483
+
484
+ [Illustration]
485
+
486
+
487
+
488
+
489
+ THE TURKEY TROT
490
+
491
+ _Preparation:--Side Position of the Waltz._
492
+
493
+
494
+ During the first four measures take four Boston steps without turning
495
+ (lady forward, gentleman backward), and bending the supporting knee,
496
+ stretch the free foot backward, (lady's left, gentleman's right) as
497
+ shown in the illustration opposite. 4 meas.
498
+
499
+ Repeat in opposite direction. 4 meas.
500
+
501
+ Execute four drawing steps to the side (lady's right, gentleman's left)
502
+ swaying the shoulders and body in the direction of the drawn foot, and
503
+ pointing with the free foot upon the fourth, as shown in figure.
504
+ 4 meas.
505
+
506
+ Repeat in opposite direction. 4 meas.
507
+
508
+ Eight whole turns, Short Boston or Two-Step. 16 meas.
509
+
510
+ Repeat at will.
511
+
512
+ * * * * *
513
+
514
+ A splendid specimen for this dance will be found in "The Gobbler" by
515
+ J. Monroe.
516
+
517
+
518
+
519
+
520
+ THE AEROPLANE GLIDE
521
+
522
+
523
+ The "Aeroplane Glide" is very similar to the Boston Dip. It is supposed
524
+ to represent the start of the flight of an aeroplane, and derives its
525
+ name from that fact.
526
+
527
+ The sole difference between the "Dip" and "Aeroplane" consists in the
528
+ six running steps which make up the first two measures. Of these running
529
+ steps, which are executed sidewise and with alternate crossings, before
530
+ and behind, only the fourth, at the beginning of the second measure
531
+ requires special description. Upon this step, the supporting knee is
532
+ noticeably bended to coincide with the accent of the music.
533
+
534
+ The rest of the dance is identical with the "Dip". (See page 25.)
535
+
536
+ [Illustration]
537
+
538
+
539
+
540
+
541
+ THE TANGO
542
+
543
+
544
+ The Tango is a Spanish American dance which contains much of the
545
+ peculiar charm of the other Spanish dances, and its execution depends
546
+ largely upon the ability of the dancers so to grasp the rhythm of the
547
+ music as to interpret it by their movements. The steps are all simple,
548
+ and the dancers are permitted to vary or improvise the figures at will.
549
+
550
+ Of these figures the two which follow are most common, and lend
551
+ themselves most readily to verbal description.
552
+
553
+
554
+ TANGO No. 1
555
+
556
+ The partners face one another as in Waltz Position. The gentleman takes
557
+ the lady's right hand in his left, and, stretching the arms to the full
558
+ extent, holding them at the shoulder height, he places her right hand
559
+ upon his left shoulder, and holds it there, as in the illustration
560
+ opposite page 30.
561
+
562
+ In starting, the gentleman throws his right shoulder slightly back and
563
+ steps directly backward with his left foot, while the lady follows
564
+ forward with her right. In this manner both continue two steps, crossing
565
+ one foot over the other and then execute a half-turn in the same
566
+ direction. This is followed by four measures of the Two-Step and the
567
+ whole is repeated at will. 8 measures.
568
+
569
+ [Illustration]
570
+
571
+
572
+ TANGO No. 2
573
+
574
+ This variant starts from the same position as Tango No. 1. The gentleman
575
+ takes two steps backward with the lady following forward, and then two
576
+ steps to the side (the lady's right and the gentleman's left) and two
577
+ steps in the opposite direction to the original position.
578
+ 8 measures.
579
+
580
+ These steps to the side should be marked by the swaying of the bodies as
581
+ the feet are drawn together on the second count of the measure, and the
582
+ whole is followed by 8 measures of the Two-Step. Repeat all as desired.
583
+
584
+
585
+
586
+
587
+ IDEAL MUSIC FOR THE "BOSTON"
588
+
589
+
590
+ PIANO SOLO
591
+
592
+ (_Also to be had for Full or Small Orchestra_)
593
+
594
+ LOVE'S AWAKENING _J. Danglas_ .60
595
+ ON THE WINGS OF DREAM _J. Danglas_ .60
596
+ FRISSON (Thrill!) _S. Sinibaldi_ .50
597
+ LOVE'S TRIUMPH _A. Daniele_ .60
598
+ DOUCEMENT _G. Robert_ .60
599
+ VIENNOISE _A. Duval_ .60
600
+
601
+ These selected numbers have attained success, not alone for their
602
+ attractions of melody and rich harmony, but for their rhythmical
603
+ flexibility and perfect adaptedness to the "Boston."
604
+
605
+
606
+ FOR THE TURKEY TROT
607
+
608
+ Especially recommended
609
+
610
+ THE GOBBLER _J. Monroe_ .50
611
+
612
+
613
+ Any of the foregoing compositions will be supplied on receipt of
614
+ one-half the list price. Postage two cents extra for each copy.
615
+
616
+
617
+ PUBLISHED BY
618
+
619
+ THE BOSTON MUSIC COMPANY 26 & 28 WEST ST., BOSTON, MASS.
620
+
621
+
622
+
623
+
624
+ TRANSCRIBER'S NOTES:
625
+
626
+
627
+ Text in italics is surrounded with underscores: _italics_.
628
+
629
+ Punctuation has been corrected without note.
630
+
631
+ Obvious typographical errors have been corrected as follows:
632
+ Page 8: duplicate word "the" removed
633
+ Page 23: duplicate word "and" removed
634
+
635
+
636
+
637
+
638
+
639
+ End of Project Gutenberg's The Fascinating Boston, by Alfonso Josephs Sheafe
640
+
641
+ ***
data/test/3754.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/37702.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/test/38106.txt ADDED
The diff for this file is too large to render. See raw diff