Created
August 10, 2020 12:32
-
-
Save nmstoker/f1590847a16b66ab22c16722aac1cc51 to your computer and use it in GitHub Desktop.
Syllable comparisons between audio and transcript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Overview\n", | |
"With an audio dataset used for training TTS, the quality of the audio and the transcriptions is key. The ideal would be to look at every single one in detail but it is also worth targetting your approach initially to reduce the human labour a complete item by item review would entail\n", | |
"\n", | |
"Here we will compare the estimated syllable count in a dataset, comparing that for the audio (ie syllables heard) vs the transcript/text (ie syllables identified in the text)\n", | |
"\n", | |
"To packages separate packages are used for this:\n", | |
"\n", | |
"- https://github.com/mholtzscher/syllapy - for the text\n", | |
"- https://github.com/YannickJadoul/Parselmouth for the audio\n", | |
"\n", | |
"For Parselmouth, you will need a particular varient of a Praat script that is available in some supplementary tools that the author of Parselmouth produced, located here: https://ai.vub.ac.be/~yajadoul/jadoul_introducing-parselmouth_a-python-interface-to-praat_supplementary-material.zip" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"#METADATA_PATH = '/home/neil/Dataset/neil16/metadata_train_n16.csv'\n", | |
"#WAV_PATH = '/home/neil/Dataset/neil16/wavs/'\n", | |
"METADATA_PATH = '/home/neil/Dataset/LJSpeech-1.1/metadata.csv'\n", | |
"WAV_PATH = '/home/neil/Dataset/LJSpeech-1.1/wavs/'" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import parselmouth\n", | |
"import syllapy" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def syllable_count_audio(wav_path): \n", | |
" objects = parselmouth.praat.run_file('/home/neil/Projects/VoiceRelated/parselmouth-experiments/code_examples/syllable_nuclei.praat', -25, 2, 0.3, wav_path) \n", | |
" textgrid = objects[1] \n", | |
" n = parselmouth.praat.call(textgrid, \"Get number of points\", 1) \n", | |
" return n + 1" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def syllable_count_text(text):\n", | |
" return syllapy.count(text)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"13100" | |
] | |
}, | |
"execution_count": 11, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"# Often worth running this with a low limit initially to see how things work and then bump it up to a chunkier value\n", | |
"line_limit = 20000\n", | |
"line_count = 0\n", | |
"syl_audio_list = []\n", | |
"syl_text_list = []\n", | |
"wav_name_list = []\n", | |
"text_list = []\n", | |
"with open(METADATA_PATH, 'r') as fh:\n", | |
" for line in fh:\n", | |
" line_count += 1\n", | |
" if line_count > line_limit: break\n", | |
" wav_name = line.split('|')[0] + '.wav'\n", | |
" wav_name_list.append(wav_name)\n", | |
" # depending on whether you've got a column for normalised text in your transcript file, you may want to adjust the index below\n", | |
" #transcript = line.split('|')[1]\n", | |
" transcript = line.split('|')[2]\n", | |
" text_list.append(transcript)\n", | |
" syl_audio_list.append(syllable_count_audio(f'{WAV_PATH}/{wav_name}'))\n", | |
" syl_text_list.append(syllable_count_text(transcript))\n", | |
"len(syl_audio_list)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
" 0: LJ001-0001.wav Audio: 38 / Text: 41 / [Printing, in the only sense with which we are at present concerned, differs from most if not from al]\n", | |
" 1: LJ001-0002.wav Audio: 10 / Text: 10 / [in being comparatively modern.\n", | |
"]\n", | |
" 2: LJ001-0003.wav Audio: 40 / Text: 43 / [For although the Chinese took impressions from wood blocks engraved in relief for centuries before t]\n", | |
" 3: LJ001-0004.wav Audio: 22 / Text: 24 / [produced the block books, which were the immediate predecessors of the true printed book,\n", | |
"]\n", | |
" 4: LJ001-0005.wav Audio: 37 / Text: 42 / [the invention of movable metal letters in the middle of the fifteenth century may justly be consider]\n", | |
" 5: LJ001-0006.wav Audio: 24 / Text: 22 / [And it is worth mention in passing that, as an example of fine typography,\n", | |
"]\n", | |
" 6: LJ001-0007.wav Audio: 32 / Text: 32 / [the earliest book printed with movable types, the Gutenberg, or \"forty-two line Bible\" of about four]\n", | |
" 7: LJ001-0008.wav Audio: 7 / Text: 7 / [has never been surpassed.\n", | |
"]\n", | |
" 8: LJ001-0009.wav Audio: 29 / Text: 29 / [Printing, then, for our purpose, may be considered as the art of making books by means of movable ty]\n", | |
" 9: LJ001-0010.wav Audio: 31 / Text: 34 / [Now, as all books not primarily intended as picture-books consist principally of types composed to f]\n" | |
] | |
} | |
], | |
"source": [ | |
"for i, wav_name in enumerate(wav_name_list):\n", | |
" print(f'{i:5}: {wav_name:14} Audio: {syl_audio_list[i]:3} / Text: {syl_text_list[i]:3} / [{text_list[i][:100]}]')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"%matplotlib inline\n", | |
"import matplotlib.pyplot as plt\n", | |
"plt.style.use('seaborn-whitegrid')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAWsAAAD1CAYAAACWXdT/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy86wFpkAAAACXBIWXMAAAsTAAALEwEAmpwYAAAUAUlEQVR4nO3dX0hcZ+L/8Y8/J0ftgBgDGmpvZA2LxIukCYWhG2bqtCzoEmhsTGhSWBqki24XbEswW0wuJPgHG8QsCZ10CcGwoC60eFEIZsKwkU5jMniRZAdkc6e7QsfFMsxoR+J8L/KL6DrpTBPPzDyZ9+tqeHJm+umDfDw+c55zipLJZFIAgLz2/3IdAACQHmUNAAagrAHAAJQ1ABiAsgYAA1DWAGAAh10fHAqF7PpoAHipHThwYMuYbWX9rP9gPgqHw6qvr891jF+M3NlF7uwyNbf0YtmfdaLLMggAGICyBgADUNYAYADKGgAMQFkDgAEoawAwAGUNANsoGAzK5/MpGAxu6+dS1gCwTYLBoLxer4aHh+X1ere1sClrANgmgUBAiURCa2trSiQSCgQC2/bZlDUAbBOPxyPLslRcXCzLsuTxeLbts23dbg4AhcTlcsnv92tsbEytra1yuVzb9tmUNYCXWjAYVCAQkMfj2dbyfBaXy6WKioptv68JZQ3gpfX0C79EIiHLsuT3+7NS2HZgzRrAS+vpF36PHz/e9i/8so2yBvDSsvMLv2xjGQTAS+vpF37ZXLO2C2UN4KXmcrmMLumnWAYBUPCCwaB6e3u3fYv4duLMGkBBM+WKEc6sARQ0U64YoawBFDRTrhjJaBlkZWVFzc3N6ujokNvt1unTpxWNRrV7924NDg7Ksiy7cwKALUy5YiSjM+vLly+roqJCkjQwMKCWlhaNjY2ppqZGExMTduYDANu5XC6dOXMmb4tayqCsHz16pEePHq3/aTA9Pa3GxkZJktfr1dTUlK0BAQAZLIMMDAyou7tbX3/9tSQpFouptLRUklRZWalIJPLM94bD4W2Kaa+VlRVjsm5E7uwid3aZmluyJ/vPlvU333yjgwcP6rXXXlsf27Fjx/rrZDKpoqKiZ75/u+86ZZdwOGxM1o3InV3kzi5Tc0svlj0UCqUc/9myDgQCmpub0+TkpBYWFmRZlkpKSrS8vKyysjJFIhFVVVU9VyAAQOZ+tqyHhobWX1+8eFE1NTV6+PCh/H6/fve732lyclJut9vujABQ8H7xddYfffSRRkdH1dLSoqWlJTU1NdmRCwCwQcbbzT/++OP11yMjI7aEAQCkxg5GADAAZQ0ABqCsAcAAlDUAGICyBgADUNYAYADKGgAMQFkDgAEoawAwAGUNAAagrAHAAJQ1ABiAsgYAA1DWAGAAyhoADEBZA4ABKGsAMABlDQAGSPtYr+XlZXV1dWlxcVHxeFwdHR367rvvNDMzI6fTKUk6deqUPB6P3VkBoGClLetbt26poaFBbW1tmp+f14cffqjXX39d58+fV319fTYyAkDBS1vWzc3N668XFhZUXV2tWCxmaygAwGYZP9386NGjikQi8vl86uvr0/DwsKLRqKqrq9Xd3a2KigobYwJAYStKJpPJTA9++PChurq69Mc//lG/+tWvVFdXJ5/Pp4WFBZ09e3bTsaFQSK+88sq2B7bDysqKSktLcx3jFyN3dpE7u0zNLb1Y9ng8rgMHDmwZT3tmff/+fe3atUuvvvqq9u7dq7W1NR08eFC7du2SJHm9Xp07dy7le01Z0w6Hw8Zk3Yjc2UXu7DI1t/Ri2UOhUMrxtJfuzczM6Nq1a5KkSCSiWCymzz//XHNzc5Kk6elp7dmz57lCAQAyk/bM+vjx4zpz5ozef/99JRIJnTt3TqWlpers7FRJSYmcTqd6e3uzkRWATYLBoAKBgDwej1wuV67jIIW0ZW1Zlr744ost4+Pj47YEApBdwWBQXq9XiURClmXJ7/dT2HmIHYxAgQsEAkokEnr8+LESiYQCgUCuIyEFyhoocB6PR5Zlqbi4WJZlsRs5T2V8nTWAl5PL5ZLf72fNOs9R1gDkcrko6TzHMggAGICyBgADUNYAYADKGgAMQFkDgAEoawAZCQaD6u3tVTAYzHWUgsSlewDSYkt67nFmDSAttqTnHmUNIC22pOceyyAA0mJLeu5R1gAywpb03GIZBAAMQFkDgAEoawAwQNo16+XlZXV1dWlxcVHxeFwdHR3at2+fTp8+rWg0qt27d2twcFCWZWUjLwAUpLRn1rdu3VJDQ4OuX7+uixcvamBgQAMDA2ppadHY2Jhqamo0MTGRjawAULDSlnVzc7Pa2tokSQsLC6qurtb09LQaGxslSV6vV1NTU/amBIACl/Gle0ePHlUkEpHP59OJEydUWloqSaqsrFQkErEtIADgF5T1+Pi4Hj58qE8++UTFxcXr48lkUkVFRSnfEw6HXzxhFqysrBiTdSNyZxe5s8vU3JI92dOW9f3797Vr1y69+uqr2rt3r9bW1lRWVqbl5WWVlZUpEomoqqoq5Xvr6+u3NaxdwuGwMVk3Ind2kTu7TM0tvVj2UCiUcjztmvXMzIyuXbsmSYpEIorFYnrrrbfk9/slSZOTk3K73c8VCgCQmbRlffz4cUUiEb3//vv6wx/+oHPnzumjjz7S6OioWlpatLS0pKampmxkBYCClXYZxLIsffHFF1vGR0ZGbAkEIDPBYJAbKxUQbuQEGIiHARQetpsDBuJhAIWHsgYMxMMACg/LIICBeBhA4aGsAUPxMIDCwjIIABiAsgYAA1DWAGAAyhoADEBZA4ABKGsAMABlDQAGoKwBwACUNQAYgLIGAANQ1gBgAMoaAAxAWQOAAShrADBARrdIvXDhgu7cuaPV1VW1tbXp3r17mpmZkdPplCSdOnWKm58DgI3SlvXdu3cVDoc1OjqqpaUlHT58WG+++abOnz+v+vr6bGQEgIKXdhlk//79GhoakiSVl5drdXVV0WjU7lwAgA3Snlk7HA45HE8OGx8fl9vt1g8//KDh4WFFo1FVV1eru7tbFRUVdmcFgIJVlEwmk5kcePPmTV2+fFlXr17VnTt3VFtbq7q6Ovl8Pi0sLOjs2bObjg+FQnrllVdsCb3dVlZWVFpamusYvxi5s4vc2WVqbunFssfjcR04cGDrPyQz8I9//CP57rvvJv/73/9u+bd//etfyRMnTmwZv3fvXiYfnRf++c9/5jrCcyF3dpE7u0zNnUy+WPZndWfaNetoNKq+vj75fD7t3LlTktTe3q65uTlJ0vT0tPbs2fNcv0EAAJlJu2b97bff6scff1RnZ+f62JEjR9TZ2amSkhI5nU719vbaGhJIJRgMKhAIyOPx8JRvvPTSlvWxY8d07NixLePvvvuuLYGATASDQXm9XiUSCVmWJb/fT2HjpcYORhgpEAgokUjo8ePHSiQSCgQCuY4E2IqyhpE8Ho8sy1JxcbEsy2IHLV56GW03B/KNy+WS3+9nzRoFg7KGsVwuFyWNgsEyCAAYgLIGAANQ1gBgAMoaAAxAWQOAAShrFLxgMKje3l4Fg8FcRwGeiUv3UNDYtg5TcGaNgsa2dZiCskZBY9s6TMEyCAoa29ZhCsoaBY9t6zAByyAAYADKGgAMQFkDgAEyWrO+cOGC7ty5o9XVVbW1temNN97Q6dOnFY1GtXv3bg0ODsqyLLuzAkDBSlvWd+/eVTgc1ujoqJaWlnT48GG5XC61tLSoqalJ/f39mpiY0HvvvZeNvABQkNIug+zfv19DQ0OSpPLycq2urur7779XY2OjJMnr9WpqasrWkABQ6NKWtcPhkNPplCSNj4/L7XZreXlZpaWlkqTKykpFIhF7UwJAgcv4OuubN29qbGxMV69e1e3bt9fHk8mkioqKUr4nHA6/eMIsWFlZMSbrRuTOLnJnl6m5JXuyZ1TWt2/f1qVLl/TXv/5V5eXlcjqdWl5eVllZmSKRiKqqqlK+r76+flvD2iUcDhuTdSNyZxe5s8vU3NKLZQ+FQinH0y6DRKNR9fX1yefzaefOnZKkQ4cOye/3S5ImJyfldrufKxQAIDNpz6y//fZb/fjjj+rs7Fwf6+vrU1dXl65evara2lo1NTXZGhIACl3asj527JiOHTu2ZXxkZMSWQACArdjBCAAGoKwBwACUNQAYgLIGAANQ1gBgAMoaAAxAWQOAAShrADAAZQ0ABqCsAcAAlDUAGICyBgADUNYAYADKGgAMQFkDgAEoawAwAGUNAAagrAHAAJQ1ABggo7KenZ3V22+/revXr0uSenp6dOTIEX3wwQf64IMPFAgE7MwIAAUv7QNz4/G4enp65HK5No2dP39e9fX1toYDADyR9szasixduXJFVVVV62OxWMzWUACAzdKeWTscDjkcmw+LxWIaHh5WNBpVdXW1uru7VVFRseW94XB424LaaWVlxZisG5E7u8idXabmluzJnrasUzl+/Lhqa2tVV1cnn8+n4eFhnT17dstxpiyThMNhY7JuRO7sInd2mZpberHsoVAo5fhzXQ3yzjvvqK6uTpLk9Xo1Ozv7XKEAAJl5rrJub2/X3NycJGl6elp79uzZ1lAAgM3SLoM8ePBA/f39mp+fl8Ph0I0bN3Ty5El1dnaqpKRETqdTvb292cgKAAUrbVk3NDRoZGRky/hvf/tbWwIBALZiByMAGICyBgADUNYAYADKGgAMQFkDgAEoawAwAGUNAAagrAHAAJQ1ABiAsgYAA1DWAGAAyhoADEBZA4ABKGsAMABlDQAGoKwBwACUNQAYgLIGAANkVNazs7N6++23df36dUnS4uKiTp06pdbWVv3pT39SIpGwNSQAFLq0ZR2Px9XT0yOXy7U+NjAwoJaWFo2NjammpkYTExO2hgSAQpe2rC3L0pUrV1RVVbU+Nj09rcbGRkmS1+vV1NSUfQltFgwG5fP5FAwGcx0FAJ4p7dPNHQ6HHI7Nh8ViMZWWlkqSKisrFYlE7Elns2AwKK/Xq59++klffvml/H7/pr8gACBfpC3rVHbs2LH+OplMqqioKOVx4XD4+VJlydjYmH766Setra0pkUhobGxMFRUVuY6VsZWVlbyf41TInV3kzj47sj9XWTudTi0vL6usrEyRSGTTEslG9fX1LxTObq2trfryyy+VSCRkWZZaW1vzPvNG4XDYqLxPkTu7yJ19L5I9FAqlHH+uS/cOHTokv98vSZqcnJTb7X6uULnmcrnk9/v18ccfswQCIK+lPbN+8OCB+vv7NT8/L4fDoRs3bmhwcFCfffaZrl69qtraWjU1NWUjqy1cLpcqKiqM/Q0OoDCkLeuGhgaNjIxsGU81BgCwBzsYAcAAlDUAGICyBgADUNYAYADKGgAMQFkDgAEoawAwAGUNAAagrAHAAHlX1sFgUL29vdxfGgA2eK677tnl6f2ln94Fj5srAcATeXVmHQgElEgk9PjxYyUSCQUCgVxHAoC8kFdl7fF4ZFmWiouLZVmWPB5PriMBQF7Iq2WQp/eXDgQC8ng8LIEAwP+XV2UtPSlsShoANsurZRAAQGqUNQAYgLIGAANQ1gBgAMoaAAxAWQOAAYqSyWTSjg8OhUJ2fCwAvPQOHDiwZcy2sgYAbB+WQQDAAJQ1ABgg77abZ8Ps7Kza29v1+9//XidPntTi4qJOnz6taDSq3bt3a3BwUJZl5TrmFv+bu6enRzMzM3I6nZKkU6dO5eXNry5cuKA7d+5odXVVbW1teuONN4yY7//Nfe/evbyf7+XlZXV1dWlxcVHxeFwdHR3at29f3s93qtzfffdd3s/3UysrK2publZHR4fcbrct811wZR2Px9XT07Pp/iMDAwNqaWlRU1OT+vv7NTExoffeey+HKbdKlTsej+v8+fOqr6/PYbKfd/fuXYXDYY2OjmppaUmHDx+Wy+XK+/lOlfvNN9/M+/m+deuWGhoa1NbWpvn5eX344Yfat29f3s93qtyvv/563s/3U5cvX1ZFRYUk+/qk4JZBLMvSlStXVFVVtT42PT2txsZGSZLX69XU1FSu4j1TqtyxWCyHiTKzf/9+DQ0NSZLKy8u1urqq77//Pu/nO1XuaDSa21AZaG5uVltbmyRpYWFB1dXVRvx8p8ptws+3JD169EiPHj1aP+u3a74L7sza4XDI4dj8vx2LxVRaWipJqqysVCQSyUW0n/Ws3MPDw4pGo6qurlZ3d/f6b/d8sTH3+Pi43G63bt26ZdR8P839ww8/5P18P3X06FFFIhH5fD6dOHEi7+f7qY25+/r6jJjvgYEBdXd36+uvv5ZkX58U3Jl1Kjt27Fh/nUwmVVRUlMM0mTt+/Lg+/fRTXb9+Xb/+9a81PDyc60jPdPPmTY2NjenPf/6zUfO9MbdJ8z0+Pq6//OUv+uSTT1RcXLw+nu/zvTF3a2tr3s/3N998o4MHD+q1115bH7Pr55uyluR0OrW8vCxJikQim5Ya8tk777yjuro6SU/+3Jqdnc1xotRu376tS5cu6auvvlJ5ebkx8/2/uU2Y7/v37+vf//63JGnv3r1aW1tTWVlZ3s93qtwHDx7M+/kOBAK6ceOGWltbNT4+rkuXLqmkpMSW+aasJR06dEh+v1+SNDk5KbfbneNEmWlvb9fc3JykJ+tke/bsyXGiraLRqPr6+uTz+bRz505JZsx3qtwmzPfMzIyuXbsm6UlRxGIxvfXWW3k/36lyf/7553k/30NDQ/r73/+usbExHT16VO3t7bbNd8HtYHzw4IH6+/s1Pz8vh8Oh6upqDQ4O6rPPPlM8Hldtba36+vq2rA/nWqrcJ0+e1FdffaWSkhI5nU719vaqsrIy11E3GR0d1cWLF1VbW7s+1tfXp66urrye71S5jxw5or/97W95Pd+JREJnzpzRf/7zHyUSCXV0dGjv3r369NNP83q+U+UuLS3VhQsX8nq+N7p48aJqamr0m9/8xpb5LriyBgATsQwCAAagrAHAAJQ1ABiAsgYAA1DWAGAAyhoADEBZA4ABKGsAMMD/AVJM5b2REfWOAAAAAElFTkSuQmCC\n", | |
"text/plain": [ | |
"<Figure size 432x288 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"for i, wav_name in enumerate(wav_name_list):\n", | |
" plt.plot(syl_audio_list[i], syl_text_list[i],'.', color='black')\n", | |
"plt.show()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from bokeh.io import output_notebook, show\n", | |
"from bokeh.plotting import figure\n", | |
"from bokeh.models import HoverTool, ColumnDataSource, BoxZoomTool, ResetTool, OpenURL, TapTool\n", | |
"#from bokeh.transform import factor_cmap, factor_mark\n", | |
"#from bokeh.palettes import Category10" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <a href=\"https://bokeh.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n", | |
" <span id=\"1001\">Loading BokehJS ...</span>\n", | |
" </div>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"application/javascript": [ | |
"\n", | |
"(function(root) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
"\n", | |
" var force = true;\n", | |
"\n", | |
" if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", | |
" root._bokeh_onload_callbacks = [];\n", | |
" root._bokeh_is_loading = undefined;\n", | |
" }\n", | |
"\n", | |
" var JS_MIME_TYPE = 'application/javascript';\n", | |
" var HTML_MIME_TYPE = 'text/html';\n", | |
" var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", | |
" var CLASS_NAME = 'output_bokeh rendered_html';\n", | |
"\n", | |
" /**\n", | |
" * Render data to the DOM node\n", | |
" */\n", | |
" function render(props, node) {\n", | |
" var script = document.createElement(\"script\");\n", | |
" node.appendChild(script);\n", | |
" }\n", | |
"\n", | |
" /**\n", | |
" * Handle when an output is cleared or removed\n", | |
" */\n", | |
" function handleClearOutput(event, handle) {\n", | |
" var cell = handle.cell;\n", | |
"\n", | |
" var id = cell.output_area._bokeh_element_id;\n", | |
" var server_id = cell.output_area._bokeh_server_id;\n", | |
" // Clean up Bokeh references\n", | |
" if (id != null && id in Bokeh.index) {\n", | |
" Bokeh.index[id].model.document.clear();\n", | |
" delete Bokeh.index[id];\n", | |
" }\n", | |
"\n", | |
" if (server_id !== undefined) {\n", | |
" // Clean up Bokeh references\n", | |
" var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", | |
" cell.notebook.kernel.execute(cmd, {\n", | |
" iopub: {\n", | |
" output: function(msg) {\n", | |
" var id = msg.content.text.trim();\n", | |
" if (id in Bokeh.index) {\n", | |
" Bokeh.index[id].model.document.clear();\n", | |
" delete Bokeh.index[id];\n", | |
" }\n", | |
" }\n", | |
" }\n", | |
" });\n", | |
" // Destroy server and session\n", | |
" var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", | |
" cell.notebook.kernel.execute(cmd);\n", | |
" }\n", | |
" }\n", | |
"\n", | |
" /**\n", | |
" * Handle when a new output is added\n", | |
" */\n", | |
" function handleAddOutput(event, handle) {\n", | |
" var output_area = handle.output_area;\n", | |
" var output = handle.output;\n", | |
"\n", | |
" // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", | |
" if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", | |
" return\n", | |
" }\n", | |
"\n", | |
" var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", | |
"\n", | |
" if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", | |
" toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", | |
" // store reference to embed id on output_area\n", | |
" output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", | |
" }\n", | |
" if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", | |
" var bk_div = document.createElement(\"div\");\n", | |
" bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", | |
" var script_attrs = bk_div.children[0].attributes;\n", | |
" for (var i = 0; i < script_attrs.length; i++) {\n", | |
" toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", | |
" toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", | |
" }\n", | |
" // store reference to server id on output_area\n", | |
" output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", | |
" }\n", | |
" }\n", | |
"\n", | |
" function register_renderer(events, OutputArea) {\n", | |
"\n", | |
" function append_mime(data, metadata, element) {\n", | |
" // create a DOM node to render to\n", | |
" var toinsert = this.create_output_subarea(\n", | |
" metadata,\n", | |
" CLASS_NAME,\n", | |
" EXEC_MIME_TYPE\n", | |
" );\n", | |
" this.keyboard_manager.register_events(toinsert);\n", | |
" // Render to node\n", | |
" var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", | |
" render(props, toinsert[toinsert.length - 1]);\n", | |
" element.append(toinsert);\n", | |
" return toinsert\n", | |
" }\n", | |
"\n", | |
" /* Handle when an output is cleared or removed */\n", | |
" events.on('clear_output.CodeCell', handleClearOutput);\n", | |
" events.on('delete.Cell', handleClearOutput);\n", | |
"\n", | |
" /* Handle when a new output is added */\n", | |
" events.on('output_added.OutputArea', handleAddOutput);\n", | |
"\n", | |
" /**\n", | |
" * Register the mime type and append_mime function with output_area\n", | |
" */\n", | |
" OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", | |
" /* Is output safe? */\n", | |
" safe: true,\n", | |
" /* Index of renderer in `output_area.display_order` */\n", | |
" index: 0\n", | |
" });\n", | |
" }\n", | |
"\n", | |
" // register the mime type if in Jupyter Notebook environment and previously unregistered\n", | |
" if (root.Jupyter !== undefined) {\n", | |
" var events = require('base/js/events');\n", | |
" var OutputArea = require('notebook/js/outputarea').OutputArea;\n", | |
"\n", | |
" if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", | |
" register_renderer(events, OutputArea);\n", | |
" }\n", | |
" }\n", | |
"\n", | |
" \n", | |
" if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", | |
" root._bokeh_timeout = Date.now() + 5000;\n", | |
" root._bokeh_failed_load = false;\n", | |
" }\n", | |
"\n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\n\"+\n", | |
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", | |
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
"\n", | |
" function display_loaded() {\n", | |
" var el = document.getElementById(\"1001\");\n", | |
" if (el != null) {\n", | |
" el.textContent = \"BokehJS is loading...\";\n", | |
" }\n", | |
" if (root.Bokeh !== undefined) {\n", | |
" if (el != null) {\n", | |
" el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", | |
" }\n", | |
" } else if (Date.now() < root._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
"\n", | |
"\n", | |
" function run_callbacks() {\n", | |
" try {\n", | |
" root._bokeh_onload_callbacks.forEach(function(callback) {\n", | |
" if (callback != null)\n", | |
" callback();\n", | |
" });\n", | |
" } finally {\n", | |
" delete root._bokeh_onload_callbacks\n", | |
" }\n", | |
" console.debug(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
"\n", | |
" function load_libs(css_urls, js_urls, callback) {\n", | |
" if (css_urls == null) css_urls = [];\n", | |
" if (js_urls == null) js_urls = [];\n", | |
"\n", | |
" root._bokeh_onload_callbacks.push(callback);\n", | |
" if (root._bokeh_is_loading > 0) {\n", | |
" console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", | |
" return null;\n", | |
" }\n", | |
" if (js_urls == null || js_urls.length === 0) {\n", | |
" run_callbacks();\n", | |
" return null;\n", | |
" }\n", | |
" console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" root._bokeh_is_loading = css_urls.length + js_urls.length;\n", | |
"\n", | |
" function on_load() {\n", | |
" root._bokeh_is_loading--;\n", | |
" if (root._bokeh_is_loading === 0) {\n", | |
" console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" }\n", | |
"\n", | |
" function on_error() {\n", | |
" console.error(\"failed to load \" + url);\n", | |
" }\n", | |
"\n", | |
" for (var i = 0; i < css_urls.length; i++) {\n", | |
" var url = css_urls[i];\n", | |
" const element = document.createElement(\"link\");\n", | |
" element.onload = on_load;\n", | |
" element.onerror = on_error;\n", | |
" element.rel = \"stylesheet\";\n", | |
" element.type = \"text/css\";\n", | |
" element.href = url;\n", | |
" console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", | |
" document.body.appendChild(element);\n", | |
" }\n", | |
"\n", | |
" const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.1.1.min.js\": \"kLr4fYcqcSpbuI95brIH3vnnYCquzzSxHPU6XGQCIkQRGJwhg0StNbj1eegrHs12\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.1.1.min.js\": \"xIGPmVtaOm+z0BqfSOMn4lOR6ciex448GIKG4eE61LsAvmGj48XcMQZtKcE/UXZe\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.1.1.min.js\": \"Dc9u1wF/0zApGIWoBbH77iWEHtdmkuYWG839Uzmv8y8yBLXebjO9ZnERsde5Ln/P\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.1.1.min.js\": \"cT9JaBz7GiRXdENrJLZNSC6eMNF3nh3fa5fTF51Svp+ukxPdwcU5kGXGPBgDCa2j\"};\n", | |
"\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var element = document.createElement('script');\n", | |
" element.onload = on_load;\n", | |
" element.onerror = on_error;\n", | |
" element.async = false;\n", | |
" element.src = url;\n", | |
" if (url in hashes) {\n", | |
" element.crossOrigin = \"anonymous\";\n", | |
" element.integrity = \"sha384-\" + hashes[url];\n", | |
" }\n", | |
" console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.head.appendChild(element);\n", | |
" }\n", | |
" };\n", | |
"\n", | |
" function inject_raw_css(css) {\n", | |
" const element = document.createElement(\"style\");\n", | |
" element.appendChild(document.createTextNode(css));\n", | |
" document.body.appendChild(element);\n", | |
" }\n", | |
"\n", | |
" \n", | |
" var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.1.1.min.js\"];\n", | |
" var css_urls = [];\n", | |
" \n", | |
"\n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.set_log_level(\"info\");\n", | |
" },\n", | |
" function(Bokeh) {\n", | |
" \n", | |
" \n", | |
" }\n", | |
" ];\n", | |
"\n", | |
" function run_inline_js() {\n", | |
" \n", | |
" if (root.Bokeh !== undefined || force === true) {\n", | |
" \n", | |
" for (var i = 0; i < inline_js.length; i++) {\n", | |
" inline_js[i].call(root, root.Bokeh);\n", | |
" }\n", | |
" if (force === true) {\n", | |
" display_loaded();\n", | |
" }} else if (Date.now() < root._bokeh_timeout) {\n", | |
" setTimeout(run_inline_js, 100);\n", | |
" } else if (!root._bokeh_failed_load) {\n", | |
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", | |
" root._bokeh_failed_load = true;\n", | |
" } else if (force !== true) {\n", | |
" var cell = $(document.getElementById(\"1001\")).parents('.cell').data().cell;\n", | |
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", | |
" }\n", | |
"\n", | |
" }\n", | |
"\n", | |
" if (root._bokeh_is_loading === 0) {\n", | |
" console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", | |
" run_inline_js();\n", | |
" } else {\n", | |
" load_libs(css_urls, js_urls, function() {\n", | |
" console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", | |
" run_inline_js();\n", | |
" });\n", | |
" }\n", | |
"}(window));" | |
], | |
"application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"<div style='background-color: #fdd'>\\n\"+\n \"<p>\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"</p>\\n\"+\n \"<ul>\\n\"+\n \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n \"<li>use INLINE resources instead, as so:</li>\\n\"+\n \"</ul>\\n\"+\n \"<code>\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"</code>\\n\"+\n \"</div>\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"1001\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.1.1.min.js\": \"kLr4fYcqcSpbuI95brIH3vnnYCquzzSxHPU6XGQCIkQRGJwhg0StNbj1eegrHs12\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.1.1.min.js\": \"xIGPmVtaOm+z0BqfSOMn4lOR6ciex448GIKG4eE61LsAvmGj48XcMQZtKcE/UXZe\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.1.1.min.js\": \"Dc9u1wF/0zApGIWoBbH77iWEHtdmkuYWG839Uzmv8y8yBLXebjO9ZnERsde5Ln/P\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.1.1.min.js\": \"cT9JaBz7GiRXdENrJLZNSC6eMNF3nh3fa5fTF51Svp+ukxPdwcU5kGXGPBgDCa2j\"};\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.1.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.1.1.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"1001\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"output_notebook()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"source_wav_stems = ColumnDataSource(\n", | |
" data=dict(\n", | |
" x = syl_audio_list,\n", | |
" y = syl_text_list,\n", | |
" desc=wav_name_list,\n", | |
" text=text_list\n", | |
" )\n", | |
" )\n", | |
"\n", | |
"hover = HoverTool(\n", | |
" tooltips=[\n", | |
" (\"file\", \"@desc\"),\n", | |
" (\"audio/text\", \"@x / @y\"),\n", | |
" (\"text\", \"@text\"),\n", | |
" ]\n", | |
" )" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"p = figure(plot_width=600, plot_height=400, x_axis_label='# of Audio Syllables', y_axis_label='# of Text Syllables', tools=[hover,BoxZoomTool(), ResetTool(), TapTool()])" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 14, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
"\n", | |
"\n", | |
"\n", | |
"\n", | |
"\n", | |
" <div class=\"bk-root\" id=\"28b9cf8c-1c9c-4e12-8d98-62e135a07be6\" data-root-id=\"1007\"></div>\n" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"application/javascript": [ | |
"(function(root) {\n", | |
" function embed_document(root) {\n", | |
" \n", | |
" var docs_json = {\"332eed15-e1c8-4801-a914-5cfca77ed573\":{\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1016\"}],\"center\":[{\"id\":\"1019\"},{\"id\":\"1023\"}],\"left\":[{\"id\":\"1020\"}],\"plot_height\":400,\"renderers\":[{\"id\":\"1033\"}],\"title\":{\"id\":\"1035\"},\"toolbar\":{\"id\":\"1025\"},\"x_range\":{\"id\":\"1008\"},\"x_scale\":{\"id\":\"1012\"},\"y_range\":{\"id\":\"1010\"},\"y_scale\":{\"id\":\"1014\"}},\"id\":\"1007\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.3},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.3},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1031\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"1024\"}},\"id\":\"1004\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1043\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":{\"id\":\"1044\"}},\"id\":\"1006\",\"type\":\"TapTool\"},{\"attributes\":{},\"id\":\"1008\",\"type\":\"DataRange1d\"},{\"attributes\":{\"url\":\"http://localhost:8000/@desc\"},\"id\":\"1044\",\"type\":\"OpenURL\"},{\"attributes\":{},\"id\":\"1012\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1038\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"file\",\"@desc\"],[\"audio/text\",\"@x / @y\"],[\"text\",\"@text\"]]},\"id\":\"1003\",\"type\":\"HoverTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"1024\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1042\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1014\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"# of Audio Syllables\",\"formatter\":{\"id\":\"1038\"},\"ticker\":{\"id\":\"1017\"}},\"id\":\"1016\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis\":{\"id\":\"1020\"},\"dimension\":1,\"ticker\":null},\"id\":\"1023\",\"type\":\"Grid\"},{\"attributes\":{\"text\":\"\"},\"id\":\"1035\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1017\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1016\"},\"ticker\":null},\"id\":\"1019\",\"type\":\"Grid\"},{\"attributes\":{\"source\":{\"id\":\"1002\"}},\"id\":\"1034\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1032\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1010\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1021\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis_label\":\"# of Text Syllables\",\"formatter\":{\"id\":\"1040\"},\"ticker\":{\"id\":\"1021\"}},\"id\":\"1020\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1005\",\"type\":\"ResetTool\"},{\"attributes\":{\"data\":{\"desc\":[\"LJ001-0001.wav\",\"LJ001-0002.wav\",\"LJ001-0003.wav\",\"LJ001-0004.wav\",\"LJ001-0005.wav\",\"LJ001-0006.wav\",\"LJ001-0007.wav\",\"LJ001-0008.wav\",\"LJ001-0009.wav\",\"LJ001-0010.wav\",\"LJ001-0011.wav\",\"LJ001-0012.wav\",\"LJ001-0013.wav\",\"LJ001-0014.wav\",\"LJ001-0015.wav\",\"LJ001-0016.wav\",\"LJ001-0017.wav\",\"LJ001-0018.wav\",\"LJ001-0019.wav\",\"LJ001-0020.wav\",\"LJ001-0021.wav\",\"LJ001-0022.wav\",\"LJ001-0023.wav\",\"LJ001-0024.wav\",\"LJ001-0025.wav\",\"LJ001-0026.wav\",\"LJ001-0027.wav\",\"LJ001-0028.wav\",\"LJ001-0029.wav\",\"LJ001-0030.wav\",\"LJ001-0031.wav\",\"LJ001-0032.wav\",\"LJ001-0033.wav\",\"LJ001-0034.wav\",\"LJ001-0035.wav\",\"LJ001-0036.wav\",\"LJ001-0037.wav\",\"LJ001-0038.wav\",\"LJ001-0039.wav\",\"LJ001-0040.wav\",\"LJ001-0041.wav\",\"LJ001-0042.wav\",\"LJ001-0043.wav\",\"LJ001-0044.wav\",\"LJ001-0045.wav\",\"LJ001-0046.wav\",\"LJ001-0047.wav\",\"LJ001-0048.wav\",\"LJ001-0049.wav\",\"LJ001-0050.wav\",\"LJ001-0051.wav\",\"LJ001-0052.wav\",\"LJ001-0053.wav\",\"LJ001-0054.wav\",\"LJ001-0055.wav\",\"LJ001-0056.wav\",\"LJ001-0057.wav\",\"LJ001-0058.wav\",\"LJ001-0059.wav\",\"LJ001-0060.wav\",\"LJ001-0061.wav\",\"LJ001-0062.wav\",\"LJ001-0063.wav\",\"LJ001-0064.wav\",\"LJ001-0065.wav\",\"LJ001-0066.wav\",\"LJ001-0067.wav\",\"LJ001-0068.wav\",\"LJ001-0069.wav\",\"LJ001-0070.wav\",\"LJ001-0071.wav\",\"LJ001-0072.wav\",\"LJ001-0073.wav\",\"LJ001-0074.wav\",\"LJ001-0075.wav\",\"LJ001-0076.wav\",\"LJ001-0077.wav\",\"LJ001-0078.wav\",\"LJ001-0079.wav\",\"LJ001-0080.wav\",\"LJ001-0081.wav\",\"LJ001-0082.wav\",\"LJ001-0083.wav\",\"LJ001-0084.wav\",\"LJ001-0085.wav\",\"LJ001-0086.wav\",\"LJ001-0087.wav\",\"LJ001-0088.wav\",\"LJ001-0089.wav\",\"LJ001-0090.wav\",\"LJ001-0091.wav\",\"LJ001-0092.wav\",\"LJ001-0093.wav\",\"LJ001-0094.wav\",\"LJ001-0095.wav\",\"LJ001-0096.wav\",\"LJ001-0097.wav\",\"LJ001-0098.wav\",\"LJ001-0099.wav\",\"LJ001-0100.wav\",\"LJ001-0101.wav\",\"LJ001-0102.wav\",\"LJ001-0103.wav\",\"LJ001-0104.wav\",\"LJ001-0105.wav\",\"LJ001-0106.wav\",\"LJ001-0107.wav\",\"LJ001-0108.wav\",\"LJ001-0109.wav\",\"LJ001-0110.wav\",\"LJ001-0111.wav\",\"LJ001-0112.wav\",\"LJ001-0113.wav\",\"LJ001-0114.wav\",\"LJ001-0115.wav\",\"LJ001-0116.wav\",\"LJ001-0117.wav\",\"LJ001-0118.wav\",\"LJ001-0119.wav\",\"LJ001-0120.wav\",\"LJ001-0121.wav\",\"LJ001-0122.wav\",\"LJ001-0123.wav\",\"LJ001-0124.wav\",\"LJ001-0125.wav\",\"LJ001-0126.wav\",\"LJ001-0127.wav\",\"LJ001-0128.wav\",\"LJ001-0129.wav\",\"LJ001-0130.wav\",\"LJ001-0131.wav\",\"LJ001-0132.wav\",\"LJ001-0133.wav\",\"LJ001-0134.wav\",\"LJ001-0135.wav\",\"LJ001-0136.wav\",\"LJ001-0137.wav\",\"LJ001-0138.wav\",\"LJ001-0139.wav\",\"LJ001-0140.wav\",\"LJ001-0141.wav\",\"LJ001-0142.wav\",\"LJ001-0143.wav\",\"LJ001-0144.wav\",\"LJ001-0145.wav\",\"LJ001-0146.wav\",\"LJ001-0147.wav\",\"LJ001-0148.wav\",\"LJ001-0149.wav\",\"LJ001-0150.wav\",\"LJ001-0151.wav\",\"LJ001-0152.wav\",\"LJ001-0153.wav\",\"LJ001-0154.wav\",\"LJ001-0155.wav\",\"LJ001-0156.wav\",\"LJ001-0157.wav\",\"LJ001-0158.wav\",\"LJ001-0159.wav\",\"LJ001-0160.wav\",\"LJ001-0161.wav\",\"LJ001-0162.wav\",\"LJ001-0163.wav\",\"LJ001-0164.wav\",\"LJ001-0165.wav\",\"LJ001-0166.wav\",\"LJ001-0167.wav\",\"LJ001-0168.wav\",\"LJ001-0169.wav\",\"LJ001-0170.wav\",\"LJ001-0171.wav\",\"LJ001-0172.wav\",\"LJ001-0173.wav\",\"LJ001-0174.wav\",\"LJ001-0175.wav\",\"LJ001-0176.wav\",\"LJ001-0177.wav\",\"LJ001-0178.wav\",\"LJ001-0179.wav\",\"LJ001-0180.wav\",\"LJ001-0181.wav\",\"LJ001-0182.wav\",\"LJ001-0183.wav\",\"LJ001-0184.wav\",\"LJ001-0185.wav\",\"LJ001-0186.wav\",\"LJ002-0001.wav\",\"LJ002-0002.wav\",\"LJ002-0003.wav\",\"LJ002-0004.wav\",\"LJ002-0005.wav\",\"LJ002-0006.wav\",\"LJ002-0007.wav\",\"LJ002-0008.wav\",\"LJ002-0009.wav\",\"LJ002-0010.wav\",\"LJ002-0011.wav\",\"LJ002-0012.wav\",\"LJ002-0013.wav\",\"LJ002-0014.wav\",\"LJ002-0015.wav\",\"LJ002-0016.wav\",\"LJ002-0017.wav\",\"LJ002-0018.wav\",\"LJ002-0019.wav\",\"LJ002-0020.wav\",\"LJ002-0021.wav\",\"LJ002-0022.wav\",\"LJ002-0023.wav\",\"LJ002-0024.wav\",\"LJ002-0025.wav\",\"LJ002-0026.wav\",\"LJ002-0027.wav\",\"LJ002-0028.wav\",\"LJ002-0029.wav\",\"LJ002-0030.wav\",\"LJ002-0031.wav\",\"LJ002-0032.wav\",\"LJ002-0033.wav\",\"LJ002-0034.wav\",\"LJ002-0035.wav\",\"LJ002-0036.wav\",\"LJ002-0037.wav\",\"LJ002-0038.wav\",\"LJ002-0039.wav\",\"LJ002-0040.wav\",\"LJ002-0041.wav\",\"LJ002-0042.wav\",\"LJ002-0043.wav\",\"LJ002-0044.wav\",\"LJ002-0045.wav\",\"LJ002-0046.wav\",\"LJ002-0047.wav\",\"LJ002-0048.wav\",\"LJ002-0049.wav\",\"LJ002-0050.wav\",\"LJ002-0051.wav\",\"LJ002-0052.wav\",\"LJ002-0053.wav\",\"LJ002-0054.wav\",\"LJ002-0055.wav\",\"LJ002-0056.wav\",\"LJ002-0057.wav\",\"LJ002-0058.wav\",\"LJ002-0059.wav\",\"LJ002-0060.wav\",\"LJ002-0061.wav\",\"LJ002-0062.wav\",\"LJ002-0063.wav\",\"LJ002-0064.wav\",\"LJ002-0065.wav\",\"LJ002-0066.wav\",\"LJ002-0067.wav\",\"LJ002-0068.wav\",\"LJ002-0069.wav\",\"LJ002-0070.wav\",\"LJ002-0071.wav\",\"LJ002-0072.wav\",\"LJ002-0073.wav\",\"LJ002-0074.wav\",\"LJ002-0075.wav\",\"LJ002-0076.wav\",\"LJ002-0077.wav\",\"LJ002-0078.wav\",\"LJ002-0079.wav\",\"LJ002-0080.wav\",\"LJ002-0081.wav\",\"LJ002-0082.wav\",\"LJ002-0083.wav\",\"LJ002-0084.wav\",\"LJ002-0085.wav\",\"LJ002-0086.wav\",\"LJ002-0087.wav\",\"LJ002-0088.wav\",\"LJ002-0089.wav\",\"LJ002-0090.wav\",\"LJ002-0091.wav\",\"LJ002-0092.wav\",\"LJ002-0093.wav\",\"LJ002-0094.wav\",\"LJ002-0095.wav\",\"LJ002-0096.wav\",\"LJ002-0097.wav\",\"LJ002-0098.wav\",\"LJ002-0099.wav\",\"LJ002-0100.wav\",\"LJ002-0101.wav\",\"LJ002-0102.wav\",\"LJ002-0103.wav\",\"LJ002-0104.wav\",\"LJ002-0105.wav\",\"LJ002-0106.wav\",\"LJ002-0107.wav\",\"LJ002-0108.wav\",\"LJ002-0109.wav\",\"LJ002-0110.wav\",\"LJ002-0111.wav\",\"LJ002-0112.wav\",\"LJ002-0113.wav\",\"LJ002-0114.wav\",\"LJ002-0116.wav\",\"LJ002-0117.wav\",\"LJ002-0118.wav\",\"LJ002-0119.wav\",\"LJ002-0120.wav\",\"LJ002-0121.wav\",\"LJ002-0122.wav\",\"LJ002-0123.wav\",\"LJ002-0124.wav\",\"LJ002-0125.wav\",\"LJ002-0126.wav\",\"LJ002-0127.wav\",\"LJ002-0128.wav\",\"LJ002-0129.wav\",\"LJ002-0130.wav\",\"LJ002-0131.wav\",\"LJ002-0132.wav\",\"LJ002-0133.wav\",\"LJ002-0134.wav\",\"LJ002-0135.wav\",\"LJ002-0136.wav\",\"LJ002-0137.wav\",\"LJ002-0138.wav\",\"LJ002-0139.wav\",\"LJ002-0140.wav\",\"LJ002-0141.wav\",\"LJ002-0142.wav\",\"LJ002-0143.wav\",\"LJ002-0144.wav\",\"LJ002-0145.wav\",\"LJ002-0146.wav\",\"LJ002-0147.wav\",\"LJ002-0148.wav\",\"LJ002-0149.wav\",\"LJ002-0150.wav\",\"LJ002-0151.wav\",\"LJ002-0152.wav\",\"LJ002-0153.wav\",\"LJ002-0154.wav\",\"LJ002-0155.wav\",\"LJ002-0156.wav\",\"LJ002-0157.wav\",\"LJ002-0158.wav\",\"LJ002-0159.wav\",\"LJ002-0160.wav\",\"LJ002-0161.wav\",\"LJ002-0162.wav\",\"LJ002-0163.wav\",\"LJ002-0164.wav\",\"LJ002-0165.wav\",\"LJ002-0166.wav\",\"LJ002-0167.wav\",\"LJ002-0168.wav\",\"LJ002-0169.wav\",\"LJ002-0170.wav\",\"LJ002-0171.wav\",\"LJ002-0172.wav\",\"LJ002-0173.wav\",\"LJ002-0174.wav\",\"LJ002-0175.wav\",\"LJ002-0176.wav\",\"LJ002-0177.wav\",\"LJ002-0178.wav\",\"LJ002-0179.wav\",\"LJ002-0180.wav\",\"LJ002-0181.wav\",\"LJ002-0182.wav\",\"LJ002-0183.wav\",\"LJ002-0184.wav\",\"LJ002-0185.wav\",\"LJ002-0186.wav\",\"LJ002-0187.wav\",\"LJ002-0188.wav\",\"LJ002-0189.wav\",\"LJ002-0190.wav\",\"LJ002-0191.wav\",\"LJ002-0192.wav\",\"LJ002-0193.wav\",\"LJ002-0194.wav\",\"LJ002-0195.wav\",\"LJ002-0196.wav\",\"LJ002-0197.wav\",\"LJ002-0198.wav\",\"LJ002-0199.wav\",\"LJ002-0200.wav\",\"LJ002-0201.wav\",\"LJ002-0202.wav\",\"LJ002-0203.wav\",\"LJ002-0204.wav\",\"LJ002-0205.wav\",\"LJ002-0206.wav\",\"LJ002-0207.wav\",\"LJ002-0208.wav\",\"LJ002-0209.wav\",\"LJ002-0210.wav\",\"LJ002-0211.wav\",\"LJ002-0212.wav\",\"LJ002-0213.wav\",\"LJ002-0214.wav\",\"LJ002-0215.wav\",\"LJ002-0216.wav\",\"LJ002-0217.wav\",\"LJ002-0218.wav\",\"LJ002-0219.wav\",\"LJ002-0220.wav\",\"LJ002-0221.wav\",\"LJ002-0222.wav\",\"LJ002-0223.wav\",\"LJ002-0224.wav\",\"LJ002-0225.wav\",\"LJ002-0226.wav\",\"LJ002-0227.wav\",\"LJ002-0228.wav\",\"LJ002-0229.wav\",\"LJ002-0230.wav\",\"LJ002-0231.wav\",\"LJ002-0232.wav\",\"LJ002-0233.wav\",\"LJ002-0234.wav\",\"LJ002-0235.wav\",\"LJ002-0236.wav\",\"LJ002-0237.wav\",\"LJ002-0238.wav\",\"LJ002-0239.wav\",\"LJ002-0240.wav\",\"LJ002-0241.wav\",\"LJ002-0242.wav\",\"LJ002-0243.wav\",\"LJ002-0244.wav\",\"LJ002-0245.wav\",\"LJ002-0246.wav\",\"LJ002-0247.wav\",\"LJ002-0248.wav\",\"LJ002-0249.wav\",\"LJ002-0250.wav\",\"LJ002-0251.wav\",\"LJ002-0252.wav\",\"LJ002-0253.wav\",\"LJ002-0254.wav\",\"LJ002-0255.wav\",\"LJ002-0256.wav\",\"LJ002-0257.wav\",\"LJ002-0258.wav\",\"LJ002-0259.wav\",\"LJ002-0260.wav\",\"LJ002-0261.wav\",\"LJ002-0262.wav\",\"LJ002-0263.wav\",\"LJ002-0264.wav\",\"LJ002-0265.wav\",\"LJ002-0266.wav\",\"LJ002-0267.wav\",\"LJ002-0268.wav\",\"LJ002-0269.wav\",\"LJ002-0270.wav\",\"LJ002-0271.wav\",\"LJ002-0272.wav\",\"LJ002-0273.wav\",\"LJ002-0274.wav\",\"LJ002-0275.wav\",\"LJ002-0276.wav\",\"LJ002-0277.wav\",\"LJ002-0278.wav\",\"LJ002-0279.wav\",\"LJ002-0280.wav\",\"LJ002-0281.wav\",\"LJ002-0282.wav\",\"LJ002-0283.wav\",\"LJ002-0284.wav\",\"LJ002-0285.wav\",\"LJ002-0286.wav\",\"LJ002-0287.wav\",\"LJ002-0288.wav\",\"LJ002-0289.wav\",\"LJ002-0290.wav\",\"LJ002-0291.wav\",\"LJ002-0292.wav\",\"LJ002-0293.wav\",\"LJ002-0294.wav\",\"LJ002-0295.wav\",\"LJ002-0296.wav\",\"LJ002-0297.wav\",\"LJ002-0298.wav\",\"LJ002-0299.wav\",\"LJ002-0300.wav\",\"LJ002-0301.wav\",\"LJ002-0302.wav\",\"LJ002-0303.wav\",\"LJ002-0304.wav\",\"LJ002-0305.wav\",\"LJ002-0306.wav\",\"LJ002-0307.wav\",\"LJ002-0308.wav\",\"LJ002-0309.wav\",\"LJ002-0310.wav\",\"LJ002-0311.wav\",\"LJ002-0312.wav\",\"LJ002-0313.wav\",\"LJ002-0314.wav\",\"LJ002-0315.wav\",\"LJ002-0316.wav\",\"LJ002-0317.wav\",\"LJ002-0318.wav\",\"LJ002-0319.wav\",\"LJ002-0320.wav\",\"LJ002-0321.wav\",\"LJ002-0322.wav\",\"LJ002-0323.wav\",\"LJ002-0324.wav\",\"LJ002-0325.wav\",\"LJ002-0326.wav\",\"LJ002-0327.wav\",\"LJ002-0328.wav\",\"LJ002-0329.wav\",\"LJ002-0330.wav\",\"LJ002-0331.wav\",\"LJ002-0332.wav\",\"LJ002-0333.wav\",\"LJ002-0334.wav\",\"LJ002-0335.wav\",\"LJ002-0336.wav\",\"LJ002-0337.wav\",\"LJ002-0338.wav\",\"LJ003-0001.wav\",\"LJ003-0002.wav\",\"LJ003-0003.wav\",\"LJ003-0004.wav\",\"LJ003-0005.wav\",\"LJ003-0006.wav\",\"LJ003-0007.wav\",\"LJ003-0008.wav\",\"LJ003-0009.wav\",\"LJ003-0010.wav\",\"LJ003-0011.wav\",\"LJ003-0012.wav\",\"LJ003-0013.wav\",\"LJ003-0014.wav\",\"LJ003-0015.wav\",\"LJ003-0016.wav\",\"LJ003-0017.wav\",\"LJ003-0018.wav\",\"LJ003-0019.wav\",\"LJ003-0020.wav\",\"LJ003-0021.wav\",\"LJ003-0022.wav\",\"LJ003-0023.wav\",\"LJ003-0024.wav\",\"LJ003-0025.wav\",\"LJ003-0026.wav\",\"LJ003-0027.wav\",\"LJ003-0028.wav\",\"LJ003-0029.wav\",\"LJ003-0030.wav\",\"LJ003-0031.wav\",\"LJ003-0032.wav\",\"LJ003-0033.wav\",\"LJ003-0034.wav\",\"LJ003-0035.wav\",\"LJ003-0036.wav\",\"LJ003-0037.wav\",\"LJ003-0038.wav\",\"LJ003-0039.wav\",\"LJ003-0040.wav\",\"LJ003-0041.wav\",\"LJ003-0042.wav\",\"LJ003-0043.wav\",\"LJ003-0044.wav\",\"LJ003-0045.wav\",\"LJ003-0046.wav\",\"LJ003-0047.wav\",\"LJ003-0048.wav\",\"LJ003-0049.wav\",\"LJ003-0050.wav\",\"LJ003-0051.wav\",\"LJ003-0052.wav\",\"LJ003-0053.wav\",\"LJ003-0054.wav\",\"LJ003-0055.wav\",\"LJ003-0056.wav\",\"LJ003-0057.wav\",\"LJ003-0058.wav\",\"LJ003-0059.wav\",\"LJ003-0060.wav\",\"LJ003-0061.wav\",\"LJ003-0062.wav\",\"LJ003-0063.wav\",\"LJ003-0064.wav\",\"LJ003-0065.wav\",\"LJ003-0066.wav\",\"LJ003-0067.wav\",\"LJ003-0068.wav\",\"LJ003-0069.wav\",\"LJ003-0070.wav\",\"LJ003-0071.wav\",\"LJ003-0072.wav\",\"LJ003-0073.wav\",\"LJ003-0074.wav\",\"LJ003-0075.wav\",\"LJ003-0076.wav\",\"LJ003-0077.wav\",\"LJ003-0078.wav\",\"LJ003-0079.wav\",\"LJ003-0080.wav\",\"LJ003-0081.wav\",\"LJ003-0082.wav\",\"LJ003-0083.wav\",\"LJ003-0084.wav\",\"LJ003-0085.wav\",\"LJ003-0086.wav\",\"LJ003-0087.wav\",\"LJ003-0088.wav\",\"LJ003-0089.wav\",\"LJ003-0090.wav\",\"LJ003-0091.wav\",\"LJ003-0092.wav\",\"LJ003-0093.wav\",\"LJ003-0094.wav\",\"LJ003-0095.wav\",\"LJ003-0096.wav\",\"LJ003-0097.wav\",\"LJ003-0098.wav\",\"LJ003-0099.wav\",\"LJ003-0100.wav\",\"LJ003-0101.wav\",\"LJ003-0102.wav\",\"LJ003-0103.wav\",\"LJ003-0104.wav\",\"LJ003-0105.wav\",\"LJ003-0106.wav\",\"LJ003-0107.wav\",\"LJ003-0108.wav\",\"LJ003-0109.wav\",\"LJ003-0110.wav\",\"LJ003-0111.wav\",\"LJ003-0112.wav\",\"LJ003-0113.wav\",\"LJ003-0114.wav\",\"LJ003-0115.wav\",\"LJ003-0116.wav\",\"LJ003-0117.wav\",\"LJ003-0118.wav\",\"LJ003-0119.wav\",\"LJ003-0120.wav\",\"LJ003-0121.wav\",\"LJ003-0122.wav\",\"LJ003-0123.wav\",\"LJ003-0124.wav\",\"LJ003-0125.wav\",\"LJ003-0126.wav\",\"LJ003-0127.wav\",\"LJ003-0128.wav\",\"LJ003-0129.wav\",\"LJ003-0130.wav\",\"LJ003-0131.wav\",\"LJ003-0132.wav\",\"LJ003-0133.wav\",\"LJ003-0134.wav\",\"LJ003-0135.wav\",\"LJ003-0136.wav\",\"LJ003-0137.wav\",\"LJ003-0138.wav\",\"LJ003-0139.wav\",\"LJ003-0140.wav\",\"LJ003-0141.wav\",\"LJ003-0142.wav\",\"LJ003-0143.wav\",\"LJ003-0144.wav\",\"LJ003-0145.wav\",\"LJ003-0146.wav\",\"LJ003-0147.wav\",\"LJ003-0148.wav\",\"LJ003-0149.wav\",\"LJ003-0150.wav\",\"LJ003-0151.wav\",\"LJ003-0152.wav\",\"LJ003-0153.wav\",\"LJ003-0154.wav\",\"LJ003-0155.wav\",\"LJ003-0156.wav\",\"LJ003-0157.wav\",\"LJ003-0158.wav\",\"LJ003-0159.wav\",\"LJ003-0160.wav\",\"LJ003-0161.wav\",\"LJ003-0162.wav\",\"LJ003-0163.wav\",\"LJ003-0164.wav\",\"LJ003-0165.wav\",\"LJ003-0166.wav\",\"LJ003-0167.wav\",\"LJ003-0168.wav\",\"LJ003-0169.wav\",\"LJ003-0170.wav\",\"LJ003-0171.wav\",\"LJ003-0172.wav\",\"LJ003-0173.wav\",\"LJ003-0174.wav\",\"LJ003-0175.wav\",\"LJ003-0176.wav\",\"LJ003-0177.wav\",\"LJ003-0178.wav\",\"LJ003-0179.wav\",\"LJ003-0180.wav\",\"LJ003-0181.wav\",\"LJ003-0182.wav\",\"LJ003-0183.wav\",\"LJ003-0184.wav\",\"LJ003-0185.wav\",\"LJ003-0186.wav\",\"LJ003-0187.wav\",\"LJ003-0188.wav\",\"LJ003-0189.wav\",\"LJ003-0190.wav\",\"LJ003-0191.wav\",\"LJ003-0192.wav\",\"LJ003-0193.wav\",\"LJ003-0194.wav\",\"LJ003-0195.wav\",\"LJ003-0196.wav\",\"LJ003-0197.wav\",\"LJ003-0198.wav\",\"LJ003-0199.wav\",\"LJ003-0200.wav\",\"LJ003-0201.wav\",\"LJ003-0202.wav\",\"LJ003-0203.wav\",\"LJ003-0204.wav\",\"LJ003-0205.wav\",\"LJ003-0206.wav\",\"LJ003-0207.wav\",\"LJ003-0208.wav\",\"LJ003-0209.wav\",\"LJ003-0210.wav\",\"LJ003-0211.wav\",\"LJ003-0212.wav\",\"LJ003-0213.wav\",\"LJ003-0214.wav\",\"LJ003-0215.wav\",\"LJ003-0216.wav\",\"LJ003-0217.wav\",\"LJ003-0218.wav\",\"LJ003-0219.wav\",\"LJ003-0220.wav\",\"LJ003-0221.wav\",\"LJ003-0222.wav\",\"LJ003-0223.wav\",\"LJ003-0224.wav\",\"LJ003-0225.wav\",\"LJ003-0226.wav\",\"LJ003-0227.wav\",\"LJ003-0228.wav\",\"LJ003-0229.wav\",\"LJ003-0230.wav\",\"LJ003-0231.wav\",\"LJ003-0232.wav\",\"LJ003-0233.wav\",\"LJ003-0234.wav\",\"LJ003-0235.wav\",\"LJ003-0236.wav\",\"LJ003-0237.wav\",\"LJ003-0238.wav\",\"LJ003-0239.wav\",\"LJ003-0240.wav\",\"LJ003-0241.wav\",\"LJ003-0242.wav\",\"LJ003-0243.wav\",\"LJ003-0244.wav\",\"LJ003-0245.wav\",\"LJ003-0246.wav\",\"LJ003-0247.wav\",\"LJ003-0248.wav\",\"LJ003-0249.wav\",\"LJ003-0250.wav\",\"LJ003-0251.wav\",\"LJ003-0252.wav\",\"LJ003-0253.wav\",\"LJ003-0254.wav\",\"LJ003-0255.wav\",\"LJ003-0256.wav\",\"LJ003-0257.wav\",\"LJ003-0258.wav\",\"LJ003-0259.wav\",\"LJ003-0260.wav\",\"LJ003-0261.wav\",\"LJ003-0262.wav\",\"LJ003-0263.wav\",\"LJ003-0264.wav\",\"LJ003-0265.wav\",\"LJ003-0266.wav\",\"LJ003-0267.wav\",\"LJ003-0268.wav\",\"LJ003-0269.wav\",\"LJ003-0270.wav\",\"LJ003-0271.wav\",\"LJ003-0273.wav\",\"LJ003-0274.wav\",\"LJ003-0275.wav\",\"LJ003-0276.wav\",\"LJ003-0277.wav\",\"LJ003-0278.wav\",\"LJ003-0279.wav\",\"LJ003-0280.wav\",\"LJ003-0281.wav\",\"LJ003-0282.wav\",\"LJ003-0283.wav\",\"LJ003-0284.wav\",\"LJ003-0285.wav\",\"LJ003-0286.wav\",\"LJ003-0287.wav\",\"LJ003-0288.wav\",\"LJ003-0289.wav\",\"LJ003-0290.wav\",\"LJ003-0291.wav\",\"LJ003-0292.wav\",\"LJ003-0293.wav\",\"LJ003-0294.wav\",\"LJ003-0295.wav\",\"LJ003-0296.wav\",\"LJ003-0297.wav\",\"LJ003-0298.wav\",\"LJ003-0299.wav\",\"LJ003-0300.wav\",\"LJ003-0301.wav\",\"LJ003-0302.wav\",\"LJ003-0303.wav\",\"LJ003-0304.wav\",\"LJ003-0305.wav\",\"LJ003-0306.wav\",\"LJ003-0307.wav\",\"LJ003-0308.wav\",\"LJ003-0309.wav\",\"LJ003-0310.wav\",\"LJ003-0311.wav\",\"LJ003-0312.wav\",\"LJ003-0313.wav\",\"LJ003-0314.wav\",\"LJ003-0315.wav\",\"LJ003-0316.wav\",\"LJ003-0317.wav\",\"LJ003-0318.wav\",\"LJ003-0319.wav\",\"LJ003-0320.wav\",\"LJ003-0321.wav\",\"LJ003-0322.wav\",\"LJ003-0323.wav\",\"LJ003-0324.wav\",\"LJ003-0325.wav\",\"LJ003-0326.wav\",\"LJ003-0327.wav\",\"LJ003-0328.wav\",\"LJ003-0329.wav\",\"LJ003-0330.wav\",\"LJ003-0331.wav\",\"LJ003-0332.wav\",\"LJ003-0333.wav\",\"LJ003-0334.wav\",\"LJ003-0335.wav\",\"LJ003-0336.wav\",\"LJ003-0337.wav\",\"LJ003-0338.wav\",\"LJ003-0339.wav\",\"LJ003-0340.wav\",\"LJ003-0341.wav\",\"LJ003-0342.wav\",\"LJ003-0343.wav\",\"LJ003-0344.wav\",\"LJ003-0345.wav\",\"LJ003-0346.wav\",\"LJ003-0347.wav\",\"LJ003-0348.wav\",\"LJ003-0349.wav\",\"LJ004-0001.wav\",\"LJ004-0002.wav\",\"LJ004-0003.wav\",\"LJ004-0004.wav\",\"LJ004-0005.wav\",\"LJ004-0006.wav\",\"LJ004-0007.wav\",\"LJ004-0008.wav\",\"LJ004-0009.wav\",\"LJ004-0010.wav\",\"LJ004-0011.wav\",\"LJ004-0012.wav\",\"LJ004-0013.wav\",\"LJ004-0014.wav\",\"LJ004-0015.wav\",\"LJ004-0016.wav\",\"LJ004-0017.wav\",\"LJ004-0018.wav\",\"LJ004-0019.wav\",\"LJ004-0020.wav\",\"LJ004-0021.wav\",\"LJ004-0022.wav\",\"LJ004-0023.wav\",\"LJ004-0024.wav\",\"LJ004-0025.wav\",\"LJ004-0026.wav\",\"LJ004-0027.wav\",\"LJ004-0028.wav\",\"LJ004-0029.wav\",\"LJ004-0030.wav\",\"LJ004-0031.wav\",\"LJ004-0032.wav\",\"LJ004-0033.wav\",\"LJ004-0034.wav\",\"LJ004-0035.wav\",\"LJ004-0036.wav\",\"LJ004-0037.wav\",\"LJ004-0038.wav\",\"LJ004-0039.wav\",\"LJ004-0040.wav\",\"LJ004-0041.wav\",\"LJ004-0042.wav\",\"LJ004-0043.wav\",\"LJ004-0044.wav\",\"LJ004-0045.wav\",\"LJ004-0046.wav\",\"LJ004-0047.wav\",\"LJ004-0048.wav\",\"LJ004-0049.wav\",\"LJ004-0050.wav\",\"LJ004-0051.wav\",\"LJ004-0052.wav\",\"LJ004-0054.wav\",\"LJ004-0055.wav\",\"LJ004-0056.wav\",\"LJ004-0057.wav\",\"LJ004-0058.wav\",\"LJ004-0059.wav\",\"LJ004-0060.wav\",\"LJ004-0061.wav\",\"LJ004-0062.wav\",\"LJ004-0063.wav\",\"LJ004-0064.wav\",\"LJ004-0065.wav\",\"LJ004-0066.wav\",\"LJ004-0067.wav\",\"LJ004-0068.wav\",\"LJ004-0069.wav\",\"LJ004-0070.wav\",\"LJ004-0071.wav\",\"LJ004-0072.wav\",\"LJ004-0073.wav\",\"LJ004-0074.wav\",\"LJ004-0075.wav\",\"LJ004-0076.wav\",\"LJ004-0077.wav\",\"LJ004-0078.wav\",\"LJ004-0079.wav\",\"LJ004-0080.wav\",\"LJ004-0081.wav\",\"LJ004-0082.wav\",\"LJ004-0083.wav\",\"LJ004-0084.wav\",\"LJ004-0085.wav\",\"LJ004-0086.wav\",\"LJ004-0087.wav\",\"LJ004-0088.wav\",\"LJ004-0089.wav\",\"LJ004-0090.wav\",\"LJ004-0091.wav\",\"LJ004-0092.wav\",\"LJ004-0093.wav\",\"LJ004-0094.wav\",\"LJ004-0095.wav\",\"LJ004-0096.wav\",\"LJ004-0097.wav\",\"LJ004-0098.wav\",\"LJ004-0099.wav\",\"LJ004-0100.wav\",\"LJ004-0101.wav\",\"LJ004-0102.wav\",\"LJ004-0103.wav\",\"LJ004-0104.wav\",\"LJ004-0105.wav\",\"LJ004-0106.wav\",\"LJ004-0107.wav\",\"LJ004-0108.wav\",\"LJ004-0109.wav\",\"LJ004-0110.wav\",\"LJ004-0111.wav\",\"LJ004-0112.wav\",\"LJ004-0113.wav\",\"LJ004-0114.wav\",\"LJ004-0115.wav\",\"LJ004-0116.wav\",\"LJ004-0117.wav\",\"LJ004-0118.wav\",\"LJ004-0119.wav\",\"LJ004-0120.wav\",\"LJ004-0121.wav\",\"LJ004-0122.wav\",\"LJ004-0123.wav\",\"LJ004-0124.wav\",\"LJ004-0125.wav\",\"LJ004-0126.wav\",\"LJ004-0127.wav\",\"LJ004-0128.wav\",\"LJ004-0129.wav\",\"LJ004-0130.wav\",\"LJ004-0131.wav\",\"LJ004-0132.wav\",\"LJ004-0133.wav\",\"LJ004-0134.wav\",\"LJ004-0135.wav\",\"LJ004-0136.wav\",\"LJ004-0137.wav\",\"LJ004-0138.wav\",\"LJ004-0139.wav\",\"LJ004-0140.wav\",\"LJ004-0141.wav\",\"LJ004-0142.wav\",\"LJ004-0143.wav\",\"LJ004-0144.wav\",\"LJ004-0145.wav\",\"LJ004-0146.wav\",\"LJ004-0147.wav\",\"LJ004-0148.wav\",\"LJ004-0149.wav\",\"LJ004-0150.wav\",\"LJ004-0151.wav\",\"LJ004-0152.wav\",\"LJ004-0153.wav\",\"LJ004-0154.wav\",\"LJ004-0155.wav\",\"LJ004-0156.wav\",\"LJ004-0157.wav\",\"LJ004-0158.wav\",\"LJ004-0159.wav\",\"LJ004-0160.wav\",\"LJ004-0161.wav\",\"LJ004-0162.wav\",\"LJ004-0163.wav\",\"LJ004-0164.wav\",\"LJ004-0165.wav\",\"LJ004-0166.wav\",\"LJ004-0167.wav\",\"LJ004-0168.wav\",\"LJ004-0169.wav\",\"LJ004-0170.wav\",\"LJ004-0171.wav\",\"LJ004-0172.wav\",\"LJ004-0173.wav\",\"LJ004-0174.wav\",\"LJ004-0175.wav\",\"LJ004-0176.wav\",\"LJ004-0177.wav\",\"LJ004-0178.wav\",\"LJ004-0179.wav\",\"LJ004-0180.wav\",\"LJ004-0181.wav\",\"LJ004-0182.wav\",\"LJ004-0183.wav\",\"LJ004-0184.wav\",\"LJ004-0185.wav\",\"LJ004-0186.wav\",\"LJ004-0187.wav\",\"LJ004-0188.wav\",\"LJ004-0189.wav\",\"LJ004-0190.wav\",\"LJ004-0191.wav\",\"LJ004-0192.wav\",\"LJ004-0193.wav\",\"LJ004-0194.wav\",\"LJ004-0195.wav\",\"LJ004-0196.wav\",\"LJ004-0197.wav\",\"LJ004-0198.wav\",\"LJ004-0199.wav\",\"LJ004-0200.wav\",\"LJ004-0201.wav\",\"LJ004-0202.wav\",\"LJ004-0203.wav\",\"LJ004-0204.wav\",\"LJ004-0205.wav\",\"LJ004-0206.wav\",\"LJ004-0207.wav\",\"LJ004-0208.wav\",\"LJ004-0209.wav\",\"LJ004-0210.wav\",\"LJ004-0211.wav\",\"LJ004-0212.wav\",\"LJ004-0213.wav\",\"LJ004-0214.wav\",\"LJ004-0215.wav\",\"LJ004-0216.wav\",\"LJ004-0217.wav\",\"LJ004-0218.wav\",\"LJ004-0219.wav\",\"LJ004-0220.wav\",\"LJ004-0221.wav\",\"LJ004-0222.wav\",\"LJ004-0223.wav\",\"LJ004-0224.wav\",\"LJ004-0225.wav\",\"LJ004-0226.wav\",\"LJ004-0227.wav\",\"LJ004-0228.wav\",\"LJ004-0229.wav\",\"LJ004-0230.wav\",\"LJ004-0231.wav\",\"LJ004-0232.wav\",\"LJ004-0233.wav\",\"LJ004-0234.wav\",\"LJ004-0235.wav\",\"LJ004-0236.wav\",\"LJ004-0237.wav\",\"LJ004-0238.wav\",\"LJ004-0239.wav\",\"LJ004-0240.wav\",\"LJ004-0241.wav\",\"LJ004-0242.wav\",\"LJ004-0243.wav\",\"LJ004-0244.wav\",\"LJ004-0245.wav\",\"LJ004-0246.wav\",\"LJ004-0247.wav\",\"LJ004-0248.wav\",\"LJ004-0249.wav\",\"LJ004-0250.wav\",\"LJ005-0001.wav\",\"LJ005-0002.wav\",\"LJ005-0003.wav\",\"LJ005-0004.wav\",\"LJ005-0005.wav\",\"LJ005-0006.wav\",\"LJ005-0007.wav\",\"LJ005-0008.wav\",\"LJ005-0009.wav\",\"LJ005-0010.wav\",\"LJ005-0011.wav\",\"LJ005-0012.wav\",\"LJ005-0013.wav\",\"LJ005-0014.wav\",\"LJ005-0015.wav\",\"LJ005-0016.wav\",\"LJ005-0017.wav\",\"LJ005-0018.wav\",\"LJ005-0019.wav\",\"LJ005-0020.wav\",\"LJ005-0021.wav\",\"LJ005-0022.wav\",\"LJ005-0023.wav\",\"LJ005-0024.wav\",\"LJ005-0025.wav\",\"LJ005-0026.wav\",\"LJ005-0027.wav\",\"LJ005-0028.wav\",\"LJ005-0029.wav\",\"LJ005-0030.wav\",\"LJ005-0031.wav\",\"LJ005-0032.wav\",\"LJ005-0033.wav\",\"LJ005-0034.wav\",\"LJ005-0035.wav\",\"LJ005-0036.wav\",\"LJ005-0037.wav\",\"LJ005-0038.wav\",\"LJ005-0039.wav\",\"LJ005-0040.wav\",\"LJ005-0041.wav\",\"LJ005-0042.wav\",\"LJ005-0043.wav\",\"LJ005-0044.wav\",\"LJ005-0045.wav\",\"LJ005-0046.wav\",\"LJ005-0047.wav\",\"LJ005-0048.wav\",\"LJ005-0049.wav\",\"LJ005-0050.wav\",\"LJ005-0051.wav\",\"LJ005-0052.wav\",\"LJ005-0053.wav\",\"LJ005-0054.wav\",\"LJ005-0055.wav\",\"LJ005-0056.wav\",\"LJ005-0057.wav\",\"LJ005-0058.wav\",\"LJ005-0059.wav\",\"LJ005-0060.wav\",\"LJ005-0061.wav\",\"LJ005-0062.wav\",\"LJ005-0063.wav\",\"LJ005-0064.wav\",\"LJ005-0065.wav\",\"LJ005-0066.wav\",\"LJ005-0067.wav\",\"LJ005-0068.wav\",\"LJ005-0069.wav\",\"LJ005-0070.wav\",\"LJ005-0071.wav\",\"LJ005-0072.wav\",\"LJ005-0073.wav\",\"LJ005-0074.wav\",\"LJ005-0075.wav\",\"LJ005-0076.wav\",\"LJ005-0077.wav\",\"LJ005-0078.wav\",\"LJ005-0079.wav\",\"LJ005-0080.wav\",\"LJ005-0082.wav\",\"LJ005-0083.wav\",\"LJ005-0084.wav\",\"LJ005-0085.wav\",\"LJ005-0086.wav\",\"LJ005-0087.wav\",\"LJ005-0088.wav\",\"LJ005-0089.wav\",\"LJ005-0090.wav\",\"LJ005-0091.wav\",\"LJ005-0092.wav\",\"LJ005-0093.wav\",\"LJ005-0094.wav\",\"LJ005-0095.wav\",\"LJ005-0096.wav\",\"LJ005-0097.wav\",\"LJ005-0098.wav\",\"LJ005-0099.wav\",\"LJ005-0100.wav\",\"LJ005-0101.wav\",\"LJ005-0102.wav\",\"LJ005-0103.wav\",\"LJ005-0104.wav\",\"LJ005-0105.wav\",\"LJ005-0106.wav\",\"LJ005-0107.wav\",\"LJ005-0108.wav\",\"LJ005-0109.wav\",\"LJ005-0110.wav\",\"LJ005-0111.wav\",\"LJ005-0112.wav\",\"LJ005-0113.wav\",\"LJ005-0114.wav\",\"LJ005-0115.wav\",\"LJ005-0116.wav\",\"LJ005-0117.wav\",\"LJ005-0118.wav\",\"LJ005-0119.wav\",\"LJ005-0120.wav\",\"LJ005-0121.wav\",\"LJ005-0122.wav\",\"LJ005-0123.wav\",\"LJ005-0124.wav\",\"LJ005-0125.wav\",\"LJ005-0126.wav\",\"LJ005-0127.wav\",\"LJ005-0128.wav\",\"LJ005-0129.wav\",\"LJ005-0130.wav\",\"LJ005-0131.wav\",\"LJ005-0132.wav\",\"LJ005-0133.wav\",\"LJ005-0134.wav\",\"LJ005-0135.wav\",\"LJ005-0136.wav\",\"LJ005-0137.wav\",\"LJ005-0138.wav\",\"LJ005-0139.wav\",\"LJ005-0140.wav\",\"LJ005-0141.wav\",\"LJ005-0142.wav\",\"LJ005-0143.wav\",\"LJ005-0144.wav\",\"LJ005-0145.wav\",\"LJ005-0146.wav\",\"LJ005-0147.wav\",\"LJ005-0148.wav\",\"LJ005-0149.wav\",\"LJ005-0150.wav\",\"LJ005-0151.wav\",\"LJ005-0152.wav\",\"LJ005-0153.wav\",\"LJ005-0154.wav\",\"LJ005-0155.wav\",\"LJ005-0156.wav\",\"LJ005-0157.wav\",\"LJ005-0158.wav\",\"LJ005-0159.wav\",\"LJ005-0160.wav\",\"LJ005-0161.wav\",\"LJ005-0162.wav\",\"LJ005-0163.wav\",\"LJ005-0164.wav\",\"LJ005-0165.wav\",\"LJ005-0166.wav\",\"LJ005-0167.wav\",\"LJ005-0168.wav\",\"LJ005-0169.wav\",\"LJ005-0170.wav\",\"LJ005-0171.wav\",\"LJ005-0172.wav\",\"LJ005-0173.wav\",\"LJ005-0174.wav\",\"LJ005-0175.wav\",\"LJ005-0176.wav\",\"LJ005-0177.wav\",\"LJ005-0178.wav\",\"LJ005-0179.wav\",\"LJ005-0180.wav\",\"LJ005-0181.wav\",\"LJ005-0182.wav\",\"LJ005-0183.wav\",\"LJ005-0184.wav\",\"LJ005-0185.wav\",\"LJ005-0186.wav\",\"LJ005-0187.wav\",\"LJ005-0188.wav\",\"LJ005-0189.wav\",\"LJ005-0190.wav\",\"LJ005-0191.wav\",\"LJ005-0192.wav\",\"LJ005-0193.wav\",\"LJ005-0194.wav\",\"LJ005-0195.wav\",\"LJ005-0196.wav\",\"LJ005-0197.wav\",\"LJ005-0198.wav\",\"LJ005-0199.wav\",\"LJ005-0200.wav\",\"LJ005-0201.wav\",\"LJ005-0202.wav\",\"LJ005-0203.wav\",\"LJ005-0204.wav\",\"LJ005-0205.wav\",\"LJ005-0206.wav\",\"LJ005-0207.wav\",\"LJ005-0208.wav\",\"LJ005-0209.wav\",\"LJ005-0210.wav\",\"LJ005-0211.wav\",\"LJ005-0212.wav\",\"LJ005-0213.wav\",\"LJ005-0214.wav\",\"LJ005-0215.wav\",\"LJ005-0216.wav\",\"LJ005-0217.wav\",\"LJ005-0218.wav\",\"LJ005-0219.wav\",\"LJ005-0220.wav\",\"LJ005-0221.wav\",\"LJ005-0222.wav\",\"LJ005-0223.wav\",\"LJ005-0224.wav\",\"LJ005-0225.wav\",\"LJ005-0226.wav\",\"LJ005-0227.wav\",\"LJ005-0228.wav\",\"LJ005-0229.wav\",\"LJ005-0230.wav\",\"LJ005-0231.wav\",\"LJ005-0232.wav\",\"LJ005-0233.wav\",\"LJ005-0234.wav\",\"LJ005-0235.wav\",\"LJ005-0236.wav\",\"LJ005-0237.wav\",\"LJ005-0238.wav\",\"LJ005-0239.wav\",\"LJ005-0240.wav\",\"LJ005-0241.wav\",\"LJ005-0242.wav\",\"LJ005-0243.wav\",\"LJ005-0244.wav\",\"LJ005-0245.wav\",\"LJ005-0246.wav\",\"LJ005-0247.wav\",\"LJ005-0248.wav\",\"LJ005-0249.wav\",\"LJ005-0250.wav\",\"LJ005-0251.wav\",\"LJ005-0252.wav\",\"LJ005-0253.wav\",\"LJ005-0254.wav\",\"LJ005-0255.wav\",\"LJ005-0256.wav\",\"LJ005-0257.wav\",\"LJ005-0258.wav\",\"LJ005-0259.wav\",\"LJ005-0260.wav\",\"LJ005-0261.wav\",\"LJ005-0262.wav\",\"LJ005-0263.wav\",\"LJ005-0264.wav\",\"LJ005-0265.wav\",\"LJ005-0266.wav\",\"LJ005-0267.wav\",\"LJ005-0268.wav\",\"LJ005-0269.wav\",\"LJ005-0270.wav\",\"LJ005-0271.wav\",\"LJ005-0272.wav\",\"LJ005-0273.wav\",\"LJ005-0274.wav\",\"LJ005-0275.wav\",\"LJ005-0276.wav\",\"LJ005-0277.wav\",\"LJ005-0278.wav\",\"LJ005-0279.wav\",\"LJ005-0280.wav\",\"LJ005-0281.wav\",\"LJ005-0282.wav\",\"LJ005-0283.wav\",\"LJ005-0284.wav\",\"LJ005-0285.wav\",\"LJ005-0286.wav\",\"LJ005-0287.wav\",\"LJ005-0288.wav\",\"LJ005-0289.wav\",\"LJ005-0290.wav\",\"LJ005-0291.wav\",\"LJ005-0292.wav\",\"LJ005-0293.wav\",\"LJ005-0294.wav\",\"LJ005-0295.wav\",\"LJ005-0296.wav\",\"LJ005-0297.wav\",\"LJ005-0298.wav\",\"LJ005-0299.wav\",\"LJ005-0300.wav\",\"LJ006-0001.wav\",\"LJ006-0002.wav\",\"LJ006-0003.wav\",\"LJ006-0004.wav\",\"LJ006-0005.wav\",\"LJ006-0006.wav\",\"LJ006-0007.wav\",\"LJ006-0008.wav\",\"LJ006-0009.wav\",\"LJ006-0010.wav\",\"LJ006-0011.wav\",\"LJ006-0012.wav\",\"LJ006-0013.wav\",\"LJ006-0014.wav\",\"LJ006-0015.wav\",\"LJ006-0016.wav\",\"LJ006-0017.wav\",\"LJ006-0018.wav\",\"LJ006-0019.wav\",\"LJ006-0020.wav\",\"LJ006-0021.wav\",\"LJ006-0022.wav\",\"LJ006-0023.wav\",\"LJ006-0024.wav\",\"LJ006-0025.wav\",\"LJ006-0026.wav\",\"LJ006-0027.wav\",\"LJ006-0028.wav\",\"LJ006-0029.wav\",\"LJ006-0030.wav\",\"LJ006-0031.wav\",\"LJ006-0032.wav\",\"LJ006-0033.wav\",\"LJ006-0034.wav\",\"LJ006-0035.wav\",\"LJ006-0036.wav\",\"LJ006-0038.wav\",\"LJ006-0039.wav\",\"LJ006-0040.wav\",\"LJ006-0041.wav\",\"LJ006-0042.wav\",\"LJ006-0043.wav\",\"LJ006-0044.wav\",\"LJ006-0045.wav\",\"LJ006-0046.wav\",\"LJ006-0047.wav\",\"LJ006-0048.wav\",\"LJ006-0049.wav\",\"LJ006-0050.wav\",\"LJ006-0051.wav\",\"LJ006-0052.wav\",\"LJ006-0053.wav\",\"LJ006-0054.wav\",\"LJ006-0055.wav\",\"LJ006-0056.wav\",\"LJ006-0057.wav\",\"LJ006-0058.wav\",\"LJ006-0059.wav\",\"LJ006-0060.wav\",\"LJ006-0061.wav\",\"LJ006-0062.wav\",\"LJ006-0063.wav\",\"LJ006-0064.wav\",\"LJ006-0065.wav\",\"LJ006-0066.wav\",\"LJ006-0067.wav\",\"LJ006-0068.wav\",\"LJ006-0069.wav\",\"LJ006-0070.wav\",\"LJ006-0071.wav\",\"LJ006-0072.wav\",\"LJ006-0073.wav\",\"LJ006-0074.wav\",\"LJ006-0075.wav\",\"LJ006-0076.wav\",\"LJ006-0077.wav\",\"LJ006-0078.wav\",\"LJ006-0079.wav\",\"LJ006-0080.wav\",\"LJ006-0081.wav\",\"LJ006-0082.wav\",\"LJ006-0083.wav\",\"LJ006-0084.wav\",\"LJ006-0085.wav\",\"LJ006-0086.wav\",\"LJ006-0087.wav\",\"LJ006-0088.wav\",\"LJ006-0089.wav\",\"LJ006-0090.wav\",\"LJ006-0091.wav\",\"LJ006-0092.wav\",\"LJ006-0093.wav\",\"LJ006-0094.wav\",\"LJ006-0095.wav\",\"LJ006-0096.wav\",\"LJ006-0097.wav\",\"LJ006-0098.wav\",\"LJ006-0099.wav\",\"LJ006-0100.wav\",\"LJ006-0101.wav\",\"LJ006-0102.wav\",\"LJ006-0103.wav\",\"LJ006-0104.wav\",\"LJ006-0105.wav\",\"LJ006-0106.wav\",\"LJ006-0107.wav\",\"LJ006-0108.wav\",\"LJ006-0109.wav\",\"LJ006-0110.wav\",\"LJ006-0111.wav\",\"LJ006-0112.wav\",\"LJ006-0113.wav\",\"LJ006-0114.wav\",\"LJ006-0115.wav\",\"LJ006-0116.wav\",\"LJ006-0117.wav\",\"LJ006-0118.wav\",\"LJ006-0119.wav\",\"LJ006-0120.wav\",\"LJ006-0121.wav\",\"LJ006-0122.wav\",\"LJ006-0123.wav\",\"LJ006-0124.wav\",\"LJ006-0125.wav\",\"LJ006-0126.wav\",\"LJ006-0127.wav\",\"LJ006-0128.wav\",\"LJ006-0129.wav\",\"LJ006-0130.wav\",\"LJ006-0131.wav\",\"LJ006-0132.wav\",\"LJ006-0133.wav\",\"LJ006-0134.wav\",\"LJ006-0135.wav\",\"LJ006-0136.wav\",\"LJ006-0137.wav\",\"LJ006-0138.wav\",\"LJ006-0139.wav\",\"LJ006-0140.wav\",\"LJ006-0141.wav\",\"LJ006-0142.wav\",\"LJ006-0143.wav\",\"LJ006-0144.wav\",\"LJ006-0145.wav\",\"LJ006-0146.wav\",\"LJ006-0147.wav\",\"LJ006-0148.wav\",\"LJ006-0149.wav\",\"LJ006-0150.wav\",\"LJ006-0151.wav\",\"LJ006-0152.wav\",\"LJ006-0153.wav\",\"LJ006-0154.wav\",\"LJ006-0155.wav\",\"LJ006-0156.wav\",\"LJ006-0157.wav\",\"LJ006-0158.wav\",\"LJ006-0159.wav\",\"LJ006-0160.wav\",\"LJ006-0161.wav\",\"LJ006-0162.wav\",\"LJ006-0163.wav\",\"LJ006-0164.wav\",\"LJ006-0165.wav\",\"LJ006-0166.wav\",\"LJ006-0167.wav\",\"LJ006-0168.wav\",\"LJ006-0169.wav\",\"LJ006-0170.wav\",\"LJ006-0171.wav\",\"LJ006-0172.wav\",\"LJ006-0173.wav\",\"LJ006-0174.wav\",\"LJ006-0175.wav\",\"LJ006-0176.wav\",\"LJ006-0177.wav\",\"LJ006-0178.wav\",\"LJ006-0179.wav\",\"LJ006-0180.wav\",\"LJ006-0181.wav\",\"LJ006-0182.wav\",\"LJ006-0183.wav\",\"LJ006-0184.wav\",\"LJ006-0185.wav\",\"LJ006-0186.wav\",\"LJ006-0187.wav\",\"LJ006-0188.wav\",\"LJ006-0189.wav\",\"LJ006-0190.wav\",\"LJ006-0191.wav\",\"LJ006-0192.wav\",\"LJ006-0193.wav\",\"LJ006-0194.wav\",\"LJ006-0195.wav\",\"LJ006-0196.wav\",\"LJ006-0197.wav\",\"LJ006-0198.wav\",\"LJ006-0199.wav\",\"LJ006-0200.wav\",\"LJ006-0201.wav\",\"LJ006-0202.wav\",\"LJ006-0203.wav\",\"LJ006-0204.wav\",\"LJ006-0205.wav\",\"LJ006-0206.wav\",\"LJ006-0207.wav\",\"LJ006-0208.wav\",\"LJ006-0209.wav\",\"LJ006-0210.wav\",\"LJ006-0211.wav\",\"LJ006-0212.wav\",\"LJ006-0213.wav\",\"LJ006-0214.wav\",\"LJ006-0215.wav\",\"LJ006-0216.wav\",\"LJ006-0217.wav\",\"LJ006-0218.wav\",\"LJ006-0219.wav\",\"LJ006-0220.wav\",\"LJ006-0221.wav\",\"LJ006-0222.wav\",\"LJ006-0223.wav\",\"LJ006-0224.wav\",\"LJ006-0225.wav\",\"LJ006-0226.wav\",\"LJ006-0227.wav\",\"LJ006-0228.wav\",\"LJ006-0229.wav\",\"LJ006-0230.wav\",\"LJ006-0231.wav\",\"LJ006-0232.wav\",\"LJ006-0233.wav\",\"LJ006-0234.wav\",\"LJ006-0235.wav\",\"LJ006-0236.wav\",\"LJ006-0237.wav\",\"LJ006-0238.wav\",\"LJ006-0239.wav\",\"LJ006-0240.wav\",\"LJ006-0241.wav\",\"LJ006-0242.wav\",\"LJ006-0243.wav\",\"LJ006-0244.wav\",\"LJ006-0245.wav\",\"LJ006-0246.wav\",\"LJ006-0247.wav\",\"LJ006-0248.wav\",\"LJ006-0249.wav\",\"LJ006-0250.wav\",\"LJ006-0251.wav\",\"LJ006-0252.wav\",\"LJ006-0253.wav\",\"LJ006-0254.wav\",\"LJ006-0255.wav\",\"LJ006-0256.wav\",\"LJ006-0257.wav\",\"LJ006-0258.wav\",\"LJ006-0259.wav\",\"LJ006-0260.wav\",\"LJ006-0261.wav\",\"LJ006-0262.wav\",\"LJ006-0263.wav\",\"LJ006-0264.wav\",\"LJ006-0265.wav\",\"LJ006-0266.wav\",\"LJ006-0267.wav\",\"LJ006-0268.wav\",\"LJ006-0269.wav\",\"LJ006-0270.wav\",\"LJ006-0271.wav\",\"LJ006-0272.wav\",\"LJ006-0273.wav\",\"LJ006-0274.wav\",\"LJ006-0275.wav\",\"LJ006-0276.wav\",\"LJ006-0277.wav\",\"LJ006-0278.wav\",\"LJ006-0279.wav\",\"LJ006-0280.wav\",\"LJ006-0281.wav\",\"LJ006-0282.wav\",\"LJ006-0283.wav\",\"LJ006-0284.wav\",\"LJ006-0285.wav\",\"LJ006-0286.wav\",\"LJ006-0287.wav\",\"LJ006-0288.wav\",\"LJ006-0289.wav\",\"LJ006-0290.wav\",\"LJ006-0291.wav\",\"LJ006-0292.wav\",\"LJ006-0293.wav\",\"LJ006-0294.wav\",\"LJ006-0295.wav\",\"LJ006-0296.wav\",\"LJ006-0297.wav\",\"LJ006-0298.wav\",\"LJ006-0299.wav\",\"LJ006-0300.wav\",\"LJ006-0301.wav\",\"LJ006-0302.wav\",\"LJ006-0303.wav\",\"LJ006-0304.wav\",\"LJ006-0305.wav\",\"LJ006-0306.wav\",\"LJ006-0307.wav\",\"LJ006-0308.wav\",\"LJ007-0001.wav\",\"LJ007-0002.wav\",\"LJ007-0003.wav\",\"LJ007-0004.wav\",\"LJ007-0005.wav\",\"LJ007-0006.wav\",\"LJ007-0007.wav\",\"LJ007-0008.wav\",\"LJ007-0009.wav\",\"LJ007-0010.wav\",\"LJ007-0011.wav\",\"LJ007-0012.wav\",\"LJ007-0013.wav\",\"LJ007-0014.wav\",\"LJ007-0015.wav\",\"LJ007-0016.wav\",\"LJ007-0017.wav\",\"LJ007-0018.wav\",\"LJ007-0019.wav\",\"LJ007-0020.wav\",\"LJ007-0021.wav\",\"LJ007-0022.wav\",\"LJ007-0023.wav\",\"LJ007-0024.wav\",\"LJ007-0025.wav\",\"LJ007-0026.wav\",\"LJ007-0027.wav\",\"LJ007-0028.wav\",\"LJ007-0029.wav\",\"LJ007-0030.wav\",\"LJ007-0031.wav\",\"LJ007-0032.wav\",\"LJ007-0033.wav\",\"LJ007-0034.wav\",\"LJ007-0035.wav\",\"LJ007-0036.wav\",\"LJ007-0037.wav\",\"LJ007-0038.wav\",\"LJ007-0039.wav\",\"LJ007-0040.wav\",\"LJ007-0041.wav\",\"LJ007-0042.wav\",\"LJ007-0043.wav\",\"LJ007-0044.wav\",\"LJ007-0045.wav\",\"LJ007-0046.wav\",\"LJ007-0047.wav\",\"LJ007-0048.wav\",\"LJ007-0049.wav\",\"LJ007-0050.wav\",\"LJ007-0051.wav\",\"LJ007-0052.wav\",\"LJ007-0053.wav\",\"LJ007-0054.wav\",\"LJ007-0055.wav\",\"LJ007-0056.wav\",\"LJ007-0057.wav\",\"LJ007-0058.wav\",\"LJ007-0059.wav\",\"LJ007-0060.wav\",\"LJ007-0061.wav\",\"LJ007-0062.wav\",\"LJ007-0063.wav\",\"LJ007-0064.wav\",\"LJ007-0065.wav\",\"LJ007-0066.wav\",\"LJ007-0067.wav\",\"LJ007-0068.wav\",\"LJ007-0069.wav\",\"LJ007-0070.wav\",\"LJ007-0071.wav\",\"LJ007-0072.wav\",\"LJ007-0073.wav\",\"LJ007-0074.wav\",\"LJ007-0075.wav\",\"LJ007-0076.wav\",\"LJ007-0077.wav\",\"LJ007-0078.wav\",\"LJ007-0079.wav\",\"LJ007-0080.wav\",\"LJ007-0081.wav\",\"LJ007-0082.wav\",\"LJ007-0083.wav\",\"LJ007-0084.wav\",\"LJ007-0085.wav\",\"LJ007-0086.wav\",\"LJ007-0087.wav\",\"LJ007-0088.wav\",\"LJ007-0089.wav\",\"LJ007-0090.wav\",\"LJ007-0091.wav\",\"LJ007-0092.wav\",\"LJ007-0093.wav\",\"LJ007-0094.wav\",\"LJ007-0095.wav\",\"LJ007-0096.wav\",\"LJ007-0097.wav\",\"LJ007-0098.wav\",\"LJ007-0099.wav\",\"LJ007-0100.wav\",\"LJ007-0101.wav\",\"LJ007-0102.wav\",\"LJ007-0103.wav\",\"LJ007-0104.wav\",\"LJ007-0105.wav\",\"LJ007-0106.wav\",\"LJ007-0107.wav\",\"LJ007-0108.wav\",\"LJ007-0109.wav\",\"LJ007-0110.wav\",\"LJ007-0111.wav\",\"LJ007-0112.wav\",\"LJ007-0113.wav\",\"LJ007-0114.wav\",\"LJ007-0115.wav\",\"LJ007-0116.wav\",\"LJ007-0117.wav\",\"LJ007-0118.wav\",\"LJ007-0119.wav\",\"LJ007-0120.wav\",\"LJ007-0121.wav\",\"LJ007-0122.wav\",\"LJ007-0123.wav\",\"LJ007-0124.wav\",\"LJ007-0125.wav\",\"LJ007-0126.wav\",\"LJ007-0127.wav\",\"LJ007-0128.wav\",\"LJ007-0129.wav\",\"LJ007-0130.wav\",\"LJ007-0131.wav\",\"LJ007-0132.wav\",\"LJ007-0133.wav\",\"LJ007-0134.wav\",\"LJ007-0135.wav\",\"LJ007-0136.wav\",\"LJ007-0137.wav\",\"LJ007-0138.wav\",\"LJ007-0139.wav\",\"LJ007-0140.wav\",\"LJ007-0141.wav\",\"LJ007-0142.wav\",\"LJ007-0143.wav\",\"LJ007-0144.wav\",\"LJ007-0145.wav\",\"LJ007-0146.wav\",\"LJ007-0147.wav\",\"LJ007-0148.wav\",\"LJ007-0149.wav\",\"LJ007-0150.wav\",\"LJ007-0151.wav\",\"LJ007-0152.wav\",\"LJ007-0153.wav\",\"LJ007-0154.wav\",\"LJ007-0155.wav\",\"LJ007-0156.wav\",\"LJ007-0157.wav\",\"LJ007-0158.wav\",\"LJ007-0159.wav\",\"LJ007-0160.wav\",\"LJ007-0161.wav\",\"LJ007-0162.wav\",\"LJ007-0163.wav\",\"LJ007-0164.wav\",\"LJ007-0165.wav\",\"LJ007-0166.wav\",\"LJ007-0167.wav\",\"LJ007-0168.wav\",\"LJ007-0169.wav\",\"LJ007-0170.wav\",\"LJ007-0171.wav\",\"LJ007-0172.wav\",\"LJ007-0173.wav\",\"LJ007-0174.wav\",\"LJ007-0175.wav\",\"LJ007-0176.wav\",\"LJ007-0177.wav\",\"LJ007-0178.wav\",\"LJ007-0179.wav\",\"LJ007-0180.wav\",\"LJ007-0181.wav\",\"LJ007-0182.wav\",\"LJ007-0183.wav\",\"LJ007-0184.wav\",\"LJ007-0185.wav\",\"LJ007-0186.wav\",\"LJ007-0187.wav\",\"LJ007-0188.wav\",\"LJ007-0189.wav\",\"LJ007-0190.wav\",\"LJ007-0191.wav\",\"LJ007-0192.wav\",\"LJ007-0193.wav\",\"LJ007-0194.wav\",\"LJ007-0195.wav\",\"LJ007-0196.wav\",\"LJ007-0197.wav\",\"LJ007-0198.wav\",\"LJ007-0199.wav\",\"LJ007-0200.wav\",\"LJ007-0201.wav\",\"LJ007-0202.wav\",\"LJ007-0203.wav\",\"LJ007-0204.wav\",\"LJ007-0205.wav\",\"LJ007-0206.wav\",\"LJ007-0207.wav\",\"LJ007-0208.wav\",\"LJ007-0209.wav\",\"LJ007-0210.wav\",\"LJ007-0211.wav\",\"LJ007-0212.wav\",\"LJ007-0213.wav\",\"LJ007-0214.wav\",\"LJ007-0215.wav\",\"LJ007-0216.wav\",\"LJ007-0217.wav\",\"LJ007-0218.wav\",\"LJ007-0219.wav\",\"LJ007-0220.wav\",\"LJ007-0221.wav\",\"LJ007-0222.wav\",\"LJ007-0223.wav\",\"LJ007-0224.wav\",\"LJ007-0225.wav\",\"LJ007-0226.wav\",\"LJ007-0227.wav\",\"LJ007-0228.wav\",\"LJ007-0229.wav\",\"LJ007-0230.wav\",\"LJ007-0231.wav\",\"LJ007-0232.wav\",\"LJ007-0233.wav\",\"LJ007-0234.wav\",\"LJ007-0235.wav\",\"LJ007-0236.wav\",\"LJ007-0237.wav\",\"LJ007-0238.wav\",\"LJ007-0239.wav\",\"LJ007-0240.wav\",\"LJ007-0241.wav\",\"LJ007-0242.wav\",\"LJ007-0243.wav\",\"LJ008-0001.wav\",\"LJ008-0002.wav\",\"LJ008-0003.wav\",\"LJ008-0004.wav\",\"LJ008-0005.wav\",\"LJ008-0006.wav\",\"LJ008-0007.wav\",\"LJ008-0008.wav\",\"LJ008-0009.wav\",\"LJ008-0010.wav\",\"LJ008-0011.wav\",\"LJ008-0012.wav\",\"LJ008-0013.wav\",\"LJ008-0014.wav\",\"LJ008-0015.wav\",\"LJ008-0016.wav\",\"LJ008-0017.wav\",\"LJ008-0018.wav\",\"LJ008-0019.wav\",\"LJ008-0020.wav\",\"LJ008-0021.wav\",\"LJ008-0022.wav\",\"LJ008-0023.wav\",\"LJ008-0024.wav\",\"LJ008-0025.wav\",\"LJ008-0026.wav\",\"LJ008-0027.wav\",\"LJ008-0028.wav\",\"LJ008-0029.wav\",\"LJ008-0030.wav\",\"LJ008-0031.wav\",\"LJ008-0032.wav\",\"LJ008-0033.wav\",\"LJ008-0034.wav\",\"LJ008-0035.wav\",\"LJ008-0036.wav\",\"LJ008-0037.wav\",\"LJ008-0038.wav\",\"LJ008-0039.wav\",\"LJ008-0040.wav\",\"LJ008-0041.wav\",\"LJ008-0042.wav\",\"LJ008-0043.wav\",\"LJ008-0044.wav\",\"LJ008-0045.wav\",\"LJ008-0046.wav\",\"LJ008-0047.wav\",\"LJ008-0048.wav\",\"LJ008-0049.wav\",\"LJ008-0050.wav\",\"LJ008-0051.wav\",\"LJ008-0052.wav\",\"LJ008-0053.wav\",\"LJ008-0054.wav\",\"LJ008-0055.wav\",\"LJ008-0056.wav\",\"LJ008-0057.wav\",\"LJ008-0058.wav\",\"LJ008-0059.wav\",\"LJ008-0060.wav\",\"LJ008-0061.wav\",\"LJ008-0062.wav\",\"LJ008-0063.wav\",\"LJ008-0064.wav\",\"LJ008-0065.wav\",\"LJ008-0066.wav\",\"LJ008-0067.wav\",\"LJ008-0068.wav\",\"LJ008-0069.wav\",\"LJ008-0070.wav\",\"LJ008-0071.wav\",\"LJ008-0072.wav\",\"LJ008-0073.wav\",\"LJ008-0074.wav\",\"LJ008-0075.wav\",\"LJ008-0076.wav\",\"LJ008-0077.wav\",\"LJ008-0078.wav\",\"LJ008-0079.wav\",\"LJ008-0080.wav\",\"LJ008-0081.wav\",\"LJ008-0082.wav\",\"LJ008-0083.wav\",\"LJ008-0084.wav\",\"LJ008-0085.wav\",\"LJ008-0086.wav\",\"LJ008-0087.wav\",\"LJ008-0088.wav\",\"LJ008-0089.wav\",\"LJ008-0090.wav\",\"LJ008-0091.wav\",\"LJ008-0092.wav\",\"LJ008-0093.wav\",\"LJ008-0094.wav\",\"LJ008-0095.wav\",\"LJ008-0096.wav\",\"LJ008-0097.wav\",\"LJ008-0098.wav\",\"LJ008-0099.wav\",\"LJ008-0100.wav\",\"LJ008-0101.wav\",\"LJ008-0102.wav\",\"LJ008-0103.wav\",\"LJ008-0104.wav\",\"LJ008-0105.wav\",\"LJ008-0106.wav\",\"LJ008-0107.wav\",\"LJ008-0108.wav\",\"LJ008-0109.wav\",\"LJ008-0110.wav\",\"LJ008-0111.wav\",\"LJ008-0112.wav\",\"LJ008-0113.wav\",\"LJ008-0114.wav\",\"LJ008-0115.wav\",\"LJ008-0116.wav\",\"LJ008-0117.wav\",\"LJ008-0118.wav\",\"LJ008-0119.wav\",\"LJ008-0120.wav\",\"LJ008-0121.wav\",\"LJ008-0122.wav\",\"LJ008-0123.wav\",\"LJ008-0124.wav\",\"LJ008-0125.wav\",\"LJ008-0126.wav\",\"LJ008-0127.wav\",\"LJ008-0128.wav\",\"LJ008-0129.wav\",\"LJ008-0130.wav\",\"LJ008-0131.wav\",\"LJ008-0132.wav\",\"LJ008-0133.wav\",\"LJ008-0134.wav\",\"LJ008-0135.wav\",\"LJ008-0136.wav\",\"LJ008-0137.wav\",\"LJ008-0138.wav\",\"LJ008-0139.wav\",\"LJ008-0140.wav\",\"LJ008-0141.wav\",\"LJ008-0142.wav\",\"LJ008-0143.wav\",\"LJ008-0144.wav\",\"LJ008-0145.wav\",\"LJ008-0146.wav\",\"LJ008-0147.wav\",\"LJ008-0148.wav\",\"LJ008-0149.wav\",\"LJ008-0150.wav\",\"LJ008-0151.wav\",\"LJ008-0152.wav\",\"LJ008-0153.wav\",\"LJ008-0154.wav\",\"LJ008-0155.wav\",\"LJ008-0156.wav\",\"LJ008-0157.wav\",\"LJ008-0158.wav\",\"LJ008-0159.wav\",\"LJ008-0160.wav\",\"LJ008-0161.wav\",\"LJ008-0162.wav\",\"LJ008-0163.wav\",\"LJ008-0164.wav\",\"LJ008-0165.wav\",\"LJ008-0166.wav\",\"LJ008-0167.wav\",\"LJ008-0168.wav\",\"LJ008-0169.wav\",\"LJ008-0170.wav\",\"LJ008-0171.wav\",\"LJ008-0172.wav\",\"LJ008-0173.wav\",\"LJ008-0174.wav\",\"LJ008-0175.wav\",\"LJ008-0176.wav\",\"LJ008-0177.wav\",\"LJ008-0178.wav\",\"LJ008-0180.wav\",\"LJ008-0181.wav\",\"LJ008-0182.wav\",\"LJ008-0183.wav\",\"LJ008-0184.wav\",\"LJ008-0185.wav\",\"LJ008-0186.wav\",\"LJ008-0187.wav\",\"LJ008-0188.wav\",\"LJ008-0189.wav\",\"LJ008-0190.wav\",\"LJ008-0191.wav\",\"LJ008-0192.wav\",\"LJ008-0193.wav\",\"LJ008-0194.wav\",\"LJ008-0195.wav\",\"LJ008-0196.wav\",\"LJ008-0197.wav\",\"LJ008-0198.wav\",\"LJ008-0199.wav\",\"LJ008-0200.wav\",\"LJ008-0201.wav\",\"LJ008-0202.wav\",\"LJ008-0203.wav\",\"LJ008-0204.wav\",\"LJ008-0205.wav\",\"LJ008-0206.wav\",\"LJ008-0207.wav\",\"LJ008-0208.wav\",\"LJ008-0209.wav\",\"LJ008-0210.wav\",\"LJ008-0211.wav\",\"LJ008-0212.wav\",\"LJ008-0213.wav\",\"LJ008-0214.wav\",\"LJ008-0215.wav\",\"LJ008-0216.wav\",\"LJ008-0217.wav\",\"LJ008-0218.wav\",\"LJ008-0219.wav\",\"LJ008-0220.wav\",\"LJ008-0221.wav\",\"LJ008-0222.wav\",\"LJ008-0223.wav\",\"LJ008-0224.wav\",\"LJ008-0225.wav\",\"LJ008-0226.wav\",\"LJ008-0227.wav\",\"LJ008-0228.wav\",\"LJ008-0229.wav\",\"LJ008-0230.wav\",\"LJ008-0231.wav\",\"LJ008-0232.wav\",\"LJ008-0233.wav\",\"LJ008-0234.wav\",\"LJ008-0235.wav\",\"LJ008-0236.wav\",\"LJ008-0237.wav\",\"LJ008-0238.wav\",\"LJ008-0239.wav\",\"LJ008-0240.wav\",\"LJ008-0241.wav\",\"LJ008-0242.wav\",\"LJ008-0243.wav\",\"LJ008-0244.wav\",\"LJ008-0245.wav\",\"LJ008-0246.wav\",\"LJ008-0247.wav\",\"LJ008-0248.wav\",\"LJ008-0249.wav\",\"LJ008-0250.wav\",\"LJ008-0251.wav\",\"LJ008-0252.wav\",\"LJ008-0253.wav\",\"LJ008-0254.wav\",\"LJ008-0255.wav\",\"LJ008-0256.wav\",\"LJ008-0257.wav\",\"LJ008-0258.wav\",\"LJ008-0259.wav\",\"LJ008-0260.wav\",\"LJ008-0261.wav\",\"LJ008-0262.wav\",\"LJ008-0263.wav\",\"LJ008-0264.wav\",\"LJ008-0265.wav\",\"LJ008-0266.wav\",\"LJ008-0267.wav\",\"LJ008-0268.wav\",\"LJ008-0269.wav\",\"LJ008-0270.wav\",\"LJ008-0271.wav\",\"LJ008-0272.wav\",\"LJ008-0273.wav\",\"LJ008-0274.wav\",\"LJ008-0275.wav\",\"LJ008-0276.wav\",\"LJ008-0277.wav\",\"LJ008-0278.wav\",\"LJ008-0279.wav\",\"LJ008-0280.wav\",\"LJ008-0281.wav\",\"LJ008-0282.wav\",\"LJ008-0283.wav\",\"LJ008-0284.wav\",\"LJ008-0285.wav\",\"LJ008-0286.wav\",\"LJ008-0287.wav\",\"LJ008-0288.wav\",\"LJ008-0289.wav\",\"LJ008-0290.wav\",\"LJ008-0291.wav\",\"LJ008-0292.wav\",\"LJ008-0293.wav\",\"LJ008-0294.wav\",\"LJ008-0295.wav\",\"LJ008-0296.wav\",\"LJ008-0297.wav\",\"LJ008-0298.wav\",\"LJ008-0299.wav\",\"LJ008-0300.wav\",\"LJ008-0301.wav\",\"LJ008-0302.wav\",\"LJ008-0303.wav\",\"LJ008-0304.wav\",\"LJ008-0305.wav\",\"LJ008-0306.wav\",\"LJ008-0307.wav\",\"LJ008-0308.wav\",\"LJ008-0309.wav\",\"LJ008-0310.wav\",\"LJ008-0311.wav\",\"LJ008-0312.wav\",\"LJ008-0313.wav\",\"LJ008-0314.wav\",\"LJ008-0315.wav\",\"LJ008-0316.wav\",\"LJ008-0317.wav\",\"LJ008-0318.wav\",\"LJ008-0319.wav\",\"LJ009-0001.wav\",\"LJ009-0002.wav\",\"LJ009-0003.wav\",\"LJ009-0004.wav\",\"LJ009-0005.wav\",\"LJ009-0006.wav\",\"LJ009-0007.wav\",\"LJ009-0008.wav\",\"LJ009-0009.wav\",\"LJ009-0010.wav\",\"LJ009-0011.wav\",\"LJ009-0012.wav\",\"LJ009-0013.wav\",\"LJ009-0014.wav\",\"LJ009-0015.wav\",\"LJ009-0016.wav\",\"LJ009-0017.wav\",\"LJ009-0018.wav\",\"LJ009-0019.wav\",\"LJ009-0020.wav\",\"LJ009-0021.wav\",\"LJ009-0022.wav\",\"LJ009-0023.wav\",\"LJ009-0024.wav\",\"LJ009-0025.wav\",\"LJ009-0026.wav\",\"LJ009-0027.wav\",\"LJ009-0028.wav\",\"LJ009-0029.wav\",\"LJ009-0030.wav\",\"LJ009-0031.wav\",\"LJ009-0032.wav\",\"LJ009-0033.wav\",\"LJ009-0034.wav\",\"LJ009-0035.wav\",\"LJ009-0036.wav\",\"LJ009-0037.wav\",\"LJ009-0038.wav\",\"LJ009-0039.wav\",\"LJ009-0040.wav\",\"LJ009-0041.wav\",\"LJ009-0042.wav\",\"LJ009-0043.wav\",\"LJ009-0044.wav\",\"LJ009-0045.wav\",\"LJ009-0046.wav\",\"LJ009-0047.wav\",\"LJ009-0048.wav\",\"LJ009-0049.wav\",\"LJ009-0050.wav\",\"LJ009-0051.wav\",\"LJ009-0052.wav\",\"LJ009-0053.wav\",\"LJ009-0054.wav\",\"LJ009-0055.wav\",\"LJ009-0056.wav\",\"LJ009-0057.wav\",\"LJ009-0058.wav\",\"LJ009-0059.wav\",\"LJ009-0060.wav\",\"LJ009-0061.wav\",\"LJ009-0062.wav\",\"LJ009-0063.wav\",\"LJ009-0064.wav\",\"LJ009-0065.wav\",\"LJ009-0066.wav\",\"LJ009-0067.wav\",\"LJ009-0068.wav\",\"LJ009-0069.wav\",\"LJ009-0070.wav\",\"LJ009-0071.wav\",\"LJ009-0072.wav\",\"LJ009-0073.wav\",\"LJ009-0074.wav\",\"LJ009-0075.wav\",\"LJ009-0076.wav\",\"LJ009-0077.wav\",\"LJ009-0078.wav\",\"LJ009-0079.wav\",\"LJ009-0080.wav\",\"LJ009-0081.wav\",\"LJ009-0082.wav\",\"LJ009-0083.wav\",\"LJ009-0084.wav\",\"LJ009-0085.wav\",\"LJ009-0086.wav\",\"LJ009-0087.wav\",\"LJ009-0088.wav\",\"LJ009-0089.wav\",\"LJ009-0090.wav\",\"LJ009-0091.wav\",\"LJ009-0092.wav\",\"LJ009-0093.wav\",\"LJ009-0094.wav\",\"LJ009-0095.wav\",\"LJ009-0096.wav\",\"LJ009-0097.wav\",\"LJ009-0098.wav\",\"LJ009-0099.wav\",\"LJ009-0100.wav\",\"LJ009-0101.wav\",\"LJ009-0102.wav\",\"LJ009-0103.wav\",\"LJ009-0104.wav\",\"LJ009-0105.wav\",\"LJ009-0106.wav\",\"LJ009-0107.wav\",\"LJ009-0108.wav\",\"LJ009-0109.wav\",\"LJ009-0110.wav\",\"LJ009-0111.wav\",\"LJ009-0112.wav\",\"LJ009-0113.wav\",\"LJ009-0114.wav\",\"LJ009-0115.wav\",\"LJ009-0116.wav\",\"LJ009-0117.wav\",\"LJ009-0118.wav\",\"LJ009-0119.wav\",\"LJ009-0120.wav\",\"LJ009-0121.wav\",\"LJ009-0122.wav\",\"LJ009-0123.wav\",\"LJ009-0124.wav\",\"LJ009-0125.wav\",\"LJ009-0126.wav\",\"LJ009-0127.wav\",\"LJ009-0128.wav\",\"LJ009-0129.wav\",\"LJ009-0130.wav\",\"LJ009-0131.wav\",\"LJ009-0132.wav\",\"LJ009-0133.wav\",\"LJ009-0134.wav\",\"LJ009-0135.wav\",\"LJ009-0136.wav\",\"LJ009-0137.wav\",\"LJ009-0138.wav\",\"LJ009-0139.wav\",\"LJ009-0140.wav\",\"LJ009-0141.wav\",\"LJ009-0142.wav\",\"LJ009-0143.wav\",\"LJ009-0144.wav\",\"LJ009-0145.wav\",\"LJ009-0146.wav\",\"LJ009-0147.wav\",\"LJ009-0148.wav\",\"LJ009-0149.wav\",\"LJ009-0150.wav\",\"LJ009-0151.wav\",\"LJ009-0152.wav\",\"LJ009-0153.wav\",\"LJ009-0154.wav\",\"LJ009-0155.wav\",\"LJ009-0156.wav\",\"LJ009-0157.wav\",\"LJ009-0158.wav\",\"LJ009-0159.wav\",\"LJ009-0160.wav\",\"LJ009-0161.wav\",\"LJ009-0162.wav\",\"LJ009-0163.wav\",\"LJ009-0164.wav\",\"LJ009-0165.wav\",\"LJ009-0166.wav\",\"LJ009-0167.wav\",\"LJ009-0168.wav\",\"LJ009-0169.wav\",\"LJ009-0170.wav\",\"LJ009-0171.wav\",\"LJ009-0172.wav\",\"LJ009-0173.wav\",\"LJ009-0174.wav\",\"LJ009-0175.wav\",\"LJ009-0176.wav\",\"LJ009-0177.wav\",\"LJ009-0178.wav\",\"LJ009-0179.wav\",\"LJ009-0180.wav\",\"LJ009-0181.wav\",\"LJ009-0182.wav\",\"LJ009-0183.wav\",\"LJ009-0184.wav\",\"LJ009-0185.wav\",\"LJ009-0186.wav\",\"LJ009-0187.wav\",\"LJ009-0188.wav\",\"LJ009-0189.wav\",\"LJ009-0190.wav\",\"LJ009-0191.wav\",\"LJ009-0192.wav\",\"LJ009-0193.wav\",\"LJ009-0194.wav\",\"LJ009-0195.wav\",\"LJ009-0196.wav\",\"LJ009-0197.wav\",\"LJ009-0198.wav\",\"LJ009-0199.wav\",\"LJ009-0200.wav\",\"LJ009-0201.wav\",\"LJ009-0202.wav\",\"LJ009-0203.wav\",\"LJ009-0204.wav\",\"LJ009-0205.wav\",\"LJ009-0206.wav\",\"LJ009-0207.wav\",\"LJ009-0208.wav\",\"LJ009-0209.wav\",\"LJ009-0210.wav\",\"LJ009-0211.wav\",\"LJ009-0212.wav\",\"LJ009-0213.wav\",\"LJ009-0214.wav\",\"LJ009-0215.wav\",\"LJ009-0216.wav\",\"LJ009-0217.wav\",\"LJ009-0218.wav\",\"LJ009-0219.wav\",\"LJ009-0220.wav\",\"LJ009-0221.wav\",\"LJ009-0222.wav\",\"LJ009-0223.wav\",\"LJ009-0224.wav\",\"LJ009-0225.wav\",\"LJ009-0226.wav\",\"LJ009-0227.wav\",\"LJ009-0228.wav\",\"LJ009-0229.wav\",\"LJ009-0230.wav\",\"LJ009-0231.wav\",\"LJ009-0232.wav\",\"LJ009-0233.wav\",\"LJ009-0234.wav\",\"LJ009-0235.wav\",\"LJ009-0236.wav\",\"LJ009-0237.wav\",\"LJ009-0238.wav\",\"LJ009-0239.wav\",\"LJ009-0240.wav\",\"LJ009-0241.wav\",\"LJ009-0242.wav\",\"LJ009-0243.wav\",\"LJ009-0244.wav\",\"LJ009-0245.wav\",\"LJ009-0246.wav\",\"LJ009-0247.wav\",\"LJ009-0248.wav\",\"LJ009-0249.wav\",\"LJ009-0250.wav\",\"LJ009-0251.wav\",\"LJ009-0252.wav\",\"LJ009-0253.wav\",\"LJ009-0254.wav\",\"LJ009-0255.wav\",\"LJ009-0256.wav\",\"LJ009-0257.wav\",\"LJ009-0258.wav\",\"LJ009-0259.wav\",\"LJ009-0260.wav\",\"LJ009-0261.wav\",\"LJ009-0262.wav\",\"LJ009-0263.wav\",\"LJ009-0264.wav\",\"LJ009-0265.wav\",\"LJ009-0266.wav\",\"LJ009-0267.wav\",\"LJ009-0268.wav\",\"LJ009-0269.wav\",\"LJ009-0270.wav\",\"LJ009-0271.wav\",\"LJ009-0272.wav\",\"LJ009-0273.wav\",\"LJ009-0274.wav\",\"LJ009-0275.wav\",\"LJ009-0276.wav\",\"LJ009-0277.wav\",\"LJ009-0278.wav\",\"LJ009-0279.wav\",\"LJ009-0280.wav\",\"LJ009-0281.wav\",\"LJ009-0282.wav\",\"LJ009-0283.wav\",\"LJ009-0284.wav\",\"LJ009-0285.wav\",\"LJ009-0286.wav\",\"LJ009-0287.wav\",\"LJ009-0288.wav\",\"LJ009-0289.wav\",\"LJ009-0290.wav\",\"LJ009-0291.wav\",\"LJ009-0292.wav\",\"LJ009-0293.wav\",\"LJ009-0294.wav\",\"LJ009-0295.wav\",\"LJ009-0296.wav\",\"LJ009-0297.wav\",\"LJ009-0298.wav\",\"LJ009-0299.wav\",\"LJ009-0300.wav\",\"LJ009-0301.wav\",\"LJ009-0302.wav\",\"LJ009-0303.wav\",\"LJ009-0304.wav\",\"LJ010-0001.wav\",\"LJ010-0002.wav\",\"LJ010-0003.wav\",\"LJ010-0004.wav\",\"LJ010-0005.wav\",\"LJ010-0006.wav\",\"LJ010-0007.wav\",\"LJ010-0008.wav\",\"LJ010-0009.wav\",\"LJ010-0010.wav\",\"LJ010-0011.wav\",\"LJ010-0012.wav\",\"LJ010-0013.wav\",\"LJ010-0014.wav\",\"LJ010-0015.wav\",\"LJ010-0016.wav\",\"LJ010-0017.wav\",\"LJ010-0018.wav\",\"LJ010-0019.wav\",\"LJ010-0020.wav\",\"LJ010-0021.wav\",\"LJ010-0022.wav\",\"LJ010-0023.wav\",\"LJ010-0024.wav\",\"LJ010-0025.wav\",\"LJ010-0026.wav\",\"LJ010-0027.wav\",\"LJ010-0028.wav\",\"LJ010-0029.wav\",\"LJ010-0030.wav\",\"LJ010-0031.wav\",\"LJ010-0032.wav\",\"LJ010-0033.wav\",\"LJ010-0034.wav\",\"LJ010-0035.wav\",\"LJ010-0036.wav\",\"LJ010-0037.wav\",\"LJ010-0038.wav\",\"LJ010-0039.wav\",\"LJ010-0040.wav\",\"LJ010-0041.wav\",\"LJ010-0042.wav\",\"LJ010-0043.wav\",\"LJ010-0044.wav\",\"LJ010-0045.wav\",\"LJ010-0046.wav\",\"LJ010-0047.wav\",\"LJ010-0048.wav\",\"LJ010-0049.wav\",\"LJ010-0050.wav\",\"LJ010-0051.wav\",\"LJ010-0052.wav\",\"LJ010-0053.wav\",\"LJ010-0054.wav\",\"LJ010-0055.wav\",\"LJ010-0056.wav\",\"LJ010-0057.wav\",\"LJ010-0058.wav\",\"LJ010-0059.wav\",\"LJ010-0060.wav\",\"LJ010-0061.wav\",\"LJ010-0062.wav\",\"LJ010-0063.wav\",\"LJ010-0064.wav\",\"LJ010-0065.wav\",\"LJ010-0066.wav\",\"LJ010-0067.wav\",\"LJ010-0068.wav\",\"LJ010-0069.wav\",\"LJ010-0070.wav\",\"LJ010-0071.wav\",\"LJ010-0072.wav\",\"LJ010-0073.wav\",\"LJ010-0074.wav\",\"LJ010-0075.wav\",\"LJ010-0076.wav\",\"LJ010-0077.wav\",\"LJ010-0078.wav\",\"LJ010-0079.wav\",\"LJ010-0080.wav\",\"LJ010-0081.wav\",\"LJ010-0082.wav\",\"LJ010-0083.wav\",\"LJ010-0084.wav\",\"LJ010-0085.wav\",\"LJ010-0086.wav\",\"LJ010-0087.wav\",\"LJ010-0088.wav\",\"LJ010-0089.wav\",\"LJ010-0090.wav\",\"LJ010-0091.wav\",\"LJ010-0092.wav\",\"LJ010-0093.wav\",\"LJ010-0094.wav\",\"LJ010-0095.wav\",\"LJ010-0096.wav\",\"LJ010-0097.wav\",\"LJ010-0098.wav\",\"LJ010-0099.wav\",\"LJ010-0100.wav\",\"LJ010-0101.wav\",\"LJ010-0102.wav\",\"LJ010-0103.wav\",\"LJ010-0104.wav\",\"LJ010-0105.wav\",\"LJ010-0106.wav\",\"LJ010-0107.wav\",\"LJ010-0108.wav\",\"LJ010-0109.wav\",\"LJ010-0110.wav\",\"LJ010-0111.wav\",\"LJ010-0112.wav\",\"LJ010-0113.wav\",\"LJ010-0114.wav\",\"LJ010-0115.wav\",\"LJ010-0116.wav\",\"LJ010-0117.wav\",\"LJ010-0118.wav\",\"LJ010-0119.wav\",\"LJ010-0120.wav\",\"LJ010-0121.wav\",\"LJ010-0122.wav\",\"LJ010-0123.wav\",\"LJ010-0124.wav\",\"LJ010-0125.wav\",\"LJ010-0126.wav\",\"LJ010-0127.wav\",\"LJ010-0128.wav\",\"LJ010-0129.wav\",\"LJ010-0130.wav\",\"LJ010-0131.wav\",\"LJ010-0132.wav\",\"LJ010-0133.wav\",\"LJ010-0134.wav\",\"LJ010-0135.wav\",\"LJ010-0136.wav\",\"LJ010-0137.wav\",\"LJ010-0138.wav\",\"LJ010-0139.wav\",\"LJ010-0140.wav\",\"LJ010-0141.wav\",\"LJ010-0142.wav\",\"LJ010-0143.wav\",\"LJ010-0144.wav\",\"LJ010-0145.wav\",\"LJ010-0146.wav\",\"LJ010-0147.wav\",\"LJ010-0148.wav\",\"LJ010-0149.wav\",\"LJ010-0150.wav\",\"LJ010-0151.wav\",\"LJ010-0152.wav\",\"LJ010-0153.wav\",\"LJ010-0154.wav\",\"LJ010-0155.wav\",\"LJ010-0156.wav\",\"LJ010-0157.wav\",\"LJ010-0158.wav\",\"LJ010-0159.wav\",\"LJ010-0160.wav\",\"LJ010-0161.wav\",\"LJ010-0162.wav\",\"LJ010-0163.wav\",\"LJ010-0164.wav\",\"LJ010-0165.wav\",\"LJ010-0166.wav\",\"LJ010-0167.wav\",\"LJ010-0168.wav\",\"LJ010-0169.wav\",\"LJ010-0170.wav\",\"LJ010-0171.wav\",\"LJ010-0172.wav\",\"LJ010-0173.wav\",\"LJ010-0174.wav\",\"LJ010-0175.wav\",\"LJ010-0176.wav\",\"LJ010-0177.wav\",\"LJ010-0178.wav\",\"LJ010-0179.wav\",\"LJ010-0180.wav\",\"LJ010-0181.wav\",\"LJ010-0182.wav\",\"LJ010-0183.wav\",\"LJ010-0184.wav\",\"LJ010-0185.wav\",\"LJ010-0186.wav\",\"LJ010-0187.wav\",\"LJ010-0188.wav\",\"LJ010-0189.wav\",\"LJ010-0190.wav\",\"LJ010-0191.wav\",\"LJ010-0192.wav\",\"LJ010-0193.wav\",\"LJ010-0194.wav\",\"LJ010-0195.wav\",\"LJ010-0196.wav\",\"LJ010-0197.wav\",\"LJ010-0198.wav\",\"LJ010-0199.wav\",\"LJ010-0200.wav\",\"LJ010-0201.wav\",\"LJ010-0202.wav\",\"LJ010-0203.wav\",\"LJ010-0204.wav\",\"LJ010-0205.wav\",\"LJ010-0206.wav\",\"LJ010-0207.wav\",\"LJ010-0208.wav\",\"LJ010-0209.wav\",\"LJ010-0210.wav\",\"LJ010-0211.wav\",\"LJ010-0212.wav\",\"LJ010-0213.wav\",\"LJ010-0214.wav\",\"LJ010-0215.wav\",\"LJ010-0216.wav\",\"LJ010-0217.wav\",\"LJ010-0218.wav\",\"LJ010-0219.wav\",\"LJ010-0220.wav\",\"LJ010-0221.wav\",\"LJ010-0222.wav\",\"LJ010-0223.wav\",\"LJ010-0224.wav\",\"LJ010-0225.wav\",\"LJ010-0226.wav\",\"LJ010-0227.wav\",\"LJ010-0228.wav\",\"LJ010-0229.wav\",\"LJ010-0230.wav\",\"LJ010-0231.wav\",\"LJ010-0232.wav\",\"LJ010-0233.wav\",\"LJ010-0234.wav\",\"LJ010-0235.wav\",\"LJ010-0236.wav\",\"LJ010-0237.wav\",\"LJ010-0238.wav\",\"LJ010-0239.wav\",\"LJ010-0240.wav\",\"LJ010-0241.wav\",\"LJ010-0242.wav\",\"LJ010-0243.wav\",\"LJ010-0244.wav\",\"LJ010-0245.wav\",\"LJ010-0246.wav\",\"LJ010-0247.wav\",\"LJ010-0248.wav\",\"LJ010-0249.wav\",\"LJ010-0250.wav\",\"LJ010-0251.wav\",\"LJ010-0252.wav\",\"LJ010-0253.wav\",\"LJ010-0254.wav\",\"LJ010-0255.wav\",\"LJ010-0256.wav\",\"LJ010-0257.wav\",\"LJ010-0258.wav\",\"LJ010-0259.wav\",\"LJ010-0260.wav\",\"LJ010-0261.wav\",\"LJ010-0262.wav\",\"LJ010-0263.wav\",\"LJ010-0264.wav\",\"LJ010-0265.wav\",\"LJ010-0266.wav\",\"LJ010-0267.wav\",\"LJ010-0268.wav\",\"LJ010-0269.wav\",\"LJ010-0270.wav\",\"LJ010-0271.wav\",\"LJ010-0272.wav\",\"LJ010-0273.wav\",\"LJ010-0274.wav\",\"LJ010-0275.wav\",\"LJ010-0276.wav\",\"LJ010-0277.wav\",\"LJ010-0278.wav\",\"LJ010-0279.wav\",\"LJ010-0280.wav\",\"LJ010-0281.wav\",\"LJ010-0282.wav\",\"LJ010-0283.wav\",\"LJ010-0284.wav\",\"LJ010-0285.wav\",\"LJ010-0286.wav\",\"LJ010-0287.wav\",\"LJ010-0288.wav\",\"LJ010-0289.wav\",\"LJ010-0290.wav\",\"LJ010-0291.wav\",\"LJ010-0292.wav\",\"LJ010-0293.wav\",\"LJ010-0294.wav\",\"LJ010-0295.wav\",\"LJ010-0296.wav\",\"LJ010-0297.wav\",\"LJ010-0298.wav\",\"LJ010-0299.wav\",\"LJ010-0300.wav\",\"LJ010-0301.wav\",\"LJ010-0302.wav\",\"LJ010-0303.wav\",\"LJ010-0304.wav\",\"LJ010-0305.wav\",\"LJ010-0306.wav\",\"LJ010-0307.wav\",\"LJ010-0308.wav\",\"LJ010-0309.wav\",\"LJ010-0310.wav\",\"LJ010-0311.wav\",\"LJ010-0312.wav\",\"LJ010-0313.wav\",\"LJ010-0314.wav\",\"LJ010-0315.wav\",\"LJ010-0316.wav\",\"LJ010-0317.wav\",\"LJ011-0001.wav\",\"LJ011-0002.wav\",\"LJ011-0003.wav\",\"LJ011-0004.wav\",\"LJ011-0005.wav\",\"LJ011-0006.wav\",\"LJ011-0007.wav\",\"LJ011-0008.wav\",\"LJ011-0009.wav\",\"LJ011-0010.wav\",\"LJ011-0011.wav\",\"LJ011-0012.wav\",\"LJ011-0013.wav\",\"LJ011-0014.wav\",\"LJ011-0015.wav\",\"LJ011-0016.wav\",\"LJ011-0017.wav\",\"LJ011-0018.wav\",\"LJ011-0019.wav\",\"LJ011-0020.wav\",\"LJ011-0021.wav\",\"LJ011-0022.wav\",\"LJ011-0023.wav\",\"LJ011-0024.wav\",\"LJ011-0025.wav\",\"LJ011-0026.wav\",\"LJ011-0027.wav\",\"LJ011-0028.wav\",\"LJ011-0029.wav\",\"LJ011-0030.wav\",\"LJ011-0031.wav\",\"LJ011-0032.wav\",\"LJ011-0033.wav\",\"LJ011-0034.wav\",\"LJ011-0035.wav\",\"LJ011-0036.wav\",\"LJ011-0037.wav\",\"LJ011-0038.wav\",\"LJ011-0039.wav\",\"LJ011-0040.wav\",\"LJ011-0041.wav\",\"LJ011-0042.wav\",\"LJ011-0043.wav\",\"LJ011-0044.wav\",\"LJ011-0045.wav\",\"LJ011-0046.wav\",\"LJ011-0047.wav\",\"LJ011-0048.wav\",\"LJ011-0049.wav\",\"LJ011-0050.wav\",\"LJ011-0051.wav\",\"LJ011-0052.wav\",\"LJ011-0053.wav\",\"LJ011-0054.wav\",\"LJ011-0055.wav\",\"LJ011-0056.wav\",\"LJ011-0057.wav\",\"LJ011-0058.wav\",\"LJ011-0059.wav\",\"LJ011-0060.wav\",\"LJ011-0061.wav\",\"LJ011-0062.wav\",\"LJ011-0063.wav\",\"LJ011-0064.wav\",\"LJ011-0065.wav\",\"LJ011-0066.wav\",\"LJ011-0067.wav\",\"LJ011-0068.wav\",\"LJ011-0069.wav\",\"LJ011-0070.wav\",\"LJ011-0071.wav\",\"LJ011-0072.wav\",\"LJ011-0073.wav\",\"LJ011-0074.wav\",\"LJ011-0075.wav\",\"LJ011-0076.wav\",\"LJ011-0077.wav\",\"LJ011-0078.wav\",\"LJ011-0079.wav\",\"LJ011-0080.wav\",\"LJ011-0081.wav\",\"LJ011-0082.wav\",\"LJ011-0083.wav\",\"LJ011-0084.wav\",\"LJ011-0085.wav\",\"LJ011-0086.wav\",\"LJ011-0087.wav\",\"LJ011-0088.wav\",\"LJ011-0089.wav\",\"LJ011-0090.wav\",\"LJ011-0091.wav\",\"LJ011-0092.wav\",\"LJ011-0093.wav\",\"LJ011-0094.wav\",\"LJ011-0095.wav\",\"LJ011-0096.wav\",\"LJ011-0097.wav\",\"LJ011-0098.wav\",\"LJ011-0099.wav\",\"LJ011-0100.wav\",\"LJ011-0101.wav\",\"LJ011-0102.wav\",\"LJ011-0103.wav\",\"LJ011-0104.wav\",\"LJ011-0105.wav\",\"LJ011-0106.wav\",\"LJ011-0107.wav\",\"LJ011-0108.wav\",\"LJ011-0109.wav\",\"LJ011-0110.wav\",\"LJ011-0111.wav\",\"LJ011-0112.wav\",\"LJ011-0113.wav\",\"LJ011-0114.wav\",\"LJ011-0115.wav\",\"LJ011-0116.wav\",\"LJ011-0117.wav\",\"LJ011-0118.wav\",\"LJ011-0119.wav\",\"LJ011-0120.wav\",\"LJ011-0121.wav\",\"LJ011-0122.wav\",\"LJ011-0123.wav\",\"LJ011-0124.wav\",\"LJ011-0125.wav\",\"LJ011-0126.wav\",\"LJ011-0127.wav\",\"LJ011-0128.wav\",\"LJ011-0129.wav\",\"LJ011-0130.wav\",\"LJ011-0131.wav\",\"LJ011-0132.wav\",\"LJ011-0133.wav\",\"LJ011-0134.wav\",\"LJ011-0135.wav\",\"LJ011-0136.wav\",\"LJ011-0137.wav\",\"LJ011-0138.wav\",\"LJ011-0139.wav\",\"LJ011-0140.wav\",\"LJ011-0141.wav\",\"LJ011-0142.wav\",\"LJ011-0143.wav\",\"LJ011-0144.wav\",\"LJ011-0145.wav\",\"LJ011-0146.wav\",\"LJ011-0147.wav\",\"LJ011-0148.wav\",\"LJ011-0149.wav\",\"LJ011-0150.wav\",\"LJ011-0151.wav\",\"LJ011-0152.wav\",\"LJ011-0153.wav\",\"LJ011-0154.wav\",\"LJ011-0155.wav\",\"LJ011-0156.wav\",\"LJ011-0157.wav\",\"LJ011-0158.wav\",\"LJ011-0159.wav\",\"LJ011-0160.wav\",\"LJ011-0161.wav\",\"LJ011-0162.wav\",\"LJ011-0163.wav\",\"LJ011-0164.wav\",\"LJ011-0165.wav\",\"LJ011-0166.wav\",\"LJ011-0167.wav\",\"LJ011-0168.wav\",\"LJ011-0169.wav\",\"LJ011-0170.wav\",\"LJ011-0171.wav\",\"LJ011-0172.wav\",\"LJ011-0173.wav\",\"LJ011-0174.wav\",\"LJ011-0175.wav\",\"LJ011-0176.wav\",\"LJ011-0177.wav\",\"LJ011-0178.wav\",\"LJ011-0179.wav\",\"LJ011-0180.wav\",\"LJ011-0181.wav\",\"LJ011-0182.wav\",\"LJ011-0183.wav\",\"LJ011-0184.wav\",\"LJ011-0185.wav\",\"LJ011-0186.wav\",\"LJ011-0187.wav\",\"LJ011-0188.wav\",\"LJ011-0189.wav\",\"LJ011-0190.wav\",\"LJ011-0191.wav\",\"LJ011-0192.wav\",\"LJ011-0193.wav\",\"LJ011-0194.wav\",\"LJ011-0195.wav\",\"LJ011-0196.wav\",\"LJ011-0197.wav\",\"LJ011-0198.wav\",\"LJ011-0199.wav\",\"LJ011-0200.wav\",\"LJ011-0201.wav\",\"LJ011-0202.wav\",\"LJ011-0203.wav\",\"LJ011-0204.wav\",\"LJ011-0205.wav\",\"LJ011-0206.wav\",\"LJ011-0207.wav\",\"LJ011-0208.wav\",\"LJ011-0209.wav\",\"LJ011-0210.wav\",\"LJ011-0211.wav\",\"LJ011-0212.wav\",\"LJ011-0213.wav\",\"LJ011-0214.wav\",\"LJ011-0215.wav\",\"LJ011-0216.wav\",\"LJ011-0217.wav\",\"LJ011-0218.wav\",\"LJ011-0219.wav\",\"LJ011-0220.wav\",\"LJ011-0221.wav\",\"LJ011-0222.wav\",\"LJ011-0223.wav\",\"LJ011-0224.wav\",\"LJ011-0225.wav\",\"LJ011-0226.wav\",\"LJ011-0227.wav\",\"LJ011-0228.wav\",\"LJ011-0229.wav\",\"LJ011-0230.wav\",\"LJ011-0231.wav\",\"LJ011-0232.wav\",\"LJ011-0233.wav\",\"LJ011-0234.wav\",\"LJ011-0235.wav\",\"LJ011-0236.wav\",\"LJ011-0237.wav\",\"LJ011-0238.wav\",\"LJ011-0239.wav\",\"LJ011-0240.wav\",\"LJ011-0241.wav\",\"LJ011-0242.wav\",\"LJ011-0243.wav\",\"LJ011-0244.wav\",\"LJ011-0245.wav\",\"LJ011-0246.wav\",\"LJ011-0247.wav\",\"LJ011-0248.wav\",\"LJ011-0249.wav\",\"LJ011-0250.wav\",\"LJ011-0251.wav\",\"LJ011-0252.wav\",\"LJ011-0253.wav\",\"LJ011-0254.wav\",\"LJ011-0255.wav\",\"LJ011-0256.wav\",\"LJ011-0257.wav\",\"LJ011-0258.wav\",\"LJ011-0259.wav\",\"LJ011-0260.wav\",\"LJ011-0261.wav\",\"LJ011-0262.wav\",\"LJ011-0263.wav\",\"LJ011-0264.wav\",\"LJ011-0265.wav\",\"LJ011-0266.wav\",\"LJ011-0267.wav\",\"LJ011-0268.wav\",\"LJ011-0269.wav\",\"LJ011-0270.wav\",\"LJ011-0271.wav\",\"LJ011-0272.wav\",\"LJ011-0273.wav\",\"LJ011-0274.wav\",\"LJ011-0275.wav\",\"LJ011-0276.wav\",\"LJ011-0277.wav\",\"LJ011-0278.wav\",\"LJ011-0279.wav\",\"LJ011-0280.wav\",\"LJ011-0281.wav\",\"LJ011-0282.wav\",\"LJ011-0283.wav\",\"LJ011-0284.wav\",\"LJ011-0285.wav\",\"LJ011-0286.wav\",\"LJ011-0287.wav\",\"LJ011-0288.wav\",\"LJ011-0289.wav\",\"LJ011-0290.wav\",\"LJ011-0291.wav\",\"LJ011-0292.wav\",\"LJ011-0293.wav\",\"LJ012-0001.wav\",\"LJ012-0002.wav\",\"LJ012-0003.wav\",\"LJ012-0004.wav\",\"LJ012-0005.wav\",\"LJ012-0006.wav\",\"LJ012-0007.wav\",\"LJ012-0008.wav\",\"LJ012-0009.wav\",\"LJ012-0010.wav\",\"LJ012-0011.wav\",\"LJ012-0012.wav\",\"LJ012-0013.wav\",\"LJ012-0014.wav\",\"LJ012-0015.wav\",\"LJ012-0016.wav\",\"LJ012-0017.wav\",\"LJ012-0018.wav\",\"LJ012-0019.wav\",\"LJ012-0020.wav\",\"LJ012-0021.wav\",\"LJ012-0022.wav\",\"LJ012-0023.wav\",\"LJ012-0024.wav\",\"LJ012-0025.wav\",\"LJ012-0026.wav\",\"LJ012-0027.wav\",\"LJ012-0028.wav\",\"LJ012-0029.wav\",\"LJ012-0030.wav\",\"LJ012-0031.wav\",\"LJ012-0032.wav\",\"LJ012-0033.wav\",\"LJ012-0034.wav\",\"LJ012-0035.wav\",\"LJ012-0036.wav\",\"LJ012-0037.wav\",\"LJ012-0038.wav\",\"LJ012-0039.wav\",\"LJ012-0040.wav\",\"LJ012-0041.wav\",\"LJ012-0042.wav\",\"LJ012-0043.wav\",\"LJ012-0044.wav\",\"LJ012-0045.wav\",\"LJ012-0046.wav\",\"LJ012-0047.wav\",\"LJ012-0048.wav\",\"LJ012-0049.wav\",\"LJ012-0050.wav\",\"LJ012-0051.wav\",\"LJ012-0052.wav\",\"LJ012-0053.wav\",\"LJ012-0054.wav\",\"LJ012-0055.wav\",\"LJ012-0056.wav\",\"LJ012-0057.wav\",\"LJ012-0058.wav\",\"LJ012-0059.wav\",\"LJ012-0060.wav\",\"LJ012-0061.wav\",\"LJ012-0062.wav\",\"LJ012-0063.wav\",\"LJ012-0064.wav\",\"LJ012-0065.wav\",\"LJ012-0066.wav\",\"LJ012-0067.wav\",\"LJ012-0068.wav\",\"LJ012-0069.wav\",\"LJ012-0070.wav\",\"LJ012-0071.wav\",\"LJ012-0072.wav\",\"LJ012-0073.wav\",\"LJ012-0074.wav\",\"LJ012-0075.wav\",\"LJ012-0076.wav\",\"LJ012-0077.wav\",\"LJ012-0078.wav\",\"LJ012-0079.wav\",\"LJ012-0080.wav\",\"LJ012-0081.wav\",\"LJ012-0082.wav\",\"LJ012-0083.wav\",\"LJ012-0084.wav\",\"LJ012-0085.wav\",\"LJ012-0086.wav\",\"LJ012-0087.wav\",\"LJ012-0088.wav\",\"LJ012-0089.wav\",\"LJ012-0090.wav\",\"LJ012-0091.wav\",\"LJ012-0092.wav\",\"LJ012-0093.wav\",\"LJ012-0094.wav\",\"LJ012-0095.wav\",\"LJ012-0096.wav\",\"LJ012-0097.wav\",\"LJ012-0098.wav\",\"LJ012-0099.wav\",\"LJ012-0100.wav\",\"LJ012-0101.wav\",\"LJ012-0102.wav\",\"LJ012-0103.wav\",\"LJ012-0104.wav\",\"LJ012-0105.wav\",\"LJ012-0106.wav\",\"LJ012-0107.wav\",\"LJ012-0108.wav\",\"LJ012-0109.wav\",\"LJ012-0110.wav\",\"LJ012-0111.wav\",\"LJ012-0112.wav\",\"LJ012-0113.wav\",\"LJ012-0114.wav\",\"LJ012-0115.wav\",\"LJ012-0116.wav\",\"LJ012-0117.wav\",\"LJ012-0118.wav\",\"LJ012-0119.wav\",\"LJ012-0120.wav\",\"LJ012-0121.wav\",\"LJ012-0122.wav\",\"LJ012-0123.wav\",\"LJ012-0124.wav\",\"LJ012-0125.wav\",\"LJ012-0126.wav\",\"LJ012-0127.wav\",\"LJ012-0128.wav\",\"LJ012-0129.wav\",\"LJ012-0130.wav\",\"LJ012-0131.wav\",\"LJ012-0132.wav\",\"LJ012-0133.wav\",\"LJ012-0134.wav\",\"LJ012-0135.wav\",\"LJ012-0136.wav\",\"LJ012-0137.wav\",\"LJ012-0138.wav\",\"LJ012-0139.wav\",\"LJ012-0140.wav\",\"LJ012-0141.wav\",\"LJ012-0142.wav\",\"LJ012-0143.wav\",\"LJ012-0144.wav\",\"LJ012-0145.wav\",\"LJ012-0146.wav\",\"LJ012-0147.wav\",\"LJ012-0148.wav\",\"LJ012-0149.wav\",\"LJ012-0150.wav\",\"LJ012-0151.wav\",\"LJ012-0152.wav\",\"LJ012-0153.wav\",\"LJ012-0154.wav\",\"LJ012-0155.wav\",\"LJ012-0156.wav\",\"LJ012-0157.wav\",\"LJ012-0158.wav\",\"LJ012-0159.wav\",\"LJ012-0160.wav\",\"LJ012-0161.wav\",\"LJ012-0162.wav\",\"LJ012-0163.wav\",\"LJ012-0164.wav\",\"LJ012-0165.wav\",\"LJ012-0166.wav\",\"LJ012-0167.wav\",\"LJ012-0168.wav\",\"LJ012-0169.wav\",\"LJ012-0170.wav\",\"LJ012-0171.wav\",\"LJ012-0172.wav\",\"LJ012-0173.wav\",\"LJ012-0174.wav\",\"LJ012-0175.wav\",\"LJ012-0176.wav\",\"LJ012-0177.wav\",\"LJ012-0178.wav\",\"LJ012-0179.wav\",\"LJ012-0180.wav\",\"LJ012-0181.wav\",\"LJ012-0182.wav\",\"LJ012-0183.wav\",\"LJ012-0184.wav\",\"LJ012-0185.wav\",\"LJ012-0186.wav\",\"LJ012-0187.wav\",\"LJ012-0188.wav\",\"LJ012-0189.wav\",\"LJ012-0190.wav\",\"LJ012-0191.wav\",\"LJ012-0192.wav\",\"LJ012-0193.wav\",\"LJ012-0194.wav\",\"LJ012-0195.wav\",\"LJ012-0196.wav\",\"LJ012-0197.wav\",\"LJ012-0198.wav\",\"LJ012-0199.wav\",\"LJ012-0200.wav\",\"LJ012-0201.wav\",\"LJ012-0202.wav\",\"LJ012-0203.wav\",\"LJ012-0204.wav\",\"LJ012-0205.wav\",\"LJ012-0206.wav\",\"LJ012-0207.wav\",\"LJ012-0208.wav\",\"LJ012-0209.wav\",\"LJ012-0210.wav\",\"LJ012-0211.wav\",\"LJ012-0212.wav\",\"LJ012-0213.wav\",\"LJ012-0214.wav\",\"LJ012-0215.wav\",\"LJ012-0216.wav\",\"LJ012-0217.wav\",\"LJ012-0218.wav\",\"LJ012-0219.wav\",\"LJ012-0220.wav\",\"LJ012-0221.wav\",\"LJ012-0222.wav\",\"LJ012-0223.wav\",\"LJ012-0224.wav\",\"LJ012-0225.wav\",\"LJ012-0226.wav\",\"LJ012-0227.wav\",\"LJ012-0228.wav\",\"LJ012-0229.wav\",\"LJ012-0230.wav\",\"LJ012-0231.wav\",\"LJ012-0232.wav\",\"LJ012-0233.wav\",\"LJ012-0234.wav\",\"LJ012-0235.wav\",\"LJ012-0236.wav\",\"LJ012-0237.wav\",\"LJ012-0238.wav\",\"LJ012-0239.wav\",\"LJ012-0240.wav\",\"LJ012-0241.wav\",\"LJ012-0242.wav\",\"LJ012-0243.wav\",\"LJ012-0244.wav\",\"LJ012-0245.wav\",\"LJ012-0246.wav\",\"LJ012-0247.wav\",\"LJ012-0248.wav\",\"LJ012-0249.wav\",\"LJ012-0250.wav\",\"LJ012-0251.wav\",\"LJ012-0252.wav\",\"LJ012-0253.wav\",\"LJ012-0254.wav\",\"LJ012-0255.wav\",\"LJ012-0256.wav\",\"LJ012-0257.wav\",\"LJ012-0258.wav\",\"LJ012-0259.wav\",\"LJ012-0260.wav\",\"LJ012-0261.wav\",\"LJ012-0262.wav\",\"LJ012-0263.wav\",\"LJ012-0264.wav\",\"LJ012-0265.wav\",\"LJ012-0266.wav\",\"LJ012-0267.wav\",\"LJ012-0268.wav\",\"LJ012-0269.wav\",\"LJ012-0270.wav\",\"LJ012-0271.wav\",\"LJ012-0272.wav\",\"LJ012-0273.wav\",\"LJ012-0274.wav\",\"LJ012-0275.wav\",\"LJ012-0276.wav\",\"LJ012-0277.wav\",\"LJ012-0278.wav\",\"LJ012-0279.wav\",\"LJ012-0280.wav\",\"LJ012-0281.wav\",\"LJ012-0282.wav\",\"LJ012-0283.wav\",\"LJ012-0284.wav\",\"LJ012-0285.wav\",\"LJ012-0286.wav\",\"LJ012-0287.wav\",\"LJ012-0288.wav\",\"LJ012-0289.wav\",\"LJ012-0290.wav\",\"LJ012-0291.wav\",\"LJ012-0292.wav\",\"LJ012-0293.wav\",\"LJ012-0294.wav\",\"LJ012-0295.wav\",\"LJ012-0296.wav\",\"LJ013-0001.wav\",\"LJ013-0002.wav\",\"LJ013-0003.wav\",\"LJ013-0004.wav\",\"LJ013-0005.wav\",\"LJ013-0006.wav\",\"LJ013-0007.wav\",\"LJ013-0008.wav\",\"LJ013-0009.wav\",\"LJ013-0010.wav\",\"LJ013-0011.wav\",\"LJ013-0012.wav\",\"LJ013-0013.wav\",\"LJ013-0014.wav\",\"LJ013-0015.wav\",\"LJ013-0016.wav\",\"LJ013-0017.wav\",\"LJ013-0018.wav\",\"LJ013-0019.wav\",\"LJ013-0020.wav\",\"LJ013-0021.wav\",\"LJ013-0022.wav\",\"LJ013-0023.wav\",\"LJ013-0024.wav\",\"LJ013-0025.wav\",\"LJ013-0026.wav\",\"LJ013-0027.wav\",\"LJ013-0028.wav\",\"LJ013-0029.wav\",\"LJ013-0030.wav\",\"LJ013-0031.wav\",\"LJ013-0032.wav\",\"LJ013-0033.wav\",\"LJ013-0034.wav\",\"LJ013-0035.wav\",\"LJ013-0036.wav\",\"LJ013-0037.wav\",\"LJ013-0038.wav\",\"LJ013-0039.wav\",\"LJ013-0040.wav\",\"LJ013-0041.wav\",\"LJ013-0042.wav\",\"LJ013-0043.wav\",\"LJ013-0044.wav\",\"LJ013-0045.wav\",\"LJ013-0046.wav\",\"LJ013-0047.wav\",\"LJ013-0048.wav\",\"LJ013-0049.wav\",\"LJ013-0050.wav\",\"LJ013-0051.wav\",\"LJ013-0052.wav\",\"LJ013-0053.wav\",\"LJ013-0054.wav\",\"LJ013-0055.wav\",\"LJ013-0056.wav\",\"LJ013-0057.wav\",\"LJ013-0058.wav\",\"LJ013-0059.wav\",\"LJ013-0060.wav\",\"LJ013-0061.wav\",\"LJ013-0062.wav\",\"LJ013-0063.wav\",\"LJ013-0064.wav\",\"LJ013-0065.wav\",\"LJ013-0066.wav\",\"LJ013-0067.wav\",\"LJ013-0068.wav\",\"LJ013-0069.wav\",\"LJ013-0070.wav\",\"LJ013-0071.wav\",\"LJ013-0072.wav\",\"LJ013-0073.wav\",\"LJ013-0074.wav\",\"LJ013-0075.wav\",\"LJ013-0076.wav\",\"LJ013-0077.wav\",\"LJ013-0078.wav\",\"LJ013-0079.wav\",\"LJ013-0080.wav\",\"LJ013-0081.wav\",\"LJ013-0082.wav\",\"LJ013-0083.wav\",\"LJ013-0084.wav\",\"LJ013-0085.wav\",\"LJ013-0086.wav\",\"LJ013-0087.wav\",\"LJ013-0088.wav\",\"LJ013-0089.wav\",\"LJ013-0090.wav\",\"LJ013-0091.wav\",\"LJ013-0092.wav\",\"LJ013-0093.wav\",\"LJ013-0094.wav\",\"LJ013-0095.wav\",\"LJ013-0096.wav\",\"LJ013-0097.wav\",\"LJ013-0098.wav\",\"LJ013-0099.wav\",\"LJ013-0100.wav\",\"LJ013-0101.wav\",\"LJ013-0102.wav\",\"LJ013-0103.wav\",\"LJ013-0104.wav\",\"LJ013-0105.wav\",\"LJ013-0106.wav\",\"LJ013-0107.wav\",\"LJ013-0108.wav\",\"LJ013-0109.wav\",\"LJ013-0110.wav\",\"LJ013-0111.wav\",\"LJ013-0112.wav\",\"LJ013-0113.wav\",\"LJ013-0114.wav\",\"LJ013-0115.wav\",\"LJ013-0116.wav\",\"LJ013-0117.wav\",\"LJ013-0118.wav\",\"LJ013-0119.wav\",\"LJ013-0120.wav\",\"LJ013-0121.wav\",\"LJ013-0122.wav\",\"LJ013-0123.wav\",\"LJ013-0124.wav\",\"LJ013-0125.wav\",\"LJ013-0126.wav\",\"LJ013-0127.wav\",\"LJ013-0128.wav\",\"LJ013-0129.wav\",\"LJ013-0130.wav\",\"LJ013-0131.wav\",\"LJ013-0132.wav\",\"LJ013-0133.wav\",\"LJ013-0134.wav\",\"LJ013-0135.wav\",\"LJ013-0136.wav\",\"LJ013-0137.wav\",\"LJ013-0138.wav\",\"LJ013-0139.wav\",\"LJ013-0140.wav\",\"LJ013-0141.wav\",\"LJ013-0142.wav\",\"LJ013-0143.wav\",\"LJ013-0144.wav\",\"LJ013-0145.wav\",\"LJ013-0146.wav\",\"LJ013-0147.wav\",\"LJ013-0148.wav\",\"LJ013-0149.wav\",\"LJ013-0150.wav\",\"LJ013-0151.wav\",\"LJ013-0152.wav\",\"LJ013-0153.wav\",\"LJ013-0154.wav\",\"LJ013-0155.wav\",\"LJ013-0156.wav\",\"LJ013-0157.wav\",\"LJ013-0158.wav\",\"LJ013-0159.wav\",\"LJ013-0160.wav\",\"LJ013-0161.wav\",\"LJ013-0162.wav\",\"LJ013-0163.wav\",\"LJ013-0164.wav\",\"LJ013-0165.wav\",\"LJ013-0166.wav\",\"LJ013-0167.wav\",\"LJ013-0168.wav\",\"LJ013-0169.wav\",\"LJ013-0170.wav\",\"LJ013-0171.wav\",\"LJ013-0172.wav\",\"LJ013-0173.wav\",\"LJ013-0174.wav\",\"LJ013-0175.wav\",\"LJ013-0176.wav\",\"LJ013-0177.wav\",\"LJ013-0178.wav\",\"LJ013-0179.wav\",\"LJ013-0180.wav\",\"LJ013-0181.wav\",\"LJ013-0182.wav\",\"LJ013-0183.wav\",\"LJ013-0184.wav\",\"LJ013-0185.wav\",\"LJ013-0186.wav\",\"LJ013-0187.wav\",\"LJ013-0188.wav\",\"LJ013-0189.wav\",\"LJ013-0190.wav\",\"LJ013-0191.wav\",\"LJ013-0192.wav\",\"LJ013-0193.wav\",\"LJ013-0194.wav\",\"LJ013-0195.wav\",\"LJ013-0196.wav\",\"LJ013-0197.wav\",\"LJ013-0198.wav\",\"LJ013-0199.wav\",\"LJ013-0200.wav\",\"LJ013-0201.wav\",\"LJ013-0202.wav\",\"LJ013-0203.wav\",\"LJ013-0204.wav\",\"LJ013-0205.wav\",\"LJ013-0206.wav\",\"LJ013-0207.wav\",\"LJ013-0208.wav\",\"LJ013-0209.wav\",\"LJ013-0210.wav\",\"LJ013-0211.wav\",\"LJ013-0212.wav\",\"LJ013-0213.wav\",\"LJ013-0214.wav\",\"LJ013-0215.wav\",\"LJ013-0216.wav\",\"LJ013-0217.wav\",\"LJ013-0218.wav\",\"LJ013-0219.wav\",\"LJ013-0220.wav\",\"LJ013-0221.wav\",\"LJ013-0222.wav\",\"LJ013-0223.wav\",\"LJ013-0224.wav\",\"LJ013-0225.wav\",\"LJ013-0226.wav\",\"LJ013-0227.wav\",\"LJ013-0228.wav\",\"LJ013-0229.wav\",\"LJ013-0230.wav\",\"LJ013-0231.wav\",\"LJ013-0232.wav\",\"LJ013-0233.wav\",\"LJ013-0234.wav\",\"LJ013-0235.wav\",\"LJ013-0236.wav\",\"LJ013-0237.wav\",\"LJ013-0238.wav\",\"LJ013-0239.wav\",\"LJ013-0240.wav\",\"LJ013-0241.wav\",\"LJ013-0242.wav\",\"LJ013-0243.wav\",\"LJ013-0244.wav\",\"LJ013-0245.wav\",\"LJ013-0246.wav\",\"LJ013-0247.wav\",\"LJ013-0248.wav\",\"LJ013-0249.wav\",\"LJ013-0250.wav\",\"LJ013-0251.wav\",\"LJ013-0252.wav\",\"LJ013-0253.wav\",\"LJ013-0254.wav\",\"LJ013-0255.wav\",\"LJ013-0256.wav\",\"LJ013-0257.wav\",\"LJ013-0258.wav\",\"LJ013-0259.wav\",\"LJ013-0260.wav\",\"LJ013-0261.wav\",\"LJ013-0262.wav\",\"LJ013-0263.wav\",\"LJ013-0264.wav\",\"LJ013-0265.wav\",\"LJ013-0266.wav\",\"LJ013-0267.wav\",\"LJ013-0268.wav\",\"LJ014-0001.wav\",\"LJ014-0002.wav\",\"LJ014-0003.wav\",\"LJ014-0004.wav\",\"LJ014-0005.wav\",\"LJ014-0006.wav\",\"LJ014-0007.wav\",\"LJ014-0008.wav\",\"LJ014-0009.wav\",\"LJ014-0010.wav\",\"LJ014-0011.wav\",\"LJ014-0012.wav\",\"LJ014-0013.wav\",\"LJ014-0014.wav\",\"LJ014-0015.wav\",\"LJ014-0016.wav\",\"LJ014-0017.wav\",\"LJ014-0018.wav\",\"LJ014-0019.wav\",\"LJ014-0020.wav\",\"LJ014-0021.wav\",\"LJ014-0022.wav\",\"LJ014-0023.wav\",\"LJ014-0024.wav\",\"LJ014-0025.wav\",\"LJ014-0026.wav\",\"LJ014-0027.wav\",\"LJ014-0028.wav\",\"LJ014-0029.wav\",\"LJ014-0030.wav\",\"LJ014-0031.wav\",\"LJ014-0032.wav\",\"LJ014-0033.wav\",\"LJ014-0034.wav\",\"LJ014-0035.wav\",\"LJ014-0036.wav\",\"LJ014-0037.wav\",\"LJ014-0038.wav\",\"LJ014-0039.wav\",\"LJ014-0040.wav\",\"LJ014-0041.wav\",\"LJ014-0042.wav\",\"LJ014-0043.wav\",\"LJ014-0044.wav\",\"LJ014-0045.wav\",\"LJ014-0046.wav\",\"LJ014-0047.wav\",\"LJ014-0048.wav\",\"LJ014-0049.wav\",\"LJ014-0050.wav\",\"LJ014-0051.wav\",\"LJ014-0052.wav\",\"LJ014-0053.wav\",\"LJ014-0054.wav\",\"LJ014-0055.wav\",\"LJ014-0056.wav\",\"LJ014-0057.wav\",\"LJ014-0058.wav\",\"LJ014-0059.wav\",\"LJ014-0060.wav\",\"LJ014-0061.wav\",\"LJ014-0062.wav\",\"LJ014-0063.wav\",\"LJ014-0064.wav\",\"LJ014-0065.wav\",\"LJ014-0066.wav\",\"LJ014-0067.wav\",\"LJ014-0068.wav\",\"LJ014-0069.wav\",\"LJ014-0070.wav\",\"LJ014-0071.wav\",\"LJ014-0072.wav\",\"LJ014-0073.wav\",\"LJ014-0074.wav\",\"LJ014-0075.wav\",\"LJ014-0076.wav\",\"LJ014-0077.wav\",\"LJ014-0078.wav\",\"LJ014-0079.wav\",\"LJ014-0080.wav\",\"LJ014-0081.wav\",\"LJ014-0082.wav\",\"LJ014-0083.wav\",\"LJ014-0084.wav\",\"LJ014-0085.wav\",\"LJ014-0086.wav\",\"LJ014-0087.wav\",\"LJ014-0088.wav\",\"LJ014-0089.wav\",\"LJ014-0090.wav\",\"LJ014-0091.wav\",\"LJ014-0092.wav\",\"LJ014-0093.wav\",\"LJ014-0094.wav\",\"LJ014-0095.wav\",\"LJ014-0096.wav\",\"LJ014-0097.wav\",\"LJ014-0098.wav\",\"LJ014-0099.wav\",\"LJ014-0100.wav\",\"LJ014-0101.wav\",\"LJ014-0102.wav\",\"LJ014-0103.wav\",\"LJ014-0104.wav\",\"LJ014-0105.wav\",\"LJ014-0106.wav\",\"LJ014-0107.wav\",\"LJ014-0108.wav\",\"LJ014-0109.wav\",\"LJ014-0110.wav\",\"LJ014-0111.wav\",\"LJ014-0112.wav\",\"LJ014-0113.wav\",\"LJ014-0114.wav\",\"LJ014-0115.wav\",\"LJ014-0116.wav\",\"LJ014-0117.wav\",\"LJ014-0118.wav\",\"LJ014-0119.wav\",\"LJ014-0120.wav\",\"LJ014-0121.wav\",\"LJ014-0122.wav\",\"LJ014-0123.wav\",\"LJ014-0124.wav\",\"LJ014-0125.wav\",\"LJ014-0126.wav\",\"LJ014-0127.wav\",\"LJ014-0128.wav\",\"LJ014-0129.wav\",\"LJ014-0130.wav\",\"LJ014-0131.wav\",\"LJ014-0132.wav\",\"LJ014-0133.wav\",\"LJ014-0134.wav\",\"LJ014-0135.wav\",\"LJ014-0136.wav\",\"LJ014-0137.wav\",\"LJ014-0138.wav\",\"LJ014-0139.wav\",\"LJ014-0140.wav\",\"LJ014-0141.wav\",\"LJ014-0142.wav\",\"LJ014-0143.wav\",\"LJ014-0144.wav\",\"LJ014-0146.wav\",\"LJ014-0147.wav\",\"LJ014-0148.wav\",\"LJ014-0149.wav\",\"LJ014-0150.wav\",\"LJ014-0151.wav\",\"LJ014-0152.wav\",\"LJ014-0153.wav\",\"LJ014-0154.wav\",\"LJ014-0155.wav\",\"LJ014-0156.wav\",\"LJ014-0157.wav\",\"LJ014-0158.wav\",\"LJ014-0159.wav\",\"LJ014-0160.wav\",\"LJ014-0161.wav\",\"LJ014-0162.wav\",\"LJ014-0163.wav\",\"LJ014-0164.wav\",\"LJ014-0165.wav\",\"LJ014-0166.wav\",\"LJ014-0167.wav\",\"LJ014-0168.wav\",\"LJ014-0169.wav\",\"LJ014-0170.wav\",\"LJ014-0171.wav\",\"LJ014-0172.wav\",\"LJ014-0173.wav\",\"LJ014-0174.wav\",\"LJ014-0175.wav\",\"LJ014-0176.wav\",\"LJ014-0177.wav\",\"LJ014-0178.wav\",\"LJ014-0179.wav\",\"LJ014-0180.wav\",\"LJ014-0181.wav\",\"LJ014-0182.wav\",\"LJ014-0183.wav\",\"LJ014-0184.wav\",\"LJ014-0185.wav\",\"LJ014-0186.wav\",\"LJ014-0187.wav\",\"LJ014-0188.wav\",\"LJ014-0189.wav\",\"LJ014-0190.wav\",\"LJ014-0191.wav\",\"LJ014-0192.wav\",\"LJ014-0193.wav\",\"LJ014-0194.wav\",\"LJ014-0195.wav\",\"LJ014-0196.wav\",\"LJ014-0197.wav\",\"LJ014-0198.wav\",\"LJ014-0199.wav\",\"LJ014-0200.wav\",\"LJ014-0201.wav\",\"LJ014-0202.wav\",\"LJ014-0203.wav\",\"LJ014-0204.wav\",\"LJ014-0205.wav\",\"LJ014-0206.wav\",\"LJ014-0207.wav\",\"LJ014-0208.wav\",\"LJ014-0209.wav\",\"LJ014-0210.wav\",\"LJ014-0211.wav\",\"LJ014-0212.wav\",\"LJ014-0213.wav\",\"LJ014-0214.wav\",\"LJ014-0215.wav\",\"LJ014-0216.wav\",\"LJ014-0217.wav\",\"LJ014-0218.wav\",\"LJ014-0219.wav\",\"LJ014-0220.wav\",\"LJ014-0221.wav\",\"LJ014-0222.wav\",\"LJ014-0223.wav\",\"LJ014-0224.wav\",\"LJ014-0225.wav\",\"LJ014-0226.wav\",\"LJ014-0227.wav\",\"LJ014-0228.wav\",\"LJ014-0229.wav\",\"LJ014-0230.wav\",\"LJ014-0231.wav\",\"LJ014-0232.wav\",\"LJ014-0233.wav\",\"LJ014-0234.wav\",\"LJ014-0235.wav\",\"LJ014-0236.wav\",\"LJ014-0237.wav\",\"LJ014-0238.wav\",\"LJ014-0239.wav\",\"LJ014-0240.wav\",\"LJ014-0241.wav\",\"LJ014-0242.wav\",\"LJ014-0243.wav\",\"LJ014-0244.wav\",\"LJ014-0245.wav\",\"LJ014-0246.wav\",\"LJ014-0247.wav\",\"LJ014-0248.wav\",\"LJ014-0249.wav\",\"LJ014-0250.wav\",\"LJ014-0251.wav\",\"LJ014-0252.wav\",\"LJ014-0253.wav\",\"LJ014-0254.wav\",\"LJ014-0255.wav\",\"LJ014-0256.wav\",\"LJ014-0257.wav\",\"LJ014-0258.wav\",\"LJ014-0259.wav\",\"LJ014-0260.wav\",\"LJ014-0261.wav\",\"LJ014-0262.wav\",\"LJ014-0263.wav\",\"LJ014-0264.wav\",\"LJ014-0265.wav\",\"LJ014-0266.wav\",\"LJ014-0267.wav\",\"LJ014-0268.wav\",\"LJ014-0269.wav\",\"LJ014-0271.wav\",\"LJ014-0272.wav\",\"LJ014-0273.wav\",\"LJ014-0274.wav\",\"LJ014-0275.wav\",\"LJ014-0276.wav\",\"LJ014-0277.wav\",\"LJ014-0278.wav\",\"LJ014-0279.wav\",\"LJ014-0280.wav\",\"LJ014-0281.wav\",\"LJ014-0282.wav\",\"LJ014-0283.wav\",\"LJ014-0285.wav\",\"LJ014-0286.wav\",\"LJ014-0287.wav\",\"LJ014-0288.wav\",\"LJ014-0289.wav\",\"LJ014-0290.wav\",\"LJ014-0291.wav\",\"LJ014-0292.wav\",\"LJ014-0293.wav\",\"LJ014-0294.wav\",\"LJ014-0295.wav\",\"LJ014-0296.wav\",\"LJ014-0297.wav\",\"LJ014-0298.wav\",\"LJ014-0299.wav\",\"LJ014-0300.wav\",\"LJ014-0301.wav\",\"LJ014-0302.wav\",\"LJ014-0303.wav\",\"LJ014-0304.wav\",\"LJ014-0305.wav\",\"LJ014-0306.wav\",\"LJ014-0307.wav\",\"LJ014-0308.wav\",\"LJ014-0309.wav\",\"LJ014-0310.wav\",\"LJ014-0311.wav\",\"LJ014-0312.wav\",\"LJ014-0313.wav\",\"LJ014-0314.wav\",\"LJ014-0315.wav\",\"LJ014-0316.wav\",\"LJ014-0317.wav\",\"LJ014-0318.wav\",\"LJ014-0320.wav\",\"LJ014-0321.wav\",\"LJ014-0322.wav\",\"LJ014-0323.wav\",\"LJ014-0324.wav\",\"LJ014-0325.wav\",\"LJ014-0326.wav\",\"LJ014-0327.wav\",\"LJ014-0328.wav\",\"LJ014-0329.wav\",\"LJ014-0330.wav\",\"LJ014-0331.wav\",\"LJ014-0332.wav\",\"LJ014-0333.wav\",\"LJ014-0334.wav\",\"LJ014-0335.wav\",\"LJ014-0336.wav\",\"LJ014-0337.wav\",\"LJ014-0338.wav\",\"LJ014-0339.wav\",\"LJ014-0340.wav\",\"LJ015-0001.wav\",\"LJ015-0002.wav\",\"LJ015-0003.wav\",\"LJ015-0004.wav\",\"LJ015-0005.wav\",\"LJ015-0006.wav\",\"LJ015-0007.wav\",\"LJ015-0008.wav\",\"LJ015-0009.wav\",\"LJ015-0010.wav\",\"LJ015-0011.wav\",\"LJ015-0012.wav\",\"LJ015-0013.wav\",\"LJ015-0014.wav\",\"LJ015-0015.wav\",\"LJ015-0016.wav\",\"LJ015-0017.wav\",\"LJ015-0018.wav\",\"LJ015-0019.wav\",\"LJ015-0020.wav\",\"LJ015-0021.wav\",\"LJ015-0022.wav\",\"LJ015-0023.wav\",\"LJ015-0024.wav\",\"LJ015-0025.wav\",\"LJ015-0026.wav\",\"LJ015-0027.wav\",\"LJ015-0028.wav\",\"LJ015-0029.wav\",\"LJ015-0030.wav\",\"LJ015-0031.wav\",\"LJ015-0032.wav\",\"LJ015-0033.wav\",\"LJ015-0034.wav\",\"LJ015-0035.wav\",\"LJ015-0036.wav\",\"LJ015-0037.wav\",\"LJ015-0038.wav\",\"LJ015-0039.wav\",\"LJ015-0040.wav\",\"LJ015-0041.wav\",\"LJ015-0042.wav\",\"LJ015-0043.wav\",\"LJ015-0044.wav\",\"LJ015-0045.wav\",\"LJ015-0046.wav\",\"LJ015-0047.wav\",\"LJ015-0048.wav\",\"LJ015-0049.wav\",\"LJ015-0050.wav\",\"LJ015-0051.wav\",\"LJ015-0052.wav\",\"LJ015-0053.wav\",\"LJ015-0054.wav\",\"LJ015-0055.wav\",\"LJ015-0056.wav\",\"LJ015-0057.wav\",\"LJ015-0058.wav\",\"LJ015-0059.wav\",\"LJ015-0060.wav\",\"LJ015-0061.wav\",\"LJ015-0062.wav\",\"LJ015-0063.wav\",\"LJ015-0064.wav\",\"LJ015-0065.wav\",\"LJ015-0066.wav\",\"LJ015-0067.wav\",\"LJ015-0068.wav\",\"LJ015-0069.wav\",\"LJ015-0070.wav\",\"LJ015-0071.wav\",\"LJ015-0072.wav\",\"LJ015-0073.wav\",\"LJ015-0074.wav\",\"LJ015-0075.wav\",\"LJ015-0076.wav\",\"LJ015-0077.wav\",\"LJ015-0078.wav\",\"LJ015-0079.wav\",\"LJ015-0080.wav\",\"LJ015-0081.wav\",\"LJ015-0082.wav\",\"LJ015-0083.wav\",\"LJ015-0084.wav\",\"LJ015-0085.wav\",\"LJ015-0086.wav\",\"LJ015-0087.wav\",\"LJ015-0088.wav\",\"LJ015-0089.wav\",\"LJ015-0090.wav\",\"LJ015-0091.wav\",\"LJ015-0092.wav\",\"LJ015-0093.wav\",\"LJ015-0094.wav\",\"LJ015-0095.wav\",\"LJ015-0096.wav\",\"LJ015-0097.wav\",\"LJ015-0098.wav\",\"LJ015-0099.wav\",\"LJ015-0100.wav\",\"LJ015-0101.wav\",\"LJ015-0102.wav\",\"LJ015-0103.wav\",\"LJ015-0104.wav\",\"LJ015-0105.wav\",\"LJ015-0106.wav\",\"LJ015-0107.wav\",\"LJ015-0108.wav\",\"LJ015-0109.wav\",\"LJ015-0110.wav\",\"LJ015-0111.wav\",\"LJ015-0112.wav\",\"LJ015-0113.wav\",\"LJ015-0114.wav\",\"LJ015-0115.wav\",\"LJ015-0116.wav\",\"LJ015-0117.wav\",\"LJ015-0118.wav\",\"LJ015-0119.wav\",\"LJ015-0120.wav\",\"LJ015-0121.wav\",\"LJ015-0122.wav\",\"LJ015-0123.wav\",\"LJ015-0124.wav\",\"LJ015-0125.wav\",\"LJ015-0126.wav\",\"LJ015-0127.wav\",\"LJ015-0128.wav\",\"LJ015-0129.wav\",\"LJ015-0130.wav\",\"LJ015-0131.wav\",\"LJ015-0132.wav\",\"LJ015-0133.wav\",\"LJ015-0134.wav\",\"LJ015-0135.wav\",\"LJ015-0136.wav\",\"LJ015-0137.wav\",\"LJ015-0138.wav\",\"LJ015-0139.wav\",\"LJ015-0140.wav\",\"LJ015-0141.wav\",\"LJ015-0142.wav\",\"LJ015-0143.wav\",\"LJ015-0144.wav\",\"LJ015-0145.wav\",\"LJ015-0146.wav\",\"LJ015-0147.wav\",\"LJ015-0148.wav\",\"LJ015-0149.wav\",\"LJ015-0150.wav\",\"LJ015-0151.wav\",\"LJ015-0152.wav\",\"LJ015-0153.wav\",\"LJ015-0154.wav\",\"LJ015-0155.wav\",\"LJ015-0156.wav\",\"LJ015-0157.wav\",\"LJ015-0158.wav\",\"LJ015-0159.wav\",\"LJ015-0160.wav\",\"LJ015-0161.wav\",\"LJ015-0162.wav\",\"LJ015-0163.wav\",\"LJ015-0164.wav\",\"LJ015-0165.wav\",\"LJ015-0166.wav\",\"LJ015-0167.wav\",\"LJ015-0168.wav\",\"LJ015-0169.wav\",\"LJ015-0170.wav\",\"LJ015-0171.wav\",\"LJ015-0172.wav\",\"LJ015-0173.wav\",\"LJ015-0174.wav\",\"LJ015-0175.wav\",\"LJ015-0176.wav\",\"LJ015-0177.wav\",\"LJ015-0178.wav\",\"LJ015-0179.wav\",\"LJ015-0180.wav\",\"LJ015-0181.wav\",\"LJ015-0182.wav\",\"LJ015-0183.wav\",\"LJ015-0184.wav\",\"LJ015-0185.wav\",\"LJ015-0186.wav\",\"LJ015-0187.wav\",\"LJ015-0188.wav\",\"LJ015-0189.wav\",\"LJ015-0190.wav\",\"LJ015-0191.wav\",\"LJ015-0192.wav\",\"LJ015-0193.wav\",\"LJ015-0194.wav\",\"LJ015-0195.wav\",\"LJ015-0196.wav\",\"LJ015-0197.wav\",\"LJ015-0198.wav\",\"LJ015-0199.wav\",\"LJ015-0200.wav\",\"LJ015-0201.wav\",\"LJ015-0202.wav\",\"LJ015-0203.wav\",\"LJ015-0204.wav\",\"LJ015-0205.wav\",\"LJ015-0206.wav\",\"LJ015-0207.wav\",\"LJ015-0208.wav\",\"LJ015-0209.wav\",\"LJ015-0210.wav\",\"LJ015-0211.wav\",\"LJ015-0212.wav\",\"LJ015-0213.wav\",\"LJ015-0214.wav\",\"LJ015-0215.wav\",\"LJ015-0216.wav\",\"LJ015-0217.wav\",\"LJ015-0218.wav\",\"LJ015-0219.wav\",\"LJ015-0220.wav\",\"LJ015-0221.wav\",\"LJ015-0222.wav\",\"LJ015-0223.wav\",\"LJ015-0224.wav\",\"LJ015-0225.wav\",\"LJ015-0226.wav\",\"LJ015-0227.wav\",\"LJ015-0228.wav\",\"LJ015-0229.wav\",\"LJ015-0230.wav\",\"LJ015-0231.wav\",\"LJ015-0232.wav\",\"LJ015-0233.wav\",\"LJ015-0234.wav\",\"LJ015-0235.wav\",\"LJ015-0236.wav\",\"LJ015-0237.wav\",\"LJ015-0238.wav\",\"LJ015-0239.wav\",\"LJ015-0240.wav\",\"LJ015-0241.wav\",\"LJ015-0242.wav\",\"LJ015-0243.wav\",\"LJ015-0244.wav\",\"LJ015-0245.wav\",\"LJ015-0246.wav\",\"LJ015-0247.wav\",\"LJ015-0248.wav\",\"LJ015-0249.wav\",\"LJ015-0250.wav\",\"LJ015-0251.wav\",\"LJ015-0252.wav\",\"LJ015-0253.wav\",\"LJ015-0254.wav\",\"LJ015-0255.wav\",\"LJ015-0256.wav\",\"LJ015-0257.wav\",\"LJ015-0258.wav\",\"LJ015-0259.wav\",\"LJ015-0260.wav\",\"LJ015-0261.wav\",\"LJ015-0262.wav\",\"LJ015-0263.wav\",\"LJ015-0264.wav\",\"LJ015-0265.wav\",\"LJ015-0266.wav\",\"LJ015-0267.wav\",\"LJ015-0268.wav\",\"LJ015-0269.wav\",\"LJ015-0270.wav\",\"LJ015-0271.wav\",\"LJ015-0272.wav\",\"LJ015-0273.wav\",\"LJ015-0274.wav\",\"LJ015-0275.wav\",\"LJ015-0276.wav\",\"LJ015-0277.wav\",\"LJ015-0278.wav\",\"LJ015-0279.wav\",\"LJ015-0280.wav\",\"LJ015-0281.wav\",\"LJ015-0282.wav\",\"LJ015-0283.wav\",\"LJ015-0284.wav\",\"LJ015-0285.wav\",\"LJ015-0286.wav\",\"LJ015-0287.wav\",\"LJ015-0288.wav\",\"LJ015-0289.wav\",\"LJ015-0290.wav\",\"LJ015-0291.wav\",\"LJ015-0292.wav\",\"LJ015-0293.wav\",\"LJ015-0294.wav\",\"LJ015-0295.wav\",\"LJ015-0296.wav\",\"LJ015-0297.wav\",\"LJ015-0298.wav\",\"LJ015-0299.wav\",\"LJ015-0300.wav\",\"LJ015-0301.wav\",\"LJ015-0302.wav\",\"LJ015-0303.wav\",\"LJ015-0304.wav\",\"LJ015-0305.wav\",\"LJ015-0306.wav\",\"LJ015-0307.wav\",\"LJ015-0308.wav\",\"LJ015-0309.wav\",\"LJ015-0310.wav\",\"LJ015-0311.wav\",\"LJ015-0312.wav\",\"LJ015-0313.wav\",\"LJ015-0314.wav\",\"LJ016-0001.wav\",\"LJ016-0002.wav\",\"LJ016-0003.wav\",\"LJ016-0004.wav\",\"LJ016-0005.wav\",\"LJ016-0006.wav\",\"LJ016-0007.wav\",\"LJ016-0008.wav\",\"LJ016-0009.wav\",\"LJ016-0010.wav\",\"LJ016-0011.wav\",\"LJ016-0012.wav\",\"LJ016-0013.wav\",\"LJ016-0014.wav\",\"LJ016-0015.wav\",\"LJ016-0016.wav\",\"LJ016-0017.wav\",\"LJ016-0018.wav\",\"LJ016-0019.wav\",\"LJ016-0020.wav\",\"LJ016-0021.wav\",\"LJ016-0022.wav\",\"LJ016-0023.wav\",\"LJ016-0024.wav\",\"LJ016-0025.wav\",\"LJ016-0026.wav\",\"LJ016-0027.wav\",\"LJ016-0028.wav\",\"LJ016-0029.wav\",\"LJ016-0030.wav\",\"LJ016-0031.wav\",\"LJ016-0032.wav\",\"LJ016-0033.wav\",\"LJ016-0034.wav\",\"LJ016-0035.wav\",\"LJ016-0036.wav\",\"LJ016-0037.wav\",\"LJ016-0038.wav\",\"LJ016-0039.wav\",\"LJ016-0040.wav\",\"LJ016-0041.wav\",\"LJ016-0042.wav\",\"LJ016-0043.wav\",\"LJ016-0044.wav\",\"LJ016-0045.wav\",\"LJ016-0046.wav\",\"LJ016-0047.wav\",\"LJ016-0048.wav\",\"LJ016-0049.wav\",\"LJ016-0050.wav\",\"LJ016-0051.wav\",\"LJ016-0052.wav\",\"LJ016-0053.wav\",\"LJ016-0054.wav\",\"LJ016-0055.wav\",\"LJ016-0056.wav\",\"LJ016-0057.wav\",\"LJ016-0058.wav\",\"LJ016-0059.wav\",\"LJ016-0060.wav\",\"LJ016-0061.wav\",\"LJ016-0062.wav\",\"LJ016-0063.wav\",\"LJ016-0064.wav\",\"LJ016-0065.wav\",\"LJ016-0066.wav\",\"LJ016-0067.wav\",\"LJ016-0068.wav\",\"LJ016-0069.wav\",\"LJ016-0070.wav\",\"LJ016-0071.wav\",\"LJ016-0072.wav\",\"LJ016-0073.wav\",\"LJ016-0074.wav\",\"LJ016-0075.wav\",\"LJ016-0076.wav\",\"LJ016-0077.wav\",\"LJ016-0078.wav\",\"LJ016-0079.wav\",\"LJ016-0080.wav\",\"LJ016-0081.wav\",\"LJ016-0082.wav\",\"LJ016-0084.wav\",\"LJ016-0085.wav\",\"LJ016-0086.wav\",\"LJ016-0087.wav\",\"LJ016-0088.wav\",\"LJ016-0089.wav\",\"LJ016-0090.wav\",\"LJ016-0091.wav\",\"LJ016-0092.wav\",\"LJ016-0093.wav\",\"LJ016-0094.wav\",\"LJ016-0095.wav\",\"LJ016-0096.wav\",\"LJ016-0097.wav\",\"LJ016-0098.wav\",\"LJ016-0099.wav\",\"LJ016-0100.wav\",\"LJ016-0101.wav\",\"LJ016-0102.wav\",\"LJ016-0103.wav\",\"LJ016-0104.wav\",\"LJ016-0105.wav\",\"LJ016-0106.wav\",\"LJ016-0107.wav\",\"LJ016-0108.wav\",\"LJ016-0109.wav\",\"LJ016-0110.wav\",\"LJ016-0111.wav\",\"LJ016-0112.wav\",\"LJ016-0113.wav\",\"LJ016-0114.wav\",\"LJ016-0115.wav\",\"LJ016-0116.wav\",\"LJ016-0117.wav\",\"LJ016-0118.wav\",\"LJ016-0119.wav\",\"LJ016-0120.wav\",\"LJ016-0121.wav\",\"LJ016-0122.wav\",\"LJ016-0123.wav\",\"LJ016-0124.wav\",\"LJ016-0125.wav\",\"LJ016-0126.wav\",\"LJ016-0127.wav\",\"LJ016-0128.wav\",\"LJ016-0129.wav\",\"LJ016-0130.wav\",\"LJ016-0131.wav\",\"LJ016-0132.wav\",\"LJ016-0133.wav\",\"LJ016-0134.wav\",\"LJ016-0135.wav\",\"LJ016-0136.wav\",\"LJ016-0137.wav\",\"LJ016-0138.wav\",\"LJ016-0139.wav\",\"LJ016-0140.wav\",\"LJ016-0141.wav\",\"LJ016-0142.wav\",\"LJ016-0143.wav\",\"LJ016-0144.wav\",\"LJ016-0145.wav\",\"LJ016-0146.wav\",\"LJ016-0147.wav\",\"LJ016-0148.wav\",\"LJ016-0149.wav\",\"LJ016-0150.wav\",\"LJ016-0151.wav\",\"LJ016-0152.wav\",\"LJ016-0153.wav\",\"LJ016-0154.wav\",\"LJ016-0155.wav\",\"LJ016-0156.wav\",\"LJ016-0157.wav\",\"LJ016-0158.wav\",\"LJ016-0159.wav\",\"LJ016-0160.wav\",\"LJ016-0161.wav\",\"LJ016-0162.wav\",\"LJ016-0163.wav\",\"LJ016-0164.wav\",\"LJ016-0165.wav\",\"LJ016-0166.wav\",\"LJ016-0167.wav\",\"LJ016-0168.wav\",\"LJ016-0169.wav\",\"LJ016-0170.wav\",\"LJ016-0171.wav\",\"LJ016-0172.wav\",\"LJ016-0173.wav\",\"LJ016-0174.wav\",\"LJ016-0175.wav\",\"LJ016-0176.wav\",\"LJ016-0177.wav\",\"LJ016-0178.wav\",\"LJ016-0179.wav\",\"LJ016-0180.wav\",\"LJ016-0181.wav\",\"LJ016-0182.wav\",\"LJ016-0183.wav\",\"LJ016-0184.wav\",\"LJ016-0185.wav\",\"LJ016-0186.wav\",\"LJ016-0187.wav\",\"LJ016-0188.wav\",\"LJ016-0189.wav\",\"LJ016-0190.wav\",\"LJ016-0191.wav\",\"LJ016-0192.wav\",\"LJ016-0193.wav\",\"LJ016-0194.wav\",\"LJ016-0195.wav\",\"LJ016-0196.wav\",\"LJ016-0197.wav\",\"LJ016-0198.wav\",\"LJ016-0199.wav\",\"LJ016-0200.wav\",\"LJ016-0201.wav\",\"LJ016-0202.wav\",\"LJ016-0203.wav\",\"LJ016-0204.wav\",\"LJ016-0205.wav\",\"LJ016-0206.wav\",\"LJ016-0207.wav\",\"LJ016-0208.wav\",\"LJ016-0209.wav\",\"LJ016-0210.wav\",\"LJ016-0211.wav\",\"LJ016-0212.wav\",\"LJ016-0213.wav\",\"LJ016-0214.wav\",\"LJ016-0215.wav\",\"LJ016-0216.wav\",\"LJ016-0217.wav\",\"LJ016-0218.wav\",\"LJ016-0219.wav\",\"LJ016-0220.wav\",\"LJ016-0221.wav\",\"LJ016-0222.wav\",\"LJ016-0223.wav\",\"LJ016-0224.wav\",\"LJ016-0225.wav\",\"LJ016-0226.wav\",\"LJ016-0227.wav\",\"LJ016-0228.wav\",\"LJ016-0229.wav\",\"LJ016-0230.wav\",\"LJ016-0231.wav\",\"LJ016-0232.wav\",\"LJ016-0233.wav\",\"LJ016-0234.wav\",\"LJ016-0235.wav\",\"LJ016-0236.wav\",\"LJ016-0237.wav\",\"LJ016-0238.wav\",\"LJ016-0239.wav\",\"LJ016-0240.wav\",\"LJ016-0241.wav\",\"LJ016-0242.wav\",\"LJ016-0243.wav\",\"LJ016-0244.wav\",\"LJ016-0245.wav\",\"LJ016-0246.wav\",\"LJ016-0247.wav\",\"LJ016-0248.wav\",\"LJ016-0249.wav\",\"LJ016-0250.wav\",\"LJ016-0251.wav\",\"LJ016-0252.wav\",\"LJ016-0253.wav\",\"LJ016-0254.wav\",\"LJ016-0255.wav\",\"LJ016-0256.wav\",\"LJ016-0257.wav\",\"LJ016-0258.wav\",\"LJ016-0259.wav\",\"LJ016-0260.wav\",\"LJ016-0261.wav\",\"LJ016-0262.wav\",\"LJ016-0263.wav\",\"LJ016-0264.wav\",\"LJ016-0265.wav\",\"LJ016-0266.wav\",\"LJ016-0267.wav\",\"LJ016-0268.wav\",\"LJ016-0271.wav\",\"LJ016-0272.wav\",\"LJ016-0273.wav\",\"LJ016-0274.wav\",\"LJ016-0275.wav\",\"LJ016-0276.wav\",\"LJ016-0277.wav\",\"LJ016-0278.wav\",\"LJ016-0279.wav\",\"LJ016-0280.wav\",\"LJ016-0281.wav\",\"LJ016-0282.wav\",\"LJ016-0283.wav\",\"LJ016-0284.wav\",\"LJ016-0285.wav\",\"LJ016-0286.wav\",\"LJ016-0287.wav\",\"LJ016-0288.wav\",\"LJ016-0289.wav\",\"LJ016-0290.wav\",\"LJ016-0291.wav\",\"LJ016-0292.wav\",\"LJ016-0293.wav\",\"LJ016-0294.wav\",\"LJ016-0295.wav\",\"LJ016-0296.wav\",\"LJ016-0297.wav\",\"LJ016-0298.wav\",\"LJ016-0299.wav\",\"LJ016-0300.wav\",\"LJ016-0301.wav\",\"LJ016-0302.wav\",\"LJ016-0303.wav\",\"LJ016-0304.wav\",\"LJ016-0305.wav\",\"LJ016-0306.wav\",\"LJ016-0307.wav\",\"LJ016-0308.wav\",\"LJ016-0309.wav\",\"LJ016-0310.wav\",\"LJ016-0311.wav\",\"LJ016-0312.wav\",\"LJ016-0313.wav\",\"LJ016-0314.wav\",\"LJ016-0315.wav\",\"LJ016-0316.wav\",\"LJ016-0317.wav\",\"LJ016-0318.wav\",\"LJ016-0319.wav\",\"LJ016-0320.wav\",\"LJ016-0321.wav\",\"LJ016-0322.wav\",\"LJ016-0323.wav\",\"LJ016-0324.wav\",\"LJ016-0325.wav\",\"LJ016-0326.wav\",\"LJ016-0327.wav\",\"LJ016-0328.wav\",\"LJ016-0329.wav\",\"LJ016-0330.wav\",\"LJ016-0331.wav\",\"LJ016-0332.wav\",\"LJ016-0333.wav\",\"LJ016-0334.wav\",\"LJ016-0335.wav\",\"LJ016-0336.wav\",\"LJ016-0337.wav\",\"LJ016-0338.wav\",\"LJ016-0339.wav\",\"LJ016-0340.wav\",\"LJ016-0341.wav\",\"LJ016-0342.wav\",\"LJ016-0343.wav\",\"LJ016-0344.wav\",\"LJ016-0346.wav\",\"LJ016-0347.wav\",\"LJ016-0348.wav\",\"LJ016-0349.wav\",\"LJ016-0350.wav\",\"LJ016-0351.wav\",\"LJ016-0352.wav\",\"LJ016-0353.wav\",\"LJ016-0354.wav\",\"LJ016-0355.wav\",\"LJ016-0356.wav\",\"LJ016-0357.wav\",\"LJ016-0358.wav\",\"LJ016-0359.wav\",\"LJ016-0360.wav\",\"LJ016-0361.wav\",\"LJ016-0362.wav\",\"LJ016-0363.wav\",\"LJ016-0364.wav\",\"LJ016-0365.wav\",\"LJ016-0366.wav\",\"LJ016-0367.wav\",\"LJ016-0368.wav\",\"LJ016-0369.wav\",\"LJ016-0370.wav\",\"LJ016-0371.wav\",\"LJ016-0373.wav\",\"LJ016-0374.wav\",\"LJ016-0375.wav\",\"LJ016-0376.wav\",\"LJ016-0377.wav\",\"LJ016-0378.wav\",\"LJ016-0379.wav\",\"LJ016-0380.wav\",\"LJ016-0381.wav\",\"LJ016-0382.wav\",\"LJ016-0383.wav\",\"LJ016-0384.wav\",\"LJ016-0385.wav\",\"LJ016-0386.wav\",\"LJ016-0387.wav\",\"LJ016-0388.wav\",\"LJ016-0389.wav\",\"LJ016-0390.wav\",\"LJ016-0391.wav\",\"LJ016-0392.wav\",\"LJ016-0393.wav\",\"LJ016-0394.wav\",\"LJ016-0395.wav\",\"LJ016-0396.wav\",\"LJ016-0397.wav\",\"LJ016-0398.wav\",\"LJ016-0399.wav\",\"LJ016-0400.wav\",\"LJ016-0401.wav\",\"LJ016-0402.wav\",\"LJ016-0403.wav\",\"LJ016-0404.wav\",\"LJ016-0405.wav\",\"LJ016-0406.wav\",\"LJ016-0407.wav\",\"LJ016-0408.wav\",\"LJ016-0409.wav\",\"LJ016-0410.wav\",\"LJ016-0411.wav\",\"LJ016-0412.wav\",\"LJ016-0413.wav\",\"LJ016-0414.wav\",\"LJ016-0415.wav\",\"LJ016-0416.wav\",\"LJ016-0417.wav\",\"LJ016-0418.wav\",\"LJ016-0419.wav\",\"LJ016-0420.wav\",\"LJ016-0421.wav\",\"LJ016-0422.wav\",\"LJ016-0423.wav\",\"LJ016-0424.wav\",\"LJ016-0425.wav\",\"LJ016-0426.wav\",\"LJ016-0427.wav\",\"LJ016-0428.wav\",\"LJ016-0429.wav\",\"LJ016-0430.wav\",\"LJ016-0431.wav\",\"LJ016-0432.wav\",\"LJ016-0433.wav\",\"LJ016-0434.wav\",\"LJ016-0435.wav\",\"LJ016-0436.wav\",\"LJ016-0438.wav\",\"LJ016-0439.wav\",\"LJ016-0440.wav\",\"LJ016-0441.wav\",\"LJ016-0442.wav\",\"LJ016-0443.wav\",\"LJ016-0444.wav\",\"LJ016-0445.wav\",\"LJ016-0446.wav\",\"LJ017-0001.wav\",\"LJ017-0002.wav\",\"LJ017-0003.wav\",\"LJ017-0004.wav\",\"LJ017-0005.wav\",\"LJ017-0006.wav\",\"LJ017-0007.wav\",\"LJ017-0008.wav\",\"LJ017-0009.wav\",\"LJ017-0010.wav\",\"LJ017-0011.wav\",\"LJ017-0012.wav\",\"LJ017-0013.wav\",\"LJ017-0014.wav\",\"LJ017-0015.wav\",\"LJ017-0016.wav\",\"LJ017-0017.wav\",\"LJ017-0018.wav\",\"LJ017-0019.wav\",\"LJ017-0020.wav\",\"LJ017-0021.wav\",\"LJ017-0022.wav\",\"LJ017-0023.wav\",\"LJ017-0024.wav\",\"LJ017-0025.wav\",\"LJ017-0026.wav\",\"LJ017-0027.wav\",\"LJ017-0028.wav\",\"LJ017-0029.wav\",\"LJ017-0030.wav\",\"LJ017-0031.wav\",\"LJ017-0032.wav\",\"LJ017-0033.wav\",\"LJ017-0034.wav\",\"LJ017-0035.wav\",\"LJ017-0036.wav\",\"LJ017-0037.wav\",\"LJ017-0038.wav\",\"LJ017-0039.wav\",\"LJ017-0040.wav\",\"LJ017-0041.wav\",\"LJ017-0042.wav\",\"LJ017-0043.wav\",\"LJ017-0044.wav\",\"LJ017-0045.wav\",\"LJ017-0046.wav\",\"LJ017-0047.wav\",\"LJ017-0048.wav\",\"LJ017-0049.wav\",\"LJ017-0050.wav\",\"LJ017-0051.wav\",\"LJ017-0052.wav\",\"LJ017-0053.wav\",\"LJ017-0054.wav\",\"LJ017-0055.wav\",\"LJ017-0056.wav\",\"LJ017-0057.wav\",\"LJ017-0058.wav\",\"LJ017-0059.wav\",\"LJ017-0060.wav\",\"LJ017-0061.wav\",\"LJ017-0062.wav\",\"LJ017-0063.wav\",\"LJ017-0064.wav\",\"LJ017-0065.wav\",\"LJ017-0066.wav\",\"LJ017-0067.wav\",\"LJ017-0068.wav\",\"LJ017-0069.wav\",\"LJ017-0070.wav\",\"LJ017-0071.wav\",\"LJ017-0072.wav\",\"LJ017-0073.wav\",\"LJ017-0074.wav\",\"LJ017-0075.wav\",\"LJ017-0076.wav\",\"LJ017-0077.wav\",\"LJ017-0078.wav\",\"LJ017-0079.wav\",\"LJ017-0080.wav\",\"LJ017-0081.wav\",\"LJ017-0082.wav\",\"LJ017-0083.wav\",\"LJ017-0084.wav\",\"LJ017-0085.wav\",\"LJ017-0086.wav\",\"LJ017-0087.wav\",\"LJ017-0088.wav\",\"LJ017-0089.wav\",\"LJ017-0090.wav\",\"LJ017-0091.wav\",\"LJ017-0092.wav\",\"LJ017-0093.wav\",\"LJ017-0094.wav\",\"LJ017-0095.wav\",\"LJ017-0096.wav\",\"LJ017-0097.wav\",\"LJ017-0098.wav\",\"LJ017-0099.wav\",\"LJ017-0100.wav\",\"LJ017-0101.wav\",\"LJ017-0102.wav\",\"LJ017-0103.wav\",\"LJ017-0104.wav\",\"LJ017-0105.wav\",\"LJ017-0106.wav\",\"LJ017-0107.wav\",\"LJ017-0108.wav\",\"LJ017-0109.wav\",\"LJ017-0110.wav\",\"LJ017-0111.wav\",\"LJ017-0112.wav\",\"LJ017-0113.wav\",\"LJ017-0114.wav\",\"LJ017-0115.wav\",\"LJ017-0116.wav\",\"LJ017-0117.wav\",\"LJ017-0118.wav\",\"LJ017-0119.wav\",\"LJ017-0120.wav\",\"LJ017-0121.wav\",\"LJ017-0122.wav\",\"LJ017-0123.wav\",\"LJ017-0124.wav\",\"LJ017-0125.wav\",\"LJ017-0126.wav\",\"LJ017-0127.wav\",\"LJ017-0128.wav\",\"LJ017-0129.wav\",\"LJ017-0130.wav\",\"LJ017-0131.wav\",\"LJ017-0132.wav\",\"LJ017-0133.wav\",\"LJ017-0134.wav\",\"LJ017-0135.wav\",\"LJ017-0136.wav\",\"LJ017-0137.wav\",\"LJ017-0138.wav\",\"LJ017-0139.wav\",\"LJ017-0140.wav\",\"LJ017-0141.wav\",\"LJ017-0142.wav\",\"LJ017-0143.wav\",\"LJ017-0144.wav\",\"LJ017-0145.wav\",\"LJ017-0146.wav\",\"LJ017-0147.wav\",\"LJ017-0148.wav\",\"LJ017-0149.wav\",\"LJ017-0150.wav\",\"LJ017-0151.wav\",\"LJ017-0152.wav\",\"LJ017-0153.wav\",\"LJ017-0154.wav\",\"LJ017-0155.wav\",\"LJ017-0156.wav\",\"LJ017-0157.wav\",\"LJ017-0158.wav\",\"LJ017-0159.wav\",\"LJ017-0160.wav\",\"LJ017-0161.wav\",\"LJ017-0162.wav\",\"LJ017-0163.wav\",\"LJ017-0164.wav\",\"LJ017-0165.wav\",\"LJ017-0166.wav\",\"LJ017-0167.wav\",\"LJ017-0168.wav\",\"LJ017-0169.wav\",\"LJ017-0170.wav\",\"LJ017-0171.wav\",\"LJ017-0172.wav\",\"LJ017-0173.wav\",\"LJ017-0174.wav\",\"LJ017-0175.wav\",\"LJ017-0176.wav\",\"LJ017-0177.wav\",\"LJ017-0178.wav\",\"LJ017-0179.wav\",\"LJ017-0180.wav\",\"LJ017-0181.wav\",\"LJ017-0182.wav\",\"LJ017-0183.wav\",\"LJ017-0184.wav\",\"LJ017-0185.wav\",\"LJ017-0186.wav\",\"LJ017-0187.wav\",\"LJ017-0188.wav\",\"LJ017-0189.wav\",\"LJ017-0190.wav\",\"LJ017-0191.wav\",\"LJ017-0192.wav\",\"LJ017-0193.wav\",\"LJ017-0194.wav\",\"LJ017-0195.wav\",\"LJ017-0196.wav\",\"LJ017-0197.wav\",\"LJ017-0198.wav\",\"LJ017-0199.wav\",\"LJ017-0200.wav\",\"LJ017-0201.wav\",\"LJ017-0202.wav\",\"LJ017-0203.wav\",\"LJ017-0204.wav\",\"LJ017-0205.wav\",\"LJ017-0206.wav\",\"LJ017-0207.wav\",\"LJ017-0208.wav\",\"LJ017-0209.wav\",\"LJ017-0210.wav\",\"LJ017-0211.wav\",\"LJ017-0212.wav\",\"LJ017-0213.wav\",\"LJ017-0214.wav\",\"LJ017-0215.wav\",\"LJ017-0216.wav\",\"LJ017-0217.wav\",\"LJ017-0218.wav\",\"LJ017-0219.wav\",\"LJ017-0220.wav\",\"LJ017-0221.wav\",\"LJ017-0222.wav\",\"LJ017-0223.wav\",\"LJ017-0224.wav\",\"LJ017-0225.wav\",\"LJ017-0226.wav\",\"LJ017-0227.wav\",\"LJ017-0228.wav\",\"LJ017-0229.wav\",\"LJ017-0230.wav\",\"LJ017-0231.wav\",\"LJ017-0232.wav\",\"LJ017-0233.wav\",\"LJ017-0234.wav\",\"LJ017-0235.wav\",\"LJ017-0236.wav\",\"LJ017-0237.wav\",\"LJ017-0238.wav\",\"LJ017-0239.wav\",\"LJ017-0240.wav\",\"LJ017-0241.wav\",\"LJ017-0242.wav\",\"LJ017-0243.wav\",\"LJ017-0244.wav\",\"LJ017-0245.wav\",\"LJ017-0246.wav\",\"LJ017-0247.wav\",\"LJ017-0248.wav\",\"LJ017-0249.wav\",\"LJ017-0250.wav\",\"LJ017-0251.wav\",\"LJ017-0252.wav\",\"LJ017-0253.wav\",\"LJ017-0254.wav\",\"LJ017-0255.wav\",\"LJ017-0256.wav\",\"LJ017-0257.wav\",\"LJ017-0258.wav\",\"LJ017-0259.wav\",\"LJ017-0260.wav\",\"LJ017-0261.wav\",\"LJ017-0262.wav\",\"LJ017-0263.wav\",\"LJ017-0264.wav\",\"LJ017-0265.wav\",\"LJ017-0266.wav\",\"LJ017-0267.wav\",\"LJ017-0268.wav\",\"LJ017-0269.wav\",\"LJ017-0270.wav\",\"LJ017-0271.wav\",\"LJ017-0272.wav\",\"LJ017-0273.wav\",\"LJ017-0274.wav\",\"LJ017-0276.wav\",\"LJ017-0277.wav\",\"LJ017-0278.wav\",\"LJ017-0280.wav\",\"LJ017-0281.wav\",\"LJ017-0282.wav\",\"LJ017-0283.wav\",\"LJ017-0284.wav\",\"LJ018-0001.wav\",\"LJ018-0002.wav\",\"LJ018-0003.wav\",\"LJ018-0004.wav\",\"LJ018-0005.wav\",\"LJ018-0006.wav\",\"LJ018-0007.wav\",\"LJ018-0008.wav\",\"LJ018-0009.wav\",\"LJ018-0010.wav\",\"LJ018-0011.wav\",\"LJ018-0012.wav\",\"LJ018-0013.wav\",\"LJ018-0014.wav\",\"LJ018-0015.wav\",\"LJ018-0016.wav\",\"LJ018-0017.wav\",\"LJ018-0018.wav\",\"LJ018-0019.wav\",\"LJ018-0020.wav\",\"LJ018-0021.wav\",\"LJ018-0022.wav\",\"LJ018-0023.wav\",\"LJ018-0024.wav\",\"LJ018-0025.wav\",\"LJ018-0026.wav\",\"LJ018-0027.wav\",\"LJ018-0028.wav\",\"LJ018-0029.wav\",\"LJ018-0030.wav\",\"LJ018-0031.wav\",\"LJ018-0032.wav\",\"LJ018-0033.wav\",\"LJ018-0034.wav\",\"LJ018-0035.wav\",\"LJ018-0036.wav\",\"LJ018-0037.wav\",\"LJ018-0038.wav\",\"LJ018-0039.wav\",\"LJ018-0040.wav\",\"LJ018-0041.wav\",\"LJ018-0042.wav\",\"LJ018-0043.wav\",\"LJ018-0044.wav\",\"LJ018-0045.wav\",\"LJ018-0046.wav\",\"LJ018-0047.wav\",\"LJ018-0048.wav\",\"LJ018-0049.wav\",\"LJ018-0050.wav\",\"LJ018-0051.wav\",\"LJ018-0052.wav\",\"LJ018-0053.wav\",\"LJ018-0054.wav\",\"LJ018-0055.wav\",\"LJ018-0056.wav\",\"LJ018-0057.wav\",\"LJ018-0058.wav\",\"LJ018-0059.wav\",\"LJ018-0060.wav\",\"LJ018-0061.wav\",\"LJ018-0062.wav\",\"LJ018-0063.wav\",\"LJ018-0064.wav\",\"LJ018-0065.wav\",\"LJ018-0066.wav\",\"LJ018-0067.wav\",\"LJ018-0068.wav\",\"LJ018-0069.wav\",\"LJ018-0070.wav\",\"LJ018-0071.wav\",\"LJ018-0072.wav\",\"LJ018-0073.wav\",\"LJ018-0074.wav\",\"LJ018-0075.wav\",\"LJ018-0076.wav\",\"LJ018-0077.wav\",\"LJ018-0078.wav\",\"LJ018-0079.wav\",\"LJ018-0080.wav\",\"LJ018-0081.wav\",\"LJ018-0082.wav\",\"LJ018-0083.wav\",\"LJ018-0084.wav\",\"LJ018-0085.wav\",\"LJ018-0086.wav\",\"LJ018-0087.wav\",\"LJ018-0088.wav\",\"LJ018-0089.wav\",\"LJ018-0090.wav\",\"LJ018-0091.wav\",\"LJ018-0092.wav\",\"LJ018-0093.wav\",\"LJ018-0094.wav\",\"LJ018-0095.wav\",\"LJ018-0096.wav\",\"LJ018-0097.wav\",\"LJ018-0098.wav\",\"LJ018-0099.wav\",\"LJ018-0100.wav\",\"LJ018-0101.wav\",\"LJ018-0102.wav\",\"LJ018-0103.wav\",\"LJ018-0104.wav\",\"LJ018-0105.wav\",\"LJ018-0106.wav\",\"LJ018-0107.wav\",\"LJ018-0108.wav\",\"LJ018-0109.wav\",\"LJ018-0110.wav\",\"LJ018-0111.wav\",\"LJ018-0112.wav\",\"LJ018-0113.wav\",\"LJ018-0114.wav\",\"LJ018-0115.wav\",\"LJ018-0116.wav\",\"LJ018-0117.wav\",\"LJ018-0118.wav\",\"LJ018-0119.wav\",\"LJ018-0120.wav\",\"LJ018-0121.wav\",\"LJ018-0122.wav\",\"LJ018-0123.wav\",\"LJ018-0124.wav\",\"LJ018-0125.wav\",\"LJ018-0126.wav\",\"LJ018-0127.wav\",\"LJ018-0128.wav\",\"LJ018-0129.wav\",\"LJ018-0130.wav\",\"LJ018-0131.wav\",\"LJ018-0132.wav\",\"LJ018-0133.wav\",\"LJ018-0134.wav\",\"LJ018-0135.wav\",\"LJ018-0136.wav\",\"LJ018-0137.wav\",\"LJ018-0138.wav\",\"LJ018-0139.wav\",\"LJ018-0140.wav\",\"LJ018-0141.wav\",\"LJ018-0142.wav\",\"LJ018-0143.wav\",\"LJ018-0144.wav\",\"LJ018-0145.wav\",\"LJ018-0146.wav\",\"LJ018-0147.wav\",\"LJ018-0148.wav\",\"LJ018-0149.wav\",\"LJ018-0150.wav\",\"LJ018-0151.wav\",\"LJ018-0152.wav\",\"LJ018-0153.wav\",\"LJ018-0154.wav\",\"LJ018-0155.wav\",\"LJ018-0156.wav\",\"LJ018-0157.wav\",\"LJ018-0158.wav\",\"LJ018-0159.wav\",\"LJ018-0160.wav\",\"LJ018-0161.wav\",\"LJ018-0162.wav\",\"LJ018-0163.wav\",\"LJ018-0164.wav\",\"LJ018-0165.wav\",\"LJ018-0166.wav\",\"LJ018-0167.wav\",\"LJ018-0168.wav\",\"LJ018-0169.wav\",\"LJ018-0170.wav\",\"LJ018-0171.wav\",\"LJ018-0172.wav\",\"LJ018-0173.wav\",\"LJ018-0174.wav\",\"LJ018-0175.wav\",\"LJ018-0176.wav\",\"LJ018-0177.wav\",\"LJ018-0178.wav\",\"LJ018-0179.wav\",\"LJ018-0180.wav\",\"LJ018-0181.wav\",\"LJ018-0182.wav\",\"LJ018-0183.wav\",\"LJ018-0184.wav\",\"LJ018-0185.wav\",\"LJ018-0186.wav\",\"LJ018-0187.wav\",\"LJ018-0188.wav\",\"LJ018-0189.wav\",\"LJ018-0190.wav\",\"LJ018-0191.wav\",\"LJ018-0192.wav\",\"LJ018-0193.wav\",\"LJ018-0194.wav\",\"LJ018-0195.wav\",\"LJ018-0196.wav\",\"LJ018-0197.wav\",\"LJ018-0198.wav\",\"LJ018-0199.wav\",\"LJ018-0200.wav\",\"LJ018-0201.wav\",\"LJ018-0202.wav\",\"LJ018-0203.wav\",\"LJ018-0204.wav\",\"LJ018-0205.wav\",\"LJ018-0206.wav\",\"LJ018-0207.wav\",\"LJ018-0208.wav\",\"LJ018-0209.wav\",\"LJ018-0210.wav\",\"LJ018-0211.wav\",\"LJ018-0212.wav\",\"LJ018-0213.wav\",\"LJ018-0214.wav\",\"LJ018-0215.wav\",\"LJ018-0216.wav\",\"LJ018-0217.wav\",\"LJ018-0218.wav\",\"LJ018-0219.wav\",\"LJ018-0220.wav\",\"LJ018-0221.wav\",\"LJ018-0222.wav\",\"LJ018-0223.wav\",\"LJ018-0224.wav\",\"LJ018-0225.wav\",\"LJ018-0226.wav\",\"LJ018-0227.wav\",\"LJ018-0228.wav\",\"LJ018-0229.wav\",\"LJ018-0230.wav\",\"LJ018-0231.wav\",\"LJ018-0232.wav\",\"LJ018-0233.wav\",\"LJ018-0234.wav\",\"LJ018-0235.wav\",\"LJ018-0236.wav\",\"LJ018-0237.wav\",\"LJ018-0238.wav\",\"LJ018-0239.wav\",\"LJ018-0240.wav\",\"LJ018-0241.wav\",\"LJ018-0242.wav\",\"LJ018-0243.wav\",\"LJ018-0244.wav\",\"LJ018-0245.wav\",\"LJ018-0246.wav\",\"LJ018-0247.wav\",\"LJ018-0248.wav\",\"LJ018-0249.wav\",\"LJ018-0250.wav\",\"LJ018-0251.wav\",\"LJ018-0252.wav\",\"LJ018-0253.wav\",\"LJ018-0254.wav\",\"LJ018-0255.wav\",\"LJ018-0256.wav\",\"LJ018-0257.wav\",\"LJ018-0258.wav\",\"LJ018-0259.wav\",\"LJ018-0260.wav\",\"LJ018-0261.wav\",\"LJ018-0262.wav\",\"LJ018-0263.wav\",\"LJ018-0264.wav\",\"LJ018-0265.wav\",\"LJ018-0266.wav\",\"LJ018-0267.wav\",\"LJ018-0268.wav\",\"LJ018-0269.wav\",\"LJ018-0270.wav\",\"LJ018-0271.wav\",\"LJ018-0272.wav\",\"LJ018-0273.wav\",\"LJ018-0274.wav\",\"LJ018-0275.wav\",\"LJ018-0276.wav\",\"LJ018-0277.wav\",\"LJ018-0278.wav\",\"LJ018-0279.wav\",\"LJ018-0280.wav\",\"LJ018-0281.wav\",\"LJ018-0282.wav\",\"LJ018-0283.wav\",\"LJ018-0284.wav\",\"LJ018-0285.wav\",\"LJ018-0286.wav\",\"LJ018-0287.wav\",\"LJ018-0288.wav\",\"LJ018-0289.wav\",\"LJ018-0290.wav\",\"LJ018-0291.wav\",\"LJ018-0292.wav\",\"LJ018-0293.wav\",\"LJ018-0294.wav\",\"LJ018-0295.wav\",\"LJ018-0296.wav\",\"LJ018-0297.wav\",\"LJ018-0298.wav\",\"LJ018-0299.wav\",\"LJ018-0300.wav\",\"LJ018-0301.wav\",\"LJ018-0302.wav\",\"LJ018-0303.wav\",\"LJ018-0304.wav\",\"LJ018-0305.wav\",\"LJ018-0306.wav\",\"LJ018-0307.wav\",\"LJ018-0308.wav\",\"LJ018-0309.wav\",\"LJ018-0310.wav\",\"LJ018-0311.wav\",\"LJ018-0312.wav\",\"LJ018-0313.wav\",\"LJ018-0314.wav\",\"LJ018-0315.wav\",\"LJ018-0316.wav\",\"LJ018-0317.wav\",\"LJ018-0318.wav\",\"LJ018-0319.wav\",\"LJ018-0320.wav\",\"LJ018-0321.wav\",\"LJ018-0322.wav\",\"LJ018-0323.wav\",\"LJ018-0324.wav\",\"LJ018-0325.wav\",\"LJ018-0326.wav\",\"LJ018-0327.wav\",\"LJ018-0328.wav\",\"LJ018-0329.wav\",\"LJ018-0330.wav\",\"LJ018-0331.wav\",\"LJ018-0332.wav\",\"LJ018-0333.wav\",\"LJ018-0334.wav\",\"LJ018-0335.wav\",\"LJ018-0336.wav\",\"LJ018-0337.wav\",\"LJ018-0338.wav\",\"LJ018-0339.wav\",\"LJ018-0340.wav\",\"LJ018-0341.wav\",\"LJ018-0342.wav\",\"LJ018-0343.wav\",\"LJ018-0344.wav\",\"LJ018-0345.wav\",\"LJ018-0346.wav\",\"LJ018-0347.wav\",\"LJ018-0348.wav\",\"LJ018-0349.wav\",\"LJ018-0350.wav\",\"LJ018-0351.wav\",\"LJ018-0352.wav\",\"LJ018-0353.wav\",\"LJ018-0354.wav\",\"LJ018-0355.wav\",\"LJ018-0356.wav\",\"LJ018-0357.wav\",\"LJ018-0358.wav\",\"LJ018-0359.wav\",\"LJ018-0360.wav\",\"LJ018-0361.wav\",\"LJ018-0362.wav\",\"LJ018-0363.wav\",\"LJ018-0364.wav\",\"LJ018-0365.wav\",\"LJ018-0366.wav\",\"LJ018-0367.wav\",\"LJ018-0368.wav\",\"LJ018-0369.wav\",\"LJ018-0370.wav\",\"LJ018-0371.wav\",\"LJ018-0372.wav\",\"LJ018-0373.wav\",\"LJ018-0374.wav\",\"LJ018-0375.wav\",\"LJ018-0376.wav\",\"LJ018-0377.wav\",\"LJ018-0378.wav\",\"LJ018-0379.wav\",\"LJ018-0380.wav\",\"LJ018-0381.wav\",\"LJ018-0382.wav\",\"LJ018-0383.wav\",\"LJ018-0384.wav\",\"LJ018-0385.wav\",\"LJ018-0386.wav\",\"LJ018-0387.wav\",\"LJ018-0388.wav\",\"LJ018-0389.wav\",\"LJ018-0390.wav\",\"LJ018-0391.wav\",\"LJ018-0392.wav\",\"LJ018-0393.wav\",\"LJ018-0394.wav\",\"LJ018-0395.wav\",\"LJ018-0396.wav\",\"LJ018-0397.wav\",\"LJ018-0398.wav\",\"LJ019-0001.wav\",\"LJ019-0002.wav\",\"LJ019-0003.wav\",\"LJ019-0004.wav\",\"LJ019-0005.wav\",\"LJ019-0006.wav\",\"LJ019-0007.wav\",\"LJ019-0008.wav\",\"LJ019-0009.wav\",\"LJ019-0010.wav\",\"LJ019-0011.wav\",\"LJ019-0012.wav\",\"LJ019-0013.wav\",\"LJ019-0014.wav\",\"LJ019-0015.wav\",\"LJ019-0016.wav\",\"LJ019-0017.wav\",\"LJ019-0018.wav\",\"LJ019-0019.wav\",\"LJ019-0020.wav\",\"LJ019-0021.wav\",\"LJ019-0022.wav\",\"LJ019-0023.wav\",\"LJ019-0024.wav\",\"LJ019-0025.wav\",\"LJ019-0026.wav\",\"LJ019-0027.wav\",\"LJ019-0028.wav\",\"LJ019-0029.wav\",\"LJ019-0030.wav\",\"LJ019-0031.wav\",\"LJ019-0032.wav\",\"LJ019-0033.wav\",\"LJ019-0034.wav\",\"LJ019-0035.wav\",\"LJ019-0036.wav\",\"LJ019-0037.wav\",\"LJ019-0038.wav\",\"LJ019-0039.wav\",\"LJ019-0040.wav\",\"LJ019-0041.wav\",\"LJ019-0042.wav\",\"LJ019-0043.wav\",\"LJ019-0044.wav\",\"LJ019-0045.wav\",\"LJ019-0046.wav\",\"LJ019-0047.wav\",\"LJ019-0048.wav\",\"LJ019-0049.wav\",\"LJ019-0050.wav\",\"LJ019-0051.wav\",\"LJ019-0052.wav\",\"LJ019-0053.wav\",\"LJ019-0054.wav\",\"LJ019-0055.wav\",\"LJ019-0056.wav\",\"LJ019-0057.wav\",\"LJ019-0058.wav\",\"LJ019-0059.wav\",\"LJ019-0060.wav\",\"LJ019-0061.wav\",\"LJ019-0062.wav\",\"LJ019-0063.wav\",\"LJ019-0064.wav\",\"LJ019-0065.wav\",\"LJ019-0066.wav\",\"LJ019-0067.wav\",\"LJ019-0068.wav\",\"LJ019-0069.wav\",\"LJ019-0070.wav\",\"LJ019-0071.wav\",\"LJ019-0072.wav\",\"LJ019-0073.wav\",\"LJ019-0074.wav\",\"LJ019-0075.wav\",\"LJ019-0076.wav\",\"LJ019-0077.wav\",\"LJ019-0078.wav\",\"LJ019-0079.wav\",\"LJ019-0080.wav\",\"LJ019-0081.wav\",\"LJ019-0082.wav\",\"LJ019-0083.wav\",\"LJ019-0084.wav\",\"LJ019-0085.wav\",\"LJ019-0086.wav\",\"LJ019-0087.wav\",\"LJ019-0088.wav\",\"LJ019-0089.wav\",\"LJ019-0090.wav\",\"LJ019-0091.wav\",\"LJ019-0092.wav\",\"LJ019-0093.wav\",\"LJ019-0094.wav\",\"LJ019-0095.wav\",\"LJ019-0096.wav\",\"LJ019-0097.wav\",\"LJ019-0098.wav\",\"LJ019-0099.wav\",\"LJ019-0100.wav\",\"LJ019-0101.wav\",\"LJ019-0102.wav\",\"LJ019-0103.wav\",\"LJ019-0104.wav\",\"LJ019-0105.wav\",\"LJ019-0106.wav\",\"LJ019-0107.wav\",\"LJ019-0108.wav\",\"LJ019-0109.wav\",\"LJ019-0110.wav\",\"LJ019-0111.wav\",\"LJ019-0112.wav\",\"LJ019-0113.wav\",\"LJ019-0114.wav\",\"LJ019-0115.wav\",\"LJ019-0116.wav\",\"LJ019-0117.wav\",\"LJ019-0118.wav\",\"LJ019-0119.wav\",\"LJ019-0120.wav\",\"LJ019-0121.wav\",\"LJ019-0122.wav\",\"LJ019-0123.wav\",\"LJ019-0124.wav\",\"LJ019-0125.wav\",\"LJ019-0126.wav\",\"LJ019-0127.wav\",\"LJ019-0128.wav\",\"LJ019-0129.wav\",\"LJ019-0130.wav\",\"LJ019-0131.wav\",\"LJ019-0132.wav\",\"LJ019-0133.wav\",\"LJ019-0134.wav\",\"LJ019-0135.wav\",\"LJ019-0136.wav\",\"LJ019-0137.wav\",\"LJ019-0138.wav\",\"LJ019-0139.wav\",\"LJ019-0140.wav\",\"LJ019-0141.wav\",\"LJ019-0142.wav\",\"LJ019-0143.wav\",\"LJ019-0144.wav\",\"LJ019-0145.wav\",\"LJ019-0146.wav\",\"LJ019-0147.wav\",\"LJ019-0148.wav\",\"LJ019-0149.wav\",\"LJ019-0150.wav\",\"LJ019-0151.wav\",\"LJ019-0152.wav\",\"LJ019-0153.wav\",\"LJ019-0154.wav\",\"LJ019-0155.wav\",\"LJ019-0156.wav\",\"LJ019-0157.wav\",\"LJ019-0158.wav\",\"LJ019-0159.wav\",\"LJ019-0160.wav\",\"LJ019-0161.wav\",\"LJ019-0162.wav\",\"LJ019-0163.wav\",\"LJ019-0164.wav\",\"LJ019-0165.wav\",\"LJ019-0166.wav\",\"LJ019-0167.wav\",\"LJ019-0168.wav\",\"LJ019-0169.wav\",\"LJ019-0170.wav\",\"LJ019-0171.wav\",\"LJ019-0172.wav\",\"LJ019-0173.wav\",\"LJ019-0174.wav\",\"LJ019-0175.wav\",\"LJ019-0176.wav\",\"LJ019-0177.wav\",\"LJ019-0178.wav\",\"LJ019-0179.wav\",\"LJ019-0180.wav\",\"LJ019-0181.wav\",\"LJ019-0182.wav\",\"LJ019-0183.wav\",\"LJ019-0184.wav\",\"LJ019-0185.wav\",\"LJ019-0186.wav\",\"LJ019-0187.wav\",\"LJ019-0188.wav\",\"LJ019-0189.wav\",\"LJ019-0190.wav\",\"LJ019-0191.wav\",\"LJ019-0192.wav\",\"LJ019-0193.wav\",\"LJ019-0194.wav\",\"LJ019-0195.wav\",\"LJ019-0196.wav\",\"LJ019-0197.wav\",\"LJ019-0198.wav\",\"LJ019-0199.wav\",\"LJ019-0200.wav\",\"LJ019-0201.wav\",\"LJ019-0202.wav\",\"LJ019-0203.wav\",\"LJ019-0204.wav\",\"LJ019-0205.wav\",\"LJ019-0206.wav\",\"LJ019-0207.wav\",\"LJ019-0208.wav\",\"LJ019-0209.wav\",\"LJ019-0210.wav\",\"LJ019-0211.wav\",\"LJ019-0212.wav\",\"LJ019-0213.wav\",\"LJ019-0214.wav\",\"LJ019-0215.wav\",\"LJ019-0216.wav\",\"LJ019-0217.wav\",\"LJ019-0218.wav\",\"LJ019-0219.wav\",\"LJ019-0220.wav\",\"LJ019-0221.wav\",\"LJ019-0222.wav\",\"LJ019-0223.wav\",\"LJ019-0224.wav\",\"LJ019-0225.wav\",\"LJ019-0226.wav\",\"LJ019-0227.wav\",\"LJ019-0228.wav\",\"LJ019-0229.wav\",\"LJ019-0230.wav\",\"LJ019-0231.wav\",\"LJ019-0232.wav\",\"LJ019-0233.wav\",\"LJ019-0234.wav\",\"LJ019-0235.wav\",\"LJ019-0236.wav\",\"LJ019-0237.wav\",\"LJ019-0238.wav\",\"LJ019-0239.wav\",\"LJ019-0240.wav\",\"LJ019-0241.wav\",\"LJ019-0242.wav\",\"LJ019-0243.wav\",\"LJ019-0244.wav\",\"LJ019-0245.wav\",\"LJ019-0246.wav\",\"LJ019-0247.wav\",\"LJ019-0248.wav\",\"LJ019-0249.wav\",\"LJ019-0250.wav\",\"LJ019-0251.wav\",\"LJ019-0252.wav\",\"LJ019-0253.wav\",\"LJ019-0254.wav\",\"LJ019-0255.wav\",\"LJ019-0256.wav\",\"LJ019-0257.wav\",\"LJ019-0258.wav\",\"LJ019-0259.wav\",\"LJ019-0260.wav\",\"LJ019-0261.wav\",\"LJ019-0262.wav\",\"LJ019-0263.wav\",\"LJ019-0264.wav\",\"LJ019-0265.wav\",\"LJ019-0266.wav\",\"LJ019-0267.wav\",\"LJ019-0268.wav\",\"LJ019-0269.wav\",\"LJ019-0270.wav\",\"LJ019-0271.wav\",\"LJ019-0272.wav\",\"LJ019-0273.wav\",\"LJ019-0274.wav\",\"LJ019-0275.wav\",\"LJ019-0276.wav\",\"LJ019-0277.wav\",\"LJ019-0278.wav\",\"LJ019-0279.wav\",\"LJ019-0280.wav\",\"LJ019-0281.wav\",\"LJ019-0282.wav\",\"LJ019-0283.wav\",\"LJ019-0284.wav\",\"LJ019-0285.wav\",\"LJ019-0286.wav\",\"LJ019-0287.wav\",\"LJ019-0288.wav\",\"LJ019-0289.wav\",\"LJ019-0290.wav\",\"LJ019-0291.wav\",\"LJ019-0292.wav\",\"LJ019-0293.wav\",\"LJ019-0294.wav\",\"LJ019-0295.wav\",\"LJ019-0296.wav\",\"LJ019-0297.wav\",\"LJ019-0298.wav\",\"LJ019-0299.wav\",\"LJ019-0300.wav\",\"LJ019-0301.wav\",\"LJ019-0302.wav\",\"LJ019-0303.wav\",\"LJ019-0304.wav\",\"LJ019-0305.wav\",\"LJ019-0306.wav\",\"LJ019-0307.wav\",\"LJ019-0308.wav\",\"LJ019-0309.wav\",\"LJ019-0310.wav\",\"LJ019-0311.wav\",\"LJ019-0312.wav\",\"LJ019-0313.wav\",\"LJ019-0314.wav\",\"LJ019-0315.wav\",\"LJ019-0316.wav\",\"LJ019-0317.wav\",\"LJ019-0318.wav\",\"LJ019-0319.wav\",\"LJ019-0320.wav\",\"LJ019-0321.wav\",\"LJ019-0322.wav\",\"LJ019-0323.wav\",\"LJ019-0324.wav\",\"LJ019-0325.wav\",\"LJ019-0326.wav\",\"LJ019-0327.wav\",\"LJ019-0328.wav\",\"LJ019-0329.wav\",\"LJ019-0330.wav\",\"LJ019-0331.wav\",\"LJ019-0332.wav\",\"LJ019-0333.wav\",\"LJ019-0334.wav\",\"LJ019-0335.wav\",\"LJ019-0336.wav\",\"LJ019-0337.wav\",\"LJ019-0338.wav\",\"LJ019-0339.wav\",\"LJ019-0340.wav\",\"LJ019-0341.wav\",\"LJ019-0342.wav\",\"LJ019-0343.wav\",\"LJ019-0344.wav\",\"LJ019-0345.wav\",\"LJ019-0346.wav\",\"LJ019-0347.wav\",\"LJ019-0348.wav\",\"LJ019-0349.wav\",\"LJ019-0350.wav\",\"LJ019-0351.wav\",\"LJ019-0352.wav\",\"LJ019-0353.wav\",\"LJ019-0354.wav\",\"LJ019-0355.wav\",\"LJ019-0356.wav\",\"LJ019-0357.wav\",\"LJ019-0358.wav\",\"LJ019-0359.wav\",\"LJ019-0360.wav\",\"LJ019-0361.wav\",\"LJ019-0362.wav\",\"LJ019-0363.wav\",\"LJ019-0364.wav\",\"LJ019-0365.wav\",\"LJ019-0366.wav\",\"LJ019-0367.wav\",\"LJ019-0368.wav\",\"LJ019-0369.wav\",\"LJ019-0370.wav\",\"LJ019-0371.wav\",\"LJ019-0372.wav\",\"LJ019-0373.wav\",\"LJ019-0374.wav\",\"LJ019-0375.wav\",\"LJ019-0376.wav\",\"LJ019-0377.wav\",\"LJ019-0378.wav\",\"LJ019-0379.wav\",\"LJ019-0380.wav\",\"LJ019-0381.wav\",\"LJ019-0382.wav\",\"LJ019-0383.wav\",\"LJ019-0384.wav\",\"LJ019-0385.wav\",\"LJ019-0386.wav\",\"LJ019-0387.wav\",\"LJ019-0388.wav\",\"LJ019-0389.wav\",\"LJ019-0390.wav\",\"LJ019-0391.wav\",\"LJ019-0392.wav\",\"LJ019-0393.wav\",\"LJ019-0394.wav\",\"LJ019-0395.wav\",\"LJ019-0396.wav\",\"LJ019-0397.wav\",\"LJ019-0398.wav\",\"LJ019-0399.wav\",\"LJ020-0001.wav\",\"LJ020-0002.wav\",\"LJ020-0003.wav\",\"LJ020-0004.wav\",\"LJ020-0005.wav\",\"LJ020-0006.wav\",\"LJ020-0007.wav\",\"LJ020-0008.wav\",\"LJ020-0009.wav\",\"LJ020-0010.wav\",\"LJ020-0011.wav\",\"LJ020-0012.wav\",\"LJ020-0013.wav\",\"LJ020-0014.wav\",\"LJ020-0015.wav\",\"LJ020-0016.wav\",\"LJ020-0017.wav\",\"LJ020-0018.wav\",\"LJ020-0019.wav\",\"LJ020-0020.wav\",\"LJ020-0021.wav\",\"LJ020-0022.wav\",\"LJ020-0023.wav\",\"LJ020-0024.wav\",\"LJ020-0025.wav\",\"LJ020-0026.wav\",\"LJ020-0027.wav\",\"LJ020-0028.wav\",\"LJ020-0029.wav\",\"LJ020-0030.wav\",\"LJ020-0031.wav\",\"LJ020-0032.wav\",\"LJ020-0033.wav\",\"LJ020-0034.wav\",\"LJ020-0035.wav\",\"LJ020-0036.wav\",\"LJ020-0037.wav\",\"LJ020-0038.wav\",\"LJ020-0039.wav\",\"LJ020-0040.wav\",\"LJ020-0041.wav\",\"LJ020-0042.wav\",\"LJ020-0043.wav\",\"LJ020-0044.wav\",\"LJ020-0045.wav\",\"LJ020-0046.wav\",\"LJ020-0047.wav\",\"LJ020-0048.wav\",\"LJ020-0049.wav\",\"LJ020-0050.wav\",\"LJ020-0051.wav\",\"LJ020-0052.wav\",\"LJ020-0053.wav\",\"LJ020-0054.wav\",\"LJ020-0055.wav\",\"LJ020-0056.wav\",\"LJ020-0057.wav\",\"LJ020-0058.wav\",\"LJ020-0059.wav\",\"LJ020-0060.wav\",\"LJ020-0061.wav\",\"LJ020-0062.wav\",\"LJ020-0063.wav\",\"LJ020-0064.wav\",\"LJ020-0065.wav\",\"LJ020-0066.wav\",\"LJ020-0067.wav\",\"LJ020-0068.wav\",\"LJ020-0069.wav\",\"LJ020-0070.wav\",\"LJ020-0071.wav\",\"LJ020-0072.wav\",\"LJ020-0073.wav\",\"LJ020-0074.wav\",\"LJ020-0075.wav\",\"LJ020-0076.wav\",\"LJ020-0077.wav\",\"LJ020-0078.wav\",\"LJ020-0079.wav\",\"LJ020-0080.wav\",\"LJ020-0081.wav\",\"LJ020-0082.wav\",\"LJ020-0083.wav\",\"LJ020-0084.wav\",\"LJ020-0085.wav\",\"LJ020-0086.wav\",\"LJ020-0087.wav\",\"LJ020-0088.wav\",\"LJ020-0089.wav\",\"LJ020-0090.wav\",\"LJ020-0091.wav\",\"LJ020-0092.wav\",\"LJ020-0093.wav\",\"LJ020-0094.wav\",\"LJ020-0095.wav\",\"LJ020-0096.wav\",\"LJ020-0097.wav\",\"LJ020-0098.wav\",\"LJ020-0099.wav\",\"LJ020-0100.wav\",\"LJ020-0101.wav\",\"LJ020-0102.wav\",\"LJ020-0103.wav\",\"LJ020-0104.wav\",\"LJ020-0105.wav\",\"LJ020-0106.wav\",\"LJ020-0107.wav\",\"LJ020-0108.wav\",\"LJ021-0001.wav\",\"LJ021-0002.wav\",\"LJ021-0003.wav\",\"LJ021-0004.wav\",\"LJ021-0005.wav\",\"LJ021-0006.wav\",\"LJ021-0007.wav\",\"LJ021-0008.wav\",\"LJ021-0009.wav\",\"LJ021-0010.wav\",\"LJ021-0011.wav\",\"LJ021-0012.wav\",\"LJ021-0014.wav\",\"LJ021-0015.wav\",\"LJ021-0016.wav\",\"LJ021-0017.wav\",\"LJ021-0018.wav\",\"LJ021-0019.wav\",\"LJ021-0020.wav\",\"LJ021-0021.wav\",\"LJ021-0022.wav\",\"LJ021-0023.wav\",\"LJ021-0024.wav\",\"LJ021-0025.wav\",\"LJ021-0026.wav\",\"LJ021-0027.wav\",\"LJ021-0028.wav\",\"LJ021-0029.wav\",\"LJ021-0030.wav\",\"LJ021-0031.wav\",\"LJ021-0032.wav\",\"LJ021-0033.wav\",\"LJ021-0034.wav\",\"LJ021-0035.wav\",\"LJ021-0036.wav\",\"LJ021-0037.wav\",\"LJ021-0038.wav\",\"LJ021-0039.wav\",\"LJ021-0040.wav\",\"LJ021-0041.wav\",\"LJ021-0042.wav\",\"LJ021-0043.wav\",\"LJ021-0044.wav\",\"LJ021-0045.wav\",\"LJ021-0046.wav\",\"LJ021-0047.wav\",\"LJ021-0048.wav\",\"LJ021-0049.wav\",\"LJ021-0050.wav\",\"LJ021-0051.wav\",\"LJ021-0052.wav\",\"LJ021-0053.wav\",\"LJ021-0054.wav\",\"LJ021-0055.wav\",\"LJ021-0056.wav\",\"LJ021-0057.wav\",\"LJ021-0058.wav\",\"LJ021-0059.wav\",\"LJ021-0060.wav\",\"LJ021-0061.wav\",\"LJ021-0062.wav\",\"LJ021-0063.wav\",\"LJ021-0064.wav\",\"LJ021-0065.wav\",\"LJ021-0066.wav\",\"LJ021-0067.wav\",\"LJ021-0068.wav\",\"LJ021-0069.wav\",\"LJ021-0070.wav\",\"LJ021-0071.wav\",\"LJ021-0072.wav\",\"LJ021-0073.wav\",\"LJ021-0074.wav\",\"LJ021-0075.wav\",\"LJ021-0076.wav\",\"LJ021-0077.wav\",\"LJ021-0078.wav\",\"LJ021-0079.wav\",\"LJ021-0080.wav\",\"LJ021-0081.wav\",\"LJ021-0082.wav\",\"LJ021-0083.wav\",\"LJ021-0084.wav\",\"LJ021-0085.wav\",\"LJ021-0086.wav\",\"LJ021-0087.wav\",\"LJ021-0088.wav\",\"LJ021-0089.wav\",\"LJ021-0090.wav\",\"LJ021-0091.wav\",\"LJ021-0092.wav\",\"LJ021-0093.wav\",\"LJ021-0094.wav\",\"LJ021-0095.wav\",\"LJ021-0096.wav\",\"LJ021-0097.wav\",\"LJ021-0098.wav\",\"LJ021-0099.wav\",\"LJ021-0100.wav\",\"LJ021-0101.wav\",\"LJ021-0102.wav\",\"LJ021-0103.wav\",\"LJ021-0104.wav\",\"LJ021-0105.wav\",\"LJ021-0106.wav\",\"LJ021-0107.wav\",\"LJ021-0108.wav\",\"LJ021-0109.wav\",\"LJ021-0110.wav\",\"LJ021-0111.wav\",\"LJ021-0112.wav\",\"LJ021-0113.wav\",\"LJ021-0114.wav\",\"LJ021-0115.wav\",\"LJ021-0116.wav\",\"LJ021-0117.wav\",\"LJ021-0118.wav\",\"LJ021-0119.wav\",\"LJ021-0120.wav\",\"LJ021-0121.wav\",\"LJ021-0122.wav\",\"LJ021-0123.wav\",\"LJ021-0124.wav\",\"LJ021-0125.wav\",\"LJ021-0126.wav\",\"LJ021-0127.wav\",\"LJ021-0128.wav\",\"LJ021-0129.wav\",\"LJ021-0130.wav\",\"LJ021-0131.wav\",\"LJ021-0132.wav\",\"LJ021-0133.wav\",\"LJ021-0134.wav\",\"LJ021-0135.wav\",\"LJ021-0136.wav\",\"LJ021-0137.wav\",\"LJ021-0138.wav\",\"LJ021-0139.wav\",\"LJ021-0140.wav\",\"LJ021-0141.wav\",\"LJ021-0142.wav\",\"LJ021-0143.wav\",\"LJ021-0144.wav\",\"LJ021-0145.wav\",\"LJ021-0146.wav\",\"LJ021-0147.wav\",\"LJ021-0148.wav\",\"LJ021-0149.wav\",\"LJ021-0150.wav\",\"LJ021-0151.wav\",\"LJ021-0152.wav\",\"LJ021-0153.wav\",\"LJ021-0154.wav\",\"LJ021-0155.wav\",\"LJ021-0156.wav\",\"LJ021-0157.wav\",\"LJ021-0158.wav\",\"LJ021-0159.wav\",\"LJ021-0160.wav\",\"LJ021-0161.wav\",\"LJ021-0162.wav\",\"LJ021-0163.wav\",\"LJ021-0164.wav\",\"LJ021-0165.wav\",\"LJ021-0166.wav\",\"LJ021-0167.wav\",\"LJ021-0168.wav\",\"LJ021-0169.wav\",\"LJ021-0170.wav\",\"LJ021-0171.wav\",\"LJ021-0172.wav\",\"LJ021-0173.wav\",\"LJ021-0174.wav\",\"LJ021-0175.wav\",\"LJ021-0176.wav\",\"LJ021-0177.wav\",\"LJ021-0178.wav\",\"LJ021-0179.wav\",\"LJ021-0180.wav\",\"LJ021-0181.wav\",\"LJ021-0182.wav\",\"LJ021-0183.wav\",\"LJ021-0184.wav\",\"LJ021-0185.wav\",\"LJ021-0186.wav\",\"LJ021-0187.wav\",\"LJ021-0188.wav\",\"LJ021-0189.wav\",\"LJ021-0190.wav\",\"LJ021-0191.wav\",\"LJ021-0192.wav\",\"LJ021-0193.wav\",\"LJ021-0194.wav\",\"LJ021-0195.wav\",\"LJ021-0196.wav\",\"LJ021-0197.wav\",\"LJ021-0198.wav\",\"LJ021-0199.wav\",\"LJ021-0200.wav\",\"LJ021-0201.wav\",\"LJ021-0202.wav\",\"LJ021-0203.wav\",\"LJ021-0204.wav\",\"LJ021-0205.wav\",\"LJ021-0206.wav\",\"LJ021-0207.wav\",\"LJ021-0208.wav\",\"LJ021-0209.wav\",\"LJ021-0210.wav\",\"LJ022-0001.wav\",\"LJ022-0002.wav\",\"LJ022-0003.wav\",\"LJ022-0004.wav\",\"LJ022-0005.wav\",\"LJ022-0006.wav\",\"LJ022-0007.wav\",\"LJ022-0008.wav\",\"LJ022-0009.wav\",\"LJ022-0010.wav\",\"LJ022-0011.wav\",\"LJ022-0012.wav\",\"LJ022-0013.wav\",\"LJ022-0014.wav\",\"LJ022-0015.wav\",\"LJ022-0016.wav\",\"LJ022-0017.wav\",\"LJ022-0018.wav\",\"LJ022-0019.wav\",\"LJ022-0020.wav\",\"LJ022-0021.wav\",\"LJ022-0022.wav\",\"LJ022-0023.wav\",\"LJ022-0024.wav\",\"LJ022-0025.wav\",\"LJ022-0026.wav\",\"LJ022-0027.wav\",\"LJ022-0028.wav\",\"LJ022-0029.wav\",\"LJ022-0030.wav\",\"LJ022-0031.wav\",\"LJ022-0032.wav\",\"LJ022-0033.wav\",\"LJ022-0034.wav\",\"LJ022-0035.wav\",\"LJ022-0036.wav\",\"LJ022-0037.wav\",\"LJ022-0038.wav\",\"LJ022-0039.wav\",\"LJ022-0040.wav\",\"LJ022-0041.wav\",\"LJ022-0042.wav\",\"LJ022-0043.wav\",\"LJ022-0044.wav\",\"LJ022-0045.wav\",\"LJ022-0046.wav\",\"LJ022-0047.wav\",\"LJ022-0048.wav\",\"LJ022-0049.wav\",\"LJ022-0050.wav\",\"LJ022-0051.wav\",\"LJ022-0052.wav\",\"LJ022-0053.wav\",\"LJ022-0054.wav\",\"LJ022-0055.wav\",\"LJ022-0056.wav\",\"LJ022-0057.wav\",\"LJ022-0058.wav\",\"LJ022-0059.wav\",\"LJ022-0060.wav\",\"LJ022-0061.wav\",\"LJ022-0062.wav\",\"LJ022-0063.wav\",\"LJ022-0064.wav\",\"LJ022-0065.wav\",\"LJ022-0066.wav\",\"LJ022-0067.wav\",\"LJ022-0068.wav\",\"LJ022-0069.wav\",\"LJ022-0070.wav\",\"LJ022-0071.wav\",\"LJ022-0072.wav\",\"LJ022-0073.wav\",\"LJ022-0074.wav\",\"LJ022-0075.wav\",\"LJ022-0076.wav\",\"LJ022-0077.wav\",\"LJ022-0078.wav\",\"LJ022-0079.wav\",\"LJ022-0080.wav\",\"LJ022-0081.wav\",\"LJ022-0082.wav\",\"LJ022-0083.wav\",\"LJ022-0084.wav\",\"LJ022-0085.wav\",\"LJ022-0086.wav\",\"LJ022-0087.wav\",\"LJ022-0088.wav\",\"LJ022-0089.wav\",\"LJ022-0090.wav\",\"LJ022-0091.wav\",\"LJ022-0092.wav\",\"LJ022-0093.wav\",\"LJ022-0094.wav\",\"LJ022-0095.wav\",\"LJ022-0096.wav\",\"LJ022-0097.wav\",\"LJ022-0098.wav\",\"LJ022-0099.wav\",\"LJ022-0100.wav\",\"LJ022-0101.wav\",\"LJ022-0102.wav\",\"LJ022-0103.wav\",\"LJ022-0104.wav\",\"LJ022-0105.wav\",\"LJ022-0106.wav\",\"LJ022-0107.wav\",\"LJ022-0108.wav\",\"LJ022-0109.wav\",\"LJ022-0110.wav\",\"LJ022-0111.wav\",\"LJ022-0112.wav\",\"LJ022-0113.wav\",\"LJ022-0114.wav\",\"LJ022-0115.wav\",\"LJ022-0116.wav\",\"LJ022-0117.wav\",\"LJ022-0118.wav\",\"LJ022-0119.wav\",\"LJ022-0120.wav\",\"LJ022-0121.wav\",\"LJ022-0122.wav\",\"LJ022-0123.wav\",\"LJ022-0124.wav\",\"LJ022-0125.wav\",\"LJ022-0126.wav\",\"LJ022-0127.wav\",\"LJ022-0128.wav\",\"LJ022-0129.wav\",\"LJ022-0130.wav\",\"LJ022-0131.wav\",\"LJ022-0132.wav\",\"LJ022-0133.wav\",\"LJ022-0134.wav\",\"LJ022-0135.wav\",\"LJ022-0136.wav\",\"LJ022-0137.wav\",\"LJ022-0138.wav\",\"LJ022-0139.wav\",\"LJ022-0140.wav\",\"LJ022-0141.wav\",\"LJ022-0142.wav\",\"LJ022-0143.wav\",\"LJ022-0144.wav\",\"LJ022-0145.wav\",\"LJ022-0146.wav\",\"LJ022-0147.wav\",\"LJ022-0148.wav\",\"LJ022-0149.wav\",\"LJ022-0150.wav\",\"LJ022-0151.wav\",\"LJ022-0152.wav\",\"LJ022-0153.wav\",\"LJ022-0154.wav\",\"LJ022-0155.wav\",\"LJ022-0156.wav\",\"LJ022-0157.wav\",\"LJ022-0158.wav\",\"LJ022-0159.wav\",\"LJ022-0160.wav\",\"LJ022-0161.wav\",\"LJ022-0162.wav\",\"LJ022-0163.wav\",\"LJ022-0164.wav\",\"LJ022-0165.wav\",\"LJ022-0166.wav\",\"LJ022-0167.wav\",\"LJ022-0168.wav\",\"LJ022-0169.wav\",\"LJ022-0170.wav\",\"LJ022-0171.wav\",\"LJ022-0172.wav\",\"LJ022-0173.wav\",\"LJ022-0174.wav\",\"LJ022-0175.wav\",\"LJ022-0176.wav\",\"LJ022-0177.wav\",\"LJ022-0178.wav\",\"LJ022-0179.wav\",\"LJ022-0180.wav\",\"LJ022-0181.wav\",\"LJ022-0182.wav\",\"LJ022-0183.wav\",\"LJ022-0184.wav\",\"LJ022-0185.wav\",\"LJ022-0186.wav\",\"LJ022-0187.wav\",\"LJ022-0188.wav\",\"LJ022-0189.wav\",\"LJ022-0190.wav\",\"LJ022-0191.wav\",\"LJ022-0192.wav\",\"LJ022-0193.wav\",\"LJ022-0194.wav\",\"LJ022-0195.wav\",\"LJ022-0196.wav\",\"LJ022-0197.wav\",\"LJ022-0198.wav\",\"LJ022-0199.wav\",\"LJ022-0200.wav\",\"LJ022-0201.wav\",\"LJ022-0202.wav\",\"LJ022-0203.wav\",\"LJ023-0001.wav\",\"LJ023-0002.wav\",\"LJ023-0003.wav\",\"LJ023-0004.wav\",\"LJ023-0005.wav\",\"LJ023-0006.wav\",\"LJ023-0007.wav\",\"LJ023-0008.wav\",\"LJ023-0009.wav\",\"LJ023-0010.wav\",\"LJ023-0011.wav\",\"LJ023-0012.wav\",\"LJ023-0013.wav\",\"LJ023-0014.wav\",\"LJ023-0015.wav\",\"LJ023-0016.wav\",\"LJ023-0017.wav\",\"LJ023-0018.wav\",\"LJ023-0019.wav\",\"LJ023-0020.wav\",\"LJ023-0021.wav\",\"LJ023-0022.wav\",\"LJ023-0023.wav\",\"LJ023-0024.wav\",\"LJ023-0025.wav\",\"LJ023-0026.wav\",\"LJ023-0027.wav\",\"LJ023-0028.wav\",\"LJ023-0029.wav\",\"LJ023-0030.wav\",\"LJ023-0031.wav\",\"LJ023-0032.wav\",\"LJ023-0033.wav\",\"LJ023-0034.wav\",\"LJ023-0035.wav\",\"LJ023-0036.wav\",\"LJ023-0037.wav\",\"LJ023-0038.wav\",\"LJ023-0039.wav\",\"LJ023-0040.wav\",\"LJ023-0041.wav\",\"LJ023-0042.wav\",\"LJ023-0043.wav\",\"LJ023-0044.wav\",\"LJ023-0045.wav\",\"LJ023-0046.wav\",\"LJ023-0047.wav\",\"LJ023-0048.wav\",\"LJ023-0049.wav\",\"LJ023-0050.wav\",\"LJ023-0051.wav\",\"LJ023-0052.wav\",\"LJ023-0053.wav\",\"LJ023-0054.wav\",\"LJ023-0055.wav\",\"LJ023-0056.wav\",\"LJ023-0057.wav\",\"LJ023-0058.wav\",\"LJ023-0059.wav\",\"LJ023-0060.wav\",\"LJ023-0061.wav\",\"LJ023-0062.wav\",\"LJ023-0063.wav\",\"LJ023-0064.wav\",\"LJ023-0065.wav\",\"LJ023-0066.wav\",\"LJ023-0067.wav\",\"LJ023-0068.wav\",\"LJ023-0069.wav\",\"LJ023-0070.wav\",\"LJ023-0071.wav\",\"LJ023-0072.wav\",\"LJ023-0073.wav\",\"LJ023-0074.wav\",\"LJ023-0075.wav\",\"LJ023-0076.wav\",\"LJ023-0077.wav\",\"LJ023-0078.wav\",\"LJ023-0079.wav\",\"LJ023-0080.wav\",\"LJ023-0081.wav\",\"LJ023-0082.wav\",\"LJ023-0083.wav\",\"LJ023-0084.wav\",\"LJ023-0085.wav\",\"LJ023-0086.wav\",\"LJ023-0087.wav\",\"LJ023-0088.wav\",\"LJ023-0089.wav\",\"LJ023-0090.wav\",\"LJ023-0091.wav\",\"LJ023-0092.wav\",\"LJ023-0093.wav\",\"LJ023-0094.wav\",\"LJ023-0095.wav\",\"LJ023-0096.wav\",\"LJ023-0097.wav\",\"LJ023-0098.wav\",\"LJ023-0099.wav\",\"LJ023-0100.wav\",\"LJ023-0101.wav\",\"LJ023-0102.wav\",\"LJ023-0103.wav\",\"LJ023-0104.wav\",\"LJ023-0105.wav\",\"LJ023-0106.wav\",\"LJ023-0107.wav\",\"LJ023-0108.wav\",\"LJ023-0109.wav\",\"LJ023-0110.wav\",\"LJ023-0111.wav\",\"LJ023-0112.wav\",\"LJ023-0113.wav\",\"LJ023-0114.wav\",\"LJ023-0115.wav\",\"LJ023-0116.wav\",\"LJ023-0117.wav\",\"LJ023-0118.wav\",\"LJ023-0119.wav\",\"LJ023-0120.wav\",\"LJ023-0121.wav\",\"LJ023-0122.wav\",\"LJ023-0123.wav\",\"LJ023-0124.wav\",\"LJ023-0125.wav\",\"LJ023-0126.wav\",\"LJ023-0127.wav\",\"LJ023-0128.wav\",\"LJ023-0129.wav\",\"LJ023-0130.wav\",\"LJ023-0131.wav\",\"LJ023-0132.wav\",\"LJ023-0133.wav\",\"LJ023-0134.wav\",\"LJ023-0135.wav\",\"LJ023-0136.wav\",\"LJ023-0137.wav\",\"LJ023-0138.wav\",\"LJ023-0139.wav\",\"LJ023-0140.wav\",\"LJ023-0141.wav\",\"LJ024-0001.wav\",\"LJ024-0002.wav\",\"LJ024-0003.wav\",\"LJ024-0004.wav\",\"LJ024-0005.wav\",\"LJ024-0006.wav\",\"LJ024-0007.wav\",\"LJ024-0008.wav\",\"LJ024-0009.wav\",\"LJ024-0010.wav\",\"LJ024-0011.wav\",\"LJ024-0012.wav\",\"LJ024-0013.wav\",\"LJ024-0014.wav\",\"LJ024-0015.wav\",\"LJ024-0016.wav\",\"LJ024-0017.wav\",\"LJ024-0018.wav\",\"LJ024-0019.wav\",\"LJ024-0020.wav\",\"LJ024-0021.wav\",\"LJ024-0022.wav\",\"LJ024-0023.wav\",\"LJ024-0024.wav\",\"LJ024-0025.wav\",\"LJ024-0026.wav\",\"LJ024-0027.wav\",\"LJ024-0028.wav\",\"LJ024-0029.wav\",\"LJ024-0030.wav\",\"LJ024-0031.wav\",\"LJ024-0032.wav\",\"LJ024-0033.wav\",\"LJ024-0034.wav\",\"LJ024-0035.wav\",\"LJ024-0036.wav\",\"LJ024-0037.wav\",\"LJ024-0038.wav\",\"LJ024-0039.wav\",\"LJ024-0040.wav\",\"LJ024-0041.wav\",\"LJ024-0042.wav\",\"LJ024-0043.wav\",\"LJ024-0044.wav\",\"LJ024-0045.wav\",\"LJ024-0046.wav\",\"LJ024-0047.wav\",\"LJ024-0048.wav\",\"LJ024-0049.wav\",\"LJ024-0050.wav\",\"LJ024-0051.wav\",\"LJ024-0052.wav\",\"LJ024-0053.wav\",\"LJ024-0054.wav\",\"LJ024-0055.wav\",\"LJ024-0056.wav\",\"LJ024-0057.wav\",\"LJ024-0058.wav\",\"LJ024-0059.wav\",\"LJ024-0060.wav\",\"LJ024-0061.wav\",\"LJ024-0062.wav\",\"LJ024-0063.wav\",\"LJ024-0064.wav\",\"LJ024-0065.wav\",\"LJ024-0066.wav\",\"LJ024-0067.wav\",\"LJ024-0068.wav\",\"LJ024-0069.wav\",\"LJ024-0070.wav\",\"LJ024-0071.wav\",\"LJ024-0072.wav\",\"LJ024-0073.wav\",\"LJ024-0074.wav\",\"LJ024-0075.wav\",\"LJ024-0076.wav\",\"LJ024-0077.wav\",\"LJ024-0078.wav\",\"LJ024-0079.wav\",\"LJ024-0080.wav\",\"LJ024-0081.wav\",\"LJ024-0082.wav\",\"LJ024-0083.wav\",\"LJ024-0084.wav\",\"LJ024-0085.wav\",\"LJ024-0086.wav\",\"LJ024-0087.wav\",\"LJ024-0088.wav\",\"LJ024-0089.wav\",\"LJ024-0090.wav\",\"LJ024-0091.wav\",\"LJ024-0092.wav\",\"LJ024-0093.wav\",\"LJ024-0094.wav\",\"LJ024-0095.wav\",\"LJ024-0096.wav\",\"LJ024-0097.wav\",\"LJ024-0098.wav\",\"LJ024-0099.wav\",\"LJ024-0100.wav\",\"LJ024-0101.wav\",\"LJ024-0102.wav\",\"LJ024-0103.wav\",\"LJ024-0104.wav\",\"LJ024-0105.wav\",\"LJ024-0106.wav\",\"LJ024-0107.wav\",\"LJ024-0108.wav\",\"LJ024-0109.wav\",\"LJ024-0110.wav\",\"LJ024-0111.wav\",\"LJ024-0112.wav\",\"LJ024-0113.wav\",\"LJ024-0114.wav\",\"LJ024-0115.wav\",\"LJ024-0116.wav\",\"LJ024-0117.wav\",\"LJ024-0118.wav\",\"LJ024-0119.wav\",\"LJ024-0120.wav\",\"LJ024-0121.wav\",\"LJ024-0122.wav\",\"LJ024-0123.wav\",\"LJ024-0124.wav\",\"LJ024-0125.wav\",\"LJ024-0126.wav\",\"LJ024-0127.wav\",\"LJ024-0128.wav\",\"LJ024-0129.wav\",\"LJ024-0130.wav\",\"LJ024-0131.wav\",\"LJ024-0132.wav\",\"LJ024-0133.wav\",\"LJ024-0134.wav\",\"LJ024-0135.wav\",\"LJ024-0136.wav\",\"LJ024-0137.wav\",\"LJ024-0138.wav\",\"LJ024-0139.wav\",\"LJ024-0140.wav\",\"LJ024-0141.wav\",\"LJ024-0142.wav\",\"LJ024-0143.wav\",\"LJ025-0001.wav\",\"LJ025-0002.wav\",\"LJ025-0003.wav\",\"LJ025-0004.wav\",\"LJ025-0005.wav\",\"LJ025-0006.wav\",\"LJ025-0007.wav\",\"LJ025-0008.wav\",\"LJ025-0009.wav\",\"LJ025-0010.wav\",\"LJ025-0011.wav\",\"LJ025-0012.wav\",\"LJ025-0013.wav\",\"LJ025-0014.wav\",\"LJ025-0015.wav\",\"LJ025-0016.wav\",\"LJ025-0017.wav\",\"LJ025-0018.wav\",\"LJ025-0019.wav\",\"LJ025-0020.wav\",\"LJ025-0021.wav\",\"LJ025-0022.wav\",\"LJ025-0023.wav\",\"LJ025-0024.wav\",\"LJ025-0025.wav\",\"LJ025-0026.wav\",\"LJ025-0027.wav\",\"LJ025-0028.wav\",\"LJ025-0029.wav\",\"LJ025-0030.wav\",\"LJ025-0031.wav\",\"LJ025-0032.wav\",\"LJ025-0033.wav\",\"LJ025-0034.wav\",\"LJ025-0035.wav\",\"LJ025-0036.wav\",\"LJ025-0037.wav\",\"LJ025-0038.wav\",\"LJ025-0039.wav\",\"LJ025-0040.wav\",\"LJ025-0041.wav\",\"LJ025-0042.wav\",\"LJ025-0043.wav\",\"LJ025-0044.wav\",\"LJ025-0045.wav\",\"LJ025-0046.wav\",\"LJ025-0047.wav\",\"LJ025-0048.wav\",\"LJ025-0049.wav\",\"LJ025-0050.wav\",\"LJ025-0051.wav\",\"LJ025-0052.wav\",\"LJ025-0053.wav\",\"LJ025-0054.wav\",\"LJ025-0055.wav\",\"LJ025-0056.wav\",\"LJ025-0057.wav\",\"LJ025-0058.wav\",\"LJ025-0059.wav\",\"LJ025-0060.wav\",\"LJ025-0061.wav\",\"LJ025-0062.wav\",\"LJ025-0063.wav\",\"LJ025-0064.wav\",\"LJ025-0065.wav\",\"LJ025-0066.wav\",\"LJ025-0067.wav\",\"LJ025-0068.wav\",\"LJ025-0069.wav\",\"LJ025-0070.wav\",\"LJ025-0071.wav\",\"LJ025-0072.wav\",\"LJ025-0073.wav\",\"LJ025-0074.wav\",\"LJ025-0075.wav\",\"LJ025-0076.wav\",\"LJ025-0077.wav\",\"LJ025-0078.wav\",\"LJ025-0079.wav\",\"LJ025-0080.wav\",\"LJ025-0081.wav\",\"LJ025-0082.wav\",\"LJ025-0083.wav\",\"LJ025-0084.wav\",\"LJ025-0085.wav\",\"LJ025-0086.wav\",\"LJ025-0087.wav\",\"LJ025-0088.wav\",\"LJ025-0089.wav\",\"LJ025-0090.wav\",\"LJ025-0091.wav\",\"LJ025-0092.wav\",\"LJ025-0093.wav\",\"LJ025-0094.wav\",\"LJ025-0095.wav\",\"LJ025-0096.wav\",\"LJ025-0097.wav\",\"LJ025-0098.wav\",\"LJ025-0099.wav\",\"LJ025-0100.wav\",\"LJ025-0101.wav\",\"LJ025-0102.wav\",\"LJ025-0103.wav\",\"LJ025-0104.wav\",\"LJ025-0105.wav\",\"LJ025-0106.wav\",\"LJ025-0107.wav\",\"LJ025-0108.wav\",\"LJ025-0109.wav\",\"LJ025-0110.wav\",\"LJ025-0111.wav\",\"LJ025-0112.wav\",\"LJ025-0113.wav\",\"LJ025-0114.wav\",\"LJ025-0115.wav\",\"LJ025-0116.wav\",\"LJ025-0117.wav\",\"LJ025-0118.wav\",\"LJ025-0119.wav\",\"LJ025-0120.wav\",\"LJ025-0121.wav\",\"LJ025-0122.wav\",\"LJ025-0123.wav\",\"LJ025-0124.wav\",\"LJ025-0125.wav\",\"LJ025-0126.wav\",\"LJ025-0127.wav\",\"LJ025-0128.wav\",\"LJ025-0129.wav\",\"LJ025-0130.wav\",\"LJ025-0131.wav\",\"LJ025-0132.wav\",\"LJ025-0133.wav\",\"LJ025-0134.wav\",\"LJ025-0135.wav\",\"LJ025-0136.wav\",\"LJ025-0137.wav\",\"LJ025-0138.wav\",\"LJ025-0139.wav\",\"LJ025-0140.wav\",\"LJ025-0141.wav\",\"LJ025-0142.wav\",\"LJ025-0143.wav\",\"LJ025-0144.wav\",\"LJ025-0145.wav\",\"LJ025-0146.wav\",\"LJ025-0147.wav\",\"LJ025-0148.wav\",\"LJ025-0149.wav\",\"LJ025-0150.wav\",\"LJ025-0151.wav\",\"LJ025-0152.wav\",\"LJ025-0153.wav\",\"LJ025-0154.wav\",\"LJ025-0155.wav\",\"LJ025-0156.wav\",\"LJ025-0157.wav\",\"LJ025-0158.wav\",\"LJ025-0159.wav\",\"LJ025-0160.wav\",\"LJ025-0161.wav\",\"LJ025-0162.wav\",\"LJ025-0163.wav\",\"LJ025-0164.wav\",\"LJ025-0165.wav\",\"LJ025-0166.wav\",\"LJ025-0167.wav\",\"LJ025-0168.wav\",\"LJ025-0169.wav\",\"LJ025-0170.wav\",\"LJ025-0171.wav\",\"LJ025-0172.wav\",\"LJ025-0173.wav\",\"LJ025-0174.wav\",\"LJ025-0175.wav\",\"LJ025-0176.wav\",\"LJ026-0001.wav\",\"LJ026-0002.wav\",\"LJ026-0003.wav\",\"LJ026-0004.wav\",\"LJ026-0005.wav\",\"LJ026-0006.wav\",\"LJ026-0007.wav\",\"LJ026-0008.wav\",\"LJ026-0009.wav\",\"LJ026-0010.wav\",\"LJ026-0011.wav\",\"LJ026-0012.wav\",\"LJ026-0013.wav\",\"LJ026-0014.wav\",\"LJ026-0015.wav\",\"LJ026-0016.wav\",\"LJ026-0017.wav\",\"LJ026-0018.wav\",\"LJ026-0019.wav\",\"LJ026-0020.wav\",\"LJ026-0021.wav\",\"LJ026-0022.wav\",\"LJ026-0023.wav\",\"LJ026-0024.wav\",\"LJ026-0025.wav\",\"LJ026-0026.wav\",\"LJ026-0027.wav\",\"LJ026-0028.wav\",\"LJ026-0029.wav\",\"LJ026-0030.wav\",\"LJ026-0031.wav\",\"LJ026-0032.wav\",\"LJ026-0033.wav\",\"LJ026-0034.wav\",\"LJ026-0035.wav\",\"LJ026-0036.wav\",\"LJ026-0037.wav\",\"LJ026-0038.wav\",\"LJ026-0039.wav\",\"LJ026-0040.wav\",\"LJ026-0041.wav\",\"LJ026-0042.wav\",\"LJ026-0043.wav\",\"LJ026-0044.wav\",\"LJ026-0045.wav\",\"LJ026-0046.wav\",\"LJ026-0047.wav\",\"LJ026-0048.wav\",\"LJ026-0049.wav\",\"LJ026-0050.wav\",\"LJ026-0051.wav\",\"LJ026-0052.wav\",\"LJ026-0053.wav\",\"LJ026-0054.wav\",\"LJ026-0055.wav\",\"LJ026-0056.wav\",\"LJ026-0057.wav\",\"LJ026-0058.wav\",\"LJ026-0059.wav\",\"LJ026-0060.wav\",\"LJ026-0061.wav\",\"LJ026-0062.wav\",\"LJ026-0063.wav\",\"LJ026-0064.wav\",\"LJ026-0065.wav\",\"LJ026-0066.wav\",\"LJ026-0067.wav\",\"LJ026-0068.wav\",\"LJ026-0069.wav\",\"LJ026-0070.wav\",\"LJ026-0071.wav\",\"LJ026-0072.wav\",\"LJ026-0073.wav\",\"LJ026-0074.wav\",\"LJ026-0075.wav\",\"LJ026-0076.wav\",\"LJ026-0077.wav\",\"LJ026-0078.wav\",\"LJ026-0079.wav\",\"LJ026-0080.wav\",\"LJ026-0081.wav\",\"LJ026-0082.wav\",\"LJ026-0083.wav\",\"LJ026-0084.wav\",\"LJ026-0085.wav\",\"LJ026-0086.wav\",\"LJ026-0087.wav\",\"LJ026-0088.wav\",\"LJ026-0089.wav\",\"LJ026-0090.wav\",\"LJ026-0091.wav\",\"LJ026-0092.wav\",\"LJ026-0093.wav\",\"LJ026-0094.wav\",\"LJ026-0095.wav\",\"LJ026-0096.wav\",\"LJ026-0097.wav\",\"LJ026-0098.wav\",\"LJ026-0099.wav\",\"LJ026-0100.wav\",\"LJ026-0101.wav\",\"LJ026-0102.wav\",\"LJ026-0103.wav\",\"LJ026-0104.wav\",\"LJ026-0105.wav\",\"LJ026-0106.wav\",\"LJ026-0107.wav\",\"LJ026-0108.wav\",\"LJ026-0109.wav\",\"LJ026-0110.wav\",\"LJ026-0111.wav\",\"LJ026-0112.wav\",\"LJ026-0113.wav\",\"LJ026-0114.wav\",\"LJ026-0115.wav\",\"LJ026-0116.wav\",\"LJ026-0117.wav\",\"LJ026-0118.wav\",\"LJ026-0119.wav\",\"LJ026-0120.wav\",\"LJ026-0121.wav\",\"LJ026-0122.wav\",\"LJ026-0123.wav\",\"LJ026-0124.wav\",\"LJ026-0125.wav\",\"LJ026-0126.wav\",\"LJ026-0127.wav\",\"LJ026-0128.wav\",\"LJ026-0129.wav\",\"LJ026-0130.wav\",\"LJ026-0131.wav\",\"LJ026-0132.wav\",\"LJ026-0133.wav\",\"LJ026-0134.wav\",\"LJ026-0135.wav\",\"LJ026-0136.wav\",\"LJ026-0137.wav\",\"LJ026-0138.wav\",\"LJ026-0139.wav\",\"LJ026-0140.wav\",\"LJ026-0141.wav\",\"LJ026-0142.wav\",\"LJ026-0143.wav\",\"LJ026-0144.wav\",\"LJ026-0145.wav\",\"LJ026-0146.wav\",\"LJ026-0147.wav\",\"LJ026-0148.wav\",\"LJ026-0149.wav\",\"LJ026-0150.wav\",\"LJ026-0151.wav\",\"LJ026-0152.wav\",\"LJ026-0153.wav\",\"LJ026-0154.wav\",\"LJ026-0155.wav\",\"LJ026-0156.wav\",\"LJ026-0157.wav\",\"LJ026-0158.wav\",\"LJ026-0159.wav\",\"LJ026-0160.wav\",\"LJ026-0161.wav\",\"LJ026-0162.wav\",\"LJ026-0163.wav\",\"LJ026-0164.wav\",\"LJ026-0165.wav\",\"LJ026-0166.wav\",\"LJ027-0001.wav\",\"LJ027-0002.wav\",\"LJ027-0003.wav\",\"LJ027-0004.wav\",\"LJ027-0005.wav\",\"LJ027-0006.wav\",\"LJ027-0007.wav\",\"LJ027-0008.wav\",\"LJ027-0009.wav\",\"LJ027-0010.wav\",\"LJ027-0011.wav\",\"LJ027-0012.wav\",\"LJ027-0013.wav\",\"LJ027-0014.wav\",\"LJ027-0015.wav\",\"LJ027-0016.wav\",\"LJ027-0017.wav\",\"LJ027-0018.wav\",\"LJ027-0019.wav\",\"LJ027-0020.wav\",\"LJ027-0021.wav\",\"LJ027-0022.wav\",\"LJ027-0023.wav\",\"LJ027-0024.wav\",\"LJ027-0025.wav\",\"LJ027-0026.wav\",\"LJ027-0027.wav\",\"LJ027-0028.wav\",\"LJ027-0029.wav\",\"LJ027-0030.wav\",\"LJ027-0031.wav\",\"LJ027-0032.wav\",\"LJ027-0033.wav\",\"LJ027-0034.wav\",\"LJ027-0035.wav\",\"LJ027-0036.wav\",\"LJ027-0037.wav\",\"LJ027-0038.wav\",\"LJ027-0039.wav\",\"LJ027-0040.wav\",\"LJ027-0041.wav\",\"LJ027-0042.wav\",\"LJ027-0043.wav\",\"LJ027-0044.wav\",\"LJ027-0045.wav\",\"LJ027-0046.wav\",\"LJ027-0047.wav\",\"LJ027-0048.wav\",\"LJ027-0049.wav\",\"LJ027-0050.wav\",\"LJ027-0051.wav\",\"LJ027-0052.wav\",\"LJ027-0053.wav\",\"LJ027-0054.wav\",\"LJ027-0055.wav\",\"LJ027-0056.wav\",\"LJ027-0057.wav\",\"LJ027-0058.wav\",\"LJ027-0059.wav\",\"LJ027-0060.wav\",\"LJ027-0061.wav\",\"LJ027-0062.wav\",\"LJ027-0063.wav\",\"LJ027-0064.wav\",\"LJ027-0065.wav\",\"LJ027-0066.wav\",\"LJ027-0067.wav\",\"LJ027-0068.wav\",\"LJ027-0069.wav\",\"LJ027-0070.wav\",\"LJ027-0071.wav\",\"LJ027-0072.wav\",\"LJ027-0073.wav\",\"LJ027-0074.wav\",\"LJ027-0075.wav\",\"LJ027-0076.wav\",\"LJ027-0077.wav\",\"LJ027-0078.wav\",\"LJ027-0079.wav\",\"LJ027-0080.wav\",\"LJ027-0081.wav\",\"LJ027-0082.wav\",\"LJ027-0083.wav\",\"LJ027-0084.wav\",\"LJ027-0085.wav\",\"LJ027-0086.wav\",\"LJ027-0087.wav\",\"LJ027-0088.wav\",\"LJ027-0089.wav\",\"LJ027-0090.wav\",\"LJ027-0091.wav\",\"LJ027-0092.wav\",\"LJ027-0093.wav\",\"LJ027-0094.wav\",\"LJ027-0095.wav\",\"LJ027-0096.wav\",\"LJ027-0097.wav\",\"LJ027-0098.wav\",\"LJ027-0099.wav\",\"LJ027-0100.wav\",\"LJ027-0101.wav\",\"LJ027-0102.wav\",\"LJ027-0103.wav\",\"LJ027-0104.wav\",\"LJ027-0105.wav\",\"LJ027-0106.wav\",\"LJ027-0107.wav\",\"LJ027-0108.wav\",\"LJ027-0109.wav\",\"LJ027-0110.wav\",\"LJ027-0111.wav\",\"LJ027-0112.wav\",\"LJ027-0113.wav\",\"LJ027-0114.wav\",\"LJ027-0115.wav\",\"LJ027-0116.wav\",\"LJ027-0117.wav\",\"LJ027-0118.wav\",\"LJ027-0119.wav\",\"LJ027-0120.wav\",\"LJ027-0121.wav\",\"LJ027-0122.wav\",\"LJ027-0123.wav\",\"LJ027-0124.wav\",\"LJ027-0125.wav\",\"LJ027-0126.wav\",\"LJ027-0127.wav\",\"LJ027-0128.wav\",\"LJ027-0129.wav\",\"LJ027-0130.wav\",\"LJ027-0131.wav\",\"LJ027-0132.wav\",\"LJ027-0133.wav\",\"LJ027-0134.wav\",\"LJ027-0135.wav\",\"LJ027-0136.wav\",\"LJ027-0137.wav\",\"LJ027-0138.wav\",\"LJ027-0139.wav\",\"LJ027-0141.wav\",\"LJ027-0142.wav\",\"LJ027-0143.wav\",\"LJ027-0144.wav\",\"LJ027-0145.wav\",\"LJ027-0146.wav\",\"LJ027-0147.wav\",\"LJ027-0148.wav\",\"LJ027-0149.wav\",\"LJ027-0150.wav\",\"LJ027-0151.wav\",\"LJ027-0152.wav\",\"LJ027-0153.wav\",\"LJ027-0154.wav\",\"LJ027-0155.wav\",\"LJ027-0156.wav\",\"LJ027-0157.wav\",\"LJ027-0158.wav\",\"LJ027-0159.wav\",\"LJ027-0160.wav\",\"LJ027-0161.wav\",\"LJ027-0162.wav\",\"LJ027-0163.wav\",\"LJ027-0164.wav\",\"LJ027-0165.wav\",\"LJ027-0166.wav\",\"LJ027-0167.wav\",\"LJ027-0168.wav\",\"LJ027-0169.wav\",\"LJ027-0170.wav\",\"LJ027-0171.wav\",\"LJ027-0172.wav\",\"LJ027-0173.wav\",\"LJ027-0174.wav\",\"LJ027-0175.wav\",\"LJ027-0176.wav\",\"LJ027-0177.wav\",\"LJ027-0178.wav\",\"LJ027-0179.wav\",\"LJ027-0180.wav\",\"LJ028-0001.wav\",\"LJ028-0002.wav\",\"LJ028-0003.wav\",\"LJ028-0004.wav\",\"LJ028-0005.wav\",\"LJ028-0006.wav\",\"LJ028-0007.wav\",\"LJ028-0008.wav\",\"LJ028-0009.wav\",\"LJ028-0010.wav\",\"LJ028-0011.wav\",\"LJ028-0012.wav\",\"LJ028-0013.wav\",\"LJ028-0014.wav\",\"LJ028-0015.wav\",\"LJ028-0016.wav\",\"LJ028-0017.wav\",\"LJ028-0018.wav\",\"LJ028-0019.wav\",\"LJ028-0020.wav\",\"LJ028-0021.wav\",\"LJ028-0022.wav\",\"LJ028-0023.wav\",\"LJ028-0024.wav\",\"LJ028-0025.wav\",\"LJ028-0026.wav\",\"LJ028-0027.wav\",\"LJ028-0028.wav\",\"LJ028-0029.wav\",\"LJ028-0030.wav\",\"LJ028-0031.wav\",\"LJ028-0032.wav\",\"LJ028-0033.wav\",\"LJ028-0034.wav\",\"LJ028-0035.wav\",\"LJ028-0036.wav\",\"LJ028-0037.wav\",\"LJ028-0038.wav\",\"LJ028-0039.wav\",\"LJ028-0040.wav\",\"LJ028-0041.wav\",\"LJ028-0042.wav\",\"LJ028-0043.wav\",\"LJ028-0044.wav\",\"LJ028-0045.wav\",\"LJ028-0046.wav\",\"LJ028-0047.wav\",\"LJ028-0048.wav\",\"LJ028-0049.wav\",\"LJ028-0050.wav\",\"LJ028-0051.wav\",\"LJ028-0052.wav\",\"LJ028-0053.wav\",\"LJ028-0054.wav\",\"LJ028-0055.wav\",\"LJ028-0056.wav\",\"LJ028-0057.wav\",\"LJ028-0058.wav\",\"LJ028-0059.wav\",\"LJ028-0060.wav\",\"LJ028-0061.wav\",\"LJ028-0062.wav\",\"LJ028-0063.wav\",\"LJ028-0064.wav\",\"LJ028-0065.wav\",\"LJ028-0066.wav\",\"LJ028-0067.wav\",\"LJ028-0068.wav\",\"LJ028-0069.wav\",\"LJ028-0070.wav\",\"LJ028-0071.wav\",\"LJ028-0072.wav\",\"LJ028-0073.wav\",\"LJ028-0074.wav\",\"LJ028-0075.wav\",\"LJ028-0076.wav\",\"LJ028-0077.wav\",\"LJ028-0078.wav\",\"LJ028-0079.wav\",\"LJ028-0080.wav\",\"LJ028-0081.wav\",\"LJ028-0082.wav\",\"LJ028-0083.wav\",\"LJ028-0084.wav\",\"LJ028-0085.wav\",\"LJ028-0086.wav\",\"LJ028-0087.wav\",\"LJ028-0088.wav\",\"LJ028-0089.wav\",\"LJ028-0090.wav\",\"LJ028-0091.wav\",\"LJ028-0092.wav\",\"LJ028-0093.wav\",\"LJ028-0094.wav\",\"LJ028-0095.wav\",\"LJ028-0096.wav\",\"LJ028-0097.wav\",\"LJ028-0098.wav\",\"LJ028-0099.wav\",\"LJ028-0100.wav\",\"LJ028-0101.wav\",\"LJ028-0102.wav\",\"LJ028-0103.wav\",\"LJ028-0104.wav\",\"LJ028-0105.wav\",\"LJ028-0106.wav\",\"LJ028-0107.wav\",\"LJ028-0108.wav\",\"LJ028-0109.wav\",\"LJ028-0110.wav\",\"LJ028-0111.wav\",\"LJ028-0112.wav\",\"LJ028-0113.wav\",\"LJ028-0114.wav\",\"LJ028-0115.wav\",\"LJ028-0116.wav\",\"LJ028-0117.wav\",\"LJ028-0118.wav\",\"LJ028-0119.wav\",\"LJ028-0120.wav\",\"LJ028-0121.wav\",\"LJ028-0122.wav\",\"LJ028-0123.wav\",\"LJ028-0124.wav\",\"LJ028-0125.wav\",\"LJ028-0126.wav\",\"LJ028-0127.wav\",\"LJ028-0128.wav\",\"LJ028-0129.wav\",\"LJ028-0130.wav\",\"LJ028-0131.wav\",\"LJ028-0132.wav\",\"LJ028-0133.wav\",\"LJ028-0134.wav\",\"LJ028-0136.wav\",\"LJ028-0137.wav\",\"LJ028-0138.wav\",\"LJ028-0139.wav\",\"LJ028-0140.wav\",\"LJ028-0141.wav\",\"LJ028-0142.wav\",\"LJ028-0143.wav\",\"LJ028-0144.wav\",\"LJ028-0145.wav\",\"LJ028-0146.wav\",\"LJ028-0147.wav\",\"LJ028-0148.wav\",\"LJ028-0149.wav\",\"LJ028-0150.wav\",\"LJ028-0151.wav\",\"LJ028-0152.wav\",\"LJ028-0153.wav\",\"LJ028-0154.wav\",\"LJ028-0155.wav\",\"LJ028-0156.wav\",\"LJ028-0157.wav\",\"LJ028-0158.wav\",\"LJ028-0159.wav\",\"LJ028-0160.wav\",\"LJ028-0161.wav\",\"LJ028-0162.wav\",\"LJ028-0163.wav\",\"LJ028-0164.wav\",\"LJ028-0165.wav\",\"LJ028-0166.wav\",\"LJ028-0167.wav\",\"LJ028-0168.wav\",\"LJ028-0169.wav\",\"LJ028-0170.wav\",\"LJ028-0171.wav\",\"LJ028-0172.wav\",\"LJ028-0173.wav\",\"LJ028-0174.wav\",\"LJ028-0175.wav\",\"LJ028-0176.wav\",\"LJ028-0177.wav\",\"LJ028-0178.wav\",\"LJ028-0179.wav\",\"LJ028-0180.wav\",\"LJ028-0181.wav\",\"LJ028-0182.wav\",\"LJ028-0183.wav\",\"LJ028-0184.wav\",\"LJ028-0185.wav\",\"LJ028-0186.wav\",\"LJ028-0187.wav\",\"LJ028-0188.wav\",\"LJ028-0189.wav\",\"LJ028-0190.wav\",\"LJ028-0191.wav\",\"LJ028-0192.wav\",\"LJ028-0193.wav\",\"LJ028-0194.wav\",\"LJ028-0195.wav\",\"LJ028-0196.wav\",\"LJ028-0197.wav\",\"LJ028-0198.wav\",\"LJ028-0199.wav\",\"LJ028-0200.wav\",\"LJ028-0201.wav\",\"LJ028-0202.wav\",\"LJ028-0203.wav\",\"LJ028-0204.wav\",\"LJ028-0205.wav\",\"LJ028-0206.wav\",\"LJ028-0207.wav\",\"LJ028-0208.wav\",\"LJ028-0209.wav\",\"LJ028-0210.wav\",\"LJ028-0211.wav\",\"LJ028-0212.wav\",\"LJ028-0213.wav\",\"LJ028-0214.wav\",\"LJ028-0215.wav\",\"LJ028-0216.wav\",\"LJ028-0217.wav\",\"LJ028-0218.wav\",\"LJ028-0219.wav\",\"LJ028-0220.wav\",\"LJ028-0221.wav\",\"LJ028-0222.wav\",\"LJ028-0223.wav\",\"LJ028-0224.wav\",\"LJ028-0225.wav\",\"LJ028-0226.wav\",\"LJ028-0227.wav\",\"LJ028-0228.wav\",\"LJ028-0229.wav\",\"LJ028-0230.wav\",\"LJ028-0231.wav\",\"LJ028-0232.wav\",\"LJ028-0233.wav\",\"LJ028-0234.wav\",\"LJ028-0235.wav\",\"LJ028-0236.wav\",\"LJ028-0237.wav\",\"LJ028-0238.wav\",\"LJ028-0239.wav\",\"LJ028-0240.wav\",\"LJ028-0241.wav\",\"LJ028-0242.wav\",\"LJ028-0243.wav\",\"LJ028-0244.wav\",\"LJ028-0245.wav\",\"LJ028-0246.wav\",\"LJ028-0247.wav\",\"LJ028-0248.wav\",\"LJ028-0249.wav\",\"LJ028-0250.wav\",\"LJ028-0251.wav\",\"LJ028-0252.wav\",\"LJ028-0253.wav\",\"LJ028-0254.wav\",\"LJ028-0255.wav\",\"LJ028-0256.wav\",\"LJ028-0257.wav\",\"LJ028-0258.wav\",\"LJ028-0259.wav\",\"LJ028-0260.wav\",\"LJ028-0261.wav\",\"LJ028-0262.wav\",\"LJ028-0263.wav\",\"LJ028-0264.wav\",\"LJ028-0265.wav\",\"LJ028-0266.wav\",\"LJ028-0267.wav\",\"LJ028-0268.wav\",\"LJ028-0269.wav\",\"LJ028-0270.wav\",\"LJ028-0271.wav\",\"LJ028-0272.wav\",\"LJ028-0273.wav\",\"LJ028-0274.wav\",\"LJ028-0275.wav\",\"LJ028-0276.wav\",\"LJ028-0277.wav\",\"LJ028-0278.wav\",\"LJ028-0279.wav\",\"LJ028-0280.wav\",\"LJ028-0281.wav\",\"LJ028-0282.wav\",\"LJ028-0283.wav\",\"LJ028-0284.wav\",\"LJ028-0285.wav\",\"LJ028-0286.wav\",\"LJ028-0287.wav\",\"LJ028-0288.wav\",\"LJ028-0289.wav\",\"LJ028-0290.wav\",\"LJ028-0291.wav\",\"LJ028-0292.wav\",\"LJ028-0293.wav\",\"LJ028-0294.wav\",\"LJ028-0295.wav\",\"LJ028-0296.wav\",\"LJ028-0297.wav\",\"LJ028-0298.wav\",\"LJ028-0299.wav\",\"LJ028-0300.wav\",\"LJ028-0301.wav\",\"LJ028-0302.wav\",\"LJ028-0303.wav\",\"LJ028-0304.wav\",\"LJ028-0305.wav\",\"LJ028-0306.wav\",\"LJ028-0307.wav\",\"LJ028-0308.wav\",\"LJ028-0309.wav\",\"LJ028-0310.wav\",\"LJ028-0311.wav\",\"LJ028-0312.wav\",\"LJ028-0313.wav\",\"LJ028-0314.wav\",\"LJ028-0315.wav\",\"LJ028-0316.wav\",\"LJ028-0317.wav\",\"LJ028-0318.wav\",\"LJ028-0319.wav\",\"LJ028-0320.wav\",\"LJ028-0321.wav\",\"LJ028-0322.wav\",\"LJ028-0323.wav\",\"LJ028-0324.wav\",\"LJ028-0325.wav\",\"LJ028-0326.wav\",\"LJ028-0327.wav\",\"LJ028-0328.wav\",\"LJ028-0329.wav\",\"LJ028-0330.wav\",\"LJ028-0331.wav\",\"LJ028-0332.wav\",\"LJ028-0333.wav\",\"LJ028-0334.wav\",\"LJ028-0335.wav\",\"LJ028-0336.wav\",\"LJ028-0337.wav\",\"LJ028-0338.wav\",\"LJ028-0339.wav\",\"LJ028-0340.wav\",\"LJ028-0341.wav\",\"LJ028-0342.wav\",\"LJ028-0343.wav\",\"LJ028-0344.wav\",\"LJ028-0345.wav\",\"LJ028-0346.wav\",\"LJ028-0347.wav\",\"LJ028-0348.wav\",\"LJ028-0349.wav\",\"LJ028-0350.wav\",\"LJ028-0351.wav\",\"LJ028-0352.wav\",\"LJ028-0353.wav\",\"LJ028-0354.wav\",\"LJ028-0355.wav\",\"LJ028-0356.wav\",\"LJ028-0357.wav\",\"LJ028-0358.wav\",\"LJ028-0359.wav\",\"LJ028-0360.wav\",\"LJ028-0361.wav\",\"LJ028-0362.wav\",\"LJ028-0363.wav\",\"LJ028-0364.wav\",\"LJ028-0365.wav\",\"LJ028-0366.wav\",\"LJ028-0367.wav\",\"LJ028-0368.wav\",\"LJ028-0369.wav\",\"LJ028-0370.wav\",\"LJ028-0371.wav\",\"LJ028-0372.wav\",\"LJ028-0373.wav\",\"LJ028-0374.wav\",\"LJ028-0375.wav\",\"LJ028-0376.wav\",\"LJ028-0377.wav\",\"LJ028-0378.wav\",\"LJ028-0379.wav\",\"LJ028-0380.wav\",\"LJ028-0381.wav\",\"LJ028-0382.wav\",\"LJ028-0383.wav\",\"LJ028-0384.wav\",\"LJ028-0385.wav\",\"LJ028-0386.wav\",\"LJ028-0387.wav\",\"LJ028-0388.wav\",\"LJ028-0389.wav\",\"LJ028-0390.wav\",\"LJ028-0391.wav\",\"LJ028-0392.wav\",\"LJ028-0393.wav\",\"LJ028-0394.wav\",\"LJ028-0395.wav\",\"LJ028-0396.wav\",\"LJ028-0397.wav\",\"LJ028-0398.wav\",\"LJ028-0399.wav\",\"LJ028-0400.wav\",\"LJ028-0401.wav\",\"LJ028-0402.wav\",\"LJ028-0403.wav\",\"LJ028-0404.wav\",\"LJ028-0405.wav\",\"LJ028-0406.wav\",\"LJ028-0407.wav\",\"LJ028-0408.wav\",\"LJ028-0409.wav\",\"LJ028-0410.wav\",\"LJ028-0411.wav\",\"LJ028-0412.wav\",\"LJ028-0413.wav\",\"LJ028-0414.wav\",\"LJ028-0415.wav\",\"LJ028-0416.wav\",\"LJ028-0417.wav\",\"LJ028-0418.wav\",\"LJ028-0419.wav\",\"LJ028-0420.wav\",\"LJ028-0421.wav\",\"LJ028-0422.wav\",\"LJ028-0423.wav\",\"LJ028-0424.wav\",\"LJ028-0425.wav\",\"LJ028-0426.wav\",\"LJ028-0427.wav\",\"LJ028-0428.wav\",\"LJ028-0429.wav\",\"LJ028-0430.wav\",\"LJ028-0431.wav\",\"LJ028-0432.wav\",\"LJ028-0433.wav\",\"LJ028-0434.wav\",\"LJ028-0435.wav\",\"LJ028-0436.wav\",\"LJ028-0437.wav\",\"LJ028-0438.wav\",\"LJ028-0439.wav\",\"LJ028-0440.wav\",\"LJ028-0441.wav\",\"LJ028-0442.wav\",\"LJ028-0443.wav\",\"LJ028-0444.wav\",\"LJ028-0445.wav\",\"LJ028-0446.wav\",\"LJ028-0447.wav\",\"LJ028-0448.wav\",\"LJ028-0449.wav\",\"LJ028-0450.wav\",\"LJ028-0451.wav\",\"LJ028-0452.wav\",\"LJ028-0453.wav\",\"LJ028-0454.wav\",\"LJ028-0455.wav\",\"LJ028-0456.wav\",\"LJ028-0457.wav\",\"LJ028-0458.wav\",\"LJ028-0459.wav\",\"LJ028-0460.wav\",\"LJ028-0461.wav\",\"LJ028-0462.wav\",\"LJ028-0463.wav\",\"LJ028-0464.wav\",\"LJ028-0465.wav\",\"LJ028-0466.wav\",\"LJ028-0467.wav\",\"LJ028-0468.wav\",\"LJ028-0469.wav\",\"LJ028-0470.wav\",\"LJ028-0471.wav\",\"LJ028-0472.wav\",\"LJ028-0473.wav\",\"LJ028-0474.wav\",\"LJ028-0475.wav\",\"LJ028-0476.wav\",\"LJ028-0477.wav\",\"LJ028-0478.wav\",\"LJ028-0479.wav\",\"LJ028-0480.wav\",\"LJ028-0481.wav\",\"LJ028-0482.wav\",\"LJ028-0483.wav\",\"LJ028-0484.wav\",\"LJ028-0485.wav\",\"LJ028-0486.wav\",\"LJ028-0487.wav\",\"LJ028-0488.wav\",\"LJ028-0489.wav\",\"LJ028-0490.wav\",\"LJ028-0491.wav\",\"LJ028-0492.wav\",\"LJ028-0493.wav\",\"LJ028-0494.wav\",\"LJ028-0495.wav\",\"LJ028-0496.wav\",\"LJ028-0497.wav\",\"LJ028-0498.wav\",\"LJ028-0499.wav\",\"LJ028-0500.wav\",\"LJ028-0501.wav\",\"LJ028-0502.wav\",\"LJ028-0503.wav\",\"LJ028-0504.wav\",\"LJ028-0505.wav\",\"LJ028-0506.wav\",\"LJ028-0507.wav\",\"LJ028-0508.wav\",\"LJ028-0509.wav\",\"LJ028-0510.wav\",\"LJ028-0511.wav\",\"LJ028-0512.wav\",\"LJ028-0513.wav\",\"LJ028-0514.wav\",\"LJ028-0515.wav\",\"LJ028-0516.wav\",\"LJ028-0517.wav\",\"LJ028-0518.wav\",\"LJ028-0519.wav\",\"LJ029-0001.wav\",\"LJ029-0002.wav\",\"LJ029-0003.wav\",\"LJ029-0004.wav\",\"LJ029-0005.wav\",\"LJ029-0006.wav\",\"LJ029-0007.wav\",\"LJ029-0008.wav\",\"LJ029-0009.wav\",\"LJ029-0010.wav\",\"LJ029-0011.wav\",\"LJ029-0012.wav\",\"LJ029-0013.wav\",\"LJ029-0014.wav\",\"LJ029-0015.wav\",\"LJ029-0016.wav\",\"LJ029-0017.wav\",\"LJ029-0018.wav\",\"LJ029-0019.wav\",\"LJ029-0020.wav\",\"LJ029-0021.wav\",\"LJ029-0022.wav\",\"LJ029-0023.wav\",\"LJ029-0024.wav\",\"LJ029-0025.wav\",\"LJ029-0026.wav\",\"LJ029-0027.wav\",\"LJ029-0028.wav\",\"LJ029-0029.wav\",\"LJ029-0030.wav\",\"LJ029-0031.wav\",\"LJ029-0032.wav\",\"LJ029-0033.wav\",\"LJ029-0034.wav\",\"LJ029-0035.wav\",\"LJ029-0036.wav\",\"LJ029-0037.wav\",\"LJ029-0038.wav\",\"LJ029-0039.wav\",\"LJ029-0040.wav\",\"LJ029-0041.wav\",\"LJ029-0042.wav\",\"LJ029-0043.wav\",\"LJ029-0044.wav\",\"LJ029-0045.wav\",\"LJ029-0046.wav\",\"LJ029-0047.wav\",\"LJ029-0048.wav\",\"LJ029-0049.wav\",\"LJ029-0050.wav\",\"LJ029-0051.wav\",\"LJ029-0052.wav\",\"LJ029-0053.wav\",\"LJ029-0054.wav\",\"LJ029-0055.wav\",\"LJ029-0056.wav\",\"LJ029-0057.wav\",\"LJ029-0058.wav\",\"LJ029-0059.wav\",\"LJ029-0060.wav\",\"LJ029-0061.wav\",\"LJ029-0062.wav\",\"LJ029-0063.wav\",\"LJ029-0064.wav\",\"LJ029-0065.wav\",\"LJ029-0066.wav\",\"LJ029-0067.wav\",\"LJ029-0068.wav\",\"LJ029-0069.wav\",\"LJ029-0070.wav\",\"LJ029-0071.wav\",\"LJ029-0072.wav\",\"LJ029-0073.wav\",\"LJ029-0074.wav\",\"LJ029-0075.wav\",\"LJ029-0076.wav\",\"LJ029-0077.wav\",\"LJ029-0078.wav\",\"LJ029-0079.wav\",\"LJ029-0080.wav\",\"LJ029-0081.wav\",\"LJ029-0082.wav\",\"LJ029-0083.wav\",\"LJ029-0084.wav\",\"LJ029-0085.wav\",\"LJ029-0086.wav\",\"LJ029-0087.wav\",\"LJ029-0088.wav\",\"LJ029-0089.wav\",\"LJ029-0090.wav\",\"LJ029-0091.wav\",\"LJ029-0092.wav\",\"LJ029-0093.wav\",\"LJ029-0094.wav\",\"LJ029-0095.wav\",\"LJ029-0096.wav\",\"LJ029-0097.wav\",\"LJ029-0098.wav\",\"LJ029-0099.wav\",\"LJ029-0100.wav\",\"LJ029-0101.wav\",\"LJ029-0102.wav\",\"LJ029-0103.wav\",\"LJ029-0104.wav\",\"LJ029-0105.wav\",\"LJ029-0106.wav\",\"LJ029-0107.wav\",\"LJ029-0108.wav\",\"LJ029-0109.wav\",\"LJ029-0110.wav\",\"LJ029-0111.wav\",\"LJ029-0112.wav\",\"LJ029-0113.wav\",\"LJ029-0114.wav\",\"LJ029-0115.wav\",\"LJ029-0116.wav\",\"LJ029-0117.wav\",\"LJ029-0118.wav\",\"LJ029-0119.wav\",\"LJ029-0120.wav\",\"LJ029-0121.wav\",\"LJ029-0122.wav\",\"LJ029-0123.wav\",\"LJ029-0124.wav\",\"LJ029-0125.wav\",\"LJ029-0126.wav\",\"LJ029-0127.wav\",\"LJ029-0128.wav\",\"LJ029-0129.wav\",\"LJ029-0130.wav\",\"LJ029-0131.wav\",\"LJ029-0132.wav\",\"LJ029-0133.wav\",\"LJ029-0134.wav\",\"LJ029-0135.wav\",\"LJ029-0136.wav\",\"LJ029-0137.wav\",\"LJ029-0138.wav\",\"LJ029-0139.wav\",\"LJ029-0140.wav\",\"LJ029-0141.wav\",\"LJ029-0142.wav\",\"LJ029-0143.wav\",\"LJ029-0144.wav\",\"LJ029-0145.wav\",\"LJ029-0146.wav\",\"LJ029-0147.wav\",\"LJ029-0148.wav\",\"LJ029-0149.wav\",\"LJ029-0150.wav\",\"LJ029-0151.wav\",\"LJ029-0152.wav\",\"LJ029-0153.wav\",\"LJ029-0154.wav\",\"LJ029-0155.wav\",\"LJ029-0156.wav\",\"LJ029-0157.wav\",\"LJ029-0158.wav\",\"LJ029-0159.wav\",\"LJ029-0160.wav\",\"LJ029-0161.wav\",\"LJ029-0162.wav\",\"LJ029-0163.wav\",\"LJ029-0164.wav\",\"LJ029-0165.wav\",\"LJ029-0166.wav\",\"LJ029-0167.wav\",\"LJ029-0168.wav\",\"LJ029-0169.wav\",\"LJ029-0170.wav\",\"LJ029-0171.wav\",\"LJ029-0172.wav\",\"LJ029-0173.wav\",\"LJ029-0174.wav\",\"LJ029-0175.wav\",\"LJ029-0176.wav\",\"LJ029-0177.wav\",\"LJ029-0178.wav\",\"LJ029-0179.wav\",\"LJ029-0180.wav\",\"LJ029-0181.wav\",\"LJ029-0182.wav\",\"LJ029-0183.wav\",\"LJ029-0184.wav\",\"LJ029-0185.wav\",\"LJ029-0186.wav\",\"LJ029-0187.wav\",\"LJ029-0188.wav\",\"LJ029-0189.wav\",\"LJ029-0190.wav\",\"LJ029-0191.wav\",\"LJ029-0192.wav\",\"LJ029-0193.wav\",\"LJ029-0194.wav\",\"LJ029-0195.wav\",\"LJ029-0196.wav\",\"LJ029-0197.wav\",\"LJ029-0198.wav\",\"LJ029-0199.wav\",\"LJ029-0200.wav\",\"LJ029-0201.wav\",\"LJ029-0202.wav\",\"LJ029-0203.wav\",\"LJ029-0204.wav\",\"LJ029-0205.wav\",\"LJ029-0206.wav\",\"LJ029-0207.wav\",\"LJ029-0208.wav\",\"LJ029-0209.wav\",\"LJ029-0210.wav\",\"LJ029-0211.wav\",\"LJ029-0212.wav\",\"LJ029-0213.wav\",\"LJ030-0001.wav\",\"LJ030-0002.wav\",\"LJ030-0003.wav\",\"LJ030-0004.wav\",\"LJ030-0005.wav\",\"LJ030-0006.wav\",\"LJ030-0007.wav\",\"LJ030-0008.wav\",\"LJ030-0009.wav\",\"LJ030-0010.wav\",\"LJ030-0011.wav\",\"LJ030-0012.wav\",\"LJ030-0013.wav\",\"LJ030-0014.wav\",\"LJ030-0015.wav\",\"LJ030-0016.wav\",\"LJ030-0017.wav\",\"LJ030-0018.wav\",\"LJ030-0019.wav\",\"LJ030-0020.wav\",\"LJ030-0021.wav\",\"LJ030-0022.wav\",\"LJ030-0023.wav\",\"LJ030-0024.wav\",\"LJ030-0025.wav\",\"LJ030-0026.wav\",\"LJ030-0027.wav\",\"LJ030-0028.wav\",\"LJ030-0029.wav\",\"LJ030-0030.wav\",\"LJ030-0031.wav\",\"LJ030-0032.wav\",\"LJ030-0033.wav\",\"LJ030-0034.wav\",\"LJ030-0035.wav\",\"LJ030-0036.wav\",\"LJ030-0037.wav\",\"LJ030-0038.wav\",\"LJ030-0039.wav\",\"LJ030-0040.wav\",\"LJ030-0041.wav\",\"LJ030-0042.wav\",\"LJ030-0043.wav\",\"LJ030-0044.wav\",\"LJ030-0045.wav\",\"LJ030-0046.wav\",\"LJ030-0047.wav\",\"LJ030-0048.wav\",\"LJ030-0049.wav\",\"LJ030-0050.wav\",\"LJ030-0051.wav\",\"LJ030-0052.wav\",\"LJ030-0053.wav\",\"LJ030-0054.wav\",\"LJ030-0055.wav\",\"LJ030-0056.wav\",\"LJ030-0057.wav\",\"LJ030-0058.wav\",\"LJ030-0059.wav\",\"LJ030-0060.wav\",\"LJ030-0061.wav\",\"LJ030-0062.wav\",\"LJ030-0063.wav\",\"LJ030-0064.wav\",\"LJ030-0065.wav\",\"LJ030-0066.wav\",\"LJ030-0067.wav\",\"LJ030-0068.wav\",\"LJ030-0069.wav\",\"LJ030-0070.wav\",\"LJ030-0071.wav\",\"LJ030-0072.wav\",\"LJ030-0073.wav\",\"LJ030-0074.wav\",\"LJ030-0075.wav\",\"LJ030-0076.wav\",\"LJ030-0077.wav\",\"LJ030-0078.wav\",\"LJ030-0079.wav\",\"LJ030-0080.wav\",\"LJ030-0081.wav\",\"LJ030-0082.wav\",\"LJ030-0083.wav\",\"LJ030-0084.wav\",\"LJ030-0085.wav\",\"LJ030-0086.wav\",\"LJ030-0087.wav\",\"LJ030-0088.wav\",\"LJ030-0089.wav\",\"LJ030-0090.wav\",\"LJ030-0091.wav\",\"LJ030-0092.wav\",\"LJ030-0093.wav\",\"LJ030-0094.wav\",\"LJ030-0095.wav\",\"LJ030-0096.wav\",\"LJ030-0097.wav\",\"LJ030-0098.wav\",\"LJ030-0099.wav\",\"LJ030-0100.wav\",\"LJ030-0101.wav\",\"LJ030-0102.wav\",\"LJ030-0103.wav\",\"LJ030-0104.wav\",\"LJ030-0105.wav\",\"LJ030-0106.wav\",\"LJ030-0107.wav\",\"LJ030-0108.wav\",\"LJ030-0109.wav\",\"LJ030-0110.wav\",\"LJ030-0111.wav\",\"LJ030-0112.wav\",\"LJ030-0113.wav\",\"LJ030-0114.wav\",\"LJ030-0115.wav\",\"LJ030-0116.wav\",\"LJ030-0117.wav\",\"LJ030-0118.wav\",\"LJ030-0119.wav\",\"LJ030-0120.wav\",\"LJ030-0121.wav\",\"LJ030-0122.wav\",\"LJ030-0123.wav\",\"LJ030-0124.wav\",\"LJ030-0125.wav\",\"LJ030-0126.wav\",\"LJ030-0127.wav\",\"LJ030-0128.wav\",\"LJ030-0129.wav\",\"LJ030-0130.wav\",\"LJ030-0131.wav\",\"LJ030-0132.wav\",\"LJ030-0133.wav\",\"LJ030-0134.wav\",\"LJ030-0135.wav\",\"LJ030-0136.wav\",\"LJ030-0137.wav\",\"LJ030-0138.wav\",\"LJ030-0139.wav\",\"LJ030-0140.wav\",\"LJ030-0141.wav\",\"LJ030-0142.wav\",\"LJ030-0143.wav\",\"LJ030-0144.wav\",\"LJ030-0145.wav\",\"LJ030-0146.wav\",\"LJ030-0147.wav\",\"LJ030-0148.wav\",\"LJ030-0149.wav\",\"LJ030-0150.wav\",\"LJ030-0151.wav\",\"LJ030-0152.wav\",\"LJ030-0153.wav\",\"LJ030-0154.wav\",\"LJ030-0155.wav\",\"LJ030-0156.wav\",\"LJ030-0157.wav\",\"LJ030-0158.wav\",\"LJ030-0159.wav\",\"LJ030-0160.wav\",\"LJ030-0161.wav\",\"LJ030-0162.wav\",\"LJ030-0163.wav\",\"LJ030-0164.wav\",\"LJ030-0165.wav\",\"LJ030-0166.wav\",\"LJ030-0167.wav\",\"LJ030-0168.wav\",\"LJ030-0169.wav\",\"LJ030-0170.wav\",\"LJ030-0171.wav\",\"LJ030-0172.wav\",\"LJ030-0173.wav\",\"LJ030-0174.wav\",\"LJ030-0175.wav\",\"LJ030-0176.wav\",\"LJ030-0177.wav\",\"LJ030-0178.wav\",\"LJ030-0179.wav\",\"LJ030-0180.wav\",\"LJ030-0181.wav\",\"LJ030-0182.wav\",\"LJ030-0183.wav\",\"LJ030-0184.wav\",\"LJ030-0185.wav\",\"LJ030-0186.wav\",\"LJ030-0187.wav\",\"LJ030-0188.wav\",\"LJ030-0189.wav\",\"LJ030-0190.wav\",\"LJ030-0191.wav\",\"LJ030-0192.wav\",\"LJ030-0193.wav\",\"LJ030-0194.wav\",\"LJ030-0195.wav\",\"LJ030-0196.wav\",\"LJ030-0197.wav\",\"LJ030-0198.wav\",\"LJ030-0199.wav\",\"LJ030-0200.wav\",\"LJ030-0201.wav\",\"LJ030-0202.wav\",\"LJ030-0203.wav\",\"LJ030-0204.wav\",\"LJ030-0205.wav\",\"LJ030-0206.wav\",\"LJ030-0207.wav\",\"LJ030-0208.wav\",\"LJ030-0209.wav\",\"LJ030-0210.wav\",\"LJ030-0211.wav\",\"LJ030-0212.wav\",\"LJ030-0213.wav\",\"LJ030-0214.wav\",\"LJ030-0215.wav\",\"LJ030-0216.wav\",\"LJ030-0217.wav\",\"LJ030-0218.wav\",\"LJ030-0219.wav\",\"LJ030-0220.wav\",\"LJ030-0221.wav\",\"LJ030-0222.wav\",\"LJ030-0223.wav\",\"LJ030-0224.wav\",\"LJ030-0225.wav\",\"LJ030-0226.wav\",\"LJ030-0227.wav\",\"LJ030-0228.wav\",\"LJ030-0229.wav\",\"LJ030-0230.wav\",\"LJ030-0231.wav\",\"LJ030-0232.wav\",\"LJ030-0233.wav\",\"LJ030-0234.wav\",\"LJ030-0235.wav\",\"LJ030-0236.wav\",\"LJ030-0237.wav\",\"LJ030-0238.wav\",\"LJ030-0239.wav\",\"LJ030-0240.wav\",\"LJ030-0241.wav\",\"LJ030-0242.wav\",\"LJ030-0243.wav\",\"LJ030-0244.wav\",\"LJ030-0245.wav\",\"LJ030-0246.wav\",\"LJ030-0247.wav\",\"LJ030-0248.wav\",\"LJ030-0249.wav\",\"LJ030-0250.wav\",\"LJ030-0251.wav\",\"LJ030-0252.wav\",\"LJ030-0253.wav\",\"LJ030-0254.wav\",\"LJ030-0255.wav\",\"LJ031-0001.wav\",\"LJ031-0002.wav\",\"LJ031-0003.wav\",\"LJ031-0004.wav\",\"LJ031-0005.wav\",\"LJ031-0006.wav\",\"LJ031-0007.wav\",\"LJ031-0008.wav\",\"LJ031-0009.wav\",\"LJ031-0010.wav\",\"LJ031-0011.wav\",\"LJ031-0012.wav\",\"LJ031-0013.wav\",\"LJ031-0014.wav\",\"LJ031-0015.wav\",\"LJ031-0016.wav\",\"LJ031-0017.wav\",\"LJ031-0018.wav\",\"LJ031-0019.wav\",\"LJ031-0020.wav\",\"LJ031-0021.wav\",\"LJ031-0022.wav\",\"LJ031-0023.wav\",\"LJ031-0024.wav\",\"LJ031-0025.wav\",\"LJ031-0026.wav\",\"LJ031-0027.wav\",\"LJ031-0028.wav\",\"LJ031-0029.wav\",\"LJ031-0030.wav\",\"LJ031-0031.wav\",\"LJ031-0032.wav\",\"LJ031-0033.wav\",\"LJ031-0034.wav\",\"LJ031-0035.wav\",\"LJ031-0036.wav\",\"LJ031-0037.wav\",\"LJ031-0038.wav\",\"LJ031-0039.wav\",\"LJ031-0040.wav\",\"LJ031-0041.wav\",\"LJ031-0042.wav\",\"LJ031-0043.wav\",\"LJ031-0044.wav\",\"LJ031-0045.wav\",\"LJ031-0046.wav\",\"LJ031-0047.wav\",\"LJ031-0048.wav\",\"LJ031-0049.wav\",\"LJ031-0050.wav\",\"LJ031-0051.wav\",\"LJ031-0052.wav\",\"LJ031-0053.wav\",\"LJ031-0054.wav\",\"LJ031-0055.wav\",\"LJ031-0056.wav\",\"LJ031-0057.wav\",\"LJ031-0058.wav\",\"LJ031-0059.wav\",\"LJ031-0060.wav\",\"LJ031-0061.wav\",\"LJ031-0062.wav\",\"LJ031-0063.wav\",\"LJ031-0064.wav\",\"LJ031-0065.wav\",\"LJ031-0066.wav\",\"LJ031-0067.wav\",\"LJ031-0068.wav\",\"LJ031-0069.wav\",\"LJ031-0070.wav\",\"LJ031-0071.wav\",\"LJ031-0072.wav\",\"LJ031-0073.wav\",\"LJ031-0074.wav\",\"LJ031-0075.wav\",\"LJ031-0076.wav\",\"LJ031-0077.wav\",\"LJ031-0078.wav\",\"LJ031-0079.wav\",\"LJ031-0080.wav\",\"LJ031-0081.wav\",\"LJ031-0082.wav\",\"LJ031-0083.wav\",\"LJ031-0084.wav\",\"LJ031-0085.wav\",\"LJ031-0086.wav\",\"LJ031-0087.wav\",\"LJ031-0088.wav\",\"LJ031-0089.wav\",\"LJ031-0090.wav\",\"LJ031-0091.wav\",\"LJ031-0092.wav\",\"LJ031-0093.wav\",\"LJ031-0094.wav\",\"LJ031-0095.wav\",\"LJ031-0096.wav\",\"LJ031-0097.wav\",\"LJ031-0098.wav\",\"LJ031-0099.wav\",\"LJ031-0100.wav\",\"LJ031-0101.wav\",\"LJ031-0102.wav\",\"LJ031-0103.wav\",\"LJ031-0104.wav\",\"LJ031-0105.wav\",\"LJ031-0106.wav\",\"LJ031-0107.wav\",\"LJ031-0108.wav\",\"LJ031-0109.wav\",\"LJ031-0110.wav\",\"LJ031-0111.wav\",\"LJ031-0112.wav\",\"LJ031-0113.wav\",\"LJ031-0114.wav\",\"LJ031-0115.wav\",\"LJ031-0116.wav\",\"LJ031-0117.wav\",\"LJ031-0118.wav\",\"LJ031-0119.wav\",\"LJ031-0120.wav\",\"LJ031-0121.wav\",\"LJ031-0122.wav\",\"LJ031-0123.wav\",\"LJ031-0124.wav\",\"LJ031-0125.wav\",\"LJ031-0126.wav\",\"LJ031-0127.wav\",\"LJ031-0128.wav\",\"LJ031-0129.wav\",\"LJ031-0130.wav\",\"LJ031-0131.wav\",\"LJ031-0132.wav\",\"LJ031-0133.wav\",\"LJ031-0134.wav\",\"LJ031-0135.wav\",\"LJ031-0136.wav\",\"LJ031-0137.wav\",\"LJ031-0138.wav\",\"LJ031-0139.wav\",\"LJ031-0140.wav\",\"LJ031-0141.wav\",\"LJ031-0142.wav\",\"LJ031-0143.wav\",\"LJ031-0144.wav\",\"LJ031-0145.wav\",\"LJ031-0146.wav\",\"LJ031-0147.wav\",\"LJ031-0148.wav\",\"LJ031-0149.wav\",\"LJ031-0150.wav\",\"LJ031-0151.wav\",\"LJ031-0152.wav\",\"LJ031-0153.wav\",\"LJ031-0154.wav\",\"LJ031-0155.wav\",\"LJ031-0156.wav\",\"LJ031-0157.wav\",\"LJ031-0158.wav\",\"LJ031-0159.wav\",\"LJ031-0160.wav\",\"LJ031-0161.wav\",\"LJ031-0162.wav\",\"LJ031-0163.wav\",\"LJ031-0164.wav\",\"LJ031-0165.wav\",\"LJ031-0166.wav\",\"LJ031-0167.wav\",\"LJ031-0168.wav\",\"LJ031-0169.wav\",\"LJ031-0170.wav\",\"LJ031-0171.wav\",\"LJ031-0172.wav\",\"LJ031-0173.wav\",\"LJ031-0174.wav\",\"LJ031-0175.wav\",\"LJ031-0176.wav\",\"LJ031-0177.wav\",\"LJ031-0178.wav\",\"LJ031-0179.wav\",\"LJ031-0180.wav\",\"LJ031-0181.wav\",\"LJ031-0182.wav\",\"LJ031-0183.wav\",\"LJ031-0184.wav\",\"LJ031-0185.wav\",\"LJ031-0186.wav\",\"LJ031-0187.wav\",\"LJ031-0188.wav\",\"LJ031-0189.wav\",\"LJ031-0190.wav\",\"LJ031-0191.wav\",\"LJ031-0192.wav\",\"LJ031-0193.wav\",\"LJ031-0194.wav\",\"LJ031-0195.wav\",\"LJ031-0196.wav\",\"LJ031-0197.wav\",\"LJ031-0198.wav\",\"LJ031-0199.wav\",\"LJ031-0200.wav\",\"LJ031-0201.wav\",\"LJ031-0202.wav\",\"LJ031-0203.wav\",\"LJ031-0204.wav\",\"LJ031-0205.wav\",\"LJ031-0206.wav\",\"LJ031-0207.wav\",\"LJ031-0208.wav\",\"LJ031-0209.wav\",\"LJ031-0210.wav\",\"LJ031-0211.wav\",\"LJ031-0212.wav\",\"LJ031-0213.wav\",\"LJ031-0214.wav\",\"LJ031-0215.wav\",\"LJ031-0216.wav\",\"LJ031-0217.wav\",\"LJ031-0218.wav\",\"LJ031-0219.wav\",\"LJ031-0220.wav\",\"LJ031-0221.wav\",\"LJ031-0222.wav\",\"LJ031-0223.wav\",\"LJ031-0224.wav\",\"LJ031-0225.wav\",\"LJ031-0226.wav\",\"LJ031-0227.wav\",\"LJ031-0228.wav\",\"LJ031-0229.wav\",\"LJ031-0230.wav\",\"LJ031-0231.wav\",\"LJ031-0232.wav\",\"LJ031-0233.wav\",\"LJ032-0001.wav\",\"LJ032-0002.wav\",\"LJ032-0003.wav\",\"LJ032-0004.wav\",\"LJ032-0005.wav\",\"LJ032-0006.wav\",\"LJ032-0007.wav\",\"LJ032-0008.wav\",\"LJ032-0009.wav\",\"LJ032-0010.wav\",\"LJ032-0011.wav\",\"LJ032-0012.wav\",\"LJ032-0013.wav\",\"LJ032-0014.wav\",\"LJ032-0015.wav\",\"LJ032-0016.wav\",\"LJ032-0017.wav\",\"LJ032-0018.wav\",\"LJ032-0019.wav\",\"LJ032-0020.wav\",\"LJ032-0021.wav\",\"LJ032-0022.wav\",\"LJ032-0023.wav\",\"LJ032-0024.wav\",\"LJ032-0025.wav\",\"LJ032-0026.wav\",\"LJ032-0027.wav\",\"LJ032-0028.wav\",\"LJ032-0029.wav\",\"LJ032-0030.wav\",\"LJ032-0031.wav\",\"LJ032-0032.wav\",\"LJ032-0033.wav\",\"LJ032-0034.wav\",\"LJ032-0035.wav\",\"LJ032-0036.wav\",\"LJ032-0037.wav\",\"LJ032-0038.wav\",\"LJ032-0039.wav\",\"LJ032-0040.wav\",\"LJ032-0041.wav\",\"LJ032-0042.wav\",\"LJ032-0043.wav\",\"LJ032-0044.wav\",\"LJ032-0045.wav\",\"LJ032-0046.wav\",\"LJ032-0047.wav\",\"LJ032-0048.wav\",\"LJ032-0049.wav\",\"LJ032-0050.wav\",\"LJ032-0051.wav\",\"LJ032-0052.wav\",\"LJ032-0053.wav\",\"LJ032-0054.wav\",\"LJ032-0055.wav\",\"LJ032-0056.wav\",\"LJ032-0057.wav\",\"LJ032-0058.wav\",\"LJ032-0059.wav\",\"LJ032-0060.wav\",\"LJ032-0061.wav\",\"LJ032-0062.wav\",\"LJ032-0063.wav\",\"LJ032-0064.wav\",\"LJ032-0065.wav\",\"LJ032-0066.wav\",\"LJ032-0067.wav\",\"LJ032-0068.wav\",\"LJ032-0069.wav\",\"LJ032-0070.wav\",\"LJ032-0071.wav\",\"LJ032-0072.wav\",\"LJ032-0073.wav\",\"LJ032-0074.wav\",\"LJ032-0075.wav\",\"LJ032-0076.wav\",\"LJ032-0077.wav\",\"LJ032-0078.wav\",\"LJ032-0079.wav\",\"LJ032-0080.wav\",\"LJ032-0081.wav\",\"LJ032-0082.wav\",\"LJ032-0083.wav\",\"LJ032-0084.wav\",\"LJ032-0085.wav\",\"LJ032-0086.wav\",\"LJ032-0087.wav\",\"LJ032-0088.wav\",\"LJ032-0089.wav\",\"LJ032-0090.wav\",\"LJ032-0091.wav\",\"LJ032-0092.wav\",\"LJ032-0093.wav\",\"LJ032-0094.wav\",\"LJ032-0095.wav\",\"LJ032-0096.wav\",\"LJ032-0097.wav\",\"LJ032-0098.wav\",\"LJ032-0099.wav\",\"LJ032-0100.wav\",\"LJ032-0101.wav\",\"LJ032-0102.wav\",\"LJ032-0103.wav\",\"LJ032-0104.wav\",\"LJ032-0105.wav\",\"LJ032-0106.wav\",\"LJ032-0107.wav\",\"LJ032-0108.wav\",\"LJ032-0109.wav\",\"LJ032-0110.wav\",\"LJ032-0111.wav\",\"LJ032-0112.wav\",\"LJ032-0113.wav\",\"LJ032-0114.wav\",\"LJ032-0115.wav\",\"LJ032-0116.wav\",\"LJ032-0117.wav\",\"LJ032-0118.wav\",\"LJ032-0119.wav\",\"LJ032-0120.wav\",\"LJ032-0121.wav\",\"LJ032-0122.wav\",\"LJ032-0123.wav\",\"LJ032-0124.wav\",\"LJ032-0125.wav\",\"LJ032-0126.wav\",\"LJ032-0127.wav\",\"LJ032-0128.wav\",\"LJ032-0129.wav\",\"LJ032-0130.wav\",\"LJ032-0131.wav\",\"LJ032-0132.wav\",\"LJ032-0133.wav\",\"LJ032-0134.wav\",\"LJ032-0135.wav\",\"LJ032-0136.wav\",\"LJ032-0137.wav\",\"LJ032-0138.wav\",\"LJ032-0139.wav\",\"LJ032-0140.wav\",\"LJ032-0141.wav\",\"LJ032-0142.wav\",\"LJ032-0143.wav\",\"LJ032-0144.wav\",\"LJ032-0145.wav\",\"LJ032-0146.wav\",\"LJ032-0147.wav\",\"LJ032-0148.wav\",\"LJ032-0149.wav\",\"LJ032-0150.wav\",\"LJ032-0151.wav\",\"LJ032-0152.wav\",\"LJ032-0153.wav\",\"LJ032-0154.wav\",\"LJ032-0155.wav\",\"LJ032-0156.wav\",\"LJ032-0157.wav\",\"LJ032-0158.wav\",\"LJ032-0159.wav\",\"LJ032-0160.wav\",\"LJ032-0161.wav\",\"LJ032-0162.wav\",\"LJ032-0163.wav\",\"LJ032-0164.wav\",\"LJ032-0165.wav\",\"LJ032-0166.wav\",\"LJ032-0167.wav\",\"LJ032-0168.wav\",\"LJ032-0169.wav\",\"LJ032-0170.wav\",\"LJ032-0171.wav\",\"LJ032-0172.wav\",\"LJ032-0173.wav\",\"LJ032-0174.wav\",\"LJ032-0175.wav\",\"LJ032-0176.wav\",\"LJ032-0177.wav\",\"LJ032-0178.wav\",\"LJ032-0179.wav\",\"LJ032-0180.wav\",\"LJ032-0181.wav\",\"LJ032-0182.wav\",\"LJ032-0183.wav\",\"LJ032-0184.wav\",\"LJ032-0185.wav\",\"LJ032-0186.wav\",\"LJ032-0187.wav\",\"LJ032-0188.wav\",\"LJ032-0189.wav\",\"LJ032-0190.wav\",\"LJ032-0191.wav\",\"LJ032-0192.wav\",\"LJ032-0193.wav\",\"LJ032-0194.wav\",\"LJ032-0195.wav\",\"LJ032-0196.wav\",\"LJ032-0197.wav\",\"LJ032-0198.wav\",\"LJ032-0199.wav\",\"LJ032-0200.wav\",\"LJ032-0201.wav\",\"LJ032-0202.wav\",\"LJ032-0203.wav\",\"LJ032-0204.wav\",\"LJ032-0205.wav\",\"LJ032-0206.wav\",\"LJ032-0207.wav\",\"LJ032-0208.wav\",\"LJ032-0209.wav\",\"LJ032-0210.wav\",\"LJ032-0211.wav\",\"LJ032-0212.wav\",\"LJ032-0213.wav\",\"LJ032-0214.wav\",\"LJ032-0215.wav\",\"LJ032-0216.wav\",\"LJ032-0217.wav\",\"LJ032-0218.wav\",\"LJ032-0219.wav\",\"LJ032-0220.wav\",\"LJ032-0221.wav\",\"LJ032-0222.wav\",\"LJ032-0223.wav\",\"LJ032-0224.wav\",\"LJ032-0225.wav\",\"LJ032-0226.wav\",\"LJ032-0227.wav\",\"LJ032-0228.wav\",\"LJ032-0229.wav\",\"LJ032-0230.wav\",\"LJ032-0231.wav\",\"LJ032-0232.wav\",\"LJ032-0233.wav\",\"LJ032-0234.wav\",\"LJ032-0235.wav\",\"LJ032-0236.wav\",\"LJ032-0237.wav\",\"LJ032-0238.wav\",\"LJ032-0239.wav\",\"LJ032-0240.wav\",\"LJ032-0241.wav\",\"LJ032-0242.wav\",\"LJ032-0243.wav\",\"LJ032-0244.wav\",\"LJ032-0245.wav\",\"LJ032-0246.wav\",\"LJ032-0247.wav\",\"LJ032-0248.wav\",\"LJ032-0249.wav\",\"LJ032-0250.wav\",\"LJ032-0251.wav\",\"LJ032-0252.wav\",\"LJ032-0253.wav\",\"LJ032-0254.wav\",\"LJ032-0255.wav\",\"LJ032-0256.wav\",\"LJ032-0257.wav\",\"LJ032-0258.wav\",\"LJ032-0259.wav\",\"LJ032-0260.wav\",\"LJ032-0261.wav\",\"LJ032-0262.wav\",\"LJ032-0263.wav\",\"LJ032-0264.wav\",\"LJ032-0265.wav\",\"LJ032-0266.wav\",\"LJ032-0267.wav\",\"LJ032-0268.wav\",\"LJ032-0269.wav\",\"LJ032-0270.wav\",\"LJ032-0271.wav\",\"LJ032-0272.wav\",\"LJ032-0273.wav\",\"LJ032-0274.wav\",\"LJ032-0275.wav\",\"LJ033-0001.wav\",\"LJ033-0002.wav\",\"LJ033-0003.wav\",\"LJ033-0004.wav\",\"LJ033-0005.wav\",\"LJ033-0006.wav\",\"LJ033-0007.wav\",\"LJ033-0008.wav\",\"LJ033-0009.wav\",\"LJ033-0010.wav\",\"LJ033-0011.wav\",\"LJ033-0012.wav\",\"LJ033-0013.wav\",\"LJ033-0014.wav\",\"LJ033-0015.wav\",\"LJ033-0016.wav\",\"LJ033-0017.wav\",\"LJ033-0018.wav\",\"LJ033-0019.wav\",\"LJ033-0020.wav\",\"LJ033-0021.wav\",\"LJ033-0022.wav\",\"LJ033-0023.wav\",\"LJ033-0024.wav\",\"LJ033-0025.wav\",\"LJ033-0026.wav\",\"LJ033-0027.wav\",\"LJ033-0028.wav\",\"LJ033-0029.wav\",\"LJ033-0030.wav\",\"LJ033-0031.wav\",\"LJ033-0032.wav\",\"LJ033-0033.wav\",\"LJ033-0034.wav\",\"LJ033-0035.wav\",\"LJ033-0036.wav\",\"LJ033-0037.wav\",\"LJ033-0038.wav\",\"LJ033-0039.wav\",\"LJ033-0040.wav\",\"LJ033-0041.wav\",\"LJ033-0042.wav\",\"LJ033-0043.wav\",\"LJ033-0044.wav\",\"LJ033-0045.wav\",\"LJ033-0046.wav\",\"LJ033-0047.wav\",\"LJ033-0048.wav\",\"LJ033-0049.wav\",\"LJ033-0050.wav\",\"LJ033-0051.wav\",\"LJ033-0052.wav\",\"LJ033-0053.wav\",\"LJ033-0054.wav\",\"LJ033-0055.wav\",\"LJ033-0056.wav\",\"LJ033-0057.wav\",\"LJ033-0058.wav\",\"LJ033-0059.wav\",\"LJ033-0060.wav\",\"LJ033-0061.wav\",\"LJ033-0062.wav\",\"LJ033-0063.wav\",\"LJ033-0064.wav\",\"LJ033-0065.wav\",\"LJ033-0066.wav\",\"LJ033-0067.wav\",\"LJ033-0068.wav\",\"LJ033-0069.wav\",\"LJ033-0070.wav\",\"LJ033-0071.wav\",\"LJ033-0072.wav\",\"LJ033-0073.wav\",\"LJ033-0074.wav\",\"LJ033-0075.wav\",\"LJ033-0076.wav\",\"LJ033-0077.wav\",\"LJ033-0078.wav\",\"LJ033-0079.wav\",\"LJ033-0080.wav\",\"LJ033-0081.wav\",\"LJ033-0082.wav\",\"LJ033-0083.wav\",\"LJ033-0084.wav\",\"LJ033-0085.wav\",\"LJ033-0086.wav\",\"LJ033-0087.wav\",\"LJ033-0088.wav\",\"LJ033-0089.wav\",\"LJ033-0090.wav\",\"LJ033-0091.wav\",\"LJ033-0092.wav\",\"LJ033-0093.wav\",\"LJ033-0094.wav\",\"LJ033-0095.wav\",\"LJ033-0096.wav\",\"LJ033-0097.wav\",\"LJ033-0098.wav\",\"LJ033-0099.wav\",\"LJ033-0100.wav\",\"LJ033-0101.wav\",\"LJ033-0102.wav\",\"LJ033-0103.wav\",\"LJ033-0104.wav\",\"LJ033-0105.wav\",\"LJ033-0106.wav\",\"LJ033-0107.wav\",\"LJ033-0108.wav\",\"LJ033-0109.wav\",\"LJ033-0110.wav\",\"LJ033-0111.wav\",\"LJ033-0112.wav\",\"LJ033-0113.wav\",\"LJ033-0114.wav\",\"LJ033-0115.wav\",\"LJ033-0116.wav\",\"LJ033-0117.wav\",\"LJ033-0118.wav\",\"LJ033-0119.wav\",\"LJ033-0120.wav\",\"LJ033-0121.wav\",\"LJ033-0122.wav\",\"LJ033-0123.wav\",\"LJ033-0124.wav\",\"LJ033-0125.wav\",\"LJ033-0126.wav\",\"LJ033-0127.wav\",\"LJ033-0128.wav\",\"LJ033-0129.wav\",\"LJ033-0130.wav\",\"LJ033-0131.wav\",\"LJ033-0132.wav\",\"LJ033-0133.wav\",\"LJ033-0134.wav\",\"LJ033-0135.wav\",\"LJ033-0136.wav\",\"LJ033-0137.wav\",\"LJ033-0138.wav\",\"LJ033-0139.wav\",\"LJ033-0140.wav\",\"LJ033-0141.wav\",\"LJ033-0142.wav\",\"LJ033-0143.wav\",\"LJ033-0144.wav\",\"LJ033-0145.wav\",\"LJ033-0146.wav\",\"LJ033-0147.wav\",\"LJ033-0148.wav\",\"LJ033-0149.wav\",\"LJ033-0150.wav\",\"LJ033-0151.wav\",\"LJ033-0152.wav\",\"LJ033-0153.wav\",\"LJ033-0154.wav\",\"LJ033-0155.wav\",\"LJ033-0156.wav\",\"LJ033-0157.wav\",\"LJ033-0158.wav\",\"LJ033-0159.wav\",\"LJ033-0160.wav\",\"LJ033-0161.wav\",\"LJ033-0162.wav\",\"LJ033-0163.wav\",\"LJ033-0164.wav\",\"LJ033-0165.wav\",\"LJ033-0166.wav\",\"LJ033-0167.wav\",\"LJ033-0168.wav\",\"LJ033-0169.wav\",\"LJ033-0170.wav\",\"LJ033-0171.wav\",\"LJ033-0172.wav\",\"LJ033-0173.wav\",\"LJ033-0174.wav\",\"LJ033-0175.wav\",\"LJ033-0176.wav\",\"LJ033-0177.wav\",\"LJ033-0178.wav\",\"LJ033-0179.wav\",\"LJ033-0180.wav\",\"LJ033-0181.wav\",\"LJ033-0182.wav\",\"LJ033-0183.wav\",\"LJ033-0184.wav\",\"LJ033-0185.wav\",\"LJ033-0186.wav\",\"LJ033-0187.wav\",\"LJ033-0188.wav\",\"LJ033-0189.wav\",\"LJ033-0190.wav\",\"LJ033-0191.wav\",\"LJ033-0192.wav\",\"LJ033-0193.wav\",\"LJ033-0194.wav\",\"LJ033-0195.wav\",\"LJ033-0196.wav\",\"LJ033-0197.wav\",\"LJ033-0198.wav\",\"LJ033-0199.wav\",\"LJ033-0200.wav\",\"LJ033-0201.wav\",\"LJ033-0202.wav\",\"LJ033-0203.wav\",\"LJ033-0204.wav\",\"LJ033-0205.wav\",\"LJ033-0206.wav\",\"LJ033-0207.wav\",\"LJ033-0208.wav\",\"LJ033-0209.wav\",\"LJ033-0210.wav\",\"LJ033-0211.wav\",\"LJ033-0212.wav\",\"LJ033-0213.wav\",\"LJ033-0214.wav\",\"LJ034-0001.wav\",\"LJ034-0002.wav\",\"LJ034-0003.wav\",\"LJ034-0004.wav\",\"LJ034-0005.wav\",\"LJ034-0006.wav\",\"LJ034-0007.wav\",\"LJ034-0008.wav\",\"LJ034-0009.wav\",\"LJ034-0010.wav\",\"LJ034-0011.wav\",\"LJ034-0012.wav\",\"LJ034-0013.wav\",\"LJ034-0014.wav\",\"LJ034-0015.wav\",\"LJ034-0016.wav\",\"LJ034-0017.wav\",\"LJ034-0018.wav\",\"LJ034-0019.wav\",\"LJ034-0020.wav\",\"LJ034-0021.wav\",\"LJ034-0022.wav\",\"LJ034-0023.wav\",\"LJ034-0024.wav\",\"LJ034-0025.wav\",\"LJ034-0026.wav\",\"LJ034-0027.wav\",\"LJ034-0028.wav\",\"LJ034-0029.wav\",\"LJ034-0030.wav\",\"LJ034-0031.wav\",\"LJ034-0032.wav\",\"LJ034-0033.wav\",\"LJ034-0034.wav\",\"LJ034-0035.wav\",\"LJ034-0036.wav\",\"LJ034-0037.wav\",\"LJ034-0038.wav\",\"LJ034-0039.wav\",\"LJ034-0040.wav\",\"LJ034-0041.wav\",\"LJ034-0042.wav\",\"LJ034-0043.wav\",\"LJ034-0044.wav\",\"LJ034-0045.wav\",\"LJ034-0046.wav\",\"LJ034-0047.wav\",\"LJ034-0048.wav\",\"LJ034-0049.wav\",\"LJ034-0050.wav\",\"LJ034-0051.wav\",\"LJ034-0052.wav\",\"LJ034-0053.wav\",\"LJ034-0054.wav\",\"LJ034-0055.wav\",\"LJ034-0056.wav\",\"LJ034-0057.wav\",\"LJ034-0058.wav\",\"LJ034-0059.wav\",\"LJ034-0060.wav\",\"LJ034-0061.wav\",\"LJ034-0062.wav\",\"LJ034-0063.wav\",\"LJ034-0064.wav\",\"LJ034-0065.wav\",\"LJ034-0066.wav\",\"LJ034-0067.wav\",\"LJ034-0068.wav\",\"LJ034-0069.wav\",\"LJ034-0070.wav\",\"LJ034-0071.wav\",\"LJ034-0072.wav\",\"LJ034-0073.wav\",\"LJ034-0074.wav\",\"LJ034-0075.wav\",\"LJ034-0076.wav\",\"LJ034-0077.wav\",\"LJ034-0078.wav\",\"LJ034-0079.wav\",\"LJ034-0080.wav\",\"LJ034-0081.wav\",\"LJ034-0082.wav\",\"LJ034-0083.wav\",\"LJ034-0084.wav\",\"LJ034-0085.wav\",\"LJ034-0086.wav\",\"LJ034-0087.wav\",\"LJ034-0088.wav\",\"LJ034-0089.wav\",\"LJ034-0090.wav\",\"LJ034-0091.wav\",\"LJ034-0092.wav\",\"LJ034-0093.wav\",\"LJ034-0094.wav\",\"LJ034-0095.wav\",\"LJ034-0096.wav\",\"LJ034-0097.wav\",\"LJ034-0098.wav\",\"LJ034-0099.wav\",\"LJ034-0100.wav\",\"LJ034-0101.wav\",\"LJ034-0102.wav\",\"LJ034-0103.wav\",\"LJ034-0104.wav\",\"LJ034-0105.wav\",\"LJ034-0106.wav\",\"LJ034-0107.wav\",\"LJ034-0108.wav\",\"LJ034-0109.wav\",\"LJ034-0110.wav\",\"LJ034-0111.wav\",\"LJ034-0112.wav\",\"LJ034-0113.wav\",\"LJ034-0114.wav\",\"LJ034-0115.wav\",\"LJ034-0116.wav\",\"LJ034-0117.wav\",\"LJ034-0118.wav\",\"LJ034-0119.wav\",\"LJ034-0120.wav\",\"LJ034-0121.wav\",\"LJ034-0122.wav\",\"LJ034-0123.wav\",\"LJ034-0124.wav\",\"LJ034-0125.wav\",\"LJ034-0126.wav\",\"LJ034-0127.wav\",\"LJ034-0128.wav\",\"LJ034-0129.wav\",\"LJ034-0130.wav\",\"LJ034-0131.wav\",\"LJ034-0132.wav\",\"LJ034-0133.wav\",\"LJ034-0134.wav\",\"LJ034-0135.wav\",\"LJ034-0136.wav\",\"LJ034-0137.wav\",\"LJ034-0138.wav\",\"LJ034-0140.wav\",\"LJ034-0141.wav\",\"LJ034-0142.wav\",\"LJ034-0143.wav\",\"LJ034-0144.wav\",\"LJ034-0145.wav\",\"LJ034-0146.wav\",\"LJ034-0147.wav\",\"LJ034-0148.wav\",\"LJ034-0149.wav\",\"LJ034-0150.wav\",\"LJ034-0151.wav\",\"LJ034-0152.wav\",\"LJ034-0153.wav\",\"LJ034-0154.wav\",\"LJ034-0155.wav\",\"LJ034-0156.wav\",\"LJ034-0157.wav\",\"LJ034-0158.wav\",\"LJ034-0159.wav\",\"LJ034-0160.wav\",\"LJ034-0161.wav\",\"LJ034-0162.wav\",\"LJ034-0163.wav\",\"LJ034-0164.wav\",\"LJ034-0165.wav\",\"LJ034-0166.wav\",\"LJ034-0167.wav\",\"LJ034-0168.wav\",\"LJ034-0169.wav\",\"LJ034-0170.wav\",\"LJ034-0171.wav\",\"LJ034-0172.wav\",\"LJ034-0173.wav\",\"LJ034-0174.wav\",\"LJ034-0175.wav\",\"LJ034-0176.wav\",\"LJ034-0177.wav\",\"LJ034-0178.wav\",\"LJ034-0179.wav\",\"LJ034-0180.wav\",\"LJ034-0181.wav\",\"LJ034-0182.wav\",\"LJ034-0183.wav\",\"LJ034-0184.wav\",\"LJ034-0185.wav\",\"LJ034-0186.wav\",\"LJ034-0187.wav\",\"LJ034-0188.wav\",\"LJ034-0189.wav\",\"LJ034-0190.wav\",\"LJ034-0191.wav\",\"LJ034-0192.wav\",\"LJ034-0193.wav\",\"LJ034-0194.wav\",\"LJ034-0195.wav\",\"LJ034-0196.wav\",\"LJ034-0197.wav\",\"LJ034-0198.wav\",\"LJ034-0199.wav\",\"LJ034-0200.wav\",\"LJ034-0201.wav\",\"LJ034-0202.wav\",\"LJ034-0203.wav\",\"LJ034-0204.wav\",\"LJ034-0205.wav\",\"LJ034-0206.wav\",\"LJ034-0207.wav\",\"LJ034-0208.wav\",\"LJ034-0209.wav\",\"LJ034-0210.wav\",\"LJ034-0211.wav\",\"LJ034-0212.wav\",\"LJ034-0213.wav\",\"LJ034-0214.wav\",\"LJ034-0215.wav\",\"LJ034-0216.wav\",\"LJ034-0217.wav\",\"LJ034-0218.wav\",\"LJ034-0219.wav\",\"LJ035-0001.wav\",\"LJ035-0002.wav\",\"LJ035-0003.wav\",\"LJ035-0004.wav\",\"LJ035-0005.wav\",\"LJ035-0006.wav\",\"LJ035-0007.wav\",\"LJ035-0008.wav\",\"LJ035-0009.wav\",\"LJ035-0010.wav\",\"LJ035-0011.wav\",\"LJ035-0012.wav\",\"LJ035-0013.wav\",\"LJ035-0014.wav\",\"LJ035-0015.wav\",\"LJ035-0016.wav\",\"LJ035-0017.wav\",\"LJ035-0018.wav\",\"LJ035-0019.wav\",\"LJ035-0020.wav\",\"LJ035-0021.wav\",\"LJ035-0022.wav\",\"LJ035-0023.wav\",\"LJ035-0024.wav\",\"LJ035-0025.wav\",\"LJ035-0026.wav\",\"LJ035-0027.wav\",\"LJ035-0028.wav\",\"LJ035-0029.wav\",\"LJ035-0030.wav\",\"LJ035-0031.wav\",\"LJ035-0032.wav\",\"LJ035-0033.wav\",\"LJ035-0034.wav\",\"LJ035-0035.wav\",\"LJ035-0036.wav\",\"LJ035-0037.wav\",\"LJ035-0038.wav\",\"LJ035-0039.wav\",\"LJ035-0040.wav\",\"LJ035-0041.wav\",\"LJ035-0042.wav\",\"LJ035-0043.wav\",\"LJ035-0044.wav\",\"LJ035-0045.wav\",\"LJ035-0046.wav\",\"LJ035-0047.wav\",\"LJ035-0048.wav\",\"LJ035-0049.wav\",\"LJ035-0050.wav\",\"LJ035-0051.wav\",\"LJ035-0052.wav\",\"LJ035-0053.wav\",\"LJ035-0054.wav\",\"LJ035-0055.wav\",\"LJ035-0056.wav\",\"LJ035-0057.wav\",\"LJ035-0058.wav\",\"LJ035-0059.wav\",\"LJ035-0060.wav\",\"LJ035-0061.wav\",\"LJ035-0062.wav\",\"LJ035-0063.wav\",\"LJ035-0064.wav\",\"LJ035-0065.wav\",\"LJ035-0066.wav\",\"LJ035-0067.wav\",\"LJ035-0068.wav\",\"LJ035-0069.wav\",\"LJ035-0070.wav\",\"LJ035-0071.wav\",\"LJ035-0072.wav\",\"LJ035-0073.wav\",\"LJ035-0074.wav\",\"LJ035-0075.wav\",\"LJ035-0076.wav\",\"LJ035-0077.wav\",\"LJ035-0078.wav\",\"LJ035-0079.wav\",\"LJ035-0080.wav\",\"LJ035-0081.wav\",\"LJ035-0082.wav\",\"LJ035-0083.wav\",\"LJ035-0084.wav\",\"LJ035-0085.wav\",\"LJ035-0086.wav\",\"LJ035-0087.wav\",\"LJ035-0088.wav\",\"LJ035-0089.wav\",\"LJ035-0090.wav\",\"LJ035-0091.wav\",\"LJ035-0092.wav\",\"LJ035-0093.wav\",\"LJ035-0094.wav\",\"LJ035-0095.wav\",\"LJ035-0096.wav\",\"LJ035-0097.wav\",\"LJ035-0098.wav\",\"LJ035-0099.wav\",\"LJ035-0100.wav\",\"LJ035-0101.wav\",\"LJ035-0102.wav\",\"LJ035-0103.wav\",\"LJ035-0104.wav\",\"LJ035-0105.wav\",\"LJ035-0106.wav\",\"LJ035-0107.wav\",\"LJ035-0108.wav\",\"LJ035-0109.wav\",\"LJ035-0110.wav\",\"LJ035-0111.wav\",\"LJ035-0112.wav\",\"LJ035-0113.wav\",\"LJ035-0114.wav\",\"LJ035-0115.wav\",\"LJ035-0116.wav\",\"LJ035-0117.wav\",\"LJ035-0118.wav\",\"LJ035-0119.wav\",\"LJ035-0120.wav\",\"LJ035-0121.wav\",\"LJ035-0122.wav\",\"LJ035-0123.wav\",\"LJ035-0124.wav\",\"LJ035-0125.wav\",\"LJ035-0126.wav\",\"LJ035-0127.wav\",\"LJ035-0128.wav\",\"LJ035-0129.wav\",\"LJ035-0130.wav\",\"LJ035-0131.wav\",\"LJ035-0132.wav\",\"LJ035-0133.wav\",\"LJ035-0134.wav\",\"LJ035-0135.wav\",\"LJ035-0136.wav\",\"LJ035-0137.wav\",\"LJ035-0138.wav\",\"LJ035-0139.wav\",\"LJ035-0140.wav\",\"LJ035-0141.wav\",\"LJ035-0142.wav\",\"LJ035-0143.wav\",\"LJ035-0144.wav\",\"LJ035-0145.wav\",\"LJ035-0146.wav\",\"LJ035-0147.wav\",\"LJ035-0148.wav\",\"LJ035-0149.wav\",\"LJ035-0150.wav\",\"LJ035-0151.wav\",\"LJ035-0152.wav\",\"LJ035-0153.wav\",\"LJ035-0154.wav\",\"LJ035-0155.wav\",\"LJ035-0156.wav\",\"LJ035-0157.wav\",\"LJ035-0158.wav\",\"LJ035-0159.wav\",\"LJ035-0160.wav\",\"LJ035-0161.wav\",\"LJ035-0162.wav\",\"LJ035-0163.wav\",\"LJ035-0164.wav\",\"LJ035-0165.wav\",\"LJ035-0166.wav\",\"LJ035-0167.wav\",\"LJ035-0168.wav\",\"LJ035-0169.wav\",\"LJ035-0170.wav\",\"LJ035-0171.wav\",\"LJ035-0172.wav\",\"LJ035-0173.wav\",\"LJ035-0174.wav\",\"LJ035-0175.wav\",\"LJ035-0176.wav\",\"LJ035-0177.wav\",\"LJ035-0178.wav\",\"LJ035-0179.wav\",\"LJ035-0180.wav\",\"LJ035-0181.wav\",\"LJ035-0182.wav\",\"LJ035-0183.wav\",\"LJ035-0184.wav\",\"LJ035-0185.wav\",\"LJ035-0186.wav\",\"LJ035-0187.wav\",\"LJ035-0188.wav\",\"LJ035-0189.wav\",\"LJ035-0190.wav\",\"LJ035-0191.wav\",\"LJ035-0192.wav\",\"LJ035-0193.wav\",\"LJ035-0194.wav\",\"LJ035-0195.wav\",\"LJ035-0196.wav\",\"LJ035-0197.wav\",\"LJ035-0198.wav\",\"LJ035-0199.wav\",\"LJ035-0200.wav\",\"LJ035-0201.wav\",\"LJ035-0202.wav\",\"LJ035-0203.wav\",\"LJ035-0204.wav\",\"LJ035-0205.wav\",\"LJ035-0206.wav\",\"LJ035-0207.wav\",\"LJ035-0208.wav\",\"LJ035-0209.wav\",\"LJ035-0210.wav\",\"LJ036-0001.wav\",\"LJ036-0002.wav\",\"LJ036-0003.wav\",\"LJ036-0004.wav\",\"LJ036-0005.wav\",\"LJ036-0006.wav\",\"LJ036-0007.wav\",\"LJ036-0008.wav\",\"LJ036-0009.wav\",\"LJ036-0010.wav\",\"LJ036-0011.wav\",\"LJ036-0012.wav\",\"LJ036-0013.wav\",\"LJ036-0014.wav\",\"LJ036-0015.wav\",\"LJ036-0016.wav\",\"LJ036-0017.wav\",\"LJ036-0018.wav\",\"LJ036-0019.wav\",\"LJ036-0020.wav\",\"LJ036-0021.wav\",\"LJ036-0022.wav\",\"LJ036-0023.wav\",\"LJ036-0024.wav\",\"LJ036-0025.wav\",\"LJ036-0026.wav\",\"LJ036-0027.wav\",\"LJ036-0028.wav\",\"LJ036-0029.wav\",\"LJ036-0030.wav\",\"LJ036-0031.wav\",\"LJ036-0032.wav\",\"LJ036-0033.wav\",\"LJ036-0034.wav\",\"LJ036-0035.wav\",\"LJ036-0036.wav\",\"LJ036-0037.wav\",\"LJ036-0038.wav\",\"LJ036-0039.wav\",\"LJ036-0040.wav\",\"LJ036-0041.wav\",\"LJ036-0042.wav\",\"LJ036-0043.wav\",\"LJ036-0044.wav\",\"LJ036-0045.wav\",\"LJ036-0046.wav\",\"LJ036-0047.wav\",\"LJ036-0048.wav\",\"LJ036-0049.wav\",\"LJ036-0050.wav\",\"LJ036-0051.wav\",\"LJ036-0052.wav\",\"LJ036-0053.wav\",\"LJ036-0054.wav\",\"LJ036-0055.wav\",\"LJ036-0056.wav\",\"LJ036-0057.wav\",\"LJ036-0058.wav\",\"LJ036-0059.wav\",\"LJ036-0060.wav\",\"LJ036-0061.wav\",\"LJ036-0062.wav\",\"LJ036-0063.wav\",\"LJ036-0064.wav\",\"LJ036-0065.wav\",\"LJ036-0066.wav\",\"LJ036-0067.wav\",\"LJ036-0068.wav\",\"LJ036-0069.wav\",\"LJ036-0070.wav\",\"LJ036-0071.wav\",\"LJ036-0072.wav\",\"LJ036-0073.wav\",\"LJ036-0074.wav\",\"LJ036-0075.wav\",\"LJ036-0076.wav\",\"LJ036-0077.wav\",\"LJ036-0078.wav\",\"LJ036-0079.wav\",\"LJ036-0080.wav\",\"LJ036-0081.wav\",\"LJ036-0082.wav\",\"LJ036-0083.wav\",\"LJ036-0084.wav\",\"LJ036-0085.wav\",\"LJ036-0086.wav\",\"LJ036-0087.wav\",\"LJ036-0088.wav\",\"LJ036-0089.wav\",\"LJ036-0090.wav\",\"LJ036-0091.wav\",\"LJ036-0092.wav\",\"LJ036-0093.wav\",\"LJ036-0094.wav\",\"LJ036-0095.wav\",\"LJ036-0096.wav\",\"LJ036-0097.wav\",\"LJ036-0098.wav\",\"LJ036-0099.wav\",\"LJ036-0100.wav\",\"LJ036-0101.wav\",\"LJ036-0102.wav\",\"LJ036-0103.wav\",\"LJ036-0104.wav\",\"LJ036-0105.wav\",\"LJ036-0106.wav\",\"LJ036-0107.wav\",\"LJ036-0108.wav\",\"LJ036-0109.wav\",\"LJ036-0110.wav\",\"LJ036-0111.wav\",\"LJ036-0112.wav\",\"LJ036-0113.wav\",\"LJ036-0114.wav\",\"LJ036-0115.wav\",\"LJ036-0116.wav\",\"LJ036-0117.wav\",\"LJ036-0118.wav\",\"LJ036-0119.wav\",\"LJ036-0120.wav\",\"LJ036-0121.wav\",\"LJ036-0122.wav\",\"LJ036-0123.wav\",\"LJ036-0124.wav\",\"LJ036-0125.wav\",\"LJ036-0126.wav\",\"LJ036-0127.wav\",\"LJ036-0128.wav\",\"LJ036-0129.wav\",\"LJ036-0130.wav\",\"LJ036-0131.wav\",\"LJ036-0132.wav\",\"LJ036-0133.wav\",\"LJ036-0134.wav\",\"LJ036-0135.wav\",\"LJ036-0136.wav\",\"LJ036-0137.wav\",\"LJ036-0138.wav\",\"LJ036-0139.wav\",\"LJ036-0140.wav\",\"LJ036-0141.wav\",\"LJ036-0142.wav\",\"LJ036-0143.wav\",\"LJ036-0144.wav\",\"LJ036-0145.wav\",\"LJ036-0146.wav\",\"LJ036-0147.wav\",\"LJ036-0148.wav\",\"LJ036-0149.wav\",\"LJ036-0150.wav\",\"LJ036-0151.wav\",\"LJ036-0152.wav\",\"LJ036-0153.wav\",\"LJ036-0154.wav\",\"LJ036-0155.wav\",\"LJ036-0156.wav\",\"LJ036-0157.wav\",\"LJ036-0158.wav\",\"LJ036-0159.wav\",\"LJ036-0160.wav\",\"LJ036-0161.wav\",\"LJ036-0162.wav\",\"LJ036-0163.wav\",\"LJ036-0164.wav\",\"LJ036-0165.wav\",\"LJ036-0166.wav\",\"LJ036-0167.wav\",\"LJ036-0168.wav\",\"LJ036-0169.wav\",\"LJ036-0170.wav\",\"LJ036-0171.wav\",\"LJ036-0172.wav\",\"LJ036-0173.wav\",\"LJ036-0174.wav\",\"LJ036-0175.wav\",\"LJ036-0176.wav\",\"LJ036-0177.wav\",\"LJ036-0178.wav\",\"LJ036-0179.wav\",\"LJ036-0180.wav\",\"LJ036-0181.wav\",\"LJ036-0182.wav\",\"LJ036-0183.wav\",\"LJ036-0184.wav\",\"LJ036-0185.wav\",\"LJ036-0186.wav\",\"LJ036-0187.wav\",\"LJ036-0188.wav\",\"LJ036-0189.wav\",\"LJ036-0190.wav\",\"LJ036-0191.wav\",\"LJ036-0192.wav\",\"LJ036-0193.wav\",\"LJ036-0194.wav\",\"LJ036-0195.wav\",\"LJ036-0196.wav\",\"LJ036-0197.wav\",\"LJ036-0198.wav\",\"LJ036-0199.wav\",\"LJ036-0200.wav\",\"LJ036-0201.wav\",\"LJ036-0202.wav\",\"LJ036-0203.wav\",\"LJ036-0204.wav\",\"LJ036-0205.wav\",\"LJ036-0206.wav\",\"LJ036-0207.wav\",\"LJ036-0208.wav\",\"LJ036-0209.wav\",\"LJ036-0210.wav\",\"LJ036-0211.wav\",\"LJ036-0212.wav\",\"LJ036-0213.wav\",\"LJ036-0214.wav\",\"LJ036-0215.wav\",\"LJ036-0216.wav\",\"LJ036-0217.wav\",\"LJ036-0218.wav\",\"LJ037-0001.wav\",\"LJ037-0002.wav\",\"LJ037-0003.wav\",\"LJ037-0004.wav\",\"LJ037-0005.wav\",\"LJ037-0006.wav\",\"LJ037-0007.wav\",\"LJ037-0008.wav\",\"LJ037-0009.wav\",\"LJ037-0010.wav\",\"LJ037-0011.wav\",\"LJ037-0012.wav\",\"LJ037-0013.wav\",\"LJ037-0014.wav\",\"LJ037-0015.wav\",\"LJ037-0016.wav\",\"LJ037-0017.wav\",\"LJ037-0018.wav\",\"LJ037-0019.wav\",\"LJ037-0020.wav\",\"LJ037-0021.wav\",\"LJ037-0022.wav\",\"LJ037-0023.wav\",\"LJ037-0024.wav\",\"LJ037-0025.wav\",\"LJ037-0026.wav\",\"LJ037-0027.wav\",\"LJ037-0028.wav\",\"LJ037-0029.wav\",\"LJ037-0030.wav\",\"LJ037-0031.wav\",\"LJ037-0032.wav\",\"LJ037-0033.wav\",\"LJ037-0034.wav\",\"LJ037-0035.wav\",\"LJ037-0036.wav\",\"LJ037-0037.wav\",\"LJ037-0038.wav\",\"LJ037-0039.wav\",\"LJ037-0040.wav\",\"LJ037-0041.wav\",\"LJ037-0042.wav\",\"LJ037-0043.wav\",\"LJ037-0044.wav\",\"LJ037-0045.wav\",\"LJ037-0046.wav\",\"LJ037-0047.wav\",\"LJ037-0048.wav\",\"LJ037-0049.wav\",\"LJ037-0050.wav\",\"LJ037-0051.wav\",\"LJ037-0052.wav\",\"LJ037-0053.wav\",\"LJ037-0054.wav\",\"LJ037-0055.wav\",\"LJ037-0056.wav\",\"LJ037-0057.wav\",\"LJ037-0058.wav\",\"LJ037-0059.wav\",\"LJ037-0060.wav\",\"LJ037-0061.wav\",\"LJ037-0062.wav\",\"LJ037-0063.wav\",\"LJ037-0064.wav\",\"LJ037-0065.wav\",\"LJ037-0066.wav\",\"LJ037-0067.wav\",\"LJ037-0068.wav\",\"LJ037-0069.wav\",\"LJ037-0070.wav\",\"LJ037-0071.wav\",\"LJ037-0072.wav\",\"LJ037-0073.wav\",\"LJ037-0074.wav\",\"LJ037-0075.wav\",\"LJ037-0076.wav\",\"LJ037-0077.wav\",\"LJ037-0078.wav\",\"LJ037-0079.wav\",\"LJ037-0080.wav\",\"LJ037-0081.wav\",\"LJ037-0082.wav\",\"LJ037-0083.wav\",\"LJ037-0084.wav\",\"LJ037-0085.wav\",\"LJ037-0086.wav\",\"LJ037-0087.wav\",\"LJ037-0088.wav\",\"LJ037-0089.wav\",\"LJ037-0090.wav\",\"LJ037-0091.wav\",\"LJ037-0092.wav\",\"LJ037-0093.wav\",\"LJ037-0094.wav\",\"LJ037-0095.wav\",\"LJ037-0096.wav\",\"LJ037-0097.wav\",\"LJ037-0098.wav\",\"LJ037-0099.wav\",\"LJ037-0100.wav\",\"LJ037-0101.wav\",\"LJ037-0102.wav\",\"LJ037-0103.wav\",\"LJ037-0104.wav\",\"LJ037-0105.wav\",\"LJ037-0106.wav\",\"LJ037-0107.wav\",\"LJ037-0108.wav\",\"LJ037-0109.wav\",\"LJ037-0110.wav\",\"LJ037-0111.wav\",\"LJ037-0112.wav\",\"LJ037-0113.wav\",\"LJ037-0114.wav\",\"LJ037-0115.wav\",\"LJ037-0116.wav\",\"LJ037-0117.wav\",\"LJ037-0118.wav\",\"LJ037-0119.wav\",\"LJ037-0120.wav\",\"LJ037-0121.wav\",\"LJ037-0122.wav\",\"LJ037-0123.wav\",\"LJ037-0124.wav\",\"LJ037-0125.wav\",\"LJ037-0126.wav\",\"LJ037-0127.wav\",\"LJ037-0128.wav\",\"LJ037-0129.wav\",\"LJ037-0130.wav\",\"LJ037-0131.wav\",\"LJ037-0132.wav\",\"LJ037-0133.wav\",\"LJ037-0134.wav\",\"LJ037-0135.wav\",\"LJ037-0136.wav\",\"LJ037-0137.wav\",\"LJ037-0138.wav\",\"LJ037-0139.wav\",\"LJ037-0140.wav\",\"LJ037-0141.wav\",\"LJ037-0142.wav\",\"LJ037-0143.wav\",\"LJ037-0144.wav\",\"LJ037-0145.wav\",\"LJ037-0146.wav\",\"LJ037-0147.wav\",\"LJ037-0148.wav\",\"LJ037-0149.wav\",\"LJ037-0150.wav\",\"LJ037-0151.wav\",\"LJ037-0152.wav\",\"LJ037-0153.wav\",\"LJ037-0154.wav\",\"LJ037-0155.wav\",\"LJ037-0156.wav\",\"LJ037-0157.wav\",\"LJ037-0158.wav\",\"LJ037-0159.wav\",\"LJ037-0160.wav\",\"LJ037-0161.wav\",\"LJ037-0162.wav\",\"LJ037-0163.wav\",\"LJ037-0164.wav\",\"LJ037-0165.wav\",\"LJ037-0166.wav\",\"LJ037-0167.wav\",\"LJ037-0168.wav\",\"LJ037-0169.wav\",\"LJ037-0170.wav\",\"LJ037-0171.wav\",\"LJ037-0172.wav\",\"LJ037-0173.wav\",\"LJ037-0174.wav\",\"LJ037-0175.wav\",\"LJ037-0176.wav\",\"LJ037-0177.wav\",\"LJ037-0178.wav\",\"LJ037-0179.wav\",\"LJ037-0180.wav\",\"LJ037-0181.wav\",\"LJ037-0182.wav\",\"LJ037-0183.wav\",\"LJ037-0184.wav\",\"LJ037-0185.wav\",\"LJ037-0186.wav\",\"LJ037-0187.wav\",\"LJ037-0188.wav\",\"LJ037-0189.wav\",\"LJ037-0190.wav\",\"LJ037-0191.wav\",\"LJ037-0192.wav\",\"LJ037-0193.wav\",\"LJ037-0194.wav\",\"LJ037-0195.wav\",\"LJ037-0196.wav\",\"LJ037-0197.wav\",\"LJ037-0198.wav\",\"LJ037-0199.wav\",\"LJ037-0200.wav\",\"LJ037-0201.wav\",\"LJ037-0202.wav\",\"LJ037-0203.wav\",\"LJ037-0204.wav\",\"LJ037-0205.wav\",\"LJ037-0206.wav\",\"LJ037-0207.wav\",\"LJ037-0208.wav\",\"LJ037-0209.wav\",\"LJ037-0210.wav\",\"LJ037-0211.wav\",\"LJ037-0212.wav\",\"LJ037-0213.wav\",\"LJ037-0214.wav\",\"LJ037-0215.wav\",\"LJ037-0216.wav\",\"LJ037-0217.wav\",\"LJ037-0218.wav\",\"LJ037-0219.wav\",\"LJ037-0220.wav\",\"LJ037-0221.wav\",\"LJ037-0222.wav\",\"LJ037-0223.wav\",\"LJ037-0224.wav\",\"LJ037-0225.wav\",\"LJ037-0226.wav\",\"LJ037-0227.wav\",\"LJ037-0228.wav\",\"LJ037-0229.wav\",\"LJ037-0230.wav\",\"LJ037-0231.wav\",\"LJ037-0232.wav\",\"LJ037-0233.wav\",\"LJ037-0234.wav\",\"LJ037-0235.wav\",\"LJ037-0236.wav\",\"LJ037-0237.wav\",\"LJ037-0238.wav\",\"LJ037-0239.wav\",\"LJ037-0240.wav\",\"LJ037-0241.wav\",\"LJ037-0242.wav\",\"LJ037-0243.wav\",\"LJ037-0244.wav\",\"LJ037-0245.wav\",\"LJ037-0246.wav\",\"LJ037-0247.wav\",\"LJ037-0248.wav\",\"LJ037-0249.wav\",\"LJ037-0250.wav\",\"LJ037-0251.wav\",\"LJ037-0252.wav\",\"LJ037-0253.wav\",\"LJ037-0254.wav\",\"LJ037-0255.wav\",\"LJ037-0256.wav\",\"LJ037-0257.wav\",\"LJ037-0258.wav\",\"LJ037-0259.wav\",\"LJ037-0260.wav\",\"LJ037-0261.wav\",\"LJ037-0262.wav\",\"LJ037-0263.wav\",\"LJ037-0264.wav\",\"LJ037-0265.wav\",\"LJ037-0266.wav\",\"LJ037-0267.wav\",\"LJ037-0268.wav\",\"LJ037-0269.wav\",\"LJ038-0001.wav\",\"LJ038-0002.wav\",\"LJ038-0003.wav\",\"LJ038-0004.wav\",\"LJ038-0005.wav\",\"LJ038-0006.wav\",\"LJ038-0007.wav\",\"LJ038-0008.wav\",\"LJ038-0009.wav\",\"LJ038-0010.wav\",\"LJ038-0011.wav\",\"LJ038-0012.wav\",\"LJ038-0013.wav\",\"LJ038-0014.wav\",\"LJ038-0015.wav\",\"LJ038-0016.wav\",\"LJ038-0017.wav\",\"LJ038-0018.wav\",\"LJ038-0019.wav\",\"LJ038-0020.wav\",\"LJ038-0021.wav\",\"LJ038-0022.wav\",\"LJ038-0023.wav\",\"LJ038-0024.wav\",\"LJ038-0025.wav\",\"LJ038-0026.wav\",\"LJ038-0027.wav\",\"LJ038-0028.wav\",\"LJ038-0029.wav\",\"LJ038-0030.wav\",\"LJ038-0031.wav\",\"LJ038-0032.wav\",\"LJ038-0033.wav\",\"LJ038-0034.wav\",\"LJ038-0035.wav\",\"LJ038-0036.wav\",\"LJ038-0037.wav\",\"LJ038-0038.wav\",\"LJ038-0039.wav\",\"LJ038-0040.wav\",\"LJ038-0041.wav\",\"LJ038-0042.wav\",\"LJ038-0043.wav\",\"LJ038-0044.wav\",\"LJ038-0045.wav\",\"LJ038-0046.wav\",\"LJ038-0047.wav\",\"LJ038-0048.wav\",\"LJ038-0049.wav\",\"LJ038-0050.wav\",\"LJ038-0051.wav\",\"LJ038-0052.wav\",\"LJ038-0053.wav\",\"LJ038-0054.wav\",\"LJ038-0055.wav\",\"LJ038-0056.wav\",\"LJ038-0057.wav\",\"LJ038-0058.wav\",\"LJ038-0059.wav\",\"LJ038-0060.wav\",\"LJ038-0061.wav\",\"LJ038-0062.wav\",\"LJ038-0063.wav\",\"LJ038-0064.wav\",\"LJ038-0065.wav\",\"LJ038-0066.wav\",\"LJ038-0067.wav\",\"LJ038-0068.wav\",\"LJ038-0069.wav\",\"LJ038-0070.wav\",\"LJ038-0071.wav\",\"LJ038-0072.wav\",\"LJ038-0073.wav\",\"LJ038-0074.wav\",\"LJ038-0075.wav\",\"LJ038-0076.wav\",\"LJ038-0077.wav\",\"LJ038-0078.wav\",\"LJ038-0079.wav\",\"LJ038-0080.wav\",\"LJ038-0081.wav\",\"LJ038-0082.wav\",\"LJ038-0083.wav\",\"LJ038-0084.wav\",\"LJ038-0085.wav\",\"LJ038-0086.wav\",\"LJ038-0087.wav\",\"LJ038-0088.wav\",\"LJ038-0089.wav\",\"LJ038-0090.wav\",\"LJ038-0091.wav\",\"LJ038-0092.wav\",\"LJ038-0093.wav\",\"LJ038-0094.wav\",\"LJ038-0095.wav\",\"LJ038-0096.wav\",\"LJ038-0097.wav\",\"LJ038-0098.wav\",\"LJ038-0099.wav\",\"LJ038-0100.wav\",\"LJ038-0101.wav\",\"LJ038-0102.wav\",\"LJ038-0103.wav\",\"LJ038-0104.wav\",\"LJ038-0105.wav\",\"LJ038-0106.wav\",\"LJ038-0107.wav\",\"LJ038-0108.wav\",\"LJ038-0109.wav\",\"LJ038-0110.wav\",\"LJ038-0111.wav\",\"LJ038-0112.wav\",\"LJ038-0113.wav\",\"LJ038-0114.wav\",\"LJ038-0115.wav\",\"LJ038-0116.wav\",\"LJ038-0117.wav\",\"LJ038-0118.wav\",\"LJ038-0119.wav\",\"LJ038-0120.wav\",\"LJ038-0121.wav\",\"LJ038-0122.wav\",\"LJ038-0123.wav\",\"LJ038-0124.wav\",\"LJ038-0125.wav\",\"LJ038-0126.wav\",\"LJ038-0127.wav\",\"LJ038-0128.wav\",\"LJ038-0129.wav\",\"LJ038-0130.wav\",\"LJ038-0131.wav\",\"LJ038-0132.wav\",\"LJ038-0133.wav\",\"LJ038-0134.wav\",\"LJ038-0135.wav\",\"LJ038-0136.wav\",\"LJ038-0137.wav\",\"LJ038-0138.wav\",\"LJ038-0139.wav\",\"LJ038-0140.wav\",\"LJ038-0141.wav\",\"LJ038-0142.wav\",\"LJ038-0143.wav\",\"LJ038-0144.wav\",\"LJ038-0145.wav\",\"LJ038-0146.wav\",\"LJ038-0147.wav\",\"LJ038-0148.wav\",\"LJ038-0149.wav\",\"LJ038-0150.wav\",\"LJ038-0151.wav\",\"LJ038-0152.wav\",\"LJ038-0153.wav\",\"LJ038-0154.wav\",\"LJ038-0155.wav\",\"LJ038-0156.wav\",\"LJ038-0157.wav\",\"LJ038-0158.wav\",\"LJ038-0159.wav\",\"LJ038-0160.wav\",\"LJ038-0161.wav\",\"LJ038-0162.wav\",\"LJ038-0163.wav\",\"LJ038-0164.wav\",\"LJ038-0165.wav\",\"LJ038-0166.wav\",\"LJ038-0167.wav\",\"LJ038-0168.wav\",\"LJ038-0169.wav\",\"LJ038-0170.wav\",\"LJ038-0171.wav\",\"LJ038-0172.wav\",\"LJ038-0173.wav\",\"LJ038-0174.wav\",\"LJ038-0175.wav\",\"LJ038-0176.wav\",\"LJ038-0177.wav\",\"LJ038-0178.wav\",\"LJ038-0179.wav\",\"LJ038-0180.wav\",\"LJ038-0181.wav\",\"LJ038-0182.wav\",\"LJ038-0183.wav\",\"LJ038-0184.wav\",\"LJ038-0185.wav\",\"LJ038-0186.wav\",\"LJ038-0187.wav\",\"LJ038-0188.wav\",\"LJ038-0189.wav\",\"LJ038-0190.wav\",\"LJ038-0191.wav\",\"LJ038-0192.wav\",\"LJ038-0193.wav\",\"LJ038-0194.wav\",\"LJ038-0197.wav\",\"LJ038-0198.wav\",\"LJ038-0199.wav\",\"LJ038-0200.wav\",\"LJ038-0201.wav\",\"LJ038-0202.wav\",\"LJ038-0203.wav\",\"LJ038-0204.wav\",\"LJ038-0205.wav\",\"LJ038-0206.wav\",\"LJ038-0207.wav\",\"LJ038-0208.wav\",\"LJ038-0209.wav\",\"LJ038-0210.wav\",\"LJ038-0211.wav\",\"LJ038-0212.wav\",\"LJ038-0213.wav\",\"LJ038-0214.wav\",\"LJ038-0215.wav\",\"LJ038-0216.wav\",\"LJ038-0217.wav\",\"LJ038-0218.wav\",\"LJ038-0219.wav\",\"LJ038-0220.wav\",\"LJ038-0221.wav\",\"LJ038-0222.wav\",\"LJ038-0223.wav\",\"LJ038-0224.wav\",\"LJ038-0225.wav\",\"LJ038-0226.wav\",\"LJ038-0227.wav\",\"LJ038-0228.wav\",\"LJ038-0229.wav\",\"LJ038-0230.wav\",\"LJ038-0231.wav\",\"LJ038-0232.wav\",\"LJ038-0233.wav\",\"LJ038-0234.wav\",\"LJ038-0235.wav\",\"LJ038-0236.wav\",\"LJ038-0237.wav\",\"LJ038-0238.wav\",\"LJ038-0239.wav\",\"LJ038-0240.wav\",\"LJ038-0241.wav\",\"LJ038-0242.wav\",\"LJ038-0243.wav\",\"LJ038-0244.wav\",\"LJ038-0245.wav\",\"LJ038-0246.wav\",\"LJ038-0247.wav\",\"LJ038-0248.wav\",\"LJ038-0249.wav\",\"LJ038-0250.wav\",\"LJ038-0251.wav\",\"LJ038-0252.wav\",\"LJ038-0253.wav\",\"LJ038-0254.wav\",\"LJ038-0255.wav\",\"LJ038-0256.wav\",\"LJ038-0257.wav\",\"LJ038-0258.wav\",\"LJ038-0259.wav\",\"LJ038-0260.wav\",\"LJ038-0261.wav\",\"LJ038-0262.wav\",\"LJ038-0263.wav\",\"LJ038-0264.wav\",\"LJ038-0265.wav\",\"LJ038-0266.wav\",\"LJ038-0267.wav\",\"LJ038-0268.wav\",\"LJ038-0269.wav\",\"LJ038-0270.wav\",\"LJ038-0271.wav\",\"LJ038-0272.wav\",\"LJ038-0273.wav\",\"LJ038-0274.wav\",\"LJ038-0275.wav\",\"LJ038-0276.wav\",\"LJ038-0277.wav\",\"LJ038-0278.wav\",\"LJ038-0279.wav\",\"LJ038-0280.wav\",\"LJ038-0281.wav\",\"LJ038-0282.wav\",\"LJ038-0283.wav\",\"LJ038-0284.wav\",\"LJ038-0285.wav\",\"LJ038-0286.wav\",\"LJ038-0287.wav\",\"LJ038-0288.wav\",\"LJ038-0289.wav\",\"LJ038-0290.wav\",\"LJ038-0291.wav\",\"LJ038-0292.wav\",\"LJ038-0293.wav\",\"LJ038-0294.wav\",\"LJ038-0295.wav\",\"LJ038-0296.wav\",\"LJ038-0297.wav\",\"LJ038-0298.wav\",\"LJ038-0299.wav\",\"LJ038-0300.wav\",\"LJ038-0301.wav\",\"LJ038-0302.wav\",\"LJ038-0303.wav\",\"LJ038-0304.wav\",\"LJ038-0305.wav\",\"LJ038-0306.wav\",\"LJ039-0001.wav\",\"LJ039-0002.wav\",\"LJ039-0003.wav\",\"LJ039-0004.wav\",\"LJ039-0005.wav\",\"LJ039-0006.wav\",\"LJ039-0007.wav\",\"LJ039-0008.wav\",\"LJ039-0009.wav\",\"LJ039-0010.wav\",\"LJ039-0011.wav\",\"LJ039-0012.wav\",\"LJ039-0013.wav\",\"LJ039-0014.wav\",\"LJ039-0015.wav\",\"LJ039-0016.wav\",\"LJ039-0017.wav\",\"LJ039-0018.wav\",\"LJ039-0019.wav\",\"LJ039-0020.wav\",\"LJ039-0021.wav\",\"LJ039-0022.wav\",\"LJ039-0023.wav\",\"LJ039-0024.wav\",\"LJ039-0025.wav\",\"LJ039-0026.wav\",\"LJ039-0027.wav\",\"LJ039-0028.wav\",\"LJ039-0029.wav\",\"LJ039-0030.wav\",\"LJ039-0031.wav\",\"LJ039-0032.wav\",\"LJ039-0033.wav\",\"LJ039-0034.wav\",\"LJ039-0035.wav\",\"LJ039-0036.wav\",\"LJ039-0037.wav\",\"LJ039-0038.wav\",\"LJ039-0039.wav\",\"LJ039-0040.wav\",\"LJ039-0041.wav\",\"LJ039-0042.wav\",\"LJ039-0043.wav\",\"LJ039-0044.wav\",\"LJ039-0045.wav\",\"LJ039-0046.wav\",\"LJ039-0047.wav\",\"LJ039-0048.wav\",\"LJ039-0049.wav\",\"LJ039-0050.wav\",\"LJ039-0051.wav\",\"LJ039-0052.wav\",\"LJ039-0053.wav\",\"LJ039-0054.wav\",\"LJ039-0055.wav\",\"LJ039-0056.wav\",\"LJ039-0057.wav\",\"LJ039-0058.wav\",\"LJ039-0059.wav\",\"LJ039-0060.wav\",\"LJ039-0061.wav\",\"LJ039-0062.wav\",\"LJ039-0063.wav\",\"LJ039-0064.wav\",\"LJ039-0065.wav\",\"LJ039-0066.wav\",\"LJ039-0067.wav\",\"LJ039-0068.wav\",\"LJ039-0069.wav\",\"LJ039-0070.wav\",\"LJ039-0071.wav\",\"LJ039-0072.wav\",\"LJ039-0073.wav\",\"LJ039-0074.wav\",\"LJ039-0075.wav\",\"LJ039-0076.wav\",\"LJ039-0077.wav\",\"LJ039-0078.wav\",\"LJ039-0079.wav\",\"LJ039-0080.wav\",\"LJ039-0081.wav\",\"LJ039-0082.wav\",\"LJ039-0083.wav\",\"LJ039-0084.wav\",\"LJ039-0085.wav\",\"LJ039-0086.wav\",\"LJ039-0087.wav\",\"LJ039-0088.wav\",\"LJ039-0089.wav\",\"LJ039-0090.wav\",\"LJ039-0091.wav\",\"LJ039-0092.wav\",\"LJ039-0093.wav\",\"LJ039-0094.wav\",\"LJ039-0095.wav\",\"LJ039-0096.wav\",\"LJ039-0097.wav\",\"LJ039-0098.wav\",\"LJ039-0099.wav\",\"LJ039-0100.wav\",\"LJ039-0101.wav\",\"LJ039-0102.wav\",\"LJ039-0103.wav\",\"LJ039-0104.wav\",\"LJ039-0105.wav\",\"LJ039-0106.wav\",\"LJ039-0107.wav\",\"LJ039-0108.wav\",\"LJ039-0109.wav\",\"LJ039-0110.wav\",\"LJ039-0111.wav\",\"LJ039-0112.wav\",\"LJ039-0113.wav\",\"LJ039-0114.wav\",\"LJ039-0115.wav\",\"LJ039-0116.wav\",\"LJ039-0117.wav\",\"LJ039-0118.wav\",\"LJ039-0119.wav\",\"LJ039-0120.wav\",\"LJ039-0121.wav\",\"LJ039-0122.wav\",\"LJ039-0123.wav\",\"LJ039-0124.wav\",\"LJ039-0125.wav\",\"LJ039-0126.wav\",\"LJ039-0127.wav\",\"LJ039-0128.wav\",\"LJ039-0129.wav\",\"LJ039-0130.wav\",\"LJ039-0131.wav\",\"LJ039-0132.wav\",\"LJ039-0133.wav\",\"LJ039-0134.wav\",\"LJ039-0135.wav\",\"LJ039-0136.wav\",\"LJ039-0137.wav\",\"LJ039-0138.wav\",\"LJ039-0139.wav\",\"LJ039-0140.wav\",\"LJ039-0141.wav\",\"LJ039-0142.wav\",\"LJ039-0143.wav\",\"LJ039-0144.wav\",\"LJ039-0145.wav\",\"LJ039-0146.wav\",\"LJ039-0147.wav\",\"LJ039-0148.wav\",\"LJ039-0149.wav\",\"LJ039-0150.wav\",\"LJ039-0151.wav\",\"LJ039-0152.wav\",\"LJ039-0153.wav\",\"LJ039-0154.wav\",\"LJ039-0155.wav\",\"LJ039-0156.wav\",\"LJ039-0157.wav\",\"LJ039-0158.wav\",\"LJ039-0159.wav\",\"LJ039-0160.wav\",\"LJ039-0161.wav\",\"LJ039-0162.wav\",\"LJ039-0163.wav\",\"LJ039-0164.wav\",\"LJ039-0165.wav\",\"LJ039-0166.wav\",\"LJ039-0167.wav\",\"LJ039-0168.wav\",\"LJ039-0169.wav\",\"LJ039-0170.wav\",\"LJ039-0171.wav\",\"LJ039-0172.wav\",\"LJ039-0173.wav\",\"LJ039-0174.wav\",\"LJ039-0175.wav\",\"LJ039-0176.wav\",\"LJ039-0177.wav\",\"LJ039-0178.wav\",\"LJ039-0179.wav\",\"LJ039-0180.wav\",\"LJ039-0181.wav\",\"LJ039-0182.wav\",\"LJ039-0183.wav\",\"LJ039-0184.wav\",\"LJ039-0185.wav\",\"LJ039-0186.wav\",\"LJ039-0187.wav\",\"LJ039-0188.wav\",\"LJ039-0189.wav\",\"LJ039-0190.wav\",\"LJ039-0191.wav\",\"LJ039-0192.wav\",\"LJ039-0193.wav\",\"LJ039-0194.wav\",\"LJ039-0195.wav\",\"LJ039-0196.wav\",\"LJ039-0197.wav\",\"LJ039-0198.wav\",\"LJ039-0199.wav\",\"LJ039-0200.wav\",\"LJ039-0201.wav\",\"LJ039-0202.wav\",\"LJ039-0203.wav\",\"LJ039-0204.wav\",\"LJ039-0205.wav\",\"LJ039-0206.wav\",\"LJ039-0207.wav\",\"LJ039-0208.wav\",\"LJ039-0209.wav\",\"LJ039-0210.wav\",\"LJ039-0211.wav\",\"LJ039-0212.wav\",\"LJ039-0213.wav\",\"LJ039-0214.wav\",\"LJ039-0215.wav\",\"LJ039-0216.wav\",\"LJ039-0217.wav\",\"LJ039-0218.wav\",\"LJ039-0219.wav\",\"LJ039-0220.wav\",\"LJ039-0221.wav\",\"LJ039-0222.wav\",\"LJ039-0223.wav\",\"LJ039-0224.wav\",\"LJ039-0225.wav\",\"LJ039-0226.wav\",\"LJ039-0227.wav\",\"LJ039-0228.wav\",\"LJ039-0229.wav\",\"LJ039-0230.wav\",\"LJ039-0231.wav\",\"LJ039-0232.wav\",\"LJ039-0233.wav\",\"LJ039-0234.wav\",\"LJ039-0235.wav\",\"LJ039-0236.wav\",\"LJ039-0237.wav\",\"LJ039-0238.wav\",\"LJ039-0239.wav\",\"LJ039-0240.wav\",\"LJ039-0241.wav\",\"LJ039-0242.wav\",\"LJ039-0243.wav\",\"LJ039-0244.wav\",\"LJ039-0245.wav\",\"LJ039-0246.wav\",\"LJ039-0247.wav\",\"LJ039-0248.wav\",\"LJ040-0001.wav\",\"LJ040-0002.wav\",\"LJ040-0003.wav\",\"LJ040-0004.wav\",\"LJ040-0005.wav\",\"LJ040-0006.wav\",\"LJ040-0007.wav\",\"LJ040-0008.wav\",\"LJ040-0009.wav\",\"LJ040-0010.wav\",\"LJ040-0011.wav\",\"LJ040-0012.wav\",\"LJ040-0013.wav\",\"LJ040-0014.wav\",\"LJ040-0015.wav\",\"LJ040-0016.wav\",\"LJ040-0017.wav\",\"LJ040-0018.wav\",\"LJ040-0019.wav\",\"LJ040-0020.wav\",\"LJ040-0021.wav\",\"LJ040-0022.wav\",\"LJ040-0023.wav\",\"LJ040-0024.wav\",\"LJ040-0025.wav\",\"LJ040-0026.wav\",\"LJ040-0027.wav\",\"LJ040-0028.wav\",\"LJ040-0029.wav\",\"LJ040-0030.wav\",\"LJ040-0031.wav\",\"LJ040-0032.wav\",\"LJ040-0033.wav\",\"LJ040-0034.wav\",\"LJ040-0035.wav\",\"LJ040-0036.wav\",\"LJ040-0037.wav\",\"LJ040-0038.wav\",\"LJ040-0039.wav\",\"LJ040-0040.wav\",\"LJ040-0041.wav\",\"LJ040-0042.wav\",\"LJ040-0043.wav\",\"LJ040-0044.wav\",\"LJ040-0045.wav\",\"LJ040-0046.wav\",\"LJ040-0047.wav\",\"LJ040-0048.wav\",\"LJ040-0049.wav\",\"LJ040-0050.wav\",\"LJ040-0051.wav\",\"LJ040-0052.wav\",\"LJ040-0053.wav\",\"LJ040-0054.wav\",\"LJ040-0055.wav\",\"LJ040-0056.wav\",\"LJ040-0057.wav\",\"LJ040-0058.wav\",\"LJ040-0059.wav\",\"LJ040-0060.wav\",\"LJ040-0061.wav\",\"LJ040-0062.wav\",\"LJ040-0063.wav\",\"LJ040-0064.wav\",\"LJ040-0065.wav\",\"LJ040-0066.wav\",\"LJ040-0067.wav\",\"LJ040-0068.wav\",\"LJ040-0069.wav\",\"LJ040-0070.wav\",\"LJ040-0071.wav\",\"LJ040-0072.wav\",\"LJ040-0073.wav\",\"LJ040-0074.wav\",\"LJ040-0075.wav\",\"LJ040-0076.wav\",\"LJ040-0077.wav\",\"LJ040-0078.wav\",\"LJ040-0079.wav\",\"LJ040-0080.wav\",\"LJ040-0081.wav\",\"LJ040-0082.wav\",\"LJ040-0083.wav\",\"LJ040-0084.wav\",\"LJ040-0085.wav\",\"LJ040-0086.wav\",\"LJ040-0087.wav\",\"LJ040-0088.wav\",\"LJ040-0089.wav\",\"LJ040-0090.wav\",\"LJ040-0091.wav\",\"LJ040-0092.wav\",\"LJ040-0093.wav\",\"LJ040-0094.wav\",\"LJ040-0095.wav\",\"LJ040-0096.wav\",\"LJ040-0097.wav\",\"LJ040-0098.wav\",\"LJ040-0099.wav\",\"LJ040-0100.wav\",\"LJ040-0101.wav\",\"LJ040-0102.wav\",\"LJ040-0103.wav\",\"LJ040-0104.wav\",\"LJ040-0105.wav\",\"LJ040-0106.wav\",\"LJ040-0107.wav\",\"LJ040-0108.wav\",\"LJ040-0109.wav\",\"LJ040-0110.wav\",\"LJ040-0111.wav\",\"LJ040-0112.wav\",\"LJ040-0113.wav\",\"LJ040-0114.wav\",\"LJ040-0115.wav\",\"LJ040-0116.wav\",\"LJ040-0117.wav\",\"LJ040-0118.wav\",\"LJ040-0119.wav\",\"LJ040-0120.wav\",\"LJ040-0121.wav\",\"LJ040-0122.wav\",\"LJ040-0123.wav\",\"LJ040-0124.wav\",\"LJ040-0125.wav\",\"LJ040-0126.wav\",\"LJ040-0127.wav\",\"LJ040-0128.wav\",\"LJ040-0129.wav\",\"LJ040-0130.wav\",\"LJ040-0131.wav\",\"LJ040-0132.wav\",\"LJ040-0133.wav\",\"LJ040-0134.wav\",\"LJ040-0135.wav\",\"LJ040-0136.wav\",\"LJ040-0137.wav\",\"LJ040-0138.wav\",\"LJ040-0139.wav\",\"LJ040-0140.wav\",\"LJ040-0141.wav\",\"LJ040-0142.wav\",\"LJ040-0143.wav\",\"LJ040-0144.wav\",\"LJ040-0145.wav\",\"LJ040-0146.wav\",\"LJ040-0147.wav\",\"LJ040-0148.wav\",\"LJ040-0149.wav\",\"LJ040-0150.wav\",\"LJ040-0151.wav\",\"LJ040-0152.wav\",\"LJ040-0153.wav\",\"LJ040-0154.wav\",\"LJ040-0155.wav\",\"LJ040-0156.wav\",\"LJ040-0157.wav\",\"LJ040-0158.wav\",\"LJ040-0159.wav\",\"LJ040-0160.wav\",\"LJ040-0161.wav\",\"LJ040-0162.wav\",\"LJ040-0163.wav\",\"LJ040-0164.wav\",\"LJ040-0165.wav\",\"LJ040-0166.wav\",\"LJ040-0167.wav\",\"LJ040-0168.wav\",\"LJ040-0169.wav\",\"LJ040-0170.wav\",\"LJ040-0171.wav\",\"LJ040-0172.wav\",\"LJ040-0173.wav\",\"LJ040-0174.wav\",\"LJ040-0175.wav\",\"LJ040-0176.wav\",\"LJ040-0177.wav\",\"LJ040-0178.wav\",\"LJ040-0179.wav\",\"LJ040-0180.wav\",\"LJ040-0181.wav\",\"LJ040-0182.wav\",\"LJ040-0183.wav\",\"LJ040-0184.wav\",\"LJ040-0185.wav\",\"LJ040-0186.wav\",\"LJ040-0187.wav\",\"LJ040-0188.wav\",\"LJ040-0189.wav\",\"LJ040-0190.wav\",\"LJ040-0191.wav\",\"LJ040-0192.wav\",\"LJ040-0193.wav\",\"LJ040-0194.wav\",\"LJ040-0195.wav\",\"LJ040-0196.wav\",\"LJ040-0197.wav\",\"LJ040-0198.wav\",\"LJ040-0199.wav\",\"LJ040-0200.wav\",\"LJ040-0201.wav\",\"LJ040-0202.wav\",\"LJ040-0203.wav\",\"LJ040-0204.wav\",\"LJ040-0205.wav\",\"LJ040-0206.wav\",\"LJ040-0207.wav\",\"LJ040-0208.wav\",\"LJ040-0209.wav\",\"LJ040-0210.wav\",\"LJ040-0211.wav\",\"LJ040-0212.wav\",\"LJ040-0213.wav\",\"LJ040-0214.wav\",\"LJ040-0215.wav\",\"LJ040-0216.wav\",\"LJ040-0217.wav\",\"LJ040-0218.wav\",\"LJ040-0219.wav\",\"LJ040-0220.wav\",\"LJ040-0221.wav\",\"LJ040-0222.wav\",\"LJ040-0223.wav\",\"LJ040-0224.wav\",\"LJ040-0225.wav\",\"LJ040-0226.wav\",\"LJ040-0227.wav\",\"LJ040-0228.wav\",\"LJ040-0229.wav\",\"LJ040-0230.wav\",\"LJ040-0231.wav\",\"LJ040-0232.wav\",\"LJ040-0233.wav\",\"LJ040-0234.wav\",\"LJ040-0235.wav\",\"LJ040-0236.wav\",\"LJ040-0237.wav\",\"LJ040-0238.wav\",\"LJ040-0239.wav\",\"LJ040-0240.wav\",\"LJ041-0001.wav\",\"LJ041-0002.wav\",\"LJ041-0003.wav\",\"LJ041-0004.wav\",\"LJ041-0005.wav\",\"LJ041-0006.wav\",\"LJ041-0007.wav\",\"LJ041-0008.wav\",\"LJ041-0009.wav\",\"LJ041-0010.wav\",\"LJ041-0011.wav\",\"LJ041-0012.wav\",\"LJ041-0013.wav\",\"LJ041-0014.wav\",\"LJ041-0015.wav\",\"LJ041-0016.wav\",\"LJ041-0017.wav\",\"LJ041-0018.wav\",\"LJ041-0019.wav\",\"LJ041-0020.wav\",\"LJ041-0021.wav\",\"LJ041-0022.wav\",\"LJ041-0023.wav\",\"LJ041-0024.wav\",\"LJ041-0025.wav\",\"LJ041-0026.wav\",\"LJ041-0027.wav\",\"LJ041-0028.wav\",\"LJ041-0029.wav\",\"LJ041-0030.wav\",\"LJ041-0031.wav\",\"LJ041-0032.wav\",\"LJ041-0033.wav\",\"LJ041-0034.wav\",\"LJ041-0035.wav\",\"LJ041-0036.wav\",\"LJ041-0037.wav\",\"LJ041-0038.wav\",\"LJ041-0039.wav\",\"LJ041-0040.wav\",\"LJ041-0041.wav\",\"LJ041-0042.wav\",\"LJ041-0043.wav\",\"LJ041-0044.wav\",\"LJ041-0045.wav\",\"LJ041-0046.wav\",\"LJ041-0047.wav\",\"LJ041-0048.wav\",\"LJ041-0049.wav\",\"LJ041-0050.wav\",\"LJ041-0051.wav\",\"LJ041-0052.wav\",\"LJ041-0053.wav\",\"LJ041-0054.wav\",\"LJ041-0055.wav\",\"LJ041-0056.wav\",\"LJ041-0057.wav\",\"LJ041-0058.wav\",\"LJ041-0059.wav\",\"LJ041-0060.wav\",\"LJ041-0061.wav\",\"LJ041-0062.wav\",\"LJ041-0063.wav\",\"LJ041-0064.wav\",\"LJ041-0065.wav\",\"LJ041-0066.wav\",\"LJ041-0067.wav\",\"LJ041-0068.wav\",\"LJ041-0069.wav\",\"LJ041-0070.wav\",\"LJ041-0071.wav\",\"LJ041-0072.wav\",\"LJ041-0073.wav\",\"LJ041-0074.wav\",\"LJ041-0075.wav\",\"LJ041-0076.wav\",\"LJ041-0077.wav\",\"LJ041-0078.wav\",\"LJ041-0079.wav\",\"LJ041-0080.wav\",\"LJ041-0081.wav\",\"LJ041-0082.wav\",\"LJ041-0083.wav\",\"LJ041-0084.wav\",\"LJ041-0085.wav\",\"LJ041-0086.wav\",\"LJ041-0087.wav\",\"LJ041-0088.wav\",\"LJ041-0089.wav\",\"LJ041-0090.wav\",\"LJ041-0091.wav\",\"LJ041-0092.wav\",\"LJ041-0093.wav\",\"LJ041-0094.wav\",\"LJ041-0095.wav\",\"LJ041-0096.wav\",\"LJ041-0097.wav\",\"LJ041-0098.wav\",\"LJ041-0099.wav\",\"LJ041-0100.wav\",\"LJ041-0101.wav\",\"LJ041-0102.wav\",\"LJ041-0103.wav\",\"LJ041-0104.wav\",\"LJ041-0105.wav\",\"LJ041-0106.wav\",\"LJ041-0107.wav\",\"LJ041-0108.wav\",\"LJ041-0109.wav\",\"LJ041-0110.wav\",\"LJ041-0111.wav\",\"LJ041-0112.wav\",\"LJ041-0113.wav\",\"LJ041-0114.wav\",\"LJ041-0115.wav\",\"LJ041-0116.wav\",\"LJ041-0117.wav\",\"LJ041-0118.wav\",\"LJ041-0119.wav\",\"LJ041-0120.wav\",\"LJ041-0121.wav\",\"LJ041-0122.wav\",\"LJ041-0123.wav\",\"LJ041-0124.wav\",\"LJ041-0125.wav\",\"LJ041-0126.wav\",\"LJ041-0127.wav\",\"LJ041-0128.wav\",\"LJ041-0129.wav\",\"LJ041-0130.wav\",\"LJ041-0131.wav\",\"LJ041-0132.wav\",\"LJ041-0133.wav\",\"LJ041-0134.wav\",\"LJ041-0135.wav\",\"LJ041-0136.wav\",\"LJ041-0137.wav\",\"LJ041-0138.wav\",\"LJ041-0139.wav\",\"LJ041-0140.wav\",\"LJ041-0141.wav\",\"LJ041-0142.wav\",\"LJ041-0143.wav\",\"LJ041-0144.wav\",\"LJ041-0145.wav\",\"LJ041-0146.wav\",\"LJ041-0147.wav\",\"LJ041-0148.wav\",\"LJ041-0149.wav\",\"LJ041-0150.wav\",\"LJ041-0151.wav\",\"LJ041-0152.wav\",\"LJ041-0153.wav\",\"LJ041-0154.wav\",\"LJ041-0155.wav\",\"LJ041-0156.wav\",\"LJ041-0157.wav\",\"LJ041-0158.wav\",\"LJ041-0159.wav\",\"LJ041-0160.wav\",\"LJ041-0161.wav\",\"LJ041-0162.wav\",\"LJ041-0163.wav\",\"LJ041-0164.wav\",\"LJ041-0165.wav\",\"LJ041-0166.wav\",\"LJ041-0167.wav\",\"LJ041-0168.wav\",\"LJ041-0169.wav\",\"LJ041-0170.wav\",\"LJ041-0171.wav\",\"LJ041-0172.wav\",\"LJ041-0173.wav\",\"LJ041-0174.wav\",\"LJ041-0175.wav\",\"LJ041-0176.wav\",\"LJ041-0177.wav\",\"LJ041-0178.wav\",\"LJ041-0179.wav\",\"LJ041-0180.wav\",\"LJ041-0181.wav\",\"LJ041-0182.wav\",\"LJ041-0183.wav\",\"LJ041-0184.wav\",\"LJ041-0185.wav\",\"LJ041-0186.wav\",\"LJ041-0187.wav\",\"LJ041-0188.wav\",\"LJ041-0189.wav\",\"LJ041-0190.wav\",\"LJ041-0191.wav\",\"LJ041-0192.wav\",\"LJ041-0193.wav\",\"LJ041-0194.wav\",\"LJ041-0195.wav\",\"LJ041-0196.wav\",\"LJ041-0197.wav\",\"LJ041-0198.wav\",\"LJ041-0199.wav\",\"LJ041-0200.wav\",\"LJ041-0201.wav\",\"LJ041-0202.wav\",\"LJ041-0203.wav\",\"LJ042-0001.wav\",\"LJ042-0002.wav\",\"LJ042-0003.wav\",\"LJ042-0004.wav\",\"LJ042-0005.wav\",\"LJ042-0006.wav\",\"LJ042-0007.wav\",\"LJ042-0008.wav\",\"LJ042-0009.wav\",\"LJ042-0010.wav\",\"LJ042-0011.wav\",\"LJ042-0012.wav\",\"LJ042-0013.wav\",\"LJ042-0014.wav\",\"LJ042-0015.wav\",\"LJ042-0016.wav\",\"LJ042-0017.wav\",\"LJ042-0018.wav\",\"LJ042-0019.wav\",\"LJ042-0020.wav\",\"LJ042-0021.wav\",\"LJ042-0022.wav\",\"LJ042-0023.wav\",\"LJ042-0024.wav\",\"LJ042-0025.wav\",\"LJ042-0026.wav\",\"LJ042-0027.wav\",\"LJ042-0028.wav\",\"LJ042-0029.wav\",\"LJ042-0030.wav\",\"LJ042-0031.wav\",\"LJ042-0032.wav\",\"LJ042-0033.wav\",\"LJ042-0035.wav\",\"LJ042-0036.wav\",\"LJ042-0037.wav\",\"LJ042-0038.wav\",\"LJ042-0039.wav\",\"LJ042-0040.wav\",\"LJ042-0041.wav\",\"LJ042-0042.wav\",\"LJ042-0043.wav\",\"LJ042-0044.wav\",\"LJ042-0045.wav\",\"LJ042-0046.wav\",\"LJ042-0047.wav\",\"LJ042-0048.wav\",\"LJ042-0049.wav\",\"LJ042-0050.wav\",\"LJ042-0051.wav\",\"LJ042-0052.wav\",\"LJ042-0053.wav\",\"LJ042-0054.wav\",\"LJ042-0055.wav\",\"LJ042-0056.wav\",\"LJ042-0057.wav\",\"LJ042-0058.wav\",\"LJ042-0059.wav\",\"LJ042-0060.wav\",\"LJ042-0061.wav\",\"LJ042-0062.wav\",\"LJ042-0063.wav\",\"LJ042-0064.wav\",\"LJ042-0065.wav\",\"LJ042-0066.wav\",\"LJ042-0067.wav\",\"LJ042-0068.wav\",\"LJ042-0069.wav\",\"LJ042-0070.wav\",\"LJ042-0071.wav\",\"LJ042-0072.wav\",\"LJ042-0073.wav\",\"LJ042-0074.wav\",\"LJ042-0075.wav\",\"LJ042-0076.wav\",\"LJ042-0077.wav\",\"LJ042-0078.wav\",\"LJ042-0079.wav\",\"LJ042-0080.wav\",\"LJ042-0081.wav\",\"LJ042-0082.wav\",\"LJ042-0083.wav\",\"LJ042-0084.wav\",\"LJ042-0085.wav\",\"LJ042-0086.wav\",\"LJ042-0087.wav\",\"LJ042-0088.wav\",\"LJ042-0089.wav\",\"LJ042-0090.wav\",\"LJ042-0091.wav\",\"LJ042-0092.wav\",\"LJ042-0093.wav\",\"LJ042-0094.wav\",\"LJ042-0095.wav\",\"LJ042-0096.wav\",\"LJ042-0097.wav\",\"LJ042-0098.wav\",\"LJ042-0099.wav\",\"LJ042-0100.wav\",\"LJ042-0101.wav\",\"LJ042-0102.wav\",\"LJ042-0103.wav\",\"LJ042-0104.wav\",\"LJ042-0105.wav\",\"LJ042-0106.wav\",\"LJ042-0107.wav\",\"LJ042-0108.wav\",\"LJ042-0109.wav\",\"LJ042-0110.wav\",\"LJ042-0111.wav\",\"LJ042-0112.wav\",\"LJ042-0113.wav\",\"LJ042-0114.wav\",\"LJ042-0115.wav\",\"LJ042-0116.wav\",\"LJ042-0117.wav\",\"LJ042-0118.wav\",\"LJ042-0119.wav\",\"LJ042-0120.wav\",\"LJ042-0121.wav\",\"LJ042-0122.wav\",\"LJ042-0123.wav\",\"LJ042-0124.wav\",\"LJ042-0125.wav\",\"LJ042-0126.wav\",\"LJ042-0127.wav\",\"LJ042-0128.wav\",\"LJ042-0129.wav\",\"LJ042-0130.wav\",\"LJ042-0131.wav\",\"LJ042-0132.wav\",\"LJ042-0133.wav\",\"LJ042-0134.wav\",\"LJ042-0135.wav\",\"LJ042-0136.wav\",\"LJ042-0137.wav\",\"LJ042-0138.wav\",\"LJ042-0139.wav\",\"LJ042-0140.wav\",\"LJ042-0141.wav\",\"LJ042-0142.wav\",\"LJ042-0143.wav\",\"LJ042-0144.wav\",\"LJ042-0145.wav\",\"LJ042-0146.wav\",\"LJ042-0147.wav\",\"LJ042-0148.wav\",\"LJ042-0149.wav\",\"LJ042-0150.wav\",\"LJ042-0151.wav\",\"LJ042-0152.wav\",\"LJ042-0153.wav\",\"LJ042-0154.wav\",\"LJ042-0155.wav\",\"LJ042-0156.wav\",\"LJ042-0157.wav\",\"LJ042-0158.wav\",\"LJ042-0159.wav\",\"LJ042-0160.wav\",\"LJ042-0161.wav\",\"LJ042-0162.wav\",\"LJ042-0163.wav\",\"LJ042-0164.wav\",\"LJ042-0165.wav\",\"LJ042-0166.wav\",\"LJ042-0167.wav\",\"LJ042-0168.wav\",\"LJ042-0169.wav\",\"LJ042-0170.wav\",\"LJ042-0171.wav\",\"LJ042-0172.wav\",\"LJ042-0173.wav\",\"LJ042-0174.wav\",\"LJ042-0175.wav\",\"LJ042-0176.wav\",\"LJ042-0177.wav\",\"LJ042-0178.wav\",\"LJ042-0179.wav\",\"LJ042-0180.wav\",\"LJ042-0181.wav\",\"LJ042-0182.wav\",\"LJ042-0183.wav\",\"LJ042-0184.wav\",\"LJ042-0185.wav\",\"LJ042-0186.wav\",\"LJ042-0187.wav\",\"LJ042-0188.wav\",\"LJ042-0189.wav\",\"LJ042-0190.wav\",\"LJ042-0191.wav\",\"LJ042-0192.wav\",\"LJ042-0193.wav\",\"LJ042-0194.wav\",\"LJ042-0195.wav\",\"LJ042-0196.wav\",\"LJ042-0197.wav\",\"LJ042-0198.wav\",\"LJ042-0199.wav\",\"LJ042-0200.wav\",\"LJ042-0201.wav\",\"LJ042-0202.wav\",\"LJ042-0203.wav\",\"LJ042-0204.wav\",\"LJ042-0205.wav\",\"LJ042-0206.wav\",\"LJ042-0207.wav\",\"LJ042-0208.wav\",\"LJ042-0209.wav\",\"LJ042-0210.wav\",\"LJ042-0211.wav\",\"LJ042-0212.wav\",\"LJ042-0213.wav\",\"LJ042-0214.wav\",\"LJ042-0215.wav\",\"LJ042-0216.wav\",\"LJ042-0217.wav\",\"LJ042-0218.wav\",\"LJ042-0219.wav\",\"LJ042-0220.wav\",\"LJ042-0221.wav\",\"LJ042-0222.wav\",\"LJ042-0223.wav\",\"LJ042-0224.wav\",\"LJ042-0225.wav\",\"LJ042-0226.wav\",\"LJ042-0227.wav\",\"LJ042-0228.wav\",\"LJ042-0229.wav\",\"LJ042-0230.wav\",\"LJ042-0231.wav\",\"LJ042-0232.wav\",\"LJ042-0233.wav\",\"LJ042-0234.wav\",\"LJ042-0235.wav\",\"LJ042-0236.wav\",\"LJ042-0237.wav\",\"LJ042-0238.wav\",\"LJ042-0239.wav\",\"LJ042-0240.wav\",\"LJ042-0241.wav\",\"LJ042-0242.wav\",\"LJ042-0244.wav\",\"LJ042-0245.wav\",\"LJ042-0246.wav\",\"LJ042-0247.wav\",\"LJ042-0248.wav\",\"LJ042-0249.wav\",\"LJ042-0250.wav\",\"LJ042-0251.wav\",\"LJ043-0001.wav\",\"LJ043-0002.wav\",\"LJ043-0003.wav\",\"LJ043-0004.wav\",\"LJ043-0005.wav\",\"LJ043-0006.wav\",\"LJ043-0007.wav\",\"LJ043-0008.wav\",\"LJ043-0009.wav\",\"LJ043-0010.wav\",\"LJ043-0011.wav\",\"LJ043-0012.wav\",\"LJ043-0013.wav\",\"LJ043-0014.wav\",\"LJ043-0015.wav\",\"LJ043-0016.wav\",\"LJ043-0017.wav\",\"LJ043-0018.wav\",\"LJ043-0019.wav\",\"LJ043-0020.wav\",\"LJ043-0021.wav\",\"LJ043-0022.wav\",\"LJ043-0023.wav\",\"LJ043-0024.wav\",\"LJ043-0025.wav\",\"LJ043-0026.wav\",\"LJ043-0027.wav\",\"LJ043-0028.wav\",\"LJ043-0029.wav\",\"LJ043-0030.wav\",\"LJ043-0031.wav\",\"LJ043-0032.wav\",\"LJ043-0033.wav\",\"LJ043-0034.wav\",\"LJ043-0035.wav\",\"LJ043-0036.wav\",\"LJ043-0037.wav\",\"LJ043-0038.wav\",\"LJ043-0039.wav\",\"LJ043-0040.wav\",\"LJ043-0041.wav\",\"LJ043-0042.wav\",\"LJ043-0043.wav\",\"LJ043-0044.wav\",\"LJ043-0045.wav\",\"LJ043-0046.wav\",\"LJ043-0047.wav\",\"LJ043-0048.wav\",\"LJ043-0049.wav\",\"LJ043-0050.wav\",\"LJ043-0051.wav\",\"LJ043-0052.wav\",\"LJ043-0053.wav\",\"LJ043-0054.wav\",\"LJ043-0055.wav\",\"LJ043-0056.wav\",\"LJ043-0057.wav\",\"LJ043-0058.wav\",\"LJ043-0059.wav\",\"LJ043-0060.wav\",\"LJ043-0061.wav\",\"LJ043-0062.wav\",\"LJ043-0063.wav\",\"LJ043-0064.wav\",\"LJ043-0065.wav\",\"LJ043-0066.wav\",\"LJ043-0067.wav\",\"LJ043-0068.wav\",\"LJ043-0069.wav\",\"LJ043-0070.wav\",\"LJ043-0071.wav\",\"LJ043-0072.wav\",\"LJ043-0073.wav\",\"LJ043-0074.wav\",\"LJ043-0075.wav\",\"LJ043-0076.wav\",\"LJ043-0077.wav\",\"LJ043-0078.wav\",\"LJ043-0079.wav\",\"LJ043-0080.wav\",\"LJ043-0081.wav\",\"LJ043-0082.wav\",\"LJ043-0083.wav\",\"LJ043-0084.wav\",\"LJ043-0085.wav\",\"LJ043-0086.wav\",\"LJ043-0087.wav\",\"LJ043-0088.wav\",\"LJ043-0089.wav\",\"LJ043-0090.wav\",\"LJ043-0091.wav\",\"LJ043-0092.wav\",\"LJ043-0093.wav\",\"LJ043-0094.wav\",\"LJ043-0095.wav\",\"LJ043-0096.wav\",\"LJ043-0097.wav\",\"LJ043-0098.wav\",\"LJ043-0099.wav\",\"LJ043-0100.wav\",\"LJ043-0101.wav\",\"LJ043-0102.wav\",\"LJ043-0103.wav\",\"LJ043-0104.wav\",\"LJ043-0105.wav\",\"LJ043-0106.wav\",\"LJ043-0107.wav\",\"LJ043-0108.wav\",\"LJ043-0109.wav\",\"LJ043-0110.wav\",\"LJ043-0111.wav\",\"LJ043-0112.wav\",\"LJ043-0113.wav\",\"LJ043-0114.wav\",\"LJ043-0115.wav\",\"LJ043-0116.wav\",\"LJ043-0117.wav\",\"LJ043-0118.wav\",\"LJ043-0119.wav\",\"LJ043-0120.wav\",\"LJ043-0121.wav\",\"LJ043-0122.wav\",\"LJ043-0123.wav\",\"LJ043-0124.wav\",\"LJ043-0125.wav\",\"LJ043-0126.wav\",\"LJ043-0127.wav\",\"LJ043-0128.wav\",\"LJ043-0129.wav\",\"LJ043-0130.wav\",\"LJ043-0131.wav\",\"LJ043-0132.wav\",\"LJ043-0133.wav\",\"LJ043-0134.wav\",\"LJ043-0135.wav\",\"LJ043-0136.wav\",\"LJ043-0137.wav\",\"LJ043-0138.wav\",\"LJ043-0139.wav\",\"LJ043-0140.wav\",\"LJ043-0141.wav\",\"LJ043-0142.wav\",\"LJ043-0143.wav\",\"LJ043-0144.wav\",\"LJ043-0145.wav\",\"LJ043-0146.wav\",\"LJ043-0147.wav\",\"LJ043-0148.wav\",\"LJ043-0149.wav\",\"LJ043-0150.wav\",\"LJ043-0151.wav\",\"LJ043-0152.wav\",\"LJ043-0153.wav\",\"LJ043-0154.wav\",\"LJ043-0155.wav\",\"LJ043-0156.wav\",\"LJ043-0157.wav\",\"LJ043-0158.wav\",\"LJ043-0159.wav\",\"LJ043-0160.wav\",\"LJ043-0161.wav\",\"LJ043-0162.wav\",\"LJ043-0163.wav\",\"LJ043-0164.wav\",\"LJ043-0165.wav\",\"LJ043-0166.wav\",\"LJ043-0167.wav\",\"LJ043-0168.wav\",\"LJ043-0169.wav\",\"LJ043-0170.wav\",\"LJ043-0171.wav\",\"LJ043-0172.wav\",\"LJ043-0173.wav\",\"LJ043-0174.wav\",\"LJ043-0175.wav\",\"LJ043-0176.wav\",\"LJ043-0177.wav\",\"LJ043-0178.wav\",\"LJ043-0179.wav\",\"LJ043-0180.wav\",\"LJ043-0181.wav\",\"LJ043-0182.wav\",\"LJ043-0183.wav\",\"LJ043-0184.wav\",\"LJ043-0185.wav\",\"LJ043-0186.wav\",\"LJ043-0187.wav\",\"LJ043-0188.wav\",\"LJ044-0001.wav\",\"LJ044-0002.wav\",\"LJ044-0003.wav\",\"LJ044-0004.wav\",\"LJ044-0005.wav\",\"LJ044-0006.wav\",\"LJ044-0007.wav\",\"LJ044-0008.wav\",\"LJ044-0009.wav\",\"LJ044-0010.wav\",\"LJ044-0011.wav\",\"LJ044-0012.wav\",\"LJ044-0013.wav\",\"LJ044-0014.wav\",\"LJ044-0015.wav\",\"LJ044-0016.wav\",\"LJ044-0017.wav\",\"LJ044-0018.wav\",\"LJ044-0019.wav\",\"LJ044-0020.wav\",\"LJ044-0021.wav\",\"LJ044-0022.wav\",\"LJ044-0023.wav\",\"LJ044-0024.wav\",\"LJ044-0025.wav\",\"LJ044-0026.wav\",\"LJ044-0027.wav\",\"LJ044-0028.wav\",\"LJ044-0029.wav\",\"LJ044-0030.wav\",\"LJ044-0031.wav\",\"LJ044-0032.wav\",\"LJ044-0033.wav\",\"LJ044-0034.wav\",\"LJ044-0035.wav\",\"LJ044-0036.wav\",\"LJ044-0037.wav\",\"LJ044-0038.wav\",\"LJ044-0039.wav\",\"LJ044-0040.wav\",\"LJ044-0041.wav\",\"LJ044-0042.wav\",\"LJ044-0043.wav\",\"LJ044-0044.wav\",\"LJ044-0045.wav\",\"LJ044-0047.wav\",\"LJ044-0048.wav\",\"LJ044-0049.wav\",\"LJ044-0050.wav\",\"LJ044-0051.wav\",\"LJ044-0052.wav\",\"LJ044-0053.wav\",\"LJ044-0054.wav\",\"LJ044-0055.wav\",\"LJ044-0056.wav\",\"LJ044-0057.wav\",\"LJ044-0058.wav\",\"LJ044-0059.wav\",\"LJ044-0060.wav\",\"LJ044-0061.wav\",\"LJ044-0062.wav\",\"LJ044-0063.wav\",\"LJ044-0064.wav\",\"LJ044-0065.wav\",\"LJ044-0066.wav\",\"LJ044-0067.wav\",\"LJ044-0068.wav\",\"LJ044-0069.wav\",\"LJ044-0070.wav\",\"LJ044-0071.wav\",\"LJ044-0072.wav\",\"LJ044-0073.wav\",\"LJ044-0074.wav\",\"LJ044-0075.wav\",\"LJ044-0076.wav\",\"LJ044-0077.wav\",\"LJ044-0078.wav\",\"LJ044-0079.wav\",\"LJ044-0080.wav\",\"LJ044-0081.wav\",\"LJ044-0082.wav\",\"LJ044-0083.wav\",\"LJ044-0084.wav\",\"LJ044-0085.wav\",\"LJ044-0086.wav\",\"LJ044-0087.wav\",\"LJ044-0088.wav\",\"LJ044-0089.wav\",\"LJ044-0090.wav\",\"LJ044-0091.wav\",\"LJ044-0092.wav\",\"LJ044-0093.wav\",\"LJ044-0094.wav\",\"LJ044-0095.wav\",\"LJ044-0096.wav\",\"LJ044-0097.wav\",\"LJ044-0098.wav\",\"LJ044-0099.wav\",\"LJ044-0100.wav\",\"LJ044-0101.wav\",\"LJ044-0102.wav\",\"LJ044-0103.wav\",\"LJ044-0104.wav\",\"LJ044-0105.wav\",\"LJ044-0106.wav\",\"LJ044-0107.wav\",\"LJ044-0108.wav\",\"LJ044-0109.wav\",\"LJ044-0110.wav\",\"LJ044-0111.wav\",\"LJ044-0112.wav\",\"LJ044-0113.wav\",\"LJ044-0114.wav\",\"LJ044-0115.wav\",\"LJ044-0116.wav\",\"LJ044-0117.wav\",\"LJ044-0118.wav\",\"LJ044-0119.wav\",\"LJ044-0120.wav\",\"LJ044-0121.wav\",\"LJ044-0122.wav\",\"LJ044-0123.wav\",\"LJ044-0124.wav\",\"LJ044-0125.wav\",\"LJ044-0126.wav\",\"LJ044-0127.wav\",\"LJ044-0128.wav\",\"LJ044-0129.wav\",\"LJ044-0130.wav\",\"LJ044-0131.wav\",\"LJ044-0132.wav\",\"LJ044-0133.wav\",\"LJ044-0134.wav\",\"LJ044-0135.wav\",\"LJ044-0136.wav\",\"LJ044-0137.wav\",\"LJ044-0138.wav\",\"LJ044-0139.wav\",\"LJ044-0140.wav\",\"LJ044-0141.wav\",\"LJ044-0142.wav\",\"LJ044-0143.wav\",\"LJ044-0144.wav\",\"LJ044-0145.wav\",\"LJ044-0146.wav\",\"LJ044-0147.wav\",\"LJ044-0148.wav\",\"LJ044-0149.wav\",\"LJ044-0150.wav\",\"LJ044-0151.wav\",\"LJ044-0152.wav\",\"LJ044-0153.wav\",\"LJ044-0154.wav\",\"LJ044-0155.wav\",\"LJ044-0156.wav\",\"LJ044-0157.wav\",\"LJ044-0158.wav\",\"LJ044-0159.wav\",\"LJ044-0160.wav\",\"LJ044-0161.wav\",\"LJ044-0162.wav\",\"LJ044-0163.wav\",\"LJ044-0164.wav\",\"LJ044-0165.wav\",\"LJ044-0166.wav\",\"LJ044-0167.wav\",\"LJ044-0168.wav\",\"LJ044-0169.wav\",\"LJ044-0170.wav\",\"LJ044-0171.wav\",\"LJ044-0172.wav\",\"LJ044-0173.wav\",\"LJ044-0174.wav\",\"LJ044-0175.wav\",\"LJ044-0176.wav\",\"LJ044-0177.wav\",\"LJ044-0178.wav\",\"LJ044-0179.wav\",\"LJ044-0180.wav\",\"LJ044-0181.wav\",\"LJ044-0182.wav\",\"LJ044-0183.wav\",\"LJ044-0184.wav\",\"LJ044-0185.wav\",\"LJ044-0186.wav\",\"LJ044-0187.wav\",\"LJ044-0188.wav\",\"LJ044-0189.wav\",\"LJ044-0190.wav\",\"LJ044-0191.wav\",\"LJ044-0192.wav\",\"LJ044-0193.wav\",\"LJ044-0194.wav\",\"LJ044-0195.wav\",\"LJ044-0196.wav\",\"LJ044-0197.wav\",\"LJ044-0198.wav\",\"LJ044-0199.wav\",\"LJ044-0200.wav\",\"LJ044-0201.wav\",\"LJ044-0202.wav\",\"LJ044-0203.wav\",\"LJ044-0204.wav\",\"LJ044-0205.wav\",\"LJ044-0206.wav\",\"LJ044-0207.wav\",\"LJ044-0208.wav\",\"LJ044-0209.wav\",\"LJ044-0210.wav\",\"LJ044-0211.wav\",\"LJ044-0212.wav\",\"LJ044-0213.wav\",\"LJ044-0214.wav\",\"LJ044-0215.wav\",\"LJ044-0217.wav\",\"LJ044-0218.wav\",\"LJ044-0219.wav\",\"LJ044-0220.wav\",\"LJ044-0221.wav\",\"LJ044-0222.wav\",\"LJ044-0223.wav\",\"LJ044-0224.wav\",\"LJ044-0225.wav\",\"LJ044-0226.wav\",\"LJ044-0227.wav\",\"LJ044-0228.wav\",\"LJ044-0229.wav\",\"LJ044-0230.wav\",\"LJ044-0231.wav\",\"LJ044-0232.wav\",\"LJ044-0233.wav\",\"LJ044-0234.wav\",\"LJ044-0235.wav\",\"LJ044-0236.wav\",\"LJ044-0237.wav\",\"LJ044-0238.wav\",\"LJ044-0239.wav\",\"LJ045-0001.wav\",\"LJ045-0002.wav\",\"LJ045-0003.wav\",\"LJ045-0004.wav\",\"LJ045-0005.wav\",\"LJ045-0006.wav\",\"LJ045-0007.wav\",\"LJ045-0008.wav\",\"LJ045-0009.wav\",\"LJ045-0010.wav\",\"LJ045-0011.wav\",\"LJ045-0012.wav\",\"LJ045-0013.wav\",\"LJ045-0014.wav\",\"LJ045-0015.wav\",\"LJ045-0016.wav\",\"LJ045-0017.wav\",\"LJ045-0018.wav\",\"LJ045-0019.wav\",\"LJ045-0020.wav\",\"LJ045-0021.wav\",\"LJ045-0022.wav\",\"LJ045-0023.wav\",\"LJ045-0024.wav\",\"LJ045-0025.wav\",\"LJ045-0026.wav\",\"LJ045-0027.wav\",\"LJ045-0028.wav\",\"LJ045-0029.wav\",\"LJ045-0030.wav\",\"LJ045-0031.wav\",\"LJ045-0032.wav\",\"LJ045-0033.wav\",\"LJ045-0034.wav\",\"LJ045-0035.wav\",\"LJ045-0036.wav\",\"LJ045-0037.wav\",\"LJ045-0038.wav\",\"LJ045-0039.wav\",\"LJ045-0040.wav\",\"LJ045-0041.wav\",\"LJ045-0042.wav\",\"LJ045-0043.wav\",\"LJ045-0044.wav\",\"LJ045-0045.wav\",\"LJ045-0046.wav\",\"LJ045-0047.wav\",\"LJ045-0048.wav\",\"LJ045-0049.wav\",\"LJ045-0050.wav\",\"LJ045-0051.wav\",\"LJ045-0052.wav\",\"LJ045-0053.wav\",\"LJ045-0054.wav\",\"LJ045-0055.wav\",\"LJ045-0056.wav\",\"LJ045-0057.wav\",\"LJ045-0058.wav\",\"LJ045-0059.wav\",\"LJ045-0060.wav\",\"LJ045-0061.wav\",\"LJ045-0062.wav\",\"LJ045-0063.wav\",\"LJ045-0064.wav\",\"LJ045-0065.wav\",\"LJ045-0066.wav\",\"LJ045-0067.wav\",\"LJ045-0068.wav\",\"LJ045-0069.wav\",\"LJ045-0070.wav\",\"LJ045-0071.wav\",\"LJ045-0072.wav\",\"LJ045-0073.wav\",\"LJ045-0074.wav\",\"LJ045-0075.wav\",\"LJ045-0076.wav\",\"LJ045-0077.wav\",\"LJ045-0078.wav\",\"LJ045-0079.wav\",\"LJ045-0080.wav\",\"LJ045-0081.wav\",\"LJ045-0082.wav\",\"LJ045-0083.wav\",\"LJ045-0084.wav\",\"LJ045-0085.wav\",\"LJ045-0086.wav\",\"LJ045-0087.wav\",\"LJ045-0088.wav\",\"LJ045-0089.wav\",\"LJ045-0090.wav\",\"LJ045-0091.wav\",\"LJ045-0092.wav\",\"LJ045-0093.wav\",\"LJ045-0094.wav\",\"LJ045-0095.wav\",\"LJ045-0096.wav\",\"LJ045-0097.wav\",\"LJ045-0098.wav\",\"LJ045-0099.wav\",\"LJ045-0100.wav\",\"LJ045-0101.wav\",\"LJ045-0102.wav\",\"LJ045-0103.wav\",\"LJ045-0104.wav\",\"LJ045-0105.wav\",\"LJ045-0106.wav\",\"LJ045-0107.wav\",\"LJ045-0108.wav\",\"LJ045-0109.wav\",\"LJ045-0110.wav\",\"LJ045-0111.wav\",\"LJ045-0112.wav\",\"LJ045-0113.wav\",\"LJ045-0114.wav\",\"LJ045-0115.wav\",\"LJ045-0116.wav\",\"LJ045-0117.wav\",\"LJ045-0118.wav\",\"LJ045-0119.wav\",\"LJ045-0120.wav\",\"LJ045-0121.wav\",\"LJ045-0122.wav\",\"LJ045-0123.wav\",\"LJ045-0124.wav\",\"LJ045-0125.wav\",\"LJ045-0126.wav\",\"LJ045-0127.wav\",\"LJ045-0128.wav\",\"LJ045-0129.wav\",\"LJ045-0130.wav\",\"LJ045-0131.wav\",\"LJ045-0132.wav\",\"LJ045-0133.wav\",\"LJ045-0134.wav\",\"LJ045-0135.wav\",\"LJ045-0136.wav\",\"LJ045-0137.wav\",\"LJ045-0138.wav\",\"LJ045-0139.wav\",\"LJ045-0140.wav\",\"LJ045-0141.wav\",\"LJ045-0142.wav\",\"LJ045-0143.wav\",\"LJ045-0144.wav\",\"LJ045-0145.wav\",\"LJ045-0146.wav\",\"LJ045-0147.wav\",\"LJ045-0148.wav\",\"LJ045-0149.wav\",\"LJ045-0150.wav\",\"LJ045-0151.wav\",\"LJ045-0152.wav\",\"LJ045-0153.wav\",\"LJ045-0154.wav\",\"LJ045-0155.wav\",\"LJ045-0156.wav\",\"LJ045-0157.wav\",\"LJ045-0158.wav\",\"LJ045-0159.wav\",\"LJ045-0160.wav\",\"LJ045-0161.wav\",\"LJ045-0162.wav\",\"LJ045-0163.wav\",\"LJ045-0164.wav\",\"LJ045-0165.wav\",\"LJ045-0166.wav\",\"LJ045-0167.wav\",\"LJ045-0168.wav\",\"LJ045-0169.wav\",\"LJ045-0170.wav\",\"LJ045-0171.wav\",\"LJ045-0172.wav\",\"LJ045-0173.wav\",\"LJ045-0174.wav\",\"LJ045-0175.wav\",\"LJ045-0176.wav\",\"LJ045-0177.wav\",\"LJ045-0178.wav\",\"LJ045-0179.wav\",\"LJ045-0180.wav\",\"LJ045-0181.wav\",\"LJ045-0182.wav\",\"LJ045-0183.wav\",\"LJ045-0184.wav\",\"LJ045-0185.wav\",\"LJ045-0186.wav\",\"LJ045-0187.wav\",\"LJ045-0188.wav\",\"LJ045-0189.wav\",\"LJ045-0190.wav\",\"LJ045-0191.wav\",\"LJ045-0192.wav\",\"LJ045-0193.wav\",\"LJ045-0194.wav\",\"LJ045-0195.wav\",\"LJ045-0196.wav\",\"LJ045-0197.wav\",\"LJ045-0198.wav\",\"LJ045-0199.wav\",\"LJ045-0200.wav\",\"LJ045-0201.wav\",\"LJ045-0202.wav\",\"LJ045-0203.wav\",\"LJ045-0204.wav\",\"LJ045-0205.wav\",\"LJ045-0206.wav\",\"LJ045-0207.wav\",\"LJ045-0208.wav\",\"LJ045-0209.wav\",\"LJ045-0210.wav\",\"LJ045-0211.wav\",\"LJ045-0212.wav\",\"LJ045-0213.wav\",\"LJ045-0214.wav\",\"LJ045-0215.wav\",\"LJ045-0216.wav\",\"LJ045-0217.wav\",\"LJ045-0218.wav\",\"LJ045-0219.wav\",\"LJ045-0220.wav\",\"LJ045-0221.wav\",\"LJ045-0222.wav\",\"LJ045-0223.wav\",\"LJ045-0224.wav\",\"LJ045-0225.wav\",\"LJ045-0226.wav\",\"LJ045-0227.wav\",\"LJ045-0228.wav\",\"LJ045-0229.wav\",\"LJ045-0230.wav\",\"LJ045-0231.wav\",\"LJ045-0232.wav\",\"LJ045-0233.wav\",\"LJ045-0234.wav\",\"LJ045-0235.wav\",\"LJ045-0236.wav\",\"LJ045-0237.wav\",\"LJ045-0238.wav\",\"LJ045-0239.wav\",\"LJ045-0240.wav\",\"LJ045-0241.wav\",\"LJ045-0242.wav\",\"LJ045-0243.wav\",\"LJ045-0244.wav\",\"LJ045-0245.wav\",\"LJ045-0246.wav\",\"LJ045-0247.wav\",\"LJ045-0248.wav\",\"LJ045-0249.wav\",\"LJ045-0250.wav\",\"LJ046-0001.wav\",\"LJ046-0002.wav\",\"LJ046-0003.wav\",\"LJ046-0004.wav\",\"LJ046-0005.wav\",\"LJ046-0006.wav\",\"LJ046-0007.wav\",\"LJ046-0008.wav\",\"LJ046-0009.wav\",\"LJ046-0010.wav\",\"LJ046-0011.wav\",\"LJ046-0012.wav\",\"LJ046-0013.wav\",\"LJ046-0014.wav\",\"LJ046-0015.wav\",\"LJ046-0016.wav\",\"LJ046-0017.wav\",\"LJ046-0018.wav\",\"LJ046-0019.wav\",\"LJ046-0020.wav\",\"LJ046-0021.wav\",\"LJ046-0022.wav\",\"LJ046-0023.wav\",\"LJ046-0024.wav\",\"LJ046-0025.wav\",\"LJ046-0026.wav\",\"LJ046-0027.wav\",\"LJ046-0028.wav\",\"LJ046-0029.wav\",\"LJ046-0030.wav\",\"LJ046-0031.wav\",\"LJ046-0032.wav\",\"LJ046-0033.wav\",\"LJ046-0034.wav\",\"LJ046-0035.wav\",\"LJ046-0036.wav\",\"LJ046-0037.wav\",\"LJ046-0038.wav\",\"LJ046-0039.wav\",\"LJ046-0040.wav\",\"LJ046-0041.wav\",\"LJ046-0042.wav\",\"LJ046-0043.wav\",\"LJ046-0044.wav\",\"LJ046-0045.wav\",\"LJ046-0046.wav\",\"LJ046-0047.wav\",\"LJ046-0048.wav\",\"LJ046-0049.wav\",\"LJ046-0050.wav\",\"LJ046-0051.wav\",\"LJ046-0052.wav\",\"LJ046-0053.wav\",\"LJ046-0054.wav\",\"LJ046-0055.wav\",\"LJ046-0056.wav\",\"LJ046-0057.wav\",\"LJ046-0058.wav\",\"LJ046-0059.wav\",\"LJ046-0060.wav\",\"LJ046-0061.wav\",\"LJ046-0062.wav\",\"LJ046-0063.wav\",\"LJ046-0064.wav\",\"LJ046-0065.wav\",\"LJ046-0066.wav\",\"LJ046-0067.wav\",\"LJ046-0068.wav\",\"LJ046-0069.wav\",\"LJ046-0070.wav\",\"LJ046-0071.wav\",\"LJ046-0072.wav\",\"LJ046-0073.wav\",\"LJ046-0074.wav\",\"LJ046-0075.wav\",\"LJ046-0076.wav\",\"LJ046-0077.wav\",\"LJ046-0078.wav\",\"LJ046-0079.wav\",\"LJ046-0080.wav\",\"LJ046-0081.wav\",\"LJ046-0082.wav\",\"LJ046-0083.wav\",\"LJ046-0084.wav\",\"LJ046-0085.wav\",\"LJ046-0086.wav\",\"LJ046-0087.wav\",\"LJ046-0088.wav\",\"LJ046-0089.wav\",\"LJ046-0090.wav\",\"LJ046-0091.wav\",\"LJ046-0092.wav\",\"LJ046-0093.wav\",\"LJ046-0094.wav\",\"LJ046-0095.wav\",\"LJ046-0096.wav\",\"LJ046-0097.wav\",\"LJ046-0098.wav\",\"LJ046-0099.wav\",\"LJ046-0100.wav\",\"LJ046-0101.wav\",\"LJ046-0102.wav\",\"LJ046-0103.wav\",\"LJ046-0104.wav\",\"LJ046-0105.wav\",\"LJ046-0106.wav\",\"LJ046-0107.wav\",\"LJ046-0108.wav\",\"LJ046-0109.wav\",\"LJ046-0110.wav\",\"LJ046-0111.wav\",\"LJ046-0112.wav\",\"LJ046-0113.wav\",\"LJ046-0114.wav\",\"LJ046-0115.wav\",\"LJ046-0116.wav\",\"LJ046-0117.wav\",\"LJ046-0118.wav\",\"LJ046-0119.wav\",\"LJ046-0120.wav\",\"LJ046-0121.wav\",\"LJ046-0122.wav\",\"LJ046-0123.wav\",\"LJ046-0124.wav\",\"LJ046-0125.wav\",\"LJ046-0126.wav\",\"LJ046-0127.wav\",\"LJ046-0128.wav\",\"LJ046-0129.wav\",\"LJ046-0130.wav\",\"LJ046-0131.wav\",\"LJ046-0132.wav\",\"LJ046-0133.wav\",\"LJ046-0134.wav\",\"LJ046-0135.wav\",\"LJ046-0136.wav\",\"LJ046-0137.wav\",\"LJ046-0138.wav\",\"LJ046-0139.wav\",\"LJ046-0140.wav\",\"LJ046-0141.wav\",\"LJ046-0142.wav\",\"LJ046-0143.wav\",\"LJ046-0144.wav\",\"LJ046-0145.wav\",\"LJ046-0146.wav\",\"LJ046-0147.wav\",\"LJ046-0148.wav\",\"LJ046-0149.wav\",\"LJ046-0150.wav\",\"LJ046-0151.wav\",\"LJ046-0152.wav\",\"LJ046-0153.wav\",\"LJ046-0154.wav\",\"LJ046-0155.wav\",\"LJ046-0156.wav\",\"LJ046-0157.wav\",\"LJ046-0158.wav\",\"LJ046-0159.wav\",\"LJ046-0160.wav\",\"LJ046-0161.wav\",\"LJ046-0162.wav\",\"LJ046-0163.wav\",\"LJ046-0164.wav\",\"LJ046-0165.wav\",\"LJ046-0166.wav\",\"LJ046-0167.wav\",\"LJ046-0168.wav\",\"LJ046-0169.wav\",\"LJ046-0170.wav\",\"LJ046-0171.wav\",\"LJ046-0172.wav\",\"LJ046-0173.wav\",\"LJ046-0174.wav\",\"LJ046-0175.wav\",\"LJ046-0176.wav\",\"LJ046-0177.wav\",\"LJ046-0178.wav\",\"LJ046-0179.wav\",\"LJ046-0180.wav\",\"LJ046-0181.wav\",\"LJ046-0182.wav\",\"LJ046-0183.wav\",\"LJ046-0184.wav\",\"LJ046-0185.wav\",\"LJ046-0186.wav\",\"LJ046-0187.wav\",\"LJ046-0188.wav\",\"LJ046-0189.wav\",\"LJ046-0190.wav\",\"LJ046-0191.wav\",\"LJ046-0192.wav\",\"LJ046-0193.wav\",\"LJ046-0194.wav\",\"LJ046-0195.wav\",\"LJ046-0196.wav\",\"LJ046-0197.wav\",\"LJ046-0198.wav\",\"LJ046-0199.wav\",\"LJ046-0200.wav\",\"LJ046-0201.wav\",\"LJ046-0202.wav\",\"LJ046-0203.wav\",\"LJ046-0204.wav\",\"LJ046-0205.wav\",\"LJ046-0206.wav\",\"LJ046-0207.wav\",\"LJ046-0208.wav\",\"LJ046-0209.wav\",\"LJ046-0210.wav\",\"LJ046-0211.wav\",\"LJ046-0212.wav\",\"LJ046-0213.wav\",\"LJ046-0214.wav\",\"LJ046-0215.wav\",\"LJ046-0216.wav\",\"LJ046-0217.wav\",\"LJ046-0218.wav\",\"LJ046-0219.wav\",\"LJ046-0220.wav\",\"LJ046-0221.wav\",\"LJ046-0222.wav\",\"LJ046-0223.wav\",\"LJ046-0224.wav\",\"LJ046-0225.wav\",\"LJ046-0226.wav\",\"LJ046-0227.wav\",\"LJ046-0228.wav\",\"LJ046-0229.wav\",\"LJ046-0230.wav\",\"LJ046-0231.wav\",\"LJ046-0232.wav\",\"LJ046-0233.wav\",\"LJ046-0234.wav\",\"LJ046-0235.wav\",\"LJ046-0236.wav\",\"LJ046-0237.wav\",\"LJ046-0238.wav\",\"LJ046-0239.wav\",\"LJ046-0240.wav\",\"LJ046-0241.wav\",\"LJ046-0242.wav\",\"LJ046-0243.wav\",\"LJ046-0244.wav\",\"LJ046-0245.wav\",\"LJ046-0246.wav\",\"LJ046-0247.wav\",\"LJ046-0248.wav\",\"LJ046-0249.wav\",\"LJ046-0250.wav\",\"LJ046-0251.wav\",\"LJ046-0252.wav\",\"LJ046-0253.wav\",\"LJ046-0254.wav\",\"LJ047-0001.wav\",\"LJ047-0002.wav\",\"LJ047-0003.wav\",\"LJ047-0004.wav\",\"LJ047-0005.wav\",\"LJ047-0006.wav\",\"LJ047-0007.wav\",\"LJ047-0008.wav\",\"LJ047-0009.wav\",\"LJ047-0010.wav\",\"LJ047-0011.wav\",\"LJ047-0012.wav\",\"LJ047-0013.wav\",\"LJ047-0014.wav\",\"LJ047-0015.wav\",\"LJ047-0016.wav\",\"LJ047-0017.wav\",\"LJ047-0018.wav\",\"LJ047-0019.wav\",\"LJ047-0020.wav\",\"LJ047-0021.wav\",\"LJ047-0022.wav\",\"LJ047-0023.wav\",\"LJ047-0024.wav\",\"LJ047-0025.wav\",\"LJ047-0026.wav\",\"LJ047-0027.wav\",\"LJ047-0028.wav\",\"LJ047-0029.wav\",\"LJ047-0030.wav\",\"LJ047-0031.wav\",\"LJ047-0032.wav\",\"LJ047-0033.wav\",\"LJ047-0034.wav\",\"LJ047-0035.wav\",\"LJ047-0036.wav\",\"LJ047-0037.wav\",\"LJ047-0038.wav\",\"LJ047-0039.wav\",\"LJ047-0040.wav\",\"LJ047-0041.wav\",\"LJ047-0042.wav\",\"LJ047-0043.wav\",\"LJ047-0044.wav\",\"LJ047-0045.wav\",\"LJ047-0046.wav\",\"LJ047-0047.wav\",\"LJ047-0048.wav\",\"LJ047-0049.wav\",\"LJ047-0050.wav\",\"LJ047-0051.wav\",\"LJ047-0052.wav\",\"LJ047-0053.wav\",\"LJ047-0054.wav\",\"LJ047-0055.wav\",\"LJ047-0056.wav\",\"LJ047-0057.wav\",\"LJ047-0058.wav\",\"LJ047-0059.wav\",\"LJ047-0060.wav\",\"LJ047-0061.wav\",\"LJ047-0062.wav\",\"LJ047-0063.wav\",\"LJ047-0064.wav\",\"LJ047-0065.wav\",\"LJ047-0066.wav\",\"LJ047-0067.wav\",\"LJ047-0068.wav\",\"LJ047-0069.wav\",\"LJ047-0070.wav\",\"LJ047-0071.wav\",\"LJ047-0072.wav\",\"LJ047-0073.wav\",\"LJ047-0074.wav\",\"LJ047-0075.wav\",\"LJ047-0076.wav\",\"LJ047-0077.wav\",\"LJ047-0078.wav\",\"LJ047-0079.wav\",\"LJ047-0080.wav\",\"LJ047-0081.wav\",\"LJ047-0082.wav\",\"LJ047-0083.wav\",\"LJ047-0084.wav\",\"LJ047-0085.wav\",\"LJ047-0086.wav\",\"LJ047-0087.wav\",\"LJ047-0088.wav\",\"LJ047-0089.wav\",\"LJ047-0090.wav\",\"LJ047-0091.wav\",\"LJ047-0092.wav\",\"LJ047-0093.wav\",\"LJ047-0094.wav\",\"LJ047-0095.wav\",\"LJ047-0096.wav\",\"LJ047-0097.wav\",\"LJ047-0098.wav\",\"LJ047-0099.wav\",\"LJ047-0100.wav\",\"LJ047-0101.wav\",\"LJ047-0102.wav\",\"LJ047-0103.wav\",\"LJ047-0104.wav\",\"LJ047-0105.wav\",\"LJ047-0106.wav\",\"LJ047-0107.wav\",\"LJ047-0108.wav\",\"LJ047-0109.wav\",\"LJ047-0110.wav\",\"LJ047-0111.wav\",\"LJ047-0112.wav\",\"LJ047-0113.wav\",\"LJ047-0114.wav\",\"LJ047-0115.wav\",\"LJ047-0116.wav\",\"LJ047-0117.wav\",\"LJ047-0118.wav\",\"LJ047-0119.wav\",\"LJ047-0120.wav\",\"LJ047-0121.wav\",\"LJ047-0122.wav\",\"LJ047-0123.wav\",\"LJ047-0124.wav\",\"LJ047-0125.wav\",\"LJ047-0126.wav\",\"LJ047-0127.wav\",\"LJ047-0128.wav\",\"LJ047-0129.wav\",\"LJ047-0130.wav\",\"LJ047-0131.wav\",\"LJ047-0132.wav\",\"LJ047-0133.wav\",\"LJ047-0134.wav\",\"LJ047-0135.wav\",\"LJ047-0136.wav\",\"LJ047-0137.wav\",\"LJ047-0138.wav\",\"LJ047-0139.wav\",\"LJ047-0140.wav\",\"LJ047-0141.wav\",\"LJ047-0142.wav\",\"LJ047-0143.wav\",\"LJ047-0144.wav\",\"LJ047-0145.wav\",\"LJ047-0146.wav\",\"LJ047-0147.wav\",\"LJ047-0148.wav\",\"LJ047-0149.wav\",\"LJ047-0150.wav\",\"LJ047-0151.wav\",\"LJ047-0152.wav\",\"LJ047-0153.wav\",\"LJ047-0154.wav\",\"LJ047-0155.wav\",\"LJ047-0156.wav\",\"LJ047-0157.wav\",\"LJ047-0158.wav\",\"LJ047-0159.wav\",\"LJ047-0160.wav\",\"LJ047-0161.wav\",\"LJ047-0162.wav\",\"LJ047-0163.wav\",\"LJ047-0164.wav\",\"LJ047-0165.wav\",\"LJ047-0166.wav\",\"LJ047-0167.wav\",\"LJ047-0168.wav\",\"LJ047-0169.wav\",\"LJ047-0170.wav\",\"LJ047-0171.wav\",\"LJ047-0172.wav\",\"LJ047-0173.wav\",\"LJ047-0174.wav\",\"LJ047-0175.wav\",\"LJ047-0176.wav\",\"LJ047-0177.wav\",\"LJ047-0178.wav\",\"LJ047-0179.wav\",\"LJ047-0180.wav\",\"LJ047-0181.wav\",\"LJ047-0182.wav\",\"LJ047-0183.wav\",\"LJ047-0184.wav\",\"LJ047-0185.wav\",\"LJ047-0186.wav\",\"LJ047-0187.wav\",\"LJ047-0188.wav\",\"LJ047-0189.wav\",\"LJ047-0190.wav\",\"LJ047-0191.wav\",\"LJ047-0192.wav\",\"LJ047-0193.wav\",\"LJ047-0194.wav\",\"LJ047-0195.wav\",\"LJ047-0196.wav\",\"LJ047-0197.wav\",\"LJ047-0198.wav\",\"LJ047-0199.wav\",\"LJ047-0200.wav\",\"LJ047-0201.wav\",\"LJ047-0202.wav\",\"LJ047-0203.wav\",\"LJ047-0204.wav\",\"LJ047-0205.wav\",\"LJ047-0206.wav\",\"LJ047-0207.wav\",\"LJ047-0208.wav\",\"LJ047-0209.wav\",\"LJ047-0210.wav\",\"LJ047-0211.wav\",\"LJ047-0212.wav\",\"LJ047-0213.wav\",\"LJ047-0214.wav\",\"LJ047-0215.wav\",\"LJ047-0216.wav\",\"LJ047-0217.wav\",\"LJ047-0218.wav\",\"LJ047-0219.wav\",\"LJ047-0220.wav\",\"LJ047-0221.wav\",\"LJ047-0222.wav\",\"LJ047-0223.wav\",\"LJ047-0224.wav\",\"LJ047-0225.wav\",\"LJ047-0226.wav\",\"LJ047-0227.wav\",\"LJ047-0228.wav\",\"LJ047-0229.wav\",\"LJ047-0230.wav\",\"LJ047-0231.wav\",\"LJ047-0232.wav\",\"LJ047-0233.wav\",\"LJ047-0234.wav\",\"LJ047-0235.wav\",\"LJ047-0236.wav\",\"LJ047-0237.wav\",\"LJ047-0238.wav\",\"LJ047-0239.wav\",\"LJ047-0240.wav\",\"LJ047-0241.wav\",\"LJ047-0242.wav\",\"LJ047-0243.wav\",\"LJ047-0244.wav\",\"LJ047-0245.wav\",\"LJ047-0246.wav\",\"LJ047-0247.wav\",\"LJ047-0248.wav\",\"LJ047-0249.wav\",\"LJ047-0250.wav\",\"LJ048-0001.wav\",\"LJ048-0002.wav\",\"LJ048-0003.wav\",\"LJ048-0004.wav\",\"LJ048-0005.wav\",\"LJ048-0006.wav\",\"LJ048-0007.wav\",\"LJ048-0008.wav\",\"LJ048-0009.wav\",\"LJ048-0010.wav\",\"LJ048-0011.wav\",\"LJ048-0012.wav\",\"LJ048-0013.wav\",\"LJ048-0014.wav\",\"LJ048-0015.wav\",\"LJ048-0016.wav\",\"LJ048-0017.wav\",\"LJ048-0018.wav\",\"LJ048-0019.wav\",\"LJ048-0020.wav\",\"LJ048-0021.wav\",\"LJ048-0022.wav\",\"LJ048-0023.wav\",\"LJ048-0024.wav\",\"LJ048-0025.wav\",\"LJ048-0026.wav\",\"LJ048-0027.wav\",\"LJ048-0028.wav\",\"LJ048-0029.wav\",\"LJ048-0030.wav\",\"LJ048-0031.wav\",\"LJ048-0032.wav\",\"LJ048-0033.wav\",\"LJ048-0034.wav\",\"LJ048-0035.wav\",\"LJ048-0036.wav\",\"LJ048-0037.wav\",\"LJ048-0038.wav\",\"LJ048-0039.wav\",\"LJ048-0040.wav\",\"LJ048-0041.wav\",\"LJ048-0042.wav\",\"LJ048-0043.wav\",\"LJ048-0044.wav\",\"LJ048-0045.wav\",\"LJ048-0046.wav\",\"LJ048-0047.wav\",\"LJ048-0048.wav\",\"LJ048-0049.wav\",\"LJ048-0050.wav\",\"LJ048-0051.wav\",\"LJ048-0052.wav\",\"LJ048-0053.wav\",\"LJ048-0054.wav\",\"LJ048-0055.wav\",\"LJ048-0056.wav\",\"LJ048-0057.wav\",\"LJ048-0058.wav\",\"LJ048-0059.wav\",\"LJ048-0060.wav\",\"LJ048-0061.wav\",\"LJ048-0062.wav\",\"LJ048-0063.wav\",\"LJ048-0064.wav\",\"LJ048-0065.wav\",\"LJ048-0066.wav\",\"LJ048-0067.wav\",\"LJ048-0068.wav\",\"LJ048-0069.wav\",\"LJ048-0070.wav\",\"LJ048-0071.wav\",\"LJ048-0072.wav\",\"LJ048-0073.wav\",\"LJ048-0074.wav\",\"LJ048-0075.wav\",\"LJ048-0076.wav\",\"LJ048-0077.wav\",\"LJ048-0078.wav\",\"LJ048-0079.wav\",\"LJ048-0080.wav\",\"LJ048-0081.wav\",\"LJ048-0082.wav\",\"LJ048-0083.wav\",\"LJ048-0084.wav\",\"LJ048-0085.wav\",\"LJ048-0086.wav\",\"LJ048-0087.wav\",\"LJ048-0088.wav\",\"LJ048-0089.wav\",\"LJ048-0090.wav\",\"LJ048-0091.wav\",\"LJ048-0092.wav\",\"LJ048-0093.wav\",\"LJ048-0094.wav\",\"LJ048-0095.wav\",\"LJ048-0096.wav\",\"LJ048-0097.wav\",\"LJ048-0098.wav\",\"LJ048-0099.wav\",\"LJ048-0100.wav\",\"LJ048-0101.wav\",\"LJ048-0102.wav\",\"LJ048-0103.wav\",\"LJ048-0104.wav\",\"LJ048-0105.wav\",\"LJ048-0106.wav\",\"LJ048-0107.wav\",\"LJ048-0109.wav\",\"LJ048-0110.wav\",\"LJ048-0111.wav\",\"LJ048-0112.wav\",\"LJ048-0113.wav\",\"LJ048-0114.wav\",\"LJ048-0115.wav\",\"LJ048-0116.wav\",\"LJ048-0117.wav\",\"LJ048-0118.wav\",\"LJ048-0119.wav\",\"LJ048-0120.wav\",\"LJ048-0121.wav\",\"LJ048-0122.wav\",\"LJ048-0123.wav\",\"LJ048-0124.wav\",\"LJ048-0125.wav\",\"LJ048-0126.wav\",\"LJ048-0127.wav\",\"LJ048-0128.wav\",\"LJ048-0129.wav\",\"LJ048-0130.wav\",\"LJ048-0131.wav\",\"LJ048-0132.wav\",\"LJ048-0133.wav\",\"LJ048-0134.wav\",\"LJ048-0135.wav\",\"LJ048-0136.wav\",\"LJ048-0137.wav\",\"LJ048-0138.wav\",\"LJ048-0139.wav\",\"LJ048-0140.wav\",\"LJ048-0141.wav\",\"LJ048-0142.wav\",\"LJ048-0143.wav\",\"LJ048-0144.wav\",\"LJ048-0145.wav\",\"LJ048-0146.wav\",\"LJ048-0147.wav\",\"LJ048-0148.wav\",\"LJ048-0149.wav\",\"LJ048-0150.wav\",\"LJ048-0151.wav\",\"LJ048-0152.wav\",\"LJ048-0153.wav\",\"LJ048-0154.wav\",\"LJ048-0155.wav\",\"LJ048-0156.wav\",\"LJ048-0157.wav\",\"LJ048-0158.wav\",\"LJ048-0159.wav\",\"LJ048-0160.wav\",\"LJ048-0161.wav\",\"LJ048-0162.wav\",\"LJ048-0163.wav\",\"LJ048-0164.wav\",\"LJ048-0165.wav\",\"LJ048-0166.wav\",\"LJ048-0167.wav\",\"LJ048-0168.wav\",\"LJ048-0169.wav\",\"LJ048-0170.wav\",\"LJ048-0171.wav\",\"LJ048-0172.wav\",\"LJ048-0173.wav\",\"LJ048-0174.wav\",\"LJ048-0175.wav\",\"LJ048-0176.wav\",\"LJ048-0177.wav\",\"LJ048-0178.wav\",\"LJ048-0179.wav\",\"LJ048-0180.wav\",\"LJ048-0181.wav\",\"LJ048-0182.wav\",\"LJ048-0183.wav\",\"LJ048-0184.wav\",\"LJ048-0185.wav\",\"LJ048-0186.wav\",\"LJ048-0187.wav\",\"LJ048-0188.wav\",\"LJ048-0189.wav\",\"LJ048-0190.wav\",\"LJ048-0191.wav\",\"LJ048-0192.wav\",\"LJ048-0193.wav\",\"LJ048-0194.wav\",\"LJ048-0195.wav\",\"LJ048-0196.wav\",\"LJ048-0197.wav\",\"LJ048-0198.wav\",\"LJ048-0199.wav\",\"LJ048-0200.wav\",\"LJ048-0201.wav\",\"LJ048-0202.wav\",\"LJ048-0203.wav\",\"LJ048-0204.wav\",\"LJ048-0205.wav\",\"LJ048-0206.wav\",\"LJ048-0207.wav\",\"LJ048-0208.wav\",\"LJ048-0209.wav\",\"LJ048-0210.wav\",\"LJ048-0211.wav\",\"LJ048-0212.wav\",\"LJ048-0213.wav\",\"LJ048-0214.wav\",\"LJ048-0215.wav\",\"LJ048-0216.wav\",\"LJ048-0217.wav\",\"LJ048-0218.wav\",\"LJ048-0219.wav\",\"LJ048-0220.wav\",\"LJ048-0221.wav\",\"LJ048-0222.wav\",\"LJ048-0223.wav\",\"LJ048-0224.wav\",\"LJ048-0225.wav\",\"LJ048-0226.wav\",\"LJ048-0227.wav\",\"LJ048-0228.wav\",\"LJ048-0229.wav\",\"LJ048-0230.wav\",\"LJ048-0231.wav\",\"LJ048-0232.wav\",\"LJ048-0233.wav\",\"LJ048-0234.wav\",\"LJ048-0235.wav\",\"LJ048-0236.wav\",\"LJ048-0237.wav\",\"LJ048-0238.wav\",\"LJ048-0239.wav\",\"LJ048-0240.wav\",\"LJ048-0241.wav\",\"LJ048-0242.wav\",\"LJ048-0243.wav\",\"LJ048-0244.wav\",\"LJ048-0245.wav\",\"LJ048-0246.wav\",\"LJ048-0247.wav\",\"LJ048-0248.wav\",\"LJ048-0249.wav\",\"LJ048-0250.wav\",\"LJ048-0251.wav\",\"LJ048-0252.wav\",\"LJ048-0253.wav\",\"LJ048-0254.wav\",\"LJ048-0255.wav\",\"LJ048-0256.wav\",\"LJ048-0257.wav\",\"LJ048-0258.wav\",\"LJ048-0259.wav\",\"LJ048-0260.wav\",\"LJ048-0261.wav\",\"LJ048-0262.wav\",\"LJ048-0263.wav\",\"LJ048-0264.wav\",\"LJ048-0265.wav\",\"LJ048-0266.wav\",\"LJ048-0267.wav\",\"LJ048-0268.wav\",\"LJ048-0269.wav\",\"LJ048-0270.wav\",\"LJ048-0271.wav\",\"LJ048-0272.wav\",\"LJ048-0273.wav\",\"LJ048-0274.wav\",\"LJ048-0275.wav\",\"LJ048-0276.wav\",\"LJ048-0277.wav\",\"LJ048-0278.wav\",\"LJ048-0279.wav\",\"LJ048-0280.wav\",\"LJ048-0281.wav\",\"LJ048-0282.wav\",\"LJ048-0283.wav\",\"LJ048-0284.wav\",\"LJ048-0285.wav\",\"LJ048-0286.wav\",\"LJ048-0287.wav\",\"LJ048-0288.wav\",\"LJ048-0289.wav\",\"LJ049-0001.wav\",\"LJ049-0002.wav\",\"LJ049-0003.wav\",\"LJ049-0004.wav\",\"LJ049-0005.wav\",\"LJ049-0006.wav\",\"LJ049-0007.wav\",\"LJ049-0008.wav\",\"LJ049-0009.wav\",\"LJ049-0010.wav\",\"LJ049-0011.wav\",\"LJ049-0012.wav\",\"LJ049-0013.wav\",\"LJ049-0014.wav\",\"LJ049-0015.wav\",\"LJ049-0016.wav\",\"LJ049-0017.wav\",\"LJ049-0018.wav\",\"LJ049-0019.wav\",\"LJ049-0020.wav\",\"LJ049-0021.wav\",\"LJ049-0022.wav\",\"LJ049-0023.wav\",\"LJ049-0024.wav\",\"LJ049-0025.wav\",\"LJ049-0026.wav\",\"LJ049-0027.wav\",\"LJ049-0028.wav\",\"LJ049-0029.wav\",\"LJ049-0030.wav\",\"LJ049-0031.wav\",\"LJ049-0032.wav\",\"LJ049-0033.wav\",\"LJ049-0034.wav\",\"LJ049-0035.wav\",\"LJ049-0036.wav\",\"LJ049-0037.wav\",\"LJ049-0038.wav\",\"LJ049-0039.wav\",\"LJ049-0040.wav\",\"LJ049-0041.wav\",\"LJ049-0042.wav\",\"LJ049-0043.wav\",\"LJ049-0044.wav\",\"LJ049-0045.wav\",\"LJ049-0046.wav\",\"LJ049-0047.wav\",\"LJ049-0048.wav\",\"LJ049-0049.wav\",\"LJ049-0050.wav\",\"LJ049-0051.wav\",\"LJ049-0052.wav\",\"LJ049-0053.wav\",\"LJ049-0054.wav\",\"LJ049-0055.wav\",\"LJ049-0056.wav\",\"LJ049-0057.wav\",\"LJ049-0058.wav\",\"LJ049-0059.wav\",\"LJ049-0060.wav\",\"LJ049-0061.wav\",\"LJ049-0062.wav\",\"LJ049-0063.wav\",\"LJ049-0064.wav\",\"LJ049-0065.wav\",\"LJ049-0066.wav\",\"LJ049-0067.wav\",\"LJ049-0068.wav\",\"LJ049-0069.wav\",\"LJ049-0070.wav\",\"LJ049-0071.wav\",\"LJ049-0072.wav\",\"LJ049-0073.wav\",\"LJ049-0074.wav\",\"LJ049-0075.wav\",\"LJ049-0076.wav\",\"LJ049-0077.wav\",\"LJ049-0078.wav\",\"LJ049-0079.wav\",\"LJ049-0080.wav\",\"LJ049-0081.wav\",\"LJ049-0082.wav\",\"LJ049-0083.wav\",\"LJ049-0084.wav\",\"LJ049-0085.wav\",\"LJ049-0086.wav\",\"LJ049-0087.wav\",\"LJ049-0088.wav\",\"LJ049-0089.wav\",\"LJ049-0090.wav\",\"LJ049-0091.wav\",\"LJ049-0092.wav\",\"LJ049-0093.wav\",\"LJ049-0094.wav\",\"LJ049-0095.wav\",\"LJ049-0096.wav\",\"LJ049-0097.wav\",\"LJ049-0098.wav\",\"LJ049-0099.wav\",\"LJ049-0100.wav\",\"LJ049-0101.wav\",\"LJ049-0102.wav\",\"LJ049-0103.wav\",\"LJ049-0104.wav\",\"LJ049-0105.wav\",\"LJ049-0106.wav\",\"LJ049-0107.wav\",\"LJ049-0108.wav\",\"LJ049-0109.wav\",\"LJ049-0110.wav\",\"LJ049-0111.wav\",\"LJ049-0112.wav\",\"LJ049-0113.wav\",\"LJ049-0114.wav\",\"LJ049-0115.wav\",\"LJ049-0116.wav\",\"LJ049-0117.wav\",\"LJ049-0118.wav\",\"LJ049-0119.wav\",\"LJ049-0120.wav\",\"LJ049-0121.wav\",\"LJ049-0122.wav\",\"LJ049-0123.wav\",\"LJ049-0124.wav\",\"LJ049-0125.wav\",\"LJ049-0126.wav\",\"LJ049-0127.wav\",\"LJ049-0128.wav\",\"LJ049-0129.wav\",\"LJ049-0130.wav\",\"LJ049-0132.wav\",\"LJ049-0133.wav\",\"LJ049-0134.wav\",\"LJ049-0135.wav\",\"LJ049-0136.wav\",\"LJ049-0137.wav\",\"LJ049-0138.wav\",\"LJ049-0139.wav\",\"LJ049-0140.wav\",\"LJ049-0141.wav\",\"LJ049-0142.wav\",\"LJ049-0143.wav\",\"LJ049-0144.wav\",\"LJ049-0145.wav\",\"LJ049-0146.wav\",\"LJ049-0147.wav\",\"LJ049-0148.wav\",\"LJ049-0149.wav\",\"LJ049-0150.wav\",\"LJ049-0151.wav\",\"LJ049-0152.wav\",\"LJ049-0153.wav\",\"LJ049-0154.wav\",\"LJ049-0155.wav\",\"LJ049-0156.wav\",\"LJ049-0157.wav\",\"LJ049-0158.wav\",\"LJ049-0159.wav\",\"LJ049-0160.wav\",\"LJ049-0161.wav\",\"LJ049-0162.wav\",\"LJ049-0163.wav\",\"LJ049-0164.wav\",\"LJ049-0165.wav\",\"LJ049-0166.wav\",\"LJ049-0167.wav\",\"LJ049-0168.wav\",\"LJ049-0169.wav\",\"LJ049-0170.wav\",\"LJ049-0171.wav\",\"LJ049-0172.wav\",\"LJ049-0173.wav\",\"LJ049-0174.wav\",\"LJ049-0175.wav\",\"LJ049-0176.wav\",\"LJ049-0177.wav\",\"LJ049-0178.wav\",\"LJ049-0179.wav\",\"LJ049-0180.wav\",\"LJ049-0181.wav\",\"LJ049-0182.wav\",\"LJ049-0183.wav\",\"LJ049-0184.wav\",\"LJ049-0185.wav\",\"LJ049-0186.wav\",\"LJ049-0187.wav\",\"LJ049-0188.wav\",\"LJ049-0189.wav\",\"LJ049-0190.wav\",\"LJ049-0191.wav\",\"LJ049-0192.wav\",\"LJ049-0193.wav\",\"LJ049-0194.wav\",\"LJ049-0195.wav\",\"LJ049-0196.wav\",\"LJ049-0197.wav\",\"LJ049-0198.wav\",\"LJ049-0199.wav\",\"LJ049-0200.wav\",\"LJ049-0201.wav\",\"LJ049-0202.wav\",\"LJ049-0203.wav\",\"LJ049-0204.wav\",\"LJ049-0205.wav\",\"LJ049-0206.wav\",\"LJ049-0207.wav\",\"LJ049-0208.wav\",\"LJ049-0209.wav\",\"LJ049-0210.wav\",\"LJ049-0211.wav\",\"LJ049-0212.wav\",\"LJ049-0213.wav\",\"LJ049-0214.wav\",\"LJ049-0215.wav\",\"LJ049-0216.wav\",\"LJ049-0217.wav\",\"LJ049-0218.wav\",\"LJ049-0219.wav\",\"LJ049-0220.wav\",\"LJ049-0221.wav\",\"LJ049-0222.wav\",\"LJ049-0223.wav\",\"LJ049-0224.wav\",\"LJ049-0225.wav\",\"LJ049-0226.wav\",\"LJ049-0227.wav\",\"LJ049-0228.wav\",\"LJ049-0229.wav\",\"LJ049-0230.wav\",\"LJ050-0001.wav\",\"LJ050-0002.wav\",\"LJ050-0003.wav\",\"LJ050-0004.wav\",\"LJ050-0005.wav\",\"LJ050-0006.wav\",\"LJ050-0007.wav\",\"LJ050-0008.wav\",\"LJ050-0009.wav\",\"LJ050-0010.wav\",\"LJ050-0011.wav\",\"LJ050-0012.wav\",\"LJ050-0013.wav\",\"LJ050-0014.wav\",\"LJ050-0015.wav\",\"LJ050-0016.wav\",\"LJ050-0017.wav\",\"LJ050-0018.wav\",\"LJ050-0019.wav\",\"LJ050-0020.wav\",\"LJ050-0021.wav\",\"LJ050-0022.wav\",\"LJ050-0023.wav\",\"LJ050-0024.wav\",\"LJ050-0025.wav\",\"LJ050-0026.wav\",\"LJ050-0027.wav\",\"LJ050-0028.wav\",\"LJ050-0029.wav\",\"LJ050-0030.wav\",\"LJ050-0031.wav\",\"LJ050-0032.wav\",\"LJ050-0033.wav\",\"LJ050-0034.wav\",\"LJ050-0035.wav\",\"LJ050-0036.wav\",\"LJ050-0037.wav\",\"LJ050-0038.wav\",\"LJ050-0039.wav\",\"LJ050-0040.wav\",\"LJ050-0041.wav\",\"LJ050-0042.wav\",\"LJ050-0043.wav\",\"LJ050-0044.wav\",\"LJ050-0045.wav\",\"LJ050-0046.wav\",\"LJ050-0047.wav\",\"LJ050-0048.wav\",\"LJ050-0049.wav\",\"LJ050-0050.wav\",\"LJ050-0051.wav\",\"LJ050-0052.wav\",\"LJ050-0053.wav\",\"LJ050-0054.wav\",\"LJ050-0055.wav\",\"LJ050-0056.wav\",\"LJ050-0057.wav\",\"LJ050-0058.wav\",\"LJ050-0059.wav\",\"LJ050-0060.wav\",\"LJ050-0061.wav\",\"LJ050-0062.wav\",\"LJ050-0063.wav\",\"LJ050-0064.wav\",\"LJ050-0065.wav\",\"LJ050-0066.wav\",\"LJ050-0067.wav\",\"LJ050-0068.wav\",\"LJ050-0069.wav\",\"LJ050-0070.wav\",\"LJ050-0071.wav\",\"LJ050-0072.wav\",\"LJ050-0073.wav\",\"LJ050-0074.wav\",\"LJ050-0075.wav\",\"LJ050-0076.wav\",\"LJ050-0077.wav\",\"LJ050-0078.wav\",\"LJ050-0079.wav\",\"LJ050-0080.wav\",\"LJ050-0081.wav\",\"LJ050-0082.wav\",\"LJ050-0083.wav\",\"LJ050-0084.wav\",\"LJ050-0085.wav\",\"LJ050-0086.wav\",\"LJ050-0087.wav\",\"LJ050-0088.wav\",\"LJ050-0089.wav\",\"LJ050-0090.wav\",\"LJ050-0091.wav\",\"LJ050-0092.wav\",\"LJ050-0093.wav\",\"LJ050-0094.wav\",\"LJ050-0095.wav\",\"LJ050-0096.wav\",\"LJ050-0097.wav\",\"LJ050-0098.wav\",\"LJ050-0099.wav\",\"LJ050-0100.wav\",\"LJ050-0101.wav\",\"LJ050-0102.wav\",\"LJ050-0103.wav\",\"LJ050-0104.wav\",\"LJ050-0105.wav\",\"LJ050-0106.wav\",\"LJ050-0107.wav\",\"LJ050-0108.wav\",\"LJ050-0109.wav\",\"LJ050-0110.wav\",\"LJ050-0111.wav\",\"LJ050-0112.wav\",\"LJ050-0113.wav\",\"LJ050-0114.wav\",\"LJ050-0115.wav\",\"LJ050-0116.wav\",\"LJ050-0117.wav\",\"LJ050-0118.wav\",\"LJ050-0119.wav\",\"LJ050-0120.wav\",\"LJ050-0121.wav\",\"LJ050-0122.wav\",\"LJ050-0123.wav\",\"LJ050-0124.wav\",\"LJ050-0125.wav\",\"LJ050-0126.wav\",\"LJ050-0127.wav\",\"LJ050-0128.wav\",\"LJ050-0129.wav\",\"LJ050-0130.wav\",\"LJ050-0131.wav\",\"LJ050-0132.wav\",\"LJ050-0133.wav\",\"LJ050-0134.wav\",\"LJ050-0135.wav\",\"LJ050-0136.wav\",\"LJ050-0137.wav\",\"LJ050-0138.wav\",\"LJ050-0139.wav\",\"LJ050-0140.wav\",\"LJ050-0141.wav\",\"LJ050-0142.wav\",\"LJ050-0143.wav\",\"LJ050-0144.wav\",\"LJ050-0145.wav\",\"LJ050-0146.wav\",\"LJ050-0147.wav\",\"LJ050-0148.wav\",\"LJ050-0149.wav\",\"LJ050-0150.wav\",\"LJ050-0151.wav\",\"LJ050-0152.wav\",\"LJ050-0153.wav\",\"LJ050-0154.wav\",\"LJ050-0155.wav\",\"LJ050-0156.wav\",\"LJ050-0157.wav\",\"LJ050-0158.wav\",\"LJ050-0159.wav\",\"LJ050-0160.wav\",\"LJ050-0161.wav\",\"LJ050-0162.wav\",\"LJ050-0163.wav\",\"LJ050-0164.wav\",\"LJ050-0165.wav\",\"LJ050-0166.wav\",\"LJ050-0167.wav\",\"LJ050-0168.wav\",\"LJ050-0169.wav\",\"LJ050-0170.wav\",\"LJ050-0171.wav\",\"LJ050-0172.wav\",\"LJ050-0173.wav\",\"LJ050-0174.wav\",\"LJ050-0175.wav\",\"LJ050-0176.wav\",\"LJ050-0177.wav\",\"LJ050-0178.wav\",\"LJ050-0179.wav\",\"LJ050-0180.wav\",\"LJ050-0181.wav\",\"LJ050-0182.wav\",\"LJ050-0183.wav\",\"LJ050-0184.wav\",\"LJ050-0185.wav\",\"LJ050-0186.wav\",\"LJ050-0187.wav\",\"LJ050-0188.wav\",\"LJ050-0189.wav\",\"LJ050-0190.wav\",\"LJ050-0191.wav\",\"LJ050-0192.wav\",\"LJ050-0193.wav\",\"LJ050-0194.wav\",\"LJ050-0195.wav\",\"LJ050-0196.wav\",\"LJ050-0197.wav\",\"LJ050-0198.wav\",\"LJ050-0199.wav\",\"LJ050-0200.wav\",\"LJ050-0201.wav\",\"LJ050-0202.wav\",\"LJ050-0203.wav\",\"LJ050-0204.wav\",\"LJ050-0205.wav\",\"LJ050-0206.wav\",\"LJ050-0207.wav\",\"LJ050-0208.wav\",\"LJ050-0209.wav\",\"LJ050-0210.wav\",\"LJ050-0211.wav\",\"LJ050-0212.wav\",\"LJ050-0213.wav\",\"LJ050-0214.wav\",\"LJ050-0215.wav\",\"LJ050-0216.wav\",\"LJ050-0217.wav\",\"LJ050-0218.wav\",\"LJ050-0219.wav\",\"LJ050-0220.wav\",\"LJ050-0221.wav\",\"LJ050-0222.wav\",\"LJ050-0223.wav\",\"LJ050-0224.wav\",\"LJ050-0225.wav\",\"LJ050-0226.wav\",\"LJ050-0227.wav\",\"LJ050-0228.wav\",\"LJ050-0229.wav\",\"LJ050-0230.wav\",\"LJ050-0231.wav\",\"LJ050-0232.wav\",\"LJ050-0233.wav\",\"LJ050-0234.wav\",\"LJ050-0235.wav\",\"LJ050-0236.wav\",\"LJ050-0237.wav\",\"LJ050-0238.wav\",\"LJ050-0239.wav\",\"LJ050-0240.wav\",\"LJ050-0241.wav\",\"LJ050-0242.wav\",\"LJ050-0243.wav\",\"LJ050-0244.wav\",\"LJ050-0245.wav\",\"LJ050-0246.wav\",\"LJ050-0247.wav\",\"LJ050-0248.wav\",\"LJ050-0249.wav\",\"LJ050-0250.wav\",\"LJ050-0251.wav\",\"LJ050-0252.wav\",\"LJ050-0253.wav\",\"LJ050-0254.wav\",\"LJ050-0255.wav\",\"LJ050-0256.wav\",\"LJ050-0257.wav\",\"LJ050-0258.wav\",\"LJ050-0259.wav\",\"LJ050-0260.wav\",\"LJ050-0261.wav\",\"LJ050-0262.wav\",\"LJ050-0263.wav\",\"LJ050-0264.wav\",\"LJ050-0265.wav\",\"LJ050-0266.wav\",\"LJ050-0267.wav\",\"LJ050-0268.wav\",\"LJ050-0269.wav\",\"LJ050-0270.wav\",\"LJ050-0271.wav\",\"LJ050-0272.wav\",\"LJ050-0273.wav\",\"LJ050-0274.wav\",\"LJ050-0275.wav\",\"LJ050-0276.wav\",\"LJ050-0277.wav\",\"LJ050-0278.wav\"],\"text\":[\"Printing, in the only sense with which we are at present concerned, differs from most if not from all the arts and crafts represented in the Exhibition\\n\",\"in being comparatively modern.\\n\",\"For although the Chinese took impressions from wood blocks engraved in relief for centuries before the woodcutters of the Netherlands, by a similar process\\n\",\"produced the block books, which were the immediate predecessors of the true printed book,\\n\",\"the invention of movable metal letters in the middle of the fifteenth century may justly be considered as the invention of the art of printing.\\n\",\"And it is worth mention in passing that, as an example of fine typography,\\n\",\"the earliest book printed with movable types, the Gutenberg, or \\\"forty-two line Bible\\\" of about fourteen fifty-five,\\n\",\"has never been surpassed.\\n\",\"Printing, then, for our purpose, may be considered as the art of making books by means of movable types.\\n\",\"Now, as all books not primarily intended as picture-books consist principally of types composed to form letterpress,\\n\",\"it is of the first importance that the letter used should be fine in form;\\n\",\"especially as no more time is occupied, or cost incurred, in casting, setting, or printing beautiful letters\\n\",\"than in the same operations with ugly ones.\\n\",\"And it was a matter of course that in the Middle Ages, when the craftsmen took care that beautiful form should always be a part of their productions whatever they were,\\n\",\"the forms of printed letters should be beautiful, and that their arrangement on the page should be reasonable and a help to the shapeliness of the letters themselves.\\n\",\"The Middle Ages brought calligraphy to perfection, and it was natural therefore\\n\",\"that the forms of printed letters should follow more or less closely those of the written character, and they followed them very closely.\\n\",\"The first books were printed in black letter, i.e. the letter which was a Gothic development of the ancient Roman character,\\n\",\"and which developed more completely and satisfactorily on the side of the \\\"lower-case\\\" than the capital letters;\\n\",\"the \\\"lower-case\\\" being in fact invented in the early Middle Ages.\\n\",\"The earliest book printed with movable type, the aforesaid Gutenberg Bible, is printed in letters which are an exact imitation\\n\",\"of the more formal ecclesiastical writing which obtained at that time; this has since been called \\\"missal type,\\\"\\n\",\"and was in fact the kind of letter used in the many splendid missals, psalters, etc., produced by printing in the fifteenth century.\\n\",\"But the first Bible actually dated (which also was printed at Maintz by Peter Schoeffer in the year fourteen sixty-two)\\n\",\"imitates a much freer hand, simpler, rounder, and less spiky, and therefore far pleasanter and easier to read.\\n\",\"On the whole the type of this book may be considered the ne-plus-ultra of Gothic type,\\n\",\"especially as regards the lower-case letters; and type very similar was used during the next fifteen or twenty years not only by Schoeffer,\\n\",\"but by printers in Strasburg, Basle, Paris, Lubeck, and other cities.\\n\",\"But though on the whole, except in Italy, Gothic letter was most often used\\n\",\"a very few years saw the birth of Roman character not only in Italy, but in Germany and France.\\n\",\"In fourteen sixty-five Sweynheim and Pannartz began printing in the monastery of Subiaco near Rome,\\n\",\"and used an exceedingly beautiful type, which is indeed to look at a transition between Gothic and Roman,\\n\",\"but which must certainly have come from the study of the twelfth or even the eleventh century MSS.\\n\",\"They printed very few books in this type, three only; but in their very first books in Rome, beginning with the year fourteen sixty-eight,\\n\",\"they discarded this for a more completely Roman and far less beautiful letter.\\n\",\"But about the same year Mentelin at Strasburg began to print in a type which is distinctly Roman;\\n\",\"and the next year Gunther Zeiner at Augsburg followed suit;\\n\",\"while in fourteen seventy at Paris Udalric Gering and his associates turned out the first books printed in France, also in Roman character.\\n\",\"The Roman type of all these printers is similar in character,\\n\",\"and is very simple and legible, and unaffectedly designed for use; but it is by no means without beauty.\\n\",\"It must be said that it is in no way like the transition type of Subiaco,\\n\",\"and though more Roman than that, yet scarcely more like the complete Roman type of the earliest printers of Rome.\\n\",\"A further development of the Roman letter took place at Venice.\\n\",\"John of Spires and his brother Vindelin, followed by Nicholas Jenson, began to print in that city,\\n\",\"fourteen sixty-nine, fourteen seventy;\\n\",\"their type is on the lines of the German and French rather than of the Roman printers.\\n\",\"Of Jenson it must be said that he carried the development of Roman type as far as it can go:\\n\",\"his letter is admirably clear and regular, but at least as beautiful as any other Roman type.\\n\",\"After his death in the \\\"fourteen eighties,\\\" or at least by fourteen ninety, printing in Venice had declined very much;\\n\",\"and though the famous family of Aldus restored its technical excellence, rejecting battered letters,\\n\",\"and paying great attention to the \\\"press work\\\" or actual process of printing,\\n\",\"yet their type is artistically on a much lower level than Jenson's, and in fact\\n\",\"they must be considered to have ended the age of fine printing in Italy.\\n\",\"Jenson, however, had many contemporaries who used beautiful type,\\n\",\"some of which -- as, e.g., that of Jacobus Rubeus or Jacques le Rouge -- is scarcely distinguishable from his.\\n\",\"It was these great Venetian printers, together with their brethren of Rome, Milan,\\n\",\"Parma, and one or two other cities, who produced the splendid editions of the Classics, which are one of the great glories of the printer's art,\\n\",\"and are worthy representatives of the eager enthusiasm for the revived learning of that epoch. By far,\\n\",\"the greater part of these Italian printers, it should be mentioned, were Germans or Frenchmen, working under the influence of Italian opinion and aims.\\n\",\"It must be understood that through the whole of the fifteenth and the first quarter of the sixteenth centuries\\n\",\"the Roman letter was used side by side with the Gothic.\\n\",\"Even in Italy most of the theological and law books were printed in Gothic letter,\\n\",\"which was generally more formally Gothic than the printing of the German workmen,\\n\",\"many of whose types, indeed, like that of the Subiaco works, are of a transitional character.\\n\",\"This was notably the case with the early works printed at Ulm, and in a somewhat lesser degree at Augsburg.\\n\",\"In fact Gunther Zeiner's first type (afterwards used by Schussler) is remarkably like the type of the before-mentioned Subiaco books.\\n\",\"In the Low Countries and Cologne, which were very fertile of printed books, Gothic was the favorite.\\n\",\"The characteristic Dutch type, as represented by the excellent printer Gerard Leew, is very pronounced and uncompromising Gothic.\\n\",\"This type was introduced into England by Wynkyn de Worde, Caxton's successor,\\n\",\"and was used there with very little variation all through the sixteenth and seventeenth centuries, and indeed into the eighteenth.\\n\",\"Most of Caxton's own types are of an earlier character, though they also much resemble Flemish or Cologne letter.\\n\",\"After the end of the fifteenth century the degradation of printing, especially in Germany and Italy,\\n\",\"went on apace; and by the end of the sixteenth century there was no really beautiful printing done:\\n\",\"the best, mostly French or Low-Country, was neat and clear, but without any distinction;\\n\",\"the worst, which perhaps was the English, was a terrible falling-off from the work of the earlier presses;\\n\",\"and things got worse and worse through the whole of the seventeenth century, so that in the eighteenth printing was very miserably performed.\\n\",\"In England about this time, an attempt was made (notably by Caslon, who started business in London as a type-founder in seventeen twenty)\\n\",\"to improve the letter in form.\\n\",\"Caslon's type is clear and neat, and fairly well designed;\\n\",\"he seems to have taken the letter of the Elzevirs of the seventeenth century for his model:\\n\",\"type cast from his matrices is still in everyday use.\\n\",\"In spite, however, of his praiseworthy efforts, printing had still one last degradation to undergo.\\n\",\"The seventeenth century founts were bad rather negatively than positively.\\n\",\"But for the beauty of the earlier work they might have seemed tolerable.\\n\",\"It was reserved for the founders of the later eighteenth century to produce letters which are positively ugly, and which, it may be added,\\n\",\"are dazzling and unpleasant to the eye owing to the clumsy thickening and vulgar thinning of the lines:\\n\",\"for the seventeenth-century letters are at least pure and simple in line. The Italian, Bodoni, and the Frenchman, Didot,\\n\",\"were the leaders in this luckless change, though our own Baskerville, who was at work some years before them, went much on the same lines;\\n\",\"but his letters, though uninteresting and poor, are not nearly so gross and vulgar as those of either the Italian or the Frenchman.\\n\",\"With this change the art of printing touched bottom,\\n\",\"so far as fine printing is concerned, though paper did not get to its worst till about eighteen forty.\\n\",\"The Chiswick press in eighteen forty-four revived Caslon's founts, printing for Messrs. Longman the Diary of Lady Willoughby.\\n\",\"This experiment was so far successful that about eighteen fifty Messrs. Miller and Richard of Edinburgh\\n\",\"were induced to cut punches for a series of \\\"old style\\\" letters.\\n\",\"These and similar founts, cast by the above firm and others,\\n\",\"have now come into general use and are obviously a great improvement on the ordinary \\\"modern style\\\" in use in England, which is in fact the Bodoni type\\n\",\"a little reduced in ugliness. The design of the letters of this modern \\\"old style\\\" leaves a good deal to be desired,\\n\",\"and the whole effect is a little too gray, owing to the thinness of the letters.\\n\",\"It must be remembered, however, that most modern printing is done by machinery on soft paper, and not by the hand press,\\n\",\"and these somewhat wiry letters are suitable for the machine process, which would not do justice to letters of more generous design.\\n\",\"It is discouraging to note that the improvement of the last fifty years is almost wholly confined to Great Britain.\\n\",\"Here and there a book is printed in France or Germany with some pretension to good taste,\\n\",\"but the general revival of the old forms has made no way in those countries.\\n\",\"Italy is contentedly stagnant.\\n\",\"America has produced a good many showy books, the typography, paper, and illustrations of which are, however, all wrong,\\n\",\"oddity rather than rational beauty and meaning being apparently the thing sought for both in the letters and the illustrations.\\n\",\"To say a few words on the principles of design in typography:\\n\",\"it is obvious that legibility is the first thing to be aimed at in the forms of the letters;\\n\",\"this is best furthered by the avoidance of irrational swellings and spiky projections, and by the using of careful purity of line.\\n\",\"Even the Caslon type when enlarged shows great shortcomings in this respect:\\n\",\"the ends of many of the letters such as the t and e are hooked up in a vulgar and meaningless way,\\n\",\"instead of ending in the sharp and clear stroke of Jenson's letters;\\n\",\"there is a grossness in the upper finishings of letters like the c, the a, and so on,\\n\",\"an ugly pear-shaped swelling defacing the form of the letter:\\n\",\"in short, it happens to this craft, as to others, that the utilitarian practice, though it professes to avoid ornament,\\n\",\"still clings to a foolish, because misunderstood conventionality, deduced from what was once ornament, and is by no means useful;\\n\",\"which title can only be claimed by artistic practice, whether the art in it be conscious or unconscious.\\n\",\"In no characters is the contrast between the ugly and vulgar illegibility of the modern type\\n\",\"and the elegance and legibility of the ancient more striking than in the Arabic numerals.\\n\",\"In the old print each figure has its definite individuality, and one cannot be mistaken for the other;\\n\",\"in reading the modern figures the eyes must be strained before the reader can have any reasonable assurance\\n\",\"that he has a five, an eight, or a three before him, unless the press work is of the best:\\n\",\"this is awkward if you have to read Bradshaw's Guide in a hurry.\\n\",\"One of the differences between the fine type and the utilitarian must probably be put down to a misapprehension of a commercial necessity:\\n\",\"this is the narrowing of the modern letters.\\n\",\"Most of Jenson's letters are designed within a square,\\n\",\"the modern letters are narrowed by a third or thereabout; but while this gain of space very much hampers the possibility of beauty of design,\\n\",\"it is not a real gain, for the modern printer throws the gain away by putting inordinately wide spaces between his lines, which, probably,\\n\",\"the lateral compression of his letters renders necessary.\\n\",\"Commercialism again compels the use of type too small in size to be comfortable reading:\\n\",\"the size known as \\\"Long primer\\\" ought to be the smallest size used in a book meant to be read.\\n\",\"Here, again, if the practice of \\\"leading\\\" were retrenched larger type could be used without enhancing the price of a book.\\n\",\"One very important matter in \\\"setting up\\\" for fine printing is the \\\"spacing,\\\" that is, the lateral distance of words from one another.\\n\",\"In good printing the spaces between the words should be as near as possible equal\\n\",\"it is impossible that they should be quite equal except in lines of poetry\\n\",\"modern printers understand this, but it is only practiced in the very best establishments.\\n\",\"But another point which they should attend to they almost always disregard;\\n\",\"this is the tendency to the formation of ugly meandering white lines or \\\"rivers\\\" in the page\\n\",\"a blemish which can be nearly, though not wholly, avoided by care and forethought\\n\",\"the desirable thing being \\\"the breaking of the line\\\" as in bonding masonry or brickwork\\n\",\"The general solidity of a page is much to be sought for\\n\",\"modern printers generally overdo the \\\"whites\\\" in the spacing, a defect probably forced on them by the characterless quality of the letters.\\n\",\"For where these are boldly and carefully designed, and each letter is thoroughly individual in form,\\n\",\"the words may be set much closer together, without loss of clearness.\\n\",\"No definite rules, however, except the avoidance of \\\"rivers\\\" and excess of white, can be given for the spacing,\\n\",\"which requires the constant exercise of judgment and taste on the part of the printer.\\n\",\"The position of the page on the paper should be considered if the book is to have a satisfactory look.\\n\",\"Here once more the almost invariable modern practice is in opposition to a natural sense of proportion.\\n\",\"From the time when books first took their present shape till the end of the sixteenth century, or indeed later,\\n\",\"the page so lay on the paper that there was more space allowed to the bottom and fore margin than to the top and back of the paper,\\n\",\"the unit of the book being looked on as the two pages forming an opening.\\n\",\"The modern printer, in the teeth of the evidence given by his own eyes, considers the single page as the unit, and prints the page in the middle of his paper\\n\",\"only nominally so, however, in many cases, since when he uses a headline he counts that in,\\n\",\"the result as measured by the eye being that the lower margin is less than the top one, and that the whole opening has an upside-down look vertically\\n\",\"and that laterally the page looks as if it were being driven off the paper.\\n\",\"The paper on which the printing is to be done is a necessary part of our subject:\\n\",\"of this it may be said that though there is some good paper made now,\\n\",\"it is never used except for very expensive books, although it would not materially increase the cost in all but the very cheapest.\\n\",\"The paper that is used for ordinary books is exceedingly bad even in this country, but is beaten in the race for vileness\\n\",\"by that made in America, which is the worst conceivable.\\n\",\"There seems to be no reason why ordinary paper should not be better made,\\n\",\"even allowing the necessity for a very low price; but any improvement must be based on showing openly that the cheap article is cheap,\\n\",\"e.g. the cheap paper should not sacrifice toughness and durability to a smooth and white surface,\\n\",\"which should be indications of a delicacy of material and manufacture which would of necessity increase its cost.\\n\",\"One fruitful source of badness in paper\\n\",\"is the habit that publishers have of eking out a thin volume by printing it on thick paper almost of the substance of cardboard,\\n\",\"a device which deceives nobody, and makes a book very unpleasant to read.\\n\",\"On the whole, a small book should be printed on paper which is as thin as may be without being transparent.\\n\",\"The paper used for printing the small highly ornamented French service-books about the beginning of the sixteenth century is a model in this respect,\\n\",\"being thin, tough, and opaque.\\n\",\"However, the fact must not be blinked that machine-made paper cannot in the nature of things be made of so good a texture as that made by hand.\\n\",\"The ornamentation of printed books is too wide a subject to be dealt with fully here; but one thing must be said on it.\\n\",\"The essential point to be remembered is that the ornament, whatever it is, whether picture or pattern-work, should form part of the page,\\n\",\"should be a part of the whole scheme of the book.\\n\",\"Simple as this proposition is, it is necessary to be stated,\\n\",\"because the modern practice is to disregard the relation between the printing and the ornament altogether,\\n\",\"so that if the two are helpful to one another it is a mere matter of accident.\\n\",\"The due relation of letter to pictures and other ornament was thoroughly understood by the old printers; so that\\n\",\"even when the woodcuts are very rude indeed,\\n\",\"the proportions of the page still give pleasure by the sense of richness that the cuts and letter together convey.\\n\",\"When, as is most often the case, there is actual beauty in the cuts,\\n\",\"the books so ornamented are amongst the most delightful works of art that have ever been produced.\\n\",\"Therefore, granted well-designed type, due spacing of the lines and words, and proper position of the page on the paper,\\n\",\"all books might be at least comely and well-looking: and if to these good qualities were added really beautiful ornament and pictures,\\n\",\"printed books might once again illustrate to the full\\n\",\"the position of our Society that a work of utility might be also a work of art, if we cared to make it so.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section four: Newgate down to eighteen eighteen.\\n\",\"Under the conditions referred to in the previous chapter,\\n\",\"with criminals and misdemeanants of all shades crowding perpetually into its narrow limits, the latter state of Newgate was worse than the first.\\n\",\"The new jail fell as far short of the demands made on it as did the old.\\n\",\"The prison population fluctuated a great deal,\\n\",\"but it was almost always in excess of the accommodation available, and there were times when the place was full to overflowing.\\n\",\"Neild gives some figures which well illustrate this.\\n\",\"On the fourteenth June, eighteen hundred, there were one hundred ninety-nine debtors and two hundred eighty-nine felons in the prison.\\n\",\"On the twenty-seventh April, in the following year,\\n\",\"these numbers had risen to two hundred seventy-five and three hundred seventy-five respectively, or six hundred fifty in all.\\n\",\"For two more years these high figures were steadily maintained, and in eighteen oh three the total rose to seven hundred ten.\\n\",\"After that they fell as steadily,\\n\",\"till, eighteen oh eight, the lowest point was touched of one hundred ninety-seven debtors and one hundred eighty-two felons, or three hundred seventy-nine in all.\\n\",\"The numbers soon increased, however, and by eighteen eleven had again risen to six hundred twenty-nine; and Mr. Neild was told that there had been at one time\\n\",\"three hundred debtors and nine hundred criminals in Newgate, or twelve hundred prisoners in all.\\n\",\"Previous to that date there had been seven hundred or eight hundred frequently, and once, in Mr. Akerman's time, one thousand.\\n\",\"Trustworthy evidence is forthcoming to the effect that these high figures were constantly maintained for many months at a time.\\n\",\"The inadequacy of the jail was noticed and reported upon again and again by the grand juries of the city of London,\\n\",\"who seldom let a session go by without visiting Newgate.\\n\",\"In eighteen thirteen\\n\",\"the grand jury made a special presentment to the Court of Common Council, pointing out that on the debtors' side, which was intended for only one hundred,\\n\",\"no less than three hundred forty were crowded, to the great inconvenience and danger of the inmates.\\n\",\"On the female side matters were much worse;\\n\",\"Quote. the apartments set apart for them, being built to accommodate sixty persons, now contain about one hundred twenty. End quote.\\n\",\"Returns laid before the House of Commons showed that six thousand, four hundred thirty-nine persons had been committed to Newgate\\n\",\"in the three years between eighteen thirteen and eighteen sixteen,\\n\",\"and this number did not include the debtors, a numerous class, who were still committed to Newgate pending the completion of the White Cross Street prison.\\n\",\"In order to realize the evils entailed by incarceration in Newgate in these days, it is necessary to give some account of its interior\\n\",\"as it was occupied and appropriated in eighteen ten.\\n\",\"Full details of the arrangements are to be found in Mr. Neild's \\\"State of Prisons in England, Scotland, and Wales,\\\" published in eighteen twelve.\\n\",\"The jail at that date was divided into eight separate and more or less distinct departments, each of which had its own wards and yard.\\n\",\"These were: one. The male debtors' side.\\n\",\"two. The female debtors' side. three. The chapel yard. four. The middle yard.\\n\",\"five. The master felons' side. six. The female felons' side. seven. The state side.\\n\",\"eight. The press yard.\\n\",\"one. The male debtors' side consisted of a yard forty-nine feet by thirty-one,\\n\",\"leading to thirteen wards on various floors, and a day room.\\n\",\"Of these wards, three were appropriated to the \\\"cabin side,\\\" so called because\\n\",\"they each contained four small rooms or \\\"cabins\\\" seven feet square,\\n\",\"intended to accommodate a couple of prisoners apiece, but often much more crowded.\\n\",\"Two other wards were appropriated to the master's side debtors; they were each twenty-three feet by fourteen and a half,\\n\",\"and supposed to accommodate twenty persons. The eight remaining wards were for the common side debtors,\\n\",\"long narrow rooms -- one thirty-six feet, six twenty-three feet, and the eighth eighteen,\\n\",\"the whole about fifteen feet wide.\\n\",\"The various wards were all about eleven feet in height,\\n\",\"and were occupied as a rule by ten to fifteen people when the prison was not crowded, but double the number was occasionally placed in them.\\n\",\"The day room was fitted with benches and settles after the manner of the tap in a public-house.\\n\",\"two. The female debtors' side consisted of a court-yard forty-nine by sixteen feet,\\n\",\"leading to two wards, one of which was thirty-six feet by fifteen,\\n\",\"and the other eighteen by fifteen; and they nominally held twenty-two persons.\\n\",\"A high wall fifteen feet in height divided the females' court-yard from the men's.\\n\",\"three. The chapel yard was about forty-three feet by twenty-five.\\n\",\"It had been for some time devoted principally to felons of the worst types,\\n\",\"those who were the oldest offenders, sentenced to transportation, and who had narrowly escaped the penalty of death.\\n\",\"This arrangement was, however, modified after eighteen eleven, and the chapel yard was allotted to misdemeanants and prisoners awaiting trial.\\n\",\"The wards in this part were five in number, all in dimensions twenty feet by fifteen, with a sixth ward fifteen feet square.\\n\",\"These wards were all fitted with barrack-beds, but no bedding was supplied.\\n\",\"The chapel yard led to the chapel, and on the staircase were two rooms frequently set apart for the king's witnesses,\\n\",\"those who had turned king's evidence, whose safety might have been imperiled had they been lodged with the men against whom they had informed.\\n\",\"But these king's witnesses were also put at times into the press yard among the capital convicts, seemingly a very dangerous proceeding,\\n\",\"or they lodged with the gatesmen, the prisoner officers who had charge of the inner gates.\\n\",\"The middle yard was at first given up to the least heinous offenders. After eighteen twelve it changed functions with the chapel yard.\\n\",\"It was fifty feet by twenty-five, and had five wards each thirty-eight by fifteen. At one end of the yard was an arcade,\\n\",\"directly under the chapel, in which there were three cells, used either for the confinement of disorderly and refractory prisoners,\\n\",\"or female convicts ordered for execution.\\n\",\"The master felons' side consisted of a yard the same size as the preceding, appropriated nominally to the most decent and better-behaved prisoners,\\n\",\"but really kept for the few who had funds sufficient to gain them admission to these more comfortable quarters.\\n\",\"Here were also lodged the gatesmen, the prisoners who had charge of the inner gates, and who were entrusted with the duty of escorting visitors from the gates\\n\",\"to the various wards their friends occupied.\\n\",\"The state side was the part stolen from the female felons' side.\\n\",\"It was large and comparatively commodious, being maintained on a better footing than any other part of the prison.\\n\",\"The inmates were privileged, either by antecedents or the fortunate possession of sufficient funds to pay the charges of the place.\\n\",\"Neild takes it for granted that the former rather than the latter prevailed in the selection,\\n\",\"and tells us that in the state side, quote, such prisoners were safely associated whose manners and conduct evince a more liberal style of education,\\n\",\"and who are therefore lodged apart from all other districts of the jail. End quote.\\n\",\"The state side contained twelve good-sized rooms,\\n\",\"from twenty-one by eighteen feet to fifteen feet square, which were furnished with bedsteads and bedding.\\n\",\"seven. The press yard was that part set aside for the condemned.\\n\",\"Its name and its situation were the same as those of the old place of carrying out the terrible sentence inflicted on accused persons who stood mute.\\n\",\"The long narrow yard still remained as we saw it in Jacobite times,\\n\",\"and beyond it was now a day room for the capital convicts or those awaiting execution.\\n\",\"Beyond the press yard were three stories, condemned cells, fifteen in all, with vaulted ceilings nine feet high to the crown of the arch.\\n\",\"The ground floor cells were nine feet by six;\\n\",\"those on the first floor were rather larger on account of a set-off in the wall; and the uppermost were the largest, for the same reason.\\n\",\"Security was provided for in these condemned cells by lining the substantial stone walls with planks studded with broad-headed nails;\\n\",\"they were lighted by a double-grated window two feet nine inches by fourteen inches; and in the doors, which were four inches thick,\\n\",\"a circular aperture had been let in to give ventilation and secure a free current of air.\\n\",\"In each cell there was a barrack bedstead on the floor without bedding.\\n\",\"eight. The female felons were deprived of part of the space which the architect had intended for them.\\n\",\"More than half their quadrangle had been partitioned off for another purpose,\\n\",\"and what remained was divided into a master's and a common side for female felons.\\n\",\"The two yards were adjoining, that for the common side much the largest.\\n\",\"There were nine wards in all on the female side, one of them in the attic,\\n\",\"with four casements and two fireplaces, being allotted for a female infirmary\\n\",\"and the rest being provided with barrack beds, and in dimensions varying from thirty feet by fifteen to fifteen feet by ten.\\n\",\"The eight courts above enumerated were well supplied with water;\\n\",\"they had dust-bins, sewers, and so forth, \\\"properly disposed,\\\" and the city scavenger paid periodical visits to the prison.\\n\",\"The prisoners had few comforts, beyond the occasional use of a bath at some distance, situated in the press yard,\\n\",\"to which access was granted rarely and as a great favor. But they were allowed the luxury of drink -- if they could pay for it.\\n\",\"A recent reform had closed the tap kept by the jailer within the precincts, but\\n\",\"there was still a \\\"convenient room\\\" which served, and, quote,\\n\",\"near it a grating through which the debtors receive their beer from the neighboring public-houses.\\n\",\"The felons' side has a similar accommodation, and this mode of introducing the beverage is adopted because no publican as such\\n\",\"can be permitted to enter the interior of this prison. End quote. The tap-room and bar were just behind the felons' entrance lodge,\\n\",\"and beyond it was a room called the \\\"wine room,\\\" because formerly used for the sale of wine, but\\n\",\"in which latterly a copper had been fixed for the cooking of provisions sent in by charitable persons.\\n\",\"Quote, On the top of the jail, continues Neild, are a watch-house and a sentry-box, where two or more guards, with dogs and firearms,\\n\",\"watch all night. Adjoining the felons' side lodge is the keeper's office, where the prison books are kept, and his clerk,\\n\",\"called the clerk of the papers, attends daily. End quote.\\n\",\"Having thus briefly described the plan and appropriation of the prison, I propose to deal now with the general condition of the inmates, and the manner of their life.\\n\",\"Of these the debtors, male and female, formed a large proportion.\\n\",\"The frequency and extent of processes against debtors seventy or eighty years ago will appear almost incredible\\n\",\"in an age when insolvent acts and bankruptcy courts do so much to relieve the impecunious,\\n\",\"and imprisonment for debt has almost entirely disappeared.\\n\",\"The number of processes against debtors annually was extraordinary.\\n\",\"Neild gives, on the authority of Mr. Burchell, the under sheriff of Middlesex,\\n\",\"a table showing the figures for the year ending Michaelmas eighteen oh two.\\n\",\"In that period upwards of two hundred thousand writs\\n\",\"had been issued for the arrests of debtors in the kingdom, for sums varying from fourpence to five hundred pounds and upwards.\\n\",\"Fifteen thousand of these were issued in Middlesex alone, which at that time was reckoned as only a fifteenth of Great Britain.\\n\",\"The number of arrests actually made was one hundred fourteen thousand, three hundred for the kingdom, and seven thousand twenty for Middlesex.\\n\",\"Barely half of these gave bail bonds on arrests, and the remainder went to prison.\\n\",\"Quite half of the foregoing writs and arrests applied to sums under thirty pounds.\\n\",\"Neild also says that in seventeen ninety-three,\\n\",\"five thousand, seven hundred nineteen writs and executions for debts between ten pounds and twenty pounds were issued in Middlesex,\\n\",\"and the aggregate amount of debts sued for was eighty-one thousand, seven hundred ninety-one pounds.\\n\",\"He also makes the curious calculation that the costs of these actions if undefended\\n\",\"would have amounted to sixty-eight thousand, seven hundred twenty-eight pounds, and if defended,\\n\",\"two hundred eighty-five thousand, nine hundred fifty pounds; in other words, that to recover eighty odd thousand pounds,\\n\",\"three times the amount would be expended.\\n\",\"An elaborate machinery planned for the protection of the trader, and altogether on his side, had long existed for the recovery of debts.\\n\",\"Alfred the Great established the Court Baron, the Hundred Court, and the County Court, which among other matters entertained pleas for debt.\\n\",\"The County Court was the sheriff's, who sat there surrounded by the bishop and the magnates of the county;\\n\",\"but as time passed, difficulties and delays in obtaining judgment led to the removal of causes to the great Court of King's Bench,\\n\",\"and the disuse of the inferior courts.\\n\",\"So much inconvenience ensued, that in fifteen eighteen the Corporation obtained from Parliament an act empowering two aldermen\\n\",\"and four common councilmen to hold Courts of Requests, or Courts of Conscience, to hear and determine all causes of debt\\n\",\"under forty shillings arising within the city.\\n\",\"These courts were extended two centuries later to several large provincial towns, and all were in full activity when Neild wrote,\\n\",\"and indeed supplied the bulk of the poor debtors committed to prison.\\n\",\"These courts were open to many and grave objections.\\n\",\"The commissioners who presided were, quote, little otherwise than self-elected\\n\",\"and when once appointed continued to serve sine die; they were generally near in rank to the parties whose causes they decided.\\n\",\"Often a commissioner had to leave the bench because he was himself a party to the suit that was sub judice.\\n\",\"The activity as well as the futility of these courts may be estimated from the statement given by Neild\\n\",\"that thirteen hundred and twelve debtors were committed by them to Newgate between seventeen ninety-seven and eighteen oh eight,\\n\",\"and that no more than one hundred ninety-seven creditors recovered debts and costs.\\n\",\"The latter indeed hung like millstones round the neck of the unhappy insolvent wretches who found themselves in limbo.\\n\",\"Costs were the gallons of sack to the pennyworth of debt.\\n\",\"Neild found at his visit to Newgate in eighteen ten,\\n\",\"fourteen men and women who had lain there ten, eleven, and thirteen years for debts of a few shillings,\\n\",\"weighted by treble the amount of costs.\\n\",\"Thus, amongst others, Thomas Blackburn had been committed on October fifteenth for a debt of one shilling five pence.\\n\",\"for which the costs were six shillings ten pence.\\n\",\"Thomas Dobson, on twenty-second August, seventeen ninety-nine, for one shilling, with costs of eight shillings, ten pence.\\n\",\"and Susannah Evans, in October the same year, for two shillings, with costs of six shillings, eight pence.\\n\",\"Other cases are recorded elsewhere, as at the Giltspur Street Compter, where in eighteen oh five Mr. Neild found a man named William Grant\\n\",\"detained for one shilling nine pence, with costs of five shillings.\\n\",\"and John Lancaster for one shilling, eight pence, with costs of seven shillings, six pence. Quote.\\n\",\"These surely, I thought,\\\" says Mr. Neild, \\\"were bad enough! But it was not so. End quote.\\n\",\"He recites another most outrageous and extraordinary case, in which one John Bird,\\n\",\"a market porter, was arrested and committed at the suit of a publican\\n\",\"for the paltry sum of four pence, with costs of seven shillings, six pence.\\n\",\"Bird was, however, discharged within three days by a subscription raised among his fellow-prisoners.\\n\",\"Mr. Buxton, in his \\\"Inquiry into the System of Prison Discipline,\\\"\\n\",\"quotes a case which came within his own knowledge of a boy sent to prison for non-payment of one penny.\\n\",\"The lad in question was found in Coldbath Fields prison, to which he had been sent for a month in default of paying a fine of forty shillings.\\n\",\"He had been in the employ of a corn-chandler at Islington, and went into London with his master's cart and horse.\\n\",\"There was in the City Road a temporary bar, with a collector of tolls who was sometimes on the spot and sometimes not.\\n\",\"The boy declared he saw no one, and accordingly passed through without paying the toll of a penny.\\n\",\"For this he was summoned before a magistrate, and sentenced as already stated.\\n\",\"The lad was proved to be of good character and the son of respectable parents.\\n\",\"Mr. Buxton's friends at once paid the forty shillings, and the boy was released.\\n\",\"The costs in heavier debts always doubled the sum; if the arrest was made in the country it trebled it.\\n\",\"Neild gives a list of the various items charged upon a debt of ten pounds, which included instructions to sue,\\n\",\"affidavit of debt, drawing praecipe (one pound, five shillings), capias, fee to officer on arrest,\\n\",\"affidavit of service, and many more, amounting in all to twenty-seven,\\n\",\"and costing eleven pounds, fifteen shillings, eight pence, within ten days.\\n\",\"Before dealing with the debtors in Newgate, I may refer incidentally\\n\",\"to those in other London prisons, for Newgate was not the only place of durance for these unfortunate people. There were also the King's Bench,\\n\",\"the Fleet, and the Marshalsea prisons especially devoted to them,\\n\",\"whilst Ludgate, the Giltspur Street, and Borough Compters also received them\\n\",\"the latter two being also a prison for felons and vagrants arrested within certain limits.\\n\",\"The King's Bench was a national prison, in which were confined all debtors arrested for debt or for contempt of the court of the King's Bench.\\n\",\"The population generally amounted to from five hundred to seven hundred, the accommodation being calculated for two hundred.\\n\",\"Every new-comer was entitled to a \\\"chummage\\\" ticket, but did not always get it,\\n\",\"being often obliged to pay a high rent for a bed at the coffee-house or in some room which was vacated by its regular occupant.\\n\",\"No fixed rates or rules governed the hiring out of rooms or parts of a room, and all sorts of imposition was practiced.\\n\",\"The best, or at least the most influential prisoners, got lodging in the State House, which contained \\\"eight large handsome rooms.\\\"\\n\",\"Besides those actually resident within the walls,\\n\",\"another two hundred more or less took advantage of \\\"the rules,\\\" and lived outside within a circumference of two miles and a half.\\n\",\"In these cases security was given for the amount of the debt,\\n\",\"and a heavy fee at the rate of eight pounds per one hundred pounds, with four pounds for every additional hundred.\\n\",\"Besides these, a number had the privilege of a \\\"run on the key,\\\" which allowed a prisoner to go into the rules for the day.\\n\",\"The foregoing rentals and payments for privileges, together with fees exacted on commitment and discharge, went to the marshal or keeper of the prison,\\n\",\"whose net annual income thus entirely derived from the impecunious amounted to between three and four thousand pounds.\\n\",\"The office of marshal had been hereditary,\\n\",\"but in the twenty-seventh George the second the right of presentation was bought by the Crown for ten thousand, five hundred pounds.\\n\",\"The marshal was supposed to be resident either within the prison or the rules.\\n\",\"He seems to have felt no responsibility as to the welfare or comfort of those in charge, and out of whom he made all his money.\\n\",\"The prison was always in \\\"the most filthy state imaginable.\\\"\\n\",\"The half or wholly starved prisoners fished for alms or food at the gratings.\\n\",\"When they were sick no more notice was taken of them than of a dog.\\n\",\"A man dying of liver complaint lay on the cold stones without a bed or food to eat.\\n\",\"Dissolute habits prevailed on all sides; drunkenness was universal, gambling perpetual.\\n\",\"The yards were taken up with rackets and five courts, and here and there were \\\"bumble puppy grounds,\\\" a game in which the players rolled iron balls\\n\",\"into holes marked with numbers.\\n\",\"How to make most profit out of the wretched denizens of the jail was the marshal's only care. He got a rent for the coffee-house and the bake-house;\\n\",\"the keeper of the large tap-room called the Brace, because it was once kept by two brothers named Partridge, also paid him toll.\\n\",\"The sale of spirits was forbidden, but gin could always be had at the whistling shops, where it was known as Moonshine, Sky Blue,\\n\",\"Mexico, and was consumed at the rate of a hogshead per week.\\n\",\"The Fleet, which stood in Farringdon Street,\\n\",\"was a prison for debtors and persons committed for contempt by the courts of Chancery, Exchequer, and Common Pleas.\\n\",\"It was so used for the date of the abolition of the Star Chamber in the sixteenth Charles the first\\n\",\"The shameful malpractices of Bambridge,\\n\",\"the warden of the Fleet at the commencement of the eighteenth century, are too well known to need more than a passing reference.\\n\",\"A committee of the House of Commons investigated the charges against Bambridge, who was proved to have connived at the escape of some debtors,\\n\",\"and to have been guilty of extortion to others. One Sir William Rich, Bart., he had loaded with heavy irons\\n\",\"In consequence of these disclosures, both Bambridge and Huggin, his predecessor in the office, were committed to Newgate,\\n\",\"and many reforms instituted. But the condition of the prison and its inmates remained unsatisfactory to the last.\\n\",\"It contained generally from six to seven hundred inmates, while another hundred more or less resided in the rules outside.\\n\",\"The principle of \\\"chummage\\\" prevailed as in the King's Bench,\\n\",\"but a number of rooms, fifteen more or less, were reserved for poor debtors under the name of Bartholomew Fair.\\n\",\"The rentals of rooms and fees went to the warden, whose income was two thousand three hundred seventy-two pounds.\\n\",\"The same evils of overcrowding, uncleanliness, want of medical attendance,\\n\",\"absence or neglect of divine service, were present as in the King's Bench, but in an exaggerated form.\\n\",\"The Committee on Jails reported that, quote, although the house of the warden looked into the court,\\n\",\"and the turnkeys slept in the prison, yet scenes of riot, drunkenness, and disorder were most prevalent, end quote.\\n\",\"The state of morals was disgraceful. Any woman obtained admission if sober, and if she got drunk she was not turned out.\\n\",\"There was no distinct place for the female debtors, who lived in the same galleries as the men.\\n\",\"Disturbances were frequent, owing to the riotous conduct of intoxicated women.\\n\",\"Twice a week there was a wine and beer club held at night, which lasted till two or three in the morning.\\n\",\"In the yard behind the prison\\n\",\"were places set apart for skittles, fives, and tennis, which strangers frequented as any other place of public amusement.\\n\",\"Matters were rather better at the Marshalsea.\\n\",\"This very ancient prison, which stood in the High Street, Southwark,\\n\",\"was used for debtors arrested for the lowest sums within twelve miles of the palace of Whitehall;\\n\",\"also for prisoners committed by the Admiralty Court.\\n\",\"At one time the Marshalsea was the receptacle of pirates, but none were committed to it after seventeen eighty-nine.\\n\",\"The court of the Marshalsea was instituted by Charles the first in the sixth year of his reign,\\n\",\"to be held before the steward of the royal household, the knight marshal, and the steward of the court,\\n\",\"with jurisdiction to hold pleas in all actions within the prescribed limits. The court was chiefly used for the recovery of small debts under ten pounds\\n\",\"but its business was much reduced by the extension of the Courts of Conscience.\\n\",\"The prison was a nest of abuses, like its neighbor the King's Bench\\n\",\"and came under the strong animadversion of the Jail Committee of seventeen twenty-nine.\\n\",\"As the business of the Marshalsea Court declined, the numbers in its prison diminished.\\n\",\"The population, as reported by the committee in eighteen fourteen, averaged about sixty,\\n\",\"and the prison, although wives and children resided within the walls, was not overcrowded.\\n\",\"Their conduct too was orderly on the whole.\\n\",\"Drunkenness was not common, chiefly because liquor was not to be had freely, although the tapster paid a rent of two guineas a week for permission to sell it.\\n\",\"The inmates, who euphemistically styled themselves \\\"collegians,\\\"\\n\",\"were governed by rules which they themselves had framed, and under which subscriptions were levied\\n\",\"and fines imposed for conduct disapproved of by the \\\"college.\\\"\\n\",\"A court of the collegians was held every Monday to manage its affairs, at which all prisoners were required to attend.\\n\",\"A committee of collegians was elected to act as the executive, also a secretary or accountant to receive monies and keep books,\\n\",\"and a master of the ale-room, who kept this the scene of their revels clean, and saw that boiling water was provided for grog.\\n\",\"Bad language, quarreling, throwing water over one another was forbidden on pain of fine and being sent to Coventry;\\n\",\"but the prevailing moral tone may be guessed from the penalty inflicted upon persons singing obscene songs before nine p.m.\\n\",\"Yet the public opinion of the whole body seems to have checked dissipation.\\n\",\"The poorer prisoners were not in abject want, as in other prisons,\\n\",\"owing to many charitable gifts and bequests, which included annual donations from the Archbishop of Canterbury,\\n\",\"the Lord Steward of the Household, the steward and officers of the Marshalsea Court, and others.\\n\",\"Legacies had also been left to free a certain number of debtors, notably that of one hundred pounds per annum\\n\",\"left by a Mr. Henry Allnutt, who was long a prisoner in the Marshalsea, and came into a fortune while there.\\n\",\"His bequest, which was charged upon his manor at Goring, Oxon, and hence called the Oxford Charity,\\n\",\"was applied only to the release of poor debtors whom four pounds each could free.\\n\",\"The supreme control of the Marshalsea was vested in the marshal of the royal household; but although he drew a salary of five hundred pounds a year,\\n\",\"he did nothing beyond visiting the prison occasionally, and left the administration to the deputy marshal.\\n\",\"The latter's salary, with fees, the rent of the tap and of the chandler's shop, amounted to about six hundred pounds a year.\\n\",\"The compters of Ludgate, Giltspur Street, and the Borough were discontinued as debtors' prisons (as was Newgate also)\\n\",\"on the opening of Whitecross prison for debtors in eighteen fifteen.\\n\",\"Ludgate to the last was the debtors' prison for freemen of the city of London,\\n\",\"clergymen, proctors, attorneys, and persons specially selected by the Corporation.\\n\",\"At one time the Ludgate debtors, accompanied by the keeper,\\n\",\"went outside and beyond the prison to call on their creditors, and try to arrange their debts, but this practice was discontinued.\\n\",\"There were fifteen rooms of various sizes, and as the numbers imprisoned rarely exceeded five-and-twenty, the place was never overcrowded,\\n\",\"while the funds of several bequests and charities were applied in adding to the material comfort of the prisoners.\\n\",\"The Giltspur Street Compter received sheriffs' debtors, also felons, vagrants, and night charges.\\n\",\"It was generally crowded, as debtors who would have gone to the Poultry Compter were sent to Giltspur Street when the former was condemned as unfit to receive prisoners.\\n\",\"The demands for fees were excessive in Giltspur Street.\\n\",\"Those who could not pay were thrown into the wards with the night charges,\\n\",\"and denied admission to the \\\"charity wards,\\\" which partook of all the benefits of bequests and donations to poor debtors.\\n\",\"The Borough Compter was in a disgraceful state to the last. The men's ward had an earth, or rather a mud, floor,\\n\",\"and was so unfit to sleep on that it had not been used for many years, so that the men and women associated together indiscriminately.\\n\",\"The rooms had no fireplaces, so it mattered little that no coals were allowed.\\n\",\"There were no beds or bedding, no straw even.\\n\",\"In one room Mr. Neild found a woman ill of a flux shut up with three men;\\n\",\"the latter raised eighteen pence among them to pay for a truss of straw for the poor woman to lie on.\\n\",\"Neild found the prisoners in the Borough Compter ragged, starving, and dirty.\\n\",\"I come now to the debtors in Newgate. The quarters they occupied were divided, as I have said, into three principal divisions\\n\",\"the master's side, the cabin side, and the common side. Payment of a fee of three shillings gained the debtor admission to the two first named;\\n\",\"those who could pay nothing went, as a matter of course, to the common side;\\n\",\"a further fee was, however, demanded from the new-comer before he was made free of either the master's or the cabin side.\\n\",\"This was the reprehensible claim for \\\"garnish,\\\" which had already been abolished in all well-conducted prisons, but which still was demanded in Newgate.\\n\",\"Garnish on the cabin side was a guinea at entrance for coals, candles, brooms, etc., and a gallon of beer on discharge;\\n\",\"on the master's side it was thirteen and fourpence, and a gallon of beer on entrance, although Mr. Newman,\\n\",\"in his evidence in eighteen fourteen, said it was more,\\n\",\"and gave the garnish for the common side at that sum, which is five shillings more than Mr. Neild says was extorted on the common side.\\n\",\"Numerous tyrannies were practiced on all who would not and could not pay the garnish.\\n\",\"They were made to wash and swab the ward, or they were shut out from the ward fireplace, and forbidden to pass a chalked line drawn on the floor,\\n\",\"and so were unable either to warm themselves or to cook their food.\\n\",\"Besides these fees, legitimate and illegitimate, there were others which must be paid before release.\\n\",\"The sheriff demanded four shillings, six pence for his liberate, the jailer six shillings, ten pence more, and the turnkey two shillings;\\n\",\"and thus when the debtor's debt had been actually paid, or when he had abandoned his property to the creditors, and, almost destitute,\\n\",\"looked forward to his liberty, he was still delayed until he had paid a new debt arising, quote,\\n\",\"only out of a satisfaction of all his former debts, end quote. The fees were not always extorted, it is true;\\n\",\"nor was non-payment made a pretext for further imprisonment, thanks to the humanity of the jailer, or the funds provided by various charities.\\n\",\"There was this much honest forbearance in Newgate in these days,\\n\",\"that debtors who could afford the cabin and master's side were not permitted to share in the prison charities.\\n\",\"These were lumped together into a general fund,\\n\",\"and a calculation made as to the amount that might be expended per week from the whole sum, so that the latter might last out the year.\\n\",\"It generally ran to about six pounds per week. The money, which at one time had been distributed quarterly, and all went in drink,\\n\",\"was after eighteen oh seven, through the exertions of the keeper of the jail, spent in the purchase of necessaries.\\n\",\"But this weekly pittance did not go far when the debtors' side was crowded, as it often was;\\n\",\"notably as when numbers filled Newgate in anticipation of Lord Redesdale's bill for insolvent debtors,\\n\",\"and there were as many as three hundred and fifty prisoners in at one time.\\n\",\"The city also allowed the poor debtors fourteen ounces of bread daily, and their share of eight stone of meat, an allowance which never varied,\\n\",\"issued once a week, and divided as far as it would go -- a very precarious and uncertain ration.\\n\",\"The bread was issued every alternate day; and while some prisoners often ate their whole allowance at once,\\n\",\"others who arrived just after the time of distribution were often forty-eight hours without food. The latter might also be six days without meat.\\n\",\"Share in the weekly allowance of meat might also be denied to debtors who had not paid \\\"garnish,\\\" as well as in the weekly grant from the charitable fund.\\n\",\"Hence starvation stared many in the face, unless friends from outside came to their assistance,\\n\",\"or the keeper made them a special grant of six pence per diem out of the common stock;\\n\",\"or the sixpenny allowance was claimed for the creditors, which seldom happened, owing to the expense the process entailed.\\n\",\"The poor debtors were not supplied with beds. Those who could pay the price might hire them from each other,\\n\",\"or from persons who made a trade of it, or they might bring their beds with them into the prison.\\n\",\"Failing any of these methods, seeing that straw was forbidden for fear of fire, they had to be satisfied with a couple of the rugs provided by the city\\n\",\"the supply of which was, however, limited, and there were not always enough to give bedding to all. The stock was diminished by theft;\\n\",\"female visitors carried them out of the prisons, or the debtors destroyed them when the weather was warm,\\n\",\"and they were not in great demand, in order to convert them into mop-heads or cleaning-rags.\\n\",\"Sometimes rugs were urgently required and not forthcoming;\\n\",\"a severe winter set in, the new stock had not been supplied by the contractors, and the poor debtors perished of cold.\\n\",\"Again, there was no regular allowance of fuel. Coals were purchased out of the garnish money and the charitable fund;\\n\",\"so were candles, salt, pepper, mops and brooms. But the latter could have been of little service. Dirt prevailed everywhere;\\n\",\"indeed the place, with its oak floors caulked with pitch, and smoked ceilings,\\n\",\"could not be made even to look clean while there was no obligation of personal cleanliness on individuals, who often came into the prison in filthy rags.\\n\",\"Only now and again, in extreme cases, an unusually nasty companion was stripped, haled to the pump,\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section five: Newgate down to eighteen eighteen, part two.\\n\",\"The squalor and uncleanness of the debtors' side was intensified by constant overcrowding.\\n\",\"Prisoners were committed to it quite without reference to its capacity.\\n\",\"No remonstrance was attended to,\\n\",\"no steps taken to reduce the number of committals, and the governor was obliged to utilize the chapel as a day and night room.\\n\",\"Besides this, although the families of debtors were no longer permitted to live with them inside the jail,\\n\",\"hundreds of women and children came in every morning to spend the day there, and there was no limitation whatever to the numbers of visitors admitted to the debtors' side.\\n\",\"Friends arrived about nine a.m., and went out at nine p.m., when as many as two hundred visitors have been observed leaving the debtors' yards at one time.\\n\",\"The day passed in revelry and drunkenness. Although spirituous liquors were forbidden,\\n\",\"wine and beer might be had in any quantity, the only limitation being\\n\",\"that not more than one bottle of wine or one quart of beer could be issued at one time. No account was taken of the amount of liquors admitted in one day,\\n\",\"and debtors might practically have as much as they liked, if they could only pay for it.\\n\",\"No attempt was made to check drunkenness, beyond the penalty of shutting out friends from any ward in which a prisoner exceeded.\\n\",\"Quarreling among the debtors was not unfrequent. Blows were struck, and fights often ensued.\\n\",\"For this and other acts of misconduct there was the discipline of the refractory ward, or \\\"strong room\\\" on the debtors' side.\\n\",\"Bad cases were removed to a cell on the felons' side, and here they were locked in solitary confinement for three days at a time.\\n\",\"Order throughout the debtors' side was preserved\\n\",\"and discipline maintained by a system open to grave abuses, and which had the prescription of long usage,\\n\",\"and which was never wholly rooted out for many years to come.\\n\",\"This was the pernicious plan of governing by prisoners, or of setting a favored few in authority over the many.\\n\",\"The head of the debtors' prison was a prisoner called the steward, who was chosen by the whole body from six whom the keeper nominated.\\n\",\"This steward was practically supreme.\\n\",\"All the allowances of food passed through his hands; he had the control of the poor-box for chance charities,\\n\",\"he collected the garnish money, and distributed the weekly grant from the prison charitable fund.\\n\",\"In the latter duties he was, however, supervised by three auditors, freely chosen by the prisoners among themselves.\\n\",\"The auditors were paid a shilling each for their services each time the poor-box was opened. The steward was also remunerated for his trouble.\\n\",\"He had a double allowance of bread, deducted, of course, from the already too limited portion of the rest,\\n\",\"and no doubt made the meat also pay toll.\\n\",\"Under the steward there were captains of wards, chosen in the same way, and performing analogous duties.\\n\",\"These subordinate chiefs were also rewarded out of the scanty prison rations.\\n\",\"The same system was extended to the criminal side, and cases were on record of the place of wardsman being sold for considerable sums.\\n\",\"So valuable were they deemed, that as much as fifty guineas was offered to the keeper for the post.\\n\",\"Enough has been said, probably, to prove that there was room for improvement in the condition and treatment of debtors in the prisons of the city of London.\\n\",\"This gradually was forced upon the consciousness of the Corporation,\\n\",\"and about eighteen twelve application was made to Parliament for funds to build a new debtors' prison.\\n\",\"Authority was given to raise money on the Orphans' Fund to the extent of ninety thousand pounds.\\n\",\"A site was purchased between Red Lion and White Cross streets, and a new prison planned,\\n\",\"which would accommodate the inmates of Newgate and of the three compters, Ludgate,\\n\",\"Giltspur Street, and the Poultry, or about four hundred and seventy-six in all.\\n\",\"The evils of association for these debtors were perpetuated, although the plan provided for the separation of the various contingents committed to it.\\n\",\"There was no lack of air and light for the new jail, and several exercising yards.\\n\",\"The completion of this very necessary building was, however, much delayed for want of funds,\\n\",\"and it was not ready to relieve Newgate till late in eighteen fifteen.\\n\",\"The reforms which were to be attempted in that prison\\n\",\"more particularly as regarded the classification of prisoners, and which were dependent on the space to be gained by the removal of the debtors,\\n\",\"could not be carried out till then. It is to be feared that long after the opening of White Cross Street prison,\\n\",\"Newgate continued to be a reproach to those responsible for its management.\\n\",\"I pass now to the criminal side of Newgate, which consisted of the six quarters or yards already enumerated and described.\\n\",\"The inmates of this part, as distinguished from the debtors, were comprised in four classes:\\n\",\"(one) those awaiting trial;\\n\",\"(two) persons under sentence of imprisonment for a fixed period, or until they shall have paid certain fines;\\n\",\"(three) transports awaiting removal to the colonies, and (four) capital convicts, condemned to death and awaiting execution.\\n\",\"At one time the whole of these different categories were thrown together pell-mell, young and old, the untried with the convicted.\\n\",\"An imperfect attempt at classification was, however, made in eighteen twelve, and a yard was as far as possible set apart for the untried,\\n\",\"or class (one), with whom, under the imperious demand for accommodation, were also associated the misdemeanants, or class (two).\\n\",\"This was the chapel yard, with its five wards, which were calculated to hold seventy prisoners, but often held many more.\\n\",\"A further sub-classification was attempted by separating at night those charged with misdemeanors from those charged with felony,\\n\",\"but all mingled freely during the day in the yard.\\n\",\"The sleeping accommodation in the chapel-yard wards, and indeed throughout the prison, consisted of a barrack bed,\\n\",\"which was a wooden flooring on a slightly inclined plane, with a beam running across the top to serve as a pillow.\\n\",\"No beds were issued, only two rugs per prisoner.\\n\",\"When each sleeper had the full lateral space allotted to him, it amounted to one foot and a half on the barrack bed;\\n\",\"but when the ward was obliged to accommodate double the ordinary number, as was frequently the case,\\n\",\"the sleepers covered the entire floor, with the exception of a passage in the middle.\\n\",\"All the misdemeanants, whatever their offense, were lodged in this chapel ward.\\n\",\"As many various and, according to our ideas, heinous crimes came under this head,\\n\",\"in the then existing state of the law,\\n\",\"the man guilty of a common assault found himself side by side with the fraudulent, or others who had attempted abominable crimes.\\n\",\"In this heterogeneous society were also thrown the unfortunate journalists to whom I have already referred, and on whom imprisonment in Newgate\\n\",\"was frequently adjudged for so-called libels, or too out-spoken comments in print.\\n\",\"It was particularly recommended by the Committee on Jails in eighteen fourteen\\n\",\"that some other and less mixed prison should be used for the confinement of persons convicted of libels. But this suggestion was ignored.\\n\",\"Indeed the partial classification attempted seems to have been abandoned within a year or two.\\n\",\"The Hon. H. G. Bennet, who visited Newgate in eighteen seventeen, saw in one yard, in a total of seventy-two prisoners,\\n\",\"thirty-five tried and thirty-seven untried. Of the former, three were transports for life,\\n\",\"four for fourteen years, and three of them persons sentenced to fines or short imprisonment -- one for little more than a month.\\n\",\"Two of the untried were for murder, and several for house-breaking and highway robbery.\\n\",\"Nor were the misdemeanants and bail prisoners any longer separated from those whose crimes were of a more serious character.\\n\",\"Mr. Bennet refers to a gentleman confined for want of bail, who occupied a room with five others\\n\",\"two committed by the Bankruptcy Commissioner, one for perjury, and two transports.\\n\",\"Persons convicted of publishing libels were still immured in the same rooms with transports and felons.\\n\",\"The middle yard, as far as its limits would permit, was appropriated to felons and transports. The wards here were generally very crowded.\\n\",\"Each ward was calculated to hold twenty-four, allowing each individual one foot and a half;\\n\",\"Quote, a common-sized man, says the keeper, Mr. Newman, can turn in nineteen inches, end quote.\\n\",\"These twenty-four could just sleep on the barrack bed; when the number was higher, and it often rose to forty, the surplus had to sleep on the floor.\\n\",\"The crowding was in consequence of the delay in removing transports.\\n\",\"These often remained in Newgate for six months, sometimes a year, in some cases longer;\\n\",\"in one, for seven years -- that of a man sentenced to death, for whom great interest had been made, but whom it was not thought right to pardon.\\n\",\"Occasionally the transports made themselves so useful in the jail that they were passed over.\\n\",\"Mr. Newman admitted that he had petitioned that certain \\\"trusty men\\\" might be left in the jail.\\n\",\"Constantly associated with these convicted felons were numbers of juveniles, infants of tender years.\\n\",\"There were frequently in the middle yard seven or eight children, the youngest barely nine,\\n\",\"the oldest only twelve or thirteen, exposed to all the contaminating influences of the place.\\n\",\"Mr. Bennet mentions also the case of young men of better stamp, clerks in city offices, and youths of good parentage,\\n\",\"Quote, in this dreadful situation, end quote. who had been rescued from the hulks through the kindness and attention of the Secretary of State.\\n\",\"Quote, yet they had been long enough, he goes on to say, in the prison associated with the lowest and vilest criminals,\\n\",\"with convicts of all ages and characters, to render it next to impossible but that, with the obliteration of all sense of self-respect,\\n\",\"the inevitable consequence of such a situation, their morals must have been destroyed;\\n\",\"and though distress or the seduction of others might have led to the commission of this their first offense,\\n\",\"yet the society they were driven to live in, the language they daily heard, and the lessons they were taught in this academy,\\n\",\"must have had a tendency to turn them into the world hardened and accomplished in the ways of vice and crime. End quote.\\n\",\"Mr. Buxton, in the work already quoted, instances another grievous case of the horrors of indiscriminate association in Newgate.\\n\",\"It was that of a person, quote, who practiced in the law, and who was connected by marriage with some very respectable families.\\n\",\"Having been committed to Clerkenwell,\\n\",\"he was sent on to Newgate in a coach, handcuffed to a noted house-breaker, who was afterwards cast for death.\\n\",\"The first night in Newgate, and for the subsequent fortnight,\\n\",\"he slept in the same bed with a highwayman on one side, and a man charged with murder on the other.\\n\",\"Spirits were freely introduced, and although he at first abstained,\\n\",\"he found he must adopt the manners of his companions, or that his life would be in danger.\\n\",\"They viewed him with some suspicion, as one of whom they knew nothing.\\n\",\"He was in consequence put out of the protection of their internal law, end quote. Their code was a subject of some curiosity.\\n\",\"When any prisoner committed an offense against the community or against an individual, he was tried by a court in the jail.\\n\",\"A prisoner, generally the oldest and most dexterous thief,\\n\",\"was appointed judge, and a towel tied in knots was hung on each side in imitation of a wig.\\n\",\"The judge sat in proper form; he was punctiliously styled \\\"my lord.\\\"\\n\",\"A jury having been selected and duly sworn, the culprit was then arraigned. Justice, however, was not administered with absolute integrity.\\n\",\"A bribe to the judge was certain to secure acquittal, and the neglect of the formality was as certainly followed by condemnation.\\n\",\"Various punishments were inflicted, the heaviest of which was standing in the pillory.\\n\",\"This was carried out by putting the criminal's head through the legs of a chair, and stretching out his arms and tying them to the legs.\\n\",\"The culprit was then compelled to carry the chair about with him.\\n\",\"But all punishments might readily be commuted into a fine to be spent in gin for judge and jury.\\n\",\"The prisoner mentioned above was continually persecuted by trials of this kind.\\n\",\"The most trifling acts were magnified into offenses.\\n\",\"He was charged with moving something which should not be touched, with leaving a door open, or coughing maliciously to the disturbance of his companions.\\n\",\"The evidence was invariably sufficient to convict, and the judge never hesitated to inflict the heaviest penalties.\\n\",\"The unfortunate man was compelled at length to adopt the habits of his associates;\\n\",\"Quote, by insensible degrees he began to lose his repugnance to their society,\\n\",\"caught their flash terms and sung their songs, was admitted to their revels, and acquired, in place of habits of perfect sobriety,\\n\",\"a taste for spirits. End quote.\\n\",\"His wife visited him in Newgate, and wrote a pitiable account of the state in which she found her husband.\\n\",\"He was an inmate of the same ward with others of the most dreadful sort, quote,\\n\",\"whose language and manners, whose female associates of the most abandoned description, and the scenes consequent with such lost wretches\\n\",\"prevented me from going inside but seldom, and I used to communicate with him through the bars from the passage. End quote.\\n\",\"One day he was too ill to come down and meet her.\\n\",\"She went up to the ward and found him lying down, quote,\\n\",\"pale as death, very ill, and in a dreadfully dirty state, the wretches making game of him, and enjoying my distress;\\n\",\"and I learned he had been up with the others the whole night.\\n\",\"Though they could not force him to gamble, he was compelled to drink,\\n\",\"and I was obliged afterwards to let him have five shillings to pay his share,\\n\",\"otherwise he would have been stripped of his clothes. End quote.\\n\",\"Felons who could pay the price were permitted, irrespective of their character or offenses,\\n\",\"to purchase the greater ease and comfort of the master's side.\\n\",\"The entrance fee was at least thirteen shillings, six pence a head, with half-a-crown a week more for bed and bedding,\\n\",\"the wards being furnished with barrack bedsteads, upon which each prisoner had the regulation allowance of sleeping room\\n\",\"or about a foot and a half laterally. These fees were in reality a substantial contribution towards the expenses of the jail;\\n\",\"without them the keeper declared that he could not pay the salaries of turnkeys and servants, nor keep the prison going at all.\\n\",\"Besides the jail fees, there was garnish of half-a-guinea, collected by the steward,\\n\",\"and spent in providing coals, candles, plates, knives, and forks; while all the occupants of this part of the prison\\n\",\"supported themselves; they had the ration of prison bread only,\\n\",\"but they had no share in the prison meat or other charities, and they or their friends found them in food.\\n\",\"All who could scrape together the cash seem to have gladly availed themselves of the privilege of entering the master's side.\\n\",\"It was the only way to escape the horrors, the distress, penury, and rags of the common yards.\\n\",\"Idleness was not so universally the rule in this part of the jail.\\n\",\"Artisans and others were at liberty to work at their trades, provided they were not dangerous.\\n\",\"Tailoring and shoemaking was permitted, but it was deemed unsafe to allow a carpenter or blacksmith to have his tools.\\n\",\"All the money earned by prisoners was at their own disposal, and was spent almost habitually in drink, chambering, and wantonness.\\n\",\"The best accommodation the jail could offer was reserved for the prisoners on the state side,\\n\",\"from whom still higher fees were exacted, with the same discreditable idea of swelling the revenues of the prison.\\n\",\"To constitute this the aristocratic quarter, unwarrantable demands were made upon the space properly allotted to the female felons,\\n\",\"and no lodger was rejected, whatever his status, who offered himself and could bring grist to the mill.\\n\",\"The luxury of the state side was for a long time open to all who could pay\\n\",\"the convicted felon, the transport awaiting removal, the lunatic whose case was still undecided,\\n\",\"the misdemeanant tried or untried, the debtor who wished to avoid the discomfort of the crowded debtors' side, the outspoken newspaper editor,\\n\",\"or the daring reporter of parliamentary debates.\\n\",\"The better class of inmate complained bitterly of this enforced companionship with the vile,\\n\",\"association at one time forbidden by custom, but which greed and rapacity long made the rule.\\n\",\"The fee for admission to the state side, as fixed by the table of fees, was three guineas, but Mr. Newman declared that he never took more than two.\\n\",\"Ten and sixpence a week more was charged as rent for a single bed; where two or more slept in a bed the rent was seven shillings a week each.\\n\",\"Prisoners who could afford it sometimes paid for four beds, at the rate of twenty-eight shillings, and so secured the luxury of a private room.\\n\",\"A Mr. Lundy, charged with forgery, was thus accommodated on the state side for upwards of five years.\\n\",\"But the keeper protested that no single prisoner could thus monopolize space if the state side was crowded.\\n\",\"The keeper went still further in his efforts to make money.\\n\",\"He continued the ancient practice of letting out a portion of his own house, and by a poetical fiction treated it as an annex of the state side.\\n\",\"Mr. Davison, sent to Newgate for embezzlement, and whose case is given in the preceding chapter,\\n\",\"was accommodated with a room in Mr. Newman's house at the extravagant rental of thirty guineas per week;\\n\",\"Mr. Cobbett was also a lodger of Mr. Newman's; and so were any members of the aristocracy,\\n\",\"if they happened to be in funds -- among whom was the Marquis of Sligo in eighteen eleven.\\n\",\"The female felons' wards I shall describe at length in the next chapter,\\n\",\"which will deal with Mrs. Fry's philanthropic exertions at this period in this particular part of the prison.\\n\",\"These wards were always full to overflowing; sometimes double the number the rooms could accommodate were crowded into them.\\n\",\"There was a master's side for females who could pay the usual fees, but they associated with the rest in the one narrow yard common to all.\\n\",\"The tried and the untried, young and old, were herded together\\n\",\"sometimes girls of thirteen, twelve, even ten or nine years of age, were exposed to, quote,\\n\",\"all the contagion and profligacy which prevailed in this part of the prison, end quote.\\n\",\"There was no separation even for the women under sentence of death, who lived in a common and perpetually crowded ward.\\n\",\"Only when the order of execution came down were those about to suffer placed apart in one of the rooms in the arcade of the middle ward.\\n\",\"I have kept till the last that part of the prison which was usually the last resting-place of so many.\\n\",\"The old press yard has been fully described in a previous chapter.\\n\",\"The name still survived in the new press yard, which was the receptacle of the male condemned prisoners. It was generally crowded, like the rest of the prison.\\n\",\"Except in murder cases, where the execution was generally very promptly performed,\\n\",\"strange and inconceivable delay occurred in carrying out the extreme sentence.\\n\",\"Hence there was a terrible accumulation of prisoners in the condemned cells.\\n\",\"Once, during the long illness of George the third, as many as one hundred were there waiting the \\\"Report,\\\" as it was called.\\n\",\"At another time there were fifty, one of whom had been under sentence a couple of years.\\n\",\"Mr. Bennet speaks of thirty-eight capital convicts he found in the press yard in February eighteen seventeen,\\n\",\"five of whom had been condemned the previous July, four in September, and twenty-nine in October.\\n\",\"This procrastination bred certain callousness.\\n\",\"Few realizing that the dreadful fate would overtake them, dismissed the prospect of death,\\n\",\"and until the day was actually fixed, spent the time in roistering, swearing, gambling, or playing at ball.\\n\",\"Visitors were permitted access to them without stint;\\n\",\"unlimited drink was not denied them provided it was obtained in regulated quantities at one time.\\n\",\"These capital convicts, says Mr. Bennet, quote, lessened the ennui and despair of their situation by unbecoming merriment\\n\",\"or sought relief in the constant application of intoxicating stimulants.\\n\",\"I saw Cashman a few hours before his execution, smoking and drinking with the utmost unconcern and indifference, end quote.\\n\",\"Those who were thus reckless reacted upon the penitent who knew their days were numbered,\\n\",\"and their gibes and jollity counteracted the ordinary's counsels or the independent preacher's earnest prayers.\\n\",\"For while Roman Catholics and Dissenters were encouraged to see ministers of their own persuasion,\\n\",\"a number of amateurs were ever ready to give their gratuitous ministrations to the condemned.\\n\",\"The prisoners in the press yard had free access during the day to the yard and large day room;\\n\",\"at night they were placed in the fifteen cells, two, three, or more together, according to the total number to be accommodated.\\n\",\"They were never left quite alone for fear of suicide, and for the same reason they were searched for weapons or poisons.\\n\",\"But they nevertheless frequently managed to secrete the means of making away with themselves, and accomplished their purpose.\\n\",\"Convicted murderers were kept continuously in the cells on bread and water,\\n\",\"in couples, from the time of sentence to that of execution, which was about three or four days generally,\\n\",\"from Friday to Monday, so as to include one Sunday, on which day there was a special service for the condemned in the prison chapel.\\n\",\"This latter was an ordeal which all dreaded, and many avoided by denying their faith.\\n\",\"The condemned occupied an open pew in the center of the chapel, hung with black; in front of them, upon a table, was a black coffin in full view.\\n\",\"The chapel was filled with a curious but callous congregation, who came to stare at the miserable people thus publicly exposed.\\n\",\"Well might Mr. Bennet write that the condition of the condemned side was the most prominent of the manifold evils in the present system of Newgate,\\n\",\"quote, so discreditable to the metropolis, end quote.\\n\",\"Yet it must have been abundantly plain to the reader that the other evils existing were great and glaring. A brief summary of them will best prove this.\\n\",\"The jail was neither suitable nor sufficiently large. It was not even kept weather-tight.\\n\",\"The roof of the female prison, says the grand jury in their presentment in eighteen thirteen, let in the rain.\\n\",\"Supplies of common necessaries, such as have now been part of the furniture of every British jail for many years,\\n\",\"were meager or altogether absent.\\n\",\"The rations of food were notoriously inadequate, and so carelessly distributed, that many were left to starve.\\n\",\"So unjust and unequal was the system, that the allowance to convicted criminals was better than that of the innocent debtor,\\n\",\"and the general insufficiency was such\\n\",\"that it multiplied beyond all reason the number of visitors, many of whom came merely as the purveyors of food to their friends.\\n\",\"The prison allowances were eked out by the broken victuals generously given by several eating-house keepers in the city,\\n\",\"such as Messrs. Birch of Cornhill and Messrs. Leach and Dollimore of Ludgate Hill.\\n\",\"These were fetched away in a large tub on a truck by a turnkey.\\n\",\"Amongst the heap was often the meat that had made turtle soup, which, when heated and stirred together in a saucepan, was said to be very good eating.\\n\",\"The bedding was scanty; fuel and light had to be purchased out of prisoners' private means; clothing was issued but rarely,\\n\",\"even to prisoners almost in nakedness, and as a special charitable gift. Extortion was practiced right and left.\\n\",\"Garnish continued to be demanded long after it had disappeared in other and better-regulated prisons.\\n\",\"The fees on reception and discharge must be deemed exorbitant, when it is remembered the impoverished class who usually crowded the jail;\\n\",\"and they were exacted to relieve a rich corporation from paying for the maintenance of their own prison.\\n\",\"This imposition of fees left prisoners destitute on their discharge, without funds to support them in their first struggle to recommence life,\\n\",\"with ruined character, bad habits, and often bad health contracted in the jail.\\n\",\"A further and a more iniquitous method of extorting money\\n\",\"was still practiced, that of loading newly-arrived prisoners until they paid certain fees.\\n\",\"Ironing was still the rule, not only for the convicted, but for those charged with felonies; only the misdemeanants escaped.\\n\",\"At the commencement of every sessions, such of the untried as had purchased \\\"easement\\\" of irons were called up and re-fettered,\\n\",\"preparatory to their appearance in the Old Bailey. Irons were seldom removed from the convicted until discharge;\\n\",\"sometimes the wearer was declared medically unfit, or he obtained release by long good conduct,\\n\",\"or the faithful discharge of some petty office, such as gatesman or captain of a ward.\\n\",\"The irons weighed from three to four pounds, but heavier irons, seven or eight pounds' weight,\\n\",\"were imposed in case of misconduct; and when there had been an attempt at escape,\\n\",\"the culprit was chained down to the floor by running a chain through his irons which prevented him from climbing to the window of his cell.\\n\",\"Among other excuses offered for thus manacling all almost without exception, was that it was the best and safest method\\n\",\"of distinguishing a prisoner from a stranger and temporary visitor.\\n\",\"Clothes or prison uniform would not have served the purpose, for a disguise can be rapidly and secretly put on,\\n\",\"whereas irons cannot well be exchanged without loss of time and attracting much attention.\\n\",\"The unchecked admission of crowds of visitors to the felons' as well as the debtors' side was another unmixed evil.\\n\",\"By this means spirits, otherwise unattainable and strictly prohibited, were smuggled into the jail.\\n\",\"Searches were made certainly, but they were too often superficial, or they might be evaded by a trifling bribe.\\n\",\"Hence the frequent cases of drunkenness, of which no notice was taken, unless people grew riotous in their cups\\n\",\"and attracted attention by their disorderly behavior.\\n\",\"Another frightful consequence of this indiscriminate admission was the influx of numbers of abandoned women,\\n\",\"only a few of whom had the commendable prudery to pass themselves off as the wives of prisoners.\\n\",\"Any reputed, and indeed any real, wife might spend the night in Newgate if she would pay the shilling fee, commonly known as the \\\"bad money,\\\"\\n\",\"which might have done something towards increasing the prison receipts, had it not been appropriated by the turnkey who winked at this evasion of the rules.\\n\",\"Among the daily visitors were members of the criminal classes still at large,\\n\",\"the thieves and burglars who carried on the active business of their profession, from which their confederates were temporarily debarred.\\n\",\"One notorious character, while a prisoner awaiting transfer to the hulks,\\n\",\"kept open house, so to speak, and entertained daily within the walls a select party of the most noted thieves in London.\\n\",\"This delectable society enticed into their set a clerk who had been imprisoned for fraud,\\n\",\"and offered him half the booty if he would give full information as to the transactions and correspondence of his late employers.\\n\",\"Owing to the facility of intercourse between inside and outside, many crimes were doubtless hatched in Newgate.\\n\",\"Some of the worst and most extensive burglaries were planned there.\\n\",\"\\\"I believe,\\\" says Mr. Bennet in the letter already largely quoted,\\n\",\"\\\"that there is no place in the metropolis where more crimes are projected or where stolen property is more secreted than in Newgate.\\\"\\n\",\"These malpractices were fostered by the absence of all supervision and the generally unbroken idleness.\\n\",\"Although attempted partially at Bridewell, and more systematically at the new Millbank penitentiary,\\n\",\"but just open (eighteen sixteen), the regular employment of prisoners had never yet been accepted as a principle in the metropolitan prisons.\\n\",\"Insuperable difficulties were still supposed to stand in the way of any general employment of prisoners at their trades.\\n\",\"There was fear as to the unrestricted use of tools,\\n\",\"limits of space, the interference of the ill-disposed, who would neither work nor let others do so,\\n\",\"and the danger of losing material, raw or manufactured.\\n\",\"Many years were to elapse before these objections should be fairly met and universally overcome.\\n\",\"It was not strange, therefore, that the inmates of Newgate should turn their unoccupied brains and idle hands to all manner of mischief;\\n\",\"that when they were not carousing, plotting, or scheming,\\n\",\"they should gamble with dice or cards, and play at bumble puppy or some other disreputable game of chance.\\n\",\"The report of the Committee of the House of Commons painted so black a picture of Newgate as then conducted, that the Corporation were roused in very shame\\n\",\"to undertake some kind of reform.\\n\",\"The above-mentioned report was ordered to be printed upon the ninth May.\\n\",\"Upon the twenty-ninth July the same year,\\n\",\"the court of aldermen appointed a committee of its own body, assisted by the town clerk, Mr. Dance, city surveyor, son to the architect of Newgate,\\n\",\"and Mr. Addison, keeper of Newgate, to make a visitation of the jails supposed to be the best managed, including those of Petworth and Gloucester.\\n\",\"This committee was to compare allowances, examine rules, and certify as to the condition of prisoners;\\n\",\"also to make such proposals as might appear salutary, and calculated to improve Newgate and the rest of the city jails.\\n\",\"This committee made its report in September the following year, and an excellent report it is, so far as its recommendations are concerned.\\n\",\"The committee seems to have fully realized, even at this early date (eighteen fifteen),\\n\",\"many of the indispensable conditions of a model prison according to modern ideas.\\n\",\"It admitted the paramount necessity\\n\",\"for giving every prisoner a sleeping cell to himself, an amount of enlightenment which is hardly general among European nations at this\\n\",\"the latter end of the nineteenth century, several of which still fall far short of our English ideal,\\n\",\"that all prisoners should always be in separate cells by night, and those of short sentences by day.\\n\",\"It recommended day cells or rooms for regular labor, which should be compulsory upon all transports and prisoners sentenced to hard labor,\\n\",\"the work being constant and suitable, with certain hours of relaxation and for food and exercise.\\n\",\"The personal cleanliness of all prisoners was to be insisted upon; they should be made to wash at least once a day,\\n\",\"with the penalty of forfeiting the day's allowance of food, an increase of which the committee had recommended.\\n\",\"The provision of more baths was also suggested, and the daily sweeping out of the prison.\\n\",\"The clothes of prisoners arriving dirty, or in rags, should be fumigated before worn in the jail,\\n\",\"but as yet no suggestion was made to provide prison uniform.\\n\",\"A laundry should be established, and a matron appointed on the female side, where all the prisoners' washing could be performed.\\n\",\"Proper hours for locking and unlocking prisoners should be insisted upon;\\n\",\"a bell should give notice thereof, and of meal-hours, working-hours, or of escapes.\\n\",\"The committee took upon itself to lay down stringent rules for the discipline of the prison.\\n\",\"The jailer should be required to visit every part and see every prisoner daily; the chaplain should perform service, visit the sick,\\n\",\"instruct the prisoners, quote, give spiritual advice and administer religious consolation, end quote. to all who might need them;\\n\",\"the surgeon should see all prisoners, whether ill or well, once a week, and take general charge of the infirmaries.\\n\",\"All three, governor, chaplain, and surgeon, should keep journals, which should be inspected periodically by the visiting magistrates.\\n\",\"It should be peremptorily forbidden to the keeper or any officer to make a pecuniary profit out of the supplies of food, fuel, or other necessaries.\\n\",\"No prisoner should be allowed to obtain superior accommodation on the payment of any fees. Fees indeed should be generally abolished, garnish also.\\n\",\"No prisoners should in future be ironed, except in cases of misconduct,\\n\",\"provided only that their security was not jeopardized, and dependent upon the enforcement of another new rule,\\n\",\"which recommended restrictions upon the number of visitors admitted.\\n\",\"No wine or beer should be in future admitted into or sold in the jail,\\n\",\"except for the use of the debtors, or as medical comforts for the infirmary.\\n\",\"Drunkenness, if it ever occurred, should be visited with severe punishment;\\n\",\"gaming of all sorts should be peremptorily forbidden under heavy pains and penalties.\\n\",\"The feelings of the condemned prisoners should no longer be outraged by their exposure in the chapel, and the chapel should be rearranged,\\n\",\"so that the various classes might be seated separately, and so as not to see each other.\\n\",\"It will hardly be denied that these proposals went to the root of the matter.\\n\",\"Had they been accepted in their entirety, little fault could in future have been found with the managers of Newgate.\\n\",\"In common justice to them, it must be admitted that immediate effect was given to all that could be easily carried out.\\n\",\"The state side ceased to exist, and the female prisoners thus regained the space of which their quadrangle had been robbed.\\n\",\"The privileges of the master's side also disappeared; fees were nominally abolished, and garnish was scotched, although not yet killed outright.\\n\",\"A certain number of bedsteads were provided, and there was a slight increase in the ration of bread.\\n\",\"But here the recommendations touched at once upon the delicate subject of expense, and it is clear that the committee hesitated on this score.\\n\",\"It made this too the excuse for begging the most important issue of the whole question.\\n\",\"The committee did not deny the superior advantages offered by such prisons as Gloucester and Petworth,\\n\",\"but it at once deprecated the idea that the city could follow the laudable example thus set in the provinces. Quote,\\n\",\"Were a metropolitan prison erected on the same lines, with all the space not only for air and exercise, but for day rooms and sleeping cells\\n\",\"End quote. it would cover some thirty acres, and cost a great deal more than the city, with the example of Whitecross Street prison before it,\\n\",\"could possibly afford.\\n\",\"The committee does not seem to have yet understood that Newgate could be only and properly replaced\\n\",\"by a new jail built on the outskirts, as Holloway eventually was, and permitted itself to be altogether countered\\n\",\"and checked in its efforts towards reform by the prohibitory costliness of the land about Newgate.\\n\",\"With the seeming impossibility of extending the limits of the prison as it then stood,\\n\",\"all chances of classification and separation vanished, and the greatest evils remained untouched.\\n\",\"All the committee could do in this respect was to throw the responsibility on others.\\n\",\"It pointed out that the Government was to blame for the overcrowding, and might diminish it if it chose.\\n\",\"It was very desirable that there should be a more speedy removal of transports from Newgate to the ships.\\n\",\"Again, there was the new Millbank penitentiary now ready for occupation.\\n\",\"Why not relieve Newgate by drawing more largely upon the superior accommodation which Millbank offered?\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section seven: The beginnings of prison reform.\\n\",\"While Mrs. Fry was diligently engaged upon her self-imposed task in Newgate,\\n\",\"other earnest people, inspired doubtless by her noble example, were stirred up to activity in the same great work.\\n\",\"It began to be understood that prison reform could only be compassed by continuous and combined effort.\\n\",\"The pleadings, however eloquent, of a single individual were unable to more than partially remedy the widespread and colossal evils of British prisons.\\n\",\"Howard's energy and devotion were rewarded by lively sympathy, but the desire to improve which followed his exposures was but short-lived.\\n\",\"It was so powerless against the persistent neglect of those intrusted with prison management, that, five-and-twenty years later,\\n\",\"Mr. Neild, a second Howard,\\n\",\"as indefatigable and self-sacrificing, found by personal visitation that the condition of jails throughout the kingdom was,\\n\",\"with a few bright exceptions, still deplorable and disgraceful.\\n\",\"Mr. Neild was compelled to admit in eighteen twelve that \\\"the great reformation produced by Howard\\n\",\"was in several places merely temporary:\\n\",\"some prisons that had been ameliorated under the persuasive influence of his kind advice were relapsing into their former horrid state of privation,\\n\",\"filthiness, severity, or neglect; many new dungeons had aggravated the evils against which his sagacity could not but remonstrate;\\n\",\"the motives for a transient amendment were becoming paralyzed, and the effect had ceased with the cause.\\\"\\n\",\"I have shown in a previous chapter what Newgate was at this period, despite a vast expenditure and boasted efforts to introduce reforms.\\n\",\"Some of the county jails, and one or two borough jails, had been rebuilt,\\n\",\"generally through the personal activity of influential and benevolent local magnates, but the true principles of prison construction\\n\",\"were as yet but imperfectly understood, and such portions of the \\\"improved\\\" jails of that period as were still extant a few years back,\\n\",\"contrast ludicrously with the prison architecture based upon a century's experience of our own age.\\n\",\"The neglect of prison reform in those days was not to be visited upon the legislature.\\n\",\"The executive, although harassed by internal commotion and foreign war, was not entirely callous to the crying need for amelioration in jails.\\n\",\"Measures remedial, although at best partial and incomplete, were introduced from time to time.\\n\",\"Thus in eighteen thirteen the exaction of jail fees had been forbidden by law,\\n\",\"and two other acts more peremptory and precise followed on the same subject in succeeding years.\\n\",\"In eighteen fourteen a bill was brought in to insist upon the appointment of chaplains in jails, and when this had passed into law,\\n\",\"it was subsequently amplified, and the rates of salaries fixed.\\n\",\"Various acts were also passed to consolidate and amend previous jail acts.\\n\",\"The erection of new prison buildings was made imperative under certain conditions and following certain rules\\n\",\"the principle of classification was freshly enunciated; prison regulations were framed for general observance.\\n\",\"But the effect of this legislation was rather weakened by the remoteness of the pressure exercised.\\n\",\"The onus of improvement lay upon the magistracy, the local authorities administering local funds,\\n\",\"and they were not threatened with any particular penalties if they evaded or ignored the new acts.\\n\",\"Moreover, the laws applied more particularly to county jurisdictions.\\n\",\"The borough jails, those in fact under corporate management, were not included in the new measures;\\n\",\"it was hoped that their rulers would hire accommodation in the county prisons, and that the inferior establishments would in course of time disappear.\\n\",\"Yet the borough jails were destined to survive many years, and to exhibit for a long time to come all the worst features of jail mismanagement.\\n\",\"It was in eighteen seventeen that a small band of philanthropists resolved to form themselves into an association for the improvement of prison discipline.\\n\",\"They were hopeless of any general reform by the action of the executive alone.\\n\",\"They felt that private enterprise might\\n\",\"with advantage step in, and by the collection and diffusion of information, and the reiteration of sound advice, greatly assist the good work.\\n\",\"The association was organized under the most promising auspices.\\n\",\"A king's son, the Duke of Gloucester, was the patron; among the vice-presidents were many great peers of the realm\\n\",\"several bishops, and a number of members of the House of Commons, including Mr. Manners Sutton,\\n\",\"Mr. Sturges Bourne, Sir James Mackintosh, Sir James Scarlett, and William Wilberforce.\\n\",\"An active committee was appointed, comprising many names already well known, some of them destined to become famous in the annals of philanthropy.\\n\",\"One of the moving spirits was the Honorable H. G. Bennet, M.P., whose vigorous protests against the lamentable condition of Newgate have already been recorded.\\n\",\"Mrs. Fry's brother, Mr. Samuel Hoare, Junior, was chairman of the committee, on which also served many noted members of the Society of Friends\\n\",\"Mr. Gurney, Mr. Fry, Messrs. Forster, and Mr. T. F. Buxton, the coadjutor of Wilberforce in the great anti-slavery struggle.\\n\",\"Mr. Buxton had already been associated with Mrs. Fry in the Newgate visitation, and his attention had thus been drawn to the neglected state of English prisons.\\n\",\"When in Belgium he had examined with great satisfaction the admirable management of the great \\\"Maison de Force\\\" at Ghent,\\n\",\"which Howard had eulogized some forty years before.\\n\",\"In order to give greater value to the pamphlet,\\n\",\"he personally visited several English jails, and pointed his observations by drawing forcible contrasts between the good and bad.\\n\",\"Mr. Buxton's small work on prison discipline gave a new aspect to the question he had so much at heart.\\n\",\"For the first time the doctrine was enunciated that prisoners had rights of their own.\\n\",\"The untried, and in the eyes of the law still innocent, could claim pure air, wholesome and sufficient food, and opportunities for exercise.\\n\",\"They had a right, Mr. Buxton affirmed, to be employed in their own crafts, provided it could be safely followed in prison.\\n\",\"\\\"You have no right,\\\" he says, addressing the authorities, \\\"to subject a prisoner to suffering from cold,\\n\",\"by want of bed-clothing by night or firing by day\\n\",\"and the reason is plain: you have taken him from his home, and have deprived him of the means of providing himself with the necessaries or comforts of life,\\n\",\"and therefore you are bound to furnish him with moderate indeed but suitable accommodation.\\\"\\n\",\"\\\"You have for the same reason,\\\" he goes on, \\\"no right to ruin his habits by compelling him to be idle,\\n\",\"his morals by compelling him to mix with a promiscuous assemblage of hardened and convicted criminals,\\n\",\"or his health by forcing him at night into a damp, unventilated cell, with such crowds of companions as very speedily render the air foul and putrid;\\n\",\"or to make him sleep in close contact with the victims of contagious and loathsome disease,\\n\",\"or amidst the noxious effluvia of dirt and corruption.\\n\",\"In short, attention to his feelings, mental and bodily, a supply of every necessary, abstraction from evil society,\\n\",\"the conservation of his health and industrious habits, are the clear, evident, undeniable rights of an unconvicted prisoner.\\\"\\n\",\"Nor even when found guilty and his liberty forfeited did his privileges cease. The law appointed a suitable punishment for the offense;\\n\",\"it was for those charged with the administration of the law to guard carefully against any aggravation of that punishment,\\n\",\"to see that \\\"no circumstances of severity are found in his treatment which are not found in his sentence.\\\"\\n\",\"No judge ever condemned a man to be half-perished with cold by day, or half-suffocated with heat by night.\\n\",\"\\\"Who ever heard of a criminal being sentenced to catch the rheumatism or the typhus fever?\\\"\\n\",\"\\\"Disease, cold, famine, nakedness, and contagious and polluted air are not lawful punishments in the hands of the civil magistrates;\\n\",\"nor has he a right to poison or starve his fellow-creatures.\\\"\\n\",\"\\\"The convicted delinquent has his rights,\\\" said Mr. Buxton authoritatively.\\n\",\"\\\"All measures and practices in prison which may injure him in any way are illegal,\\n\",\"because they are not specified in his sentence; he is therefore entitled to a wholesome atmosphere,\\n\",\"decent clothing and bedding, and a diet sufficient to support him.\\\"\\n\",\"These somewhat novel but undoubtedly indisputable propositions were backed up, not by sound arguments only, but by the letter of the law.\\n\",\"As Mr. Buxton pointed out, many old acts of parliament designed to protect the prisoner were still in full force.\\n\",\"Some might be in abeyance, but they had never been repealed, and some were quite freshly imported upon the Statute Book.\\n\",\"As far back as the reign of Charles the second, a law was passed declaring that sufficient provision should be made for the relief and setting on work\\n\",\"of \\\"poor and needy prisoners committed to the common jail for felony and other misdemeanors, who many times perish before their trial;\\n\",\"and the poor there living idle and unemployed become debauched, and come forth instructed in the practice of thievery and lewdness.\\\"\\n\",\"As a remedy, justices of the peace were empowered to provide materials for the setting of poor prisoners to work,\\n\",\"and to pay overseers or instructors out of the county rates.\\n\",\"Again, the twenty-two Charles the second c twenty ordered the jailer to keep felons and debtors \\\"separate and apart from one another,\\n\",\"in distinct rooms, on pain of forfeiting his office and treble damages to the party aggrieved.\\\"\\n\",\"A much later act, the fourteen George the third c. fifty-nine (seventeen seventy-four),\\n\",\"which was contemporaneous with Howard's first journeys, laid down precise rules as regards cleanliness, and the proper supply of space and air.\\n\",\"This act set forth that \\\"whereas the malignant fever commonly called the jail distemper\\n\",\"is found to be owing to want of cleanliness and fresh air in the several jails,\\n\",\"the fatal consequences whereof might be prevented if the justices of the peace were duly authorized\\n\",\"to provide such accommodations in jails as may be necessary to answer this salutary purpose,\\n\",\"it is enacted that the justices shall order the walls of every room to be scraped and white-washed once every year.\\\"\\n\",\"Ventilators, hand and others, were to be supplied.\\n\",\"An infirmary, consisting of two distinct rooms, one for males and one for females, should be provided for the separate accommodation of the sick.\\n\",\"Warm and cold baths, or \\\"commodious bathing tubs,\\\"\\n\",\"were to be kept in every jail, and the prisoners directed to wash in them before release. These provisions were almost a dead letter.\\n\",\"Yet another act passed in seventeen ninety-one, if properly observed, should have insured proper attention to them.\\n\",\"By the thirty-one George the third c. forty-six, s. five,\\n\",\"two or more justices were appointed visitors of prisons, and directed to visit and inspect three times every quarter.\\n\",\"They were to report in writing to quarter sessions as to the state of the jail, and as to all abuses which they might observe therein.\\n\",\"The most important jail act of that early period, however, was the twenty-four George the third c. fifty-four, s. four (seventeen eighty-four)\\n\",\"which was the first legislative attempt to compel the classification of prisoners, or their separation into classes\\n\",\"according to their categories or crimes.\\n\",\"It was made incumbent upon the justices to provide distinct places of confinement for five classes of prisoners, viz.\\n\",\"one. Prisoners convicted of felony. two. Prisoners committed on a charge or suspicion of felony.\\n\",\"three. Prisoners guilty of misdemeanors. four. Prisoners charged with misdemeanors. five. Debtors.\\n\",\"It was further ordered that male prisoners should be kept perfectly distinct from the females.\\n\",\"King's evidences were also to be lodged apart.\\n\",\"Infirmaries separating the sexes were also to be provided, a chapel too, and warm and cold baths.\\n\",\"\\\"Care also was to be taken that the prisoners shall not be kept in any apartment underground.\\\"\\n\",\"In an early report of the Prison Discipline Improvement Society,\\n\",\"published some six-and-thirty years after the promulgation of this act, the flagrant and persistent violations of it and others\\n\",\"which had continued through that long period, are forcibly pointed out.\\n\",\"In eighteen eighteen, out of five hundred and eighteen prisons in the United Kingdom,\\n\",\"to which a total of upwards of one hundred thousand prisoners had been committed in the year, only twenty-three prisons were divided according to law;\\n\",\"fifty-nine had no division whatever to separate males and females; one hundred and thirty-six had only one division for the purpose;\\n\",\"sixty-eight had only two divisions, and so on.\\n\",\"In four hundred and forty-five prisons no work of any description had been introduced for the employment of prisoners;\\n\",\"in the balance some work was done, but with the most meager results.\\n\",\"The want of room was still a crying evil.\\n\",\"In one hundred jails,\\n\",\"capable of accommodating only eight thousand five hundred and forty-five persons, as many as thirteen thousand and fifty-seven were crowded.\\n\",\"Many of the jails were in the most deplorable condition:\\n\",\"incommodious, as has been stated, insecure, unhealthy, and unprovided with the printed or written regulations required by law.\\n\",\"To specify more particularly one or two of the worst, it may be mentioned that in the Borough Compter\\n\",\"the old evils of indiscriminate association still continued unchecked.\\n\",\"All prisoners passed their time in absolute idleness, or killed it by gambling and loose conversation.\\n\",\"The debtors were crowded almost inconceivably. In a space twenty feet long by six wide,\\n\",\"twenty men slept on eight straw beds, with sixteen rugs amongst them, and a piece of timber for a bolster.\\n\",\"Mr. Buxton, who found this, declared that it seemed physically impossible, but he was assured that it was true,\\n\",\"and that it was accomplished by \\\"sleeping edgewise.\\\"\\n\",\"One poor wretch, who had slept next the wall, said he had been literally unable to move for the pressure.\\n\",\"\\\"In the morning the stench and heat were so oppressive that he and every one else on waking rushed unclothed into the yard;\\\"\\n\",\"and the turnkey told Mr. Buxton that the \\\"smell on first opening the door was enough to knock down a horse.\\n\",\"The hospital was filled with infectious cases, and in one room, seven feet by nine, with closed windows,\\n\",\"where a lad lay ill with fever, three other prisoners, at first perfectly healthy, were lodged. Of course they were seized with the fever;\\n\",\"so that the culprit, in addition to his sentence,\\n\",\"had to endure by \\\"the regulations of the city a disease very dangerous in its nature,\\\" and ran the risk of a lingering and painful death.\\n\",\"At Guildford prison, which Mr. Buxton also visited in eighteen eighteen,\\n\",\"there was no infirmary, no chapel, no work, no classification.\\n\",\"The irons, which nearly every one wore, were remarkably heavy; those double ironed could not take off their small clothes.\\n\",\"No prison dress was allowed, and half the inmates were without shirts or shoes or stockings.\\n\",\"The diet was limited to dry bread, which was of the best certainly, and a pound and a half in weight.\\n\",\"Matters were on much the same footing at St. Albans.\\n\",\"They were far worse at Bristol,\\n\",\"although at Mr. Buxton's visit a new jail was in process of erection, the first step towards reform since Howard's visitation in seventeen seventy-four.\\n\",\"In eighteen eighteen the old jail was so densely packed that it was nearly impossible to pass through the yards for the throng.\\n\",\"One hundred and fifty were lodged in a prison just capable of holding fifty-two.\\n\",\"In the crowd, all of them persons who had \\\"no other avocation or mode of livelihood but thieving,\\\" Mr. Buxton counted eleven children\\n\",\"children hardly old enough to be released from the nursery.\\n\",\"All charged with felony were in heavy irons, without distinction of age.\\n\",\"All were in ill health; almost all were in rags; almost all were filthy in the extreme.\\n\",\"The state of the prison, the desperation of the prisoners, broadly hinted in their conversation and plainly expressed in their conduct,\\n\",\"the uproar of oaths, complaints, and obscenity,\\n\",\"\\\"the indescribable stench,\\\" presented together a concentration of the utmost misery and the utmost guilt.\\n\",\"It was \\\"a scene of infernal passions and distresses,\\\" says Buxton, \\\"which few have imagination sufficient to picture,\\n\",\"and of which fewer still would believe that the original is to be found in this enlightened and happy country.\\\"\\n\",\"There was still worse to come. Having explored the yards and adjacent day rooms, and sleeping cells, a door was unlocked,\\n\",\"the visitors were furnished with candles, and they descended eighteen long steps into a vault.\\n\",\"At the bottom was a circular space, through which ran a narrow passage, and the sides of which were fitted with barrack bedsteads.\\n\",\"The floor was on the level of the river, and very damp.\\n\",\"The smell at one o'clock of the day \\\"was something more than can be expressed by the term disgusting.\\\"\\n\",\"On the dirty bedstead lay a wretched being in the throes of severe illness.\\n\",\"The only ventilation of this pit, this \\\"dark, cheerless, damp, unwholesome cavern -- a dungeon in its worst sense\\\"\\n\",\"was by a kind of chimney, which the prisoners kept hermetically sealed, and which had never been opened in the memory of the turnkey.\\n\",\"Untried persons were often lodged in this nauseous underground den,\\n\",\"and sometimes slept in \\\"the pit,\\\" loaded with heavy irons for a whole year, waiting the jail delivery.\\n\",\"Confinement for twelve months in the Bristol jail was counted a punishment equivalent to seven years' transportation.\\n\",\"In this prison there was no female infirmary.\\n\",\"Sick women and their children remained in the ordinary wards, and propagated disease.\\n\",\"No prison dress was allowed; no reception-room was provided, no soap, towels, or baths.\\n\",\"The bedclothes consisted only of a single \\\"very slight\\\" rug.\\n\",\"The allowance of food daily to felons was a fourpenny loaf,\\n\",\"a price which in those days fluctuated enormously -- as much as a hundred percent in a couple of years;\\n\",\"but as no similar variation occurred in the prisoner's appetite, his ration was somewhat precarious.\\n\",\"As for the debtors, they had no allowance whatever, and were often in imminent danger of starvation.\\n\",\"With all this, the inmates were crowded together at night to such a degree as to excite surprise that they should escape suffocation.\\n\",\"There reigned through the whole edifice a chilly, damp, unwholesome atmosphere, and the effluvia from the prisoners was so nauseous\\n\",\"that the chaplain found it necessary to take his place before they entered chapel, as he could not otherwise have faced the smell.\\n\",\"It is consoling to know that there were a few brilliant exceptions to this cruel, callous neglect.\\n\",\"Already, as early as eighteen eighteen, a prison existed at Bury St. Edmunds which was a model for imitation to others at that time,\\n\",\"and which even fulfilled many of the exacting requirements of modern days.\\n\",\"The great principles of classification, cleanliness, and employment were closely observed.\\n\",\"There were eighty-four separate sleeping-cells, and unless the jail was overcrowded, every inmate passed the night alone,\\n\",\"and in comparative comfort, with a bed and proper bedding.\\n\",\"The prison stood on a dry, airy situation outside the town.\\n\",\"Prisoners on reception were treated as they are now-a-days -- bathed, dressed in prison clothes, and inspected by the surgeon.\\n\",\"No irons were worn except as a punishment.\\n\",\"Personal cleanliness was insisted upon, and all parts of the prison were kept scrupulously clean.\\n\",\"There was an infirmary, properly found and duly looked after.\\n\",\"No idleness was permitted among the inmates. Trades were taught, or prisoners were allowed to follow their own if suitable.\\n\",\"There was, besides, a mill for grinding corn, somewhat similar to a turn-spit, which prisoners turned by walking in rows.\\n\",\"This made exertion compulsory, and imposed hard labor as a proper punishment.\\n\",\"Another jail, that of Ilchester, was also worthy of all commendation. It exhibited all the good points of that at Bury.\\n\",\"At Ilchester the rule of employment had been carried further.\\n\",\"A system not adopted generally till nearly half a century later had already prevailed at Ilchester.\\n\",\"The new jail had been in a great measure constructed by the prisoners themselves.\\n\",\"Masons, bricklayers, carpenters, painters had been employed upon the buildings, and the work was pronounced excellent by competent judges.\\n\",\"Industrial labor had also been introduced with satisfactory results.\\n\",\"Blanket weaving and cloth spinning was carried on prosperously,\\n\",\"and all the material for prisoners' apparel was manufactured in the jail.\\n\",\"There were work-rooms for wool-washing, dyeing, carding, and spinning.\\n\",\"The looms were constantly busy. Tailors were always at work, and every article of clothing and bedding was made up within the walls.\\n\",\"There was a prison laundry too, where all the prisoners' linen was regularly washed.\\n\",\"The moral welfare of the inmates was as closely looked after as the physical.\\n\",\"There was an attentive chaplain, a schoolmaster, and regular religious and other instruction.\\n\",\"Compared with those highly meritorious institutions Newgate still showed but badly.\\n\",\"Its evils were inherent and irremediable, but some ameliorating measures had been introduced,\\n\",\"mainly through the exertions of a new governor, Mr. Brown, who succeeded Mr. Newman at Newgate in eighteen seventeen.\\n\",\"The most noticeable of the improvements introduced was a better regulation of dietaries within the prison.\\n\",\"The old haphazard system, by which meat was issued in bulk,\\n\",\"a week's allowance at a time, was abolished, and there was a regular scale of daily rations adopted.\\n\",\"The diet was now ample. It consisted of a pound and a half of bread per diem;\\n\",\"for breakfast a pint of gruel; for dinner half a pound of boiled meat, or a quart of soup with vegetables, on alternate days.\\n\",\"The food was properly prepared in the prison kitchen.\\n\",\"Meat was no longer issued raw, to be imperfectly cooked before a ward fire and bolted gluttonously, the whole two pounds at one sitting.\\n\",\"Mr. Brown confidently asserted that no jail in England now fed its inmates so well as did Newgate.\\n\",\"So plentiful was this dietary, that although the old permission remained in force of allowing the friends of prisoners to bring them supplies from outside,\\n\",\"the practice was falling into abeyance, and the prisoners seldom required private assistance to eke out their meals.\\n\",\"It was also claimed for the more ample and more orderly distribution of victuals, that the general health of the prisoners had greatly improved.\\n\",\"Mr. Brown also, much to his own credit, brought about the abandonment of the practice of ironing all prisoners as a matter of course.\\n\",\"In eighteen eighteen prisoners awaiting trial in Newgate, were at length relieved from this illegal infliction.\\n\",\"Convicts were not even compelled to wear irons, providing they behaved well.\\n\",\"It was found that shackles might be safely dispensed with, even in the case of the most desperate characters.\\n\",\"This was effected by stopping the nearly indiscriminate admission of visitors, which had hitherto prevailed all over the jail.\\n\",\"Ironing it will be remembered, was a distinguishing badge, so that when the jail was cleared the free might be readily known from the captive, and escapes prevented.\\n\",\"Under the new rule visitors were not allowed to pass into the interior of the prison, but were detained between the grating.\\n\",\"This change led to some discontent, until it was found that the much greater boon of relief from irons accompanied it, and the reform was quietly accepted.\\n\",\"Indeed the best consequences followed from the removal of irons. The prisoners were much better disposed; there were no riots, and fewer disturbances.\\n\",\"But nothing short of radical reform and complete reconstruction could touch the deep-seated evils of association, overcrowding, and idleness.\\n\",\"The first still produced deplorable results -- results to be observable for many years to come.\\n\",\"Mr. Buxton mentions the case of a boy whose apparent innocence and artlessness had attracted his attention.\\n\",\"He had been committed for an offense for which he was acquitted.\\n\",\"He left Newgate utterly corrupted, and after lapsing into crime, soon returned with a very different character.\\n\",\"Other cases of moral deterioration have already been recorded.\\n\",\"Some attempt was made to reduce the overcrowding, on the recommendation of the House of Commons Committee of eighteen eighteen, but this applied only a partial remedy.\\n\",\"The bulk of the prisoners were still left in idleness.\\n\",\"A few fortunate criminals, many of them kept back from transportation on purpose, who were skilled in trades, were employed at them.\\n\",\"Painters, plasterers, and carpenters were allowed to follow their handicrafts, with the reward of sixpence per diem and a double allowance of food.\\n\",\"They used their own tools, and this without any dangerous consequences as regards facilitating the escape of others,\\n\",\"thus disposing of the objection so long raised against the industrial employment of prisoners in Newgate.\\n\",\"But this boon of toil was denied to all but a very limited number.\\n\",\"As the Prison Discipline Society pertinently observed in a report dated eighteen twenty,\\n\",\"\\\"It is obvious that reformation must be materially impeded, and in some cases utterly defeated, when the prisoners are defectively classed,\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section eight: The beginnings of prison reform.\\n\",\"Newgate prisoners were the victims to another most objectionable practice which obtained all over London.\\n\",\"Persons committed to a metropolitan jail at that time were taken in gangs, men and women handcuffed together, or linked on to a long chain,\\n\",\"unless they could afford to pay for a vehicle out of their own funds.\\n\",\"Even then they were not certain of the favor, for I find a reference to a decent and respectable woman sent to Newgate\\n\",\"who handed a shilling to the escort warder to provide her with a hackney coach; but this functionary pocketed the cash, and obliged the woman to walk\\n\",\"chained to the rest. As the miserable crew filed through the public streets, exposed to the scornful gaze of every passenger,\\n\",\"they were followed by a crowd of reckless boys, who jeered at and insulted them.\\n\",\"Many thus led in procession were in a shocking condition of dirt and misery, frequently nearly naked, and often bearing upon them\\n\",\"the germs, more or less developed, of contagious disease. \\\"Caravans,\\\" the forerunners of the prison vans,\\n\",\"were first made use of about eighteen twenty-seven. That the need for prison reform was imperative may be gathered from the few out of many instances I have adduced,\\n\",\"yet there were those who, wedded to ancient ideas, were intolerant of change; they would not admit the existence of any evils.\\n\",\"One smug alderman, a member of the House of Commons, sneered at the ultra philanthropy of the champions of prison improvement.\\n\",\"Speaking on a debate on prison matters, he declared that\\n\",\"our prisoners have all that prisoners ought to have, without gentlemen think they ought to be indulged with Turkey carpets.\\n\",\"The Society for the Improvement of Prison Discipline was taxed with a desire to introduce a system\\n\",\"tending to divest punishment of its just and salutary terrors;\\n\",\"an imputation which the Society indignantly and very justly repudiated, the statement being, as they said,\\n\",\"refuted by abundant evidence, and having no foundation whatever in truth.\\n\",\"Among those whom the Society found arrayed against it was Sydney Smith,\\n\",\"who, in a caustic article contributed to the 'Edinburgh Review,' protested against the pampering of criminals\\n\",\"While fully admitting the good intentions of the Society, he condemned their ultra humanitarianism as misplaced.\\n\",\"He took exception to various of the proposals of the Society. He thought they leant too much to a system of indulgence and education in jails.\\n\",\"He objected to the instruction of prisoners in reading and writing.\\n\",\"\\\"A poor man who is lucky enough,\\\" he said, \\\"to have his son committed for a felony\\n\",\"educates him under such a system for nothing, while the virtuous simpleton who is on the other side of the wall is paying by the quarter for these attainments.\\\"\\n\",\"He was altogether against too liberal a diet; he disapproved of industrial occupations in jails, as not calculated to render prisons terrible.\\n\",\"\\\"There should be no tea and sugar, no assemblage of female felons around the washing-tub,\\n\",\"nothing but beating hemp and pulling oakum and pounding bricks -- no work but what was tedious, unusual.\\\"\\n\",\"\\\"In prisons, which are really meant to keep the multitude in order, and to be a terror to evil-doers, there must be no sharings of profits,\\n\",\"no visiting of friends, no education but religious education, no freedom of diet,\\n\",\"no weavers' looms or carpenters' benches. There must be a great deal of solitude, coarse food, a dress of shame,\\n\",\"hard, incessant, irksome, eternal labor, a planned and regulated and unrelenting exclusion of happiness and comfort.\\n\",\"Undeterred by these sarcasms and misrepresentations,\\n\",\"the Society pursued its laudable undertaking with remarkable energy and great singleness of purpose.\\n\",\"The objects it had in view were set forth in one of its earliest meetings.\\n\",\"It sought to obtain and diffuse useful information\\n\",\"to suggest beneficial regulations, and circulate tracts demonstrating the advantages of classification,\\n\",\"constant inspection, regular employment, and humane treatment generally, with religious and moral instruction.\\n\",\"It earnestly advocated the appointment of female officers to take exclusive charge of female prisoners,\\n\",\"a much-needed and, according to our ideas, indispensable reform, already initiated by the Ladies' Committee at Newgate.\\n\",\"It made the subject of the newly-invented tread-wheels, or stepping-wheels, as they were at first called, its peculiar affair,\\n\",\"and obtained full details, from places where they had been adopted, of the nature of these new machines\\n\",\"the method by which they were worked, and the dietaries of the prisoners employed upon them.\\n\",\"Nor did it confine itself to mere verbal recommendations.\\n\",\"The good it tried to do took active shape in the establishment of temporary refuges -- at Hoxton for males, and in the Hackney Road for females\\n\",\"for the reception of deserving cases discharged from prison. The governor of Newgate and other metropolitan prisons had orders of admission to this refuge\\n\",\"which he could bestow on prisoners on release, and so save the better-disposed or the completely destitute from lapsing at once into crime.\\n\",\"The refuge, which had for its object the training of its inmates in habits of industry,\\n\",\"and in moral and religious duty, and which after a time sought to provide them with suitable situations, was supported entirely out of the funds of the Society.\\n\",\"At the time of its greatest prosperity, its annual income from donations and subscriptions was about one thousand six hundred pounds.\\n\",\"Another point to which the Society devoted infinite pains was the preparation of plans for the guidance of architects in the construction of prisons.\\n\",\"A very valuable volume published by the Society\\n\",\"traced the progress of prison architecture from the days when the jail was the mere annexe of the baronial or episcopal castle\\n\",\"or a dungeon above or below the gate of a town, to the first attempts at systematic reconstruction carried out under the advice and supervision of Howard.\\n\",\"It is interesting to observe that the plan of \\\"radiation,\\\" by which the prison blocks radiated from a central hall, like spokes in a wheel\\n\",\"was introduced as early as seventeen ninety by Mr. Blackburn\\n\",\"an architect of eminence who was very largely employed in the erection of prison buildings at the close of the last century.\\n\",\"With some important modifications this principle of radiation is still the rule.\\n\",\"The Society did not limit its remarks to the description of what had already been done\\n\",\"but it offered suggestions for future buildings, with numerous carefully-executed drawings and designs of the model it recommended for imitation.\\n\",\"Experience has since shown that in some respects these plans are defective, especially in the placing of the governor's residence in the center of the prison.\\n\",\"It was thought that this would guarantee constant supervision and inspection, but it did nothing of the kind, and only the presence of warders on duty\\n\",\"is found now-a-days to be really efficacious. The main recommendations, however, are based upon common sense\\n\",\"and none are more commendable than that which deprecates the excessive ornamentation of the external parts of the edifice.\\n\",\"\\\"The new jails,\\\" as Howard says, \\\"having pompous fronts, appear like palaces to the lower class of people, and many persons are against them on this account.\\\"\\n\",\"The Prison Society reproves the misdirected efforts of ambitious architects, who by a lavish and improvident expenditure of public money\\n\",\"sought to \\\"rank the prisons they built among the most splendid buildings of the city or town.\\\"\\n\",\"Absence of embellishment is in perfect unison with the character of the establishment.\\n\",\"These are principles fully recognized now-a-days, and it may fairly be conceded that the Prison Discipline Society's ideal\\n\",\"differed little from that kept in view in the construction of the latest and best modern jails.\\n\",\"After a few years of active exertion the Society was rewarded by fresh legislation.\\n\",\"To its efforts, and their effect upon Parliament and the public mind, we must attribute the new Jail Acts of four George the fourth\\n\",\"cap. sixty-four, and five George the fourth cap. eighty-five\\n\",\"which having gone through several sessions, at last became law in eighteen twenty-three to four\\n\",\"By the preamble of the first-named act it was declared\\n\",\"\\\"expedient to introduce such measures and arrangements as shall not only provide for the safe custody,\\n\",\"but shall also tend more effectually to preserve the health\\n\",\"and improve the morals of the prisoners, and shall insure the proper measure of punishment to convicted offenders.\\n\",\"Accordingly due provision was made for the enforcement of hard labor on all prisoners sentenced to it, and for the employment of all others.\\n\",\"unless such ability (to work) should cease by reason of sickness, infirmity, the want of sufficient work, or from any other cause.\\n\",\"It was distinctly laid down that male and female prisoners should be confined in separate buildings or parts of the prison,\\n\",\"\\\"so as to prevent them from seeing, conversing, or holding any intercourse with each other.\\\"\\n\",\"Classification was insisted upon, in the manner laid down by the twenty-four George the third cap. fifty-four,\\n\",\"with such further separation as the justices should deem conducive to good order and discipline.\\n\",\"Female prisoners were in all cases to be under the charge of female officers.\\n\",\"Every prison containing female prisoners was to have a matron who was to reside constantly in the prison.\\n\",\"The religious and moral welfare of the prisoners were to be attended to,\\n\",\"the first by daily services, the latter by the appointment of schoolmasters and instruction in reading and writing.\\n\",\"Last, but not least, the use of irons was strictly forbidden, \\\"except in cases of urgent and absolute necessity,\\\"\\n\",\"and every prisoner was to be provided with a hammock or cot to himself, suitable bedding, and, if possible, a separate cell.\\n\",\"The second act, passed in the following year, enlarged and amended the first, and at the same time gave powers to the House\\n\",\"to call for information as to the observance of its provisions.\\n\",\"The promulgation of these two Jail Acts strengthened the hands of the Prison Discipline Society enormously.\\n\",\"It had now a legal and authoritative standard of efficiency to apply,\\n\",\"and could expose all the local authorities that still lagged behind, or neglected to comply with the provisions of the new laws.\\n\",\"The Society did not shrink from its self-imposed duty, but continued year after year, with unflagging energy and unflinching spirit, to watch closely\\n\",\"and report at length upon the condition of the prisons of the country.\\n\",\"For this purpose it kept up an extensive correspondence with all parts of the kingdom, and circulated queries to be answered in detail,\\n\",\"whence it deduced the practice and condition of every prison that replied.\\n\",\"Upon these and the private visitations made by various members the Society obtained the facts,\\n\",\"often highly damnatory, which were embodied in its annual reports.\\n\",\"The progress of improvement was certainly extremely slow.\\n\",\"It was long before the many jurisdictions imitated the few.\\n\",\"Jails, of which the old prison at Reading was a specimen, were still left intact.\\n\",\"In that prison, with its cells and yards arranged within the shell of an ancient abbey chapel,\\n\",\"the prisoners, without firing, bedding, or sufficient food, spent their days \\\"in surveying their grotesque prison,\\n\",\"or contriving some means of escape by climbing the fluted columns which supported the Gothic arches of the aisles,\\n\",\"and so passing by the roof down into the garden and on to freedom.\\n\",\"In a county prison adjoining the metropolis, the separation between the male and female quarters was supposed to be accomplished by the erection of an iron railing;\\n\",\"in this same prison capital convicts were chained to the floor until execution.\\n\",\"In another jail not far off male and female felons still occupied the same room -- underground, and reached by a ladder of ten steps.\\n\",\"In others the separation between the sexes consisted in a hanging curtain\\n\",\"or an imaginary boundary line, and nothing prevented parties from passing to either side\\n\",\"but an empty regulation which all so disposed could defy.\\n\",\"Numbers of the jails were still unprovided with chaplains, and the prisoners never heard Divine service.\\n\",\"In many others there were no infirmaries, no places set apart for the confinement of prisoners afflicted with dangerous and infectious disorders.\\n\",\"No attempt was made to maintain discipline.\\n\",\"Half the jails had no code of rules properly prepared and sanctioned by the judges, according to law.\\n\",\"By degrees, however,\\n\",\"the changes necessary to bring the prisons into conformity with the recent acts were attempted, if not actually introduced into the county prisons, to which,\\n\",\"with a few of the more important city or borough prisons, these acts more especially applied.\\n\",\"Most of the local authorities embarked into considerable expenditure, determined to rebuild their jails de novo on the most approved pattern,\\n\",\"or to reappropriate, reconstruct, and patch up the existing prisons till they were more in accordance with the growing requirements of the times.\\n\",\"Religious worship became more generally the rule; chaplains were appointed, and chapels provided for them; surgeons and hospitals also.\\n\",\"Workshops were built at many prisons, various kinds of manufactures and trades were set on foot, including weaving, matting, shoe-making, and tailoring.\\n\",\"The interior of one prison was illuminated throughout with gas, -- still a novelty, which had been generally adopted in London only four years previously,\\n\",\"\\\"a measure which must greatly tend to discourage attempts to escape.\\\"\\n\",\"There were tread-wheels at most of the prisons, and regular employment thereon or at some other kind of hard labor.\\n\",\"In many places too where the prisoners earned money by their work, they were granted a portion of it for their own use after proper deduction for maintenance.\\n\",\"Only a few glaring evils still demanded a remedy.\\n\",\"The provision of separate sleeping cells was still quite inadequate. For instance,\\n\",\"in twenty-two county jails there were one thousand sixty-three sleeping cells in all (in eighteen twenty-three)\\n\",\"and the average daily number committed that year amounted to three thousand, nine hundred eighty-five.\\n\",\"The want of sleeping cells long continued a crying need.\\n\",\"Four years later the Prison Society reported\\n\",\"that in four prisons, which at one time of the year contained one thousand three hundred eight prisoners, there were only sixty-eight sleeping rooms or cells,\\n\",\"making an average of nineteen persons occupying each room.\\n\",\"At the New Prison, Clerkenwell, which had become the principal reception jail of Middlesex, and so took all the untried,\\n\",\"the sleeping space per head was only sixteen inches, and often as many as two hundred ninety-three men had to be accommodated on barrack beds\\n\",\"occupying barely three hundred ninety feet lineal\\n\",\"The \\\"scenes of tumult and obscenity\\\" in these night rooms are said to have been beyond description; a prisoner in one nocturnal riot lost an eye.\\n\",\"Yet to Clerkenwell were now committed the juveniles, and all who were inexperienced in crime.\\n\",\"Great want of uniformity in treatment in the various prisons was still noticeable\\n\",\"and was indeed destined to continue for another half century, in other words, until the introduction of the Prison Act of eighteen seventy-seven.\\n\",\"At the time of which I am writing there was great diversity of practice as regards the hours of labor.\\n\",\"In some prisons the prisoners worked seven hours a day, in others ten and ten and a half.\\n\",\"The nature of the employment varied greatly in severity, especially the tread-wheel labor.\\n\",\"In some county jails, as I have already said, female prisoners were placed upon the tread-wheel;\\n\",\"in others women were very properly exempted from it, and also from all severe labor.\\n\",\"Earnings were very differently appropriated. Here the prisoners were given the whole amount, there a half or a third.\\n\",\"Sometimes this money might be expended in the purchase of extra articles of food.\\n\",\"The rations varied considerably everywhere.\\n\",\"It was still limited to bread in some places, the allowance of which varied from one to three pounds;\\n\",\"in others meat, soup, gruel, beer were given.\\n\",\"Here and there food was not issued in kind, but a money allowance which the prisoner might expend himself.\\n\",\"Bedding and clothing was still denied, but only in a few jails;\\n\",\"in others both were supplied in ample quantities, the cost varying per prisoner from twenty shillings to five pounds.\\n\",\"It was plain that although the law had defined general principles of prison government,\\n\",\"too much discretion was still left to the magistracy to fill in the details. The legislature only recommended,\\n\",\"it did not peremptorily insist. Too often the letter of the law was observed, but not its spirit.\\n\",\"One great impediment to wide amelioration was that a vast number of small jails lay out of reach of the law.\\n\",\"When the new acts were introduced, numerous prisons under local jurisdiction were exempted from the operation of the law.\\n\",\"They were so radically bad that reform seemed hopeless, and it was thought wiser not to bring them under provisions which clearly could not be enforced.\\n\",\"Mr. Peel, who as Home Secretary had charge of the bill,\\n\",\"which became the four George the fourth cap. sixty-four, said that he had abstained from legislating for these small jurisdictions \\\"on mature deliberation.\\\"\\n\",\"\\\"It is not,\\\" he said, \\\"that I am insensible of the lamentable and disgraceful situation in which many of them are,\\n\",\"but I indulge a hope that many of them will contract with the counties,\\n\",\"that many of them will build new jails, and that when in a year or two we come to examine their situation,\\n\",\"we shall find but few which have not in one or other of these ways removed the grievance of which such just complaint is made.\\n\",\"When that time arrives\\n\",\"I shall not hesitate to ask Parliament for powers to compel them to make the necessary alterations, for it is not to be endured that these local jurisdictions should remain\\n\",\"in the deplorable situation in which many of them now are.\\\"\\n\",\"At this time there were in England one hundred and seventy boroughs, cities, towns, and liberties\\n\",\"which possessed the right of trying criminals for various offenses.\\n\",\"Nearly every one of these jurisdictions had its own prison, and there were one hundred and sixty such jails in all.\\n\",\"Many of them consisted of one or two rooms at most.\\n\",\"he total number of prisoners they received during the year varied from two persons to many hundreds.\\n\",\"It was in these jails, withdrawn from the pressure of authority, that the new rules were invariably ignored.\\n\",\"The right and privilege of the borough to maintain its own place of confinement was so \\\"ancient and indisputable,\\\"\\n\",\"that for long no idea of interfering with them was entertained.\\n\",\"All that was urged was that the borough magistracy had no right to govern their jails\\n\",\"so as to corrupt those committed, \\\"to the injury of the peace and morals of the public.\\\"\\n\",\"As time passed, however, these magistrates made no effort at reform.\\n\",\"They neither built new jails nor contracted with the counties, as had been expected, for the transfer of their prisoners.\\n\",\"As the Society put it in eighteen twenty-seven, \\\"the friends to the improvement of prison discipline will regret to learn\\n\",\"that the jails attached to corporate jurisdictions continue to be the fruitful sources\\n\",\"of vice and misery, debasing all who are confined within their walls, and disseminating through their respective communities\\n\",\"the knowledge and practice of every species of criminality.\\n\",\"The Society proceeded to support this indictment by facts. It is much the old story.\\n\",\"The prisoners were lodged in rooms whence they could converse with passengers in the streets, and freely obtain spirits and other prohibited articles.\\n\",\"All descriptions of offenders congregated together in the felons' wards.\\n\",\"The keeper and his officers resided at a distance from the jail, and left its inmates to their own devices.\\n\",\"There was no decency whatever in the internal arrangements;\\n\",\"still no separation of the sexes, no means of ablution or other necessary services.\\n\",\"One borough prison consisted of nothing more than a couple of cells, about ten yards square, and absolutely nothing more.\\n\",\"In another borough, with a population of ten thousand, the prison was of the same dimensions.\\n\",\"One cell was a dungeon, and the other an \\\"improper and unhealthy abode for any human being,\\\" with a watercourse running through it.\\n\",\"Most of these small jails were still in existence and in much the same state eight years later,\\n\",\"as is shown by the report of the Commissioners to inquire into the state of the municipal corporations in eighteen thirty-five.\\n\",\"An examination of this report shows how even the most insignificant township had its jail.\\n\",\"Thus Dinas Mwddy, in Merionethshire, had, \\\"besides the pinfold and the stocks or crib, a little prison.\\\"\\n\",\"Clun, in Shropshire, had a lock-up under the town hall.\\n\",\"At Eye, in Suffolk, the jail was part of the poor-house; so it was at Richmond, in Yorkshire, where the master of the workhouse was also keeper of the jail.\\n\",\"At Godmanchester there was no jail, but a cage to secure prisoners till they could be taken before a magistrate.\\n\",\"Kidderminster had a prison, one damp chill room,\\n\",\"the only aperture through which air could be admitted being an iron grating level with the street,\\n\",\"through the bars of which quills or reeds were inserted, and drink conveyed to the prisoners.\\n\",\"At Walsall, in Staffordshire,\\n\",\"the jail consisted of six cells, frequently so damp that the moisture trickled down the walls; there was not space for air or exercise,\\n\",\"and the prison allowance was still limited to bread and water.\\n\",\"Newgate through all these years continued a bye-word with the Society.\\n\",\"Some reforms had certainly been introduced, such as the abolition of irons, already referred to, and the establishment of male and female infirmaries.\\n\",\"The regular daily visitation of the chaplain was also insisted upon.\\n\",\"But it was pointed out in eighteen twenty-three that defective construction must always bar the way to any radical improvement in Newgate.\\n\",\"Without enlargement no material change in discipline or interior economy could possibly be introduced.\\n\",\"The chapel still continued incommodious and insufficient\\n\",\"female prisoners were still exposed to the full view of the males, the netting in front of the gallery being perfectly useless as a screen.\\n\",\"In eighteen twenty-four Newgate had no glass in its windows, except in the infirmary and one ward of the chapel yard;\\n\",\"and the panes were filled in with oiled paper, an insufficient protection against the weather;\\n\",\"and as the window-frames would not shut tight, the prisoners complained much of the cold, especially at night.\\n\",\"There was a diminution in the numbers in custody, due to the adoption of the practice of not committing at once to Newgate every offender for trial at the Old Bailey\\n\",\"but nothing had been done to improve the prison buildings.\\n\",\"In eighteen twenty-seven the Society was compelled to report that \\\"no material change had taken place in Newgate since the passing of the prison laws,\\n\",\"and that consequently the observance of their most important provisions was habitually neglected.\\n\",\"It was enacted that the court of aldermen should make rules for the government of the prison, and that these should be posted publicly within the walls.\\n\",\"As yet no rules or regulations had been printed or prepared.\\n\",\"By another clause of the Jail Act, two justices were to be appointed to visit the prison at least thrice in every quarter, and \\\"oftener if occasion required.\\\"\\n\",\"These justices were to inspect every part of the prison, and examine into the state and condition of prisoners.\\n\",\"The city justices had not fulfilled this obligation.\\n\",\"Idleness was still the general rule for all prisoners in Newgate, in defiance of the law.\\n\",\"There was no instruction of adult prisoners, in accordance with the law. The sleeping accommodation was still altogether contrary to the latest ideas.\\n\",\"The visits of friends was once more unreservedly allowed, and these incomers freely brought in extra provisions and beer.\\n\",\"Last, and worst of all, the arrangements for keeping the condemned prisoners between sentence and execution were more than unsatisfactory.\\n\",\"They were not confined apart from each other, but were crowded thirty or forty together in the press yard,\\n\",\"so that \\\"corrupt conversation obliterated from the mind of him who is doomed to suffer every serious feeling and valuable impression.\\\"\\n\",\"I shall have more to say on this subject, and upon the state of Newgate generally, in the following chapter.\\n\",\"The Prison Society did not relax its efforts as time passed, but its leading members had other and more pressing claims upon their energies.\\n\",\"Mr. Buxton had succeeded to the great work which William Wilberforce had commenced, and led the repeated attacks upon slavery in British colonies\\n\",\"till the whole body of the slaves were manumitted in eighteen thirty-three.\\n\",\"In the year immediately preceding this, Parliament was too busy with the great question of its own reform to spare much time for domestic legislation.\\n\",\"Nevertheless a committee of the House of Commons was appointed in eighteen thirty-one to report upon the whole system of secondary punishments,\\n\",\"which dealt with jails of all classes, as well as transportation.\\n\",\"This committee animadverted strongly upon the system in force at the metropolitan jails, and more especially upon the condition of Newgate\\n\",\"where \\\"prisoners before and after trial are under no efficient superintendence,\\\" and where \\\"there was no restraint, or attempt at restraint.\\\"\\n\",\"Mr. Samuel Hoare was examined by this committee\\n\",\"and stated that in his opinion Newgate, as the common jail of Middlesex, was wholly inadequate to the proper confinement of its prisoners.\\n\",\"From the moment of a person's committal he was certain to be plunged deeper and deeper in guilt.\\n\",\"The prisoners were crowded together in the jail, contrary to the requirements of the four George the fourth\\n\",\"Again in eighteen thirty-five prisons and their inmates became once more the care of the senate, and the subject was taken up this time by the House of Lords.\\n\",\"A committee was appointed, under the presidency of the Duke of Richmond\\n\",\"\\\"to inquire into and report upon the several jails and houses of correction in the counties, cities, and corporate towns within England and Wales\\n\",\"upon the rules and discipline therein established with regard to the treatment of unconvicted as well as convicted persons.\\\"\\n\",\"The committee was also to report upon the manner in which sentences were carried out, and to recommend any alterations necessary in the rules\\n\",\"in order to insure uniformity of discipline. It met on the thirty-first March, eighteen thirty-five, and continued its sittings well into July\\n\",\"during which time a host of witnesses were examined, and the committee presented three separate reports,\\n\",\"embodying recommendations which may be said to have formed the basis of modern prison management.\\n\",\"It was laid down as a first and indispensable principle that uniformity of discipline should prevail everywhere,\\n\",\"a theory which did not become a practical fact for forty more years.\\n\",\"As a means of securing this uniformity,\\n\",\"it was suggested that the rules framed for prison government should be subjected to the Secretary of State for approval,\\n\",\"and not, as heretofore, to the judges of assize; that, both to check abuses and watch the progress of improvement,\\n\",\"inspectors of prisons should be appointed, who should visit all the prisons from time to time and report to the Secretary of State.\\n\",\"It was recommended that the dietaries should be submitted and approved like the rules; that convicted prisoners should not receive any food but the jail allowance;\\n\",\"that food and fuel should be issued in kind, and never provided by the prisoners themselves out of monies granted them.\\n\",\"The use of tobacco, hitherto pretty generally indulged in both by men and women,\\n\",\"should be strictly prohibited, \\\"as a stimulating luxury inconsistent with any notion of strict discipline and the due pressure of just punishment.\\\"\\n\",\"Prison officers should not have any share in prisoners' earnings,\\n\",\"which should be paid into general prison funds, and no part of them handed over to the prisoners themselves.\\n\",\"As a means of increasing the severity of imprisonment, letters and visits from outside should not be permitted during the first six months of an imprisonment.\\n\",\"Various other recommendations were made as regards the appointment of chaplain and schoolmasters; the limitation of the powers of wardsmen,\\n\",\"or prisoners employed in positions of trust, who should not be permitted to traffic with their fellow-prisoners in any way.\\n\",\"The committee most of all insisted upon the entire individual separation of prisoners, except during the hours of labor,\\n\",\"religious worship, and instruction, as \\\"absolutely necessary for preventing contamination,\\n\",\"and for securing a proper system of prison discipline.\\n\",\"This was the first enunciation of the system of separate confinement,\\n\",\"which was eventually to replace the attempted arrangement of prisoners by classes according to antecedents and crimes,\\n\",\"an incomplete and fallacious method of preventing contamination.\\n\",\"The Lords' Committee fully recognized the painful fact\\n\",\"that the greatest mischief followed from the intercourse which was still permitted in so many prisons; to use its words,\\n\",\"\\\"the comparatively innocent are seduced, the unwary are entrapped,\\n\",\"and the tendency to crime in offenders not entirely hardened is confirmed by the language, the suggestions, and the example\\n\",\"of more depraved and systematic criminals.\\n\",\"This committee, as well as the one preceding it, also reported in terms of strong reprobation on the small prisons and jails\\n\",\"still under the borough corporations. The Commons' Committee gave it as their opinion that they were in a deplorable state.\\n\",\"The same language was used by the commissioners appointed to inquire into the municipal corporations in eighteen thirty-five,\\n\",\"when speaking more particularly of the borough jails.\\n\",\"In these the commissioners found \\\"additional proof of the evils of continuing the present constitution of the local tribunals.\\n\",\"Instances rarely occur in which the borough jails admit of any proper classification of the prisoners.\\n\",\"In some large towns, as at Berwick on Tweed, Southampton, and Southwark, they (the prisons) are in a very discreditable condition.\\n\",\"In many of the smaller boroughs they are totally unfit for the confinement of human beings.\\n\",\"In these places the prisoners are often without a proper supply of air and light; frequently the jails are mere dungeons under the town hall.\\n\",\"It was frequently stated in evidence that the jail of the borough was in so unfit a state for the reception of prisoners,\\n\",\"that plaintiffs were unwilling to consign the defendants against whom they had obtained execution to confinement within its walls.\\\"\\n\",\"The Lords' Committee on Jails were of the same opinion, and considered the prisons under corporate or peculiar jurisdiction in a very unsatisfactory condition.\\n\",\"They therefore recommended that the prisoners should be removed\\n\",\"to the county jails from such prisons as were past improvement, and that the borough funds should be charged for the accommodation.\\n\",\"The whole question was again dealt with in Lord John Russell's bill for the reform of the municipal corporations, and with a more liberal election of town councilors,\\n\",\"and the establishment of municipal institutions upon a proper footing,\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section nine: The first report of the inspector of prisons.\\n\",\"In the preceding chapter I have been tempted by the importance of the general question to give it prominence and precedence over the particular branch of which I am treating.\\n\",\"Newgate has remained rather in the background while the whole of the jails as a body were under discussion.\\n\",\"But this digression was necessary in order to present a more complete picture of the state of jails in the early part of the present century,\\n\",\"just before the public mind was first awakened to the need for thorough reform.\\n\",\"I shall now return to the great jail of the city of London, and give a more detailed account of its condition and inner life\\n\",\"as the inspectors of prisons found them in eighteen thirty-five to six.\\n\",\"These gentlemen were appointed in October eighteen thirty-five, owing to the strong representations of the Lords' Committee\\n\",\"backed up by the evidence of several influential witnesses.\\n\",\"Mr. Samuel Hoare, when examined, considered it indispensably necessary, to carry out whatever system might be established,\\n\",\"that inspectors should watch over the observance of the law. He saw no objection on the score of their probable interference with the local jurisdiction,\\n\",\"but he would not arm them with any authority lest their cooperation might be offensive.\\n\",\"Sir Frederick Roe was of the same opinion as regards the appointment, but he would give the inspectors the power of acting as well as reporting.\\n\",\"They should be persons, he thought, selected from the highest class; the duty was most important,\\n\",\"one which required discretion, judgment, and knowledge of law, with sufficient insight and experience to discover defects in prison discipline.\\n\",\"These considerations no doubt had weight\\n\",\"with those who made the selection of the first inspectors, and the two gentlemen appointed were probably the most fitted in England to be so employed.\\n\",\"One was Mr. William Crawford, the other the Rev. Whitworth Russell.\\n\",\"The first named had long been an active philanthropist, devoting himself more particularly to the reformation of juvenile criminals.\\n\",\"William Crawford had been one of the promoters and managers of the Philanthropic Society's farm school.\\n\",\"Later on he had devoted himself to the personal investigation of the prisons of the United States.\\n\",\"At that time the mild and intelligent prison discipline in force in Pennsylvania, the legacy of the old Quaker immigrants,\\n\",\"had made such prisons as Auburn a model for imitation.\\n\",\"Several European states had dispatched emissaries to examine and report upon them.\\n\",\"France had sent Misseurs Beaumont and De Tocqueville, who subsequently published several interesting works on the subject.\\n\",\"England was represented by Mr. Crawford, and the result of his inquiry was given to the public as an appendix to the House of Commons' Report on Secondary Punishments.\\n\",\"It is an able and exhaustive state paper, testifying to the keenness of the writer's perception, and his unremitting labor in pursuing his researches.\\n\",\"Mr. Crawford was thoroughly versed in the still imperfectly understood science of prison management, and fully qualified for his new duties.\\n\",\"The second inspector, the Rev. Whitworth Russell, was the chaplain of Millbank penitentiary,\\n\",\"the great architectural experiment which grew out of the strong representations of Jeremy Bentham and others, and was the first national recognition of the principle\\n\",\"that punishment must be reformatory as well as deterrent.\\n\",\"Messrs. Crawford and Russell proceeded to carry out their new functions with commendable energy, and without a moment's loss of time.\\n\",\"The ink was barely dry upon their letters of appointment before they appeared at Newgate, and commenced a searching investigation.\\n\",\"They attended early and late; they mustered the prisoners, examined into their condition,\\n\",\"took voluminous evidence from all classes of individuals, from the governor down to the convict in the condemned cells.\\n\",\"They visited the wards after locking-up time, and saw with their own eyes what went on.\\n\",\"\\\"a subject of magnitude and importance sufficient to exclude other jails,\\\" they soon narrowed their inquiry still further,\\n\",\"and limited it to Newgate alone. Newgate indeed became the sole theme of their first report.\\n\",\"The fact was that the years as they passed, nearly twenty in all, had worked but little permanent improvement in this detestable prison.\\n\",\"Changes introduced under pressure had been only skin deep.\\n\",\"Relapse was rapid and inevitable, so that the latter state of the prison was worse than the first.\\n\",\"The disgraceful overcrowding had been partially ended, but the same evils of indiscriminate association were still present; there was the old neglect of decency,\\n\",\"the same callous indifference to the moral well-being of the prisoners, the same want of employment and of all disciplinary control.\\n\",\"All these evils were set forth at length in the inspectors' first report.\\n\",\"There was no longer the faintest possible excuse for overcrowding. The numbers now committed to Newgate had sensibly diminished.\\n\",\"The prison had become more or less a place of detention only, harboring mainly those awaiting trial.\\n\",\"To these were still added an average of about fifty expecting the last penalty of the law; a certain number of transports awaiting removal to the colonies;\\n\",\"an occasional prisoner or two committed by the Houses of Parliament, the Courts of King's Bench, Common Pleas,\\n\",\"the Exchequer, the Commissioners of bankruptcy and of taxes; smugglers, and a larger number sentenced for very short terms,\\n\",\"and for offenses of the most varying description, by the Central Criminal Court.\\n\",\"The sum total thus produced was inconsiderable compared with the hundreds that had formerly filled the jail,\\n\",\"and the whole by proper management might have been so accommodated as to prevent overcrowding.\\n\",\"But incredible as it may appear, the authorities of Newgate declined to avail themselves of the advantages offered them,\\n\",\"and when the population fell they shut up one half the jail and crowded up the other.\\n\",\"Some rooms remained quite empty and unoccupied, while others were full to overflowing.\\n\",\"Not only were the wards thus needlessly crammed, and for no reason but the niggardliness of the corporation which refused a proper supply of bedding\\n\",\"but the occupants of each were huddled together indiscriminately. The inspectors found in the same wards in the chapel yard the convicted and the untried,\\n\",\"the felon and the misdemeanant, the sane and the insane, the old and young offender.\\n\",\"The classification prescribed by the Jail Act, which laid down that certain prisoners should not intermix, was openly neglected,\\n\",\"and \\\"the greatest contempt shown for the law.\\\"\\n\",\"In another part there were men charged with and convicted of unnatural offenses shut up with lads of tender years;\\n\",\"minor offenders charged with small thefts or non-payment of small sums were cheek by jowl with convicts sentenced to long terms of transportation.\\n\",\"In the master's side yard, which had only one washing place, as many as seventy-eight prisoners, frequently more,\\n\",\"were associated together, \\\"of every variety of age, habit, and delinquency, without employment, oversight, or control.\\\"\\n\",\"In the middle yard it was still worse.\\n\",\"\\\"Here,\\\" say the inspectors, \\\"are herded together the very worst class of prisoners; certainly a more wretched combination of human beings can hardly be imagined.\\n\",\"We have reason to fear that poverty, ragged clothes, and an inability to pay the ward dues, elsewhere exacted for better accommodation,\\n\",\"consign many of the more petty and unpracticed offenders to this place,\\n\",\"where they inevitably meet with further contamination from the society of the most abandoned and incorrigible inmates of the jail.\\\"\\n\",\"No doubt the governor for the time being, Mr. Cope, was in a great measure to blame for all this, and for the want of proper classification.\\n\",\"I shall have occasion to speak again, and more at length, of Mr. Cope's careless and perfunctory discharge\\n\",\"of his many manifest duties, but I shall here confine myself to animadverting on his neglect as regards the appropriation of his prison.\\n\",\"He was unable to give any reason whatever for not utilizing the whole of the wards.\\n\",\"He saw certain rooms fill up, and yet took no steps to open others that were locked up and empty.\\n\",\"He blamed the construction of Newgate for the neglect of classification, and was yet compelled to confess that he had made no attempt whatever to carry it out.\\n\",\"The fact was, he did not keep the classification of prisoners on first arrival in his own hands, nor even in that of his officers.\\n\",\"A new prisoner's fate, as to location, rested really with a powerful fellow-prisoner.\\n\",\"The inspectors found that prisoners had their places assigned to them\\n\",\"by the inner gatesman, himself a convicted prisoner, and a \\\"wardsman\\\" or responsible head of a room.\\n\",\"The wardsman still exacted dues, of which more directly,\\n\",\"and this particular official took excellent care to select as residents for his own ward those most suitable from his own point of view.\\n\",\"\\\"So great is the authority exercised by him,\\n\",\"and so numerous were his opportunities of showing favoritism, that all the prisoners may be said to be in his power.\\n\",\"If a man is poor and ragged, however inexperienced in crime, or however trifling may be the offense for which he has been committed\\n\",\"his place is assigned among the most depraved, the most experienced, and the most incorrigible offenders in the middle yard.\\n\",\"It must be admitted that so far but little effort had been made to counteract the evils of indiscriminate association.\\n\",\"It was not likely that a system which left innocent men -- for the great bulk of new arrivals were still untried\\n\",\"to be pitchforked by chance anywhere, into any sort of company,\\n\",\"within this the greatest nursery of crime in London, should exercise even the commonest care for the personal decency or comfort of the prisoners.\\n\",\"Their treatment was also a matter of chance. They still slept on rope mats on the floor, herded together in companies of four or more to keep one another warm\\n\",\"and under the scanty covering of a couple of dirty stable-rugs apiece.\\n\",\"So closely did they lie together, that the inspectors at their night visits found it difficult in stepping across the room to avoid treading on them.\\n\",\"Sometimes two mats were allotted to three sleepers. Sometimes four slept under the same bedding, and left their mats unoccupied.\\n\",\"The rugs used were never washed; an order existed that the bedding should be taken into the yards to be aired, but it was not very punctually obeyed.\\n\",\"The only convenience for personal ablutions were the pumps in the yards, and the far-off baths in the condemned or press-yard.\\n\",\"Water might not be taken into the ward for washing purposes.\\n\",\"There was some provision of clothing, but it was quite insufficient, and nothing at all was given if prisoners had enough of their own to cover their nakedness.\\n\",\"The inspectors paraded the prisoners, and found them generally ragged and ill-clad, squalid and filthy in the extreme;\\n\",\"many without stockings, and with hardly shoes to their feet;\\n\",\"some, who had the semblance of covering on the upper part of their feet, had no soles to the shoes, and their bare feet were on the ground.\\n\",\"This, too, was in the depth of the winter, and during a most inclement season.\\n\",\"The allowance of food was not illiberal,\\n\",\"but its issue was precarious, and dependent on the good will of the wardsmen, who measured out the portions to each according to his eye,\\n\",\"and not with weights and measures, no turnkey being present.\\n\",\"Too much was left to the wardsman. It was he who could issue small luxuries;\\n\",\"he sold tea, coffee, sugar, tobacco, although prohibited, and extra beer.\\n\",\"He charged a weekly sum as ward dues for the use of knives, forks, and plates\\n\",\"a perpetuation under another form of the old detestable custom of garnish.\\n\",\"He had power where his exactions were resisted of making the ward most uncomfortable for the defaulter.\\n\",\"He could trump up a false complaint against his fellow-prisoner, and so get him punished;\\n\",\"he might keep him from the fire, or give him his soup or gruel in a pail instead of a basin.\\n\",\"The authority of these wardsmen so improperly exalted, and so entirely unchecked, degenerated into a baneful despotism.\\n\",\"They bought their offices from one another, and were thus considered to have a vested interest in them.\\n\",\"Their original capital had been a few shillings, and for this they purchased the right to tax their fellows to the extent of pounds per week.\\n\",\"The wardsman had a monopoly in supplying provisions, gave dinner and breakfast at his own price, and was such complete master of the ward\\n\",\"that none of its inmates were suffered to make tea or coffee for themselves lest it should interfere with his sales.\\n\",\"He made collections when it suited him for ward purposes, to be spent as he chose, in candles and so forth.\\n\",\"When the wardsman was a man of some education, with some knowledge of legal chicanery gained by personal experience, he might add considerably to his emoluments\\n\",\"by drawing briefs and petitions for his fellows. There was a recognized charge of five shillings per brief,\\n\",\"for a petition of from one shilling, half pence to eight shillings, according to its length,\\n\",\"and by these payments a wardsman had been known to amass as much as forty pounds.\\n\",\"The man intrusted with this privilege was often the inner gatesman,\\n\",\"the prisoner official already mentioned, who held the fate of new arrivals as regards location in his hands.\\n\",\"It was not strange that he should sometimes misuse his power, and when prisoners were not to be cajoled into securing his legal services,\\n\",\"had been known to employ threats, declaring that he was often consulted by the governor as to a prisoner's character,\\n\",\"in view of speaking to it at the trial, and he could easily do them a good turn -- or a very bad one.\\n\",\"The brief-drawing gatesman and wardsman at the time of the inspectors' first visit must have been a particularly powerful personage.\\n\",\"He was on the most intimate and improperly familiar terms with the turnkeys,\\n\",\"had a key of both the master's side and middle side yards, was the only person present at the distribution of beer, and was trusted to examine,\\n\",\"and, if he chose, pass in, all provisions, money, clothes, and letters brought for prisoners by their friends.\\n\",\"All the wardsmen alike were more or less irresponsible.\\n\",\"The turnkeys complained bitterly that these old prisoners had more power than they themselves.\\n\",\"The governor himself admitted that a prisoner of weak intellect who had been severely beaten and much injured by a wardsman did not dare complain\\n\",\"the victim of this cruel ill-usage having \\\"more fear of the power of the wardsman to injure him, than confidence in the governor's power to protect him.\\\"\\n\",\"These wardsmen, besides thus ruling the roast, had numerous special privileges, if such they can be called.\\n\",\"They were not obliged to attend chapel, and seldom if ever went; \\\"prisoners,\\\" said one of them under examination, \\\"did not like the trouble of going to chapel.\\\"\\n\",\"They had a standing bedstead to sleep on, and a good flock mattress; double allowance of provisions, filched from the common stock.\\n\",\"Nobody interfered with them or regulated their conduct. They might get drunk when so disposed, and did so frequently, alone or in company.\\n\",\"Evidence was given before the inspectors of eight or ten prisoners seen \\\"giddy drunk, not able to sit upon forms.\\\"\\n\",\"The female wards-women were also given to intemperance.\\n\",\"The matron deposed to having seen the gates-woman \\\"exceedingly drunk,\\\" and having been insulted by her.\\n\",\"There was no penalty attached to drunkenness.\\n\",\"A wardsman did not necessarily lose his situation for it. Nor was drink the only creature comfort he might enjoy.\\n\",\"He could indulge in snuff if a snuff-taker,\\n\",\"and might always smoke his pipe undisturbed; for although the use of tobacco had been prohibited since the report of the Lords Committee,\\n\",\"it was still freely introduced into the prison.\\n\",\"Probably authority would not have been so recklessly usurped by the wardsmen had not the proper officials too readily surrendered it.\\n\",\"The turnkeys left the prisoners very much to themselves, never entering the wards after locking-up time, at dusk, till unlocking next morning,\\n\",\"and then only went round to count the number.\\n\",\"Many of them were otherwise and improperly occupied for hours every day in menial services for the governor, cleaning his windows or grooming his horse.\\n\",\"One turnkey had been so employed several hours daily for nearly eleven years.\\n\",\"It was not strange that subordinates should neglect their duty when superiors set the example.\\n\",\"Nothing was more prominently brought out by the inspectors than the inefficiency of the governor at that time, Mr. Cope.\\n\",\"He may have erred in some points through ignorance, but in others he was clearly guilty of culpable neglect.\\n\",\"We have seen that he took no pains to classify and separate prisoners on reception.\\n\",\"This was only one of many grave omissions on his part. He did not feel it incumbent on himself to visit his prison often or see his prisoners.\\n\",\"The act prescribed that he should do both every twenty-four hours, but days passed without his entering the wards.\\n\",\"The prisoners declared that they did not see him oftener than twice a week;\\n\",\"one man who had been in the condemned ward for two months, said the governor only came there four times.\\n\",\"Again, a turnkey deposed that his chief did not enter the wards more than once a fortnight.\\n\",\"But it is only fair to Mr. Cope to state that he himself said he went whenever he could find time\\n\",\"and that he was constantly engaged attending sessions and going with drafts to the hulks.\\n\",\"But when he did visit, his inspections were of the most superficial character\\n\",\"sometimes he looked at his bolts and bars, but he never examined the cupboards, coal-boxes, or other possible hiding-places for cards\\n\",\"dice, dangerous implements, or other prohibited articles.\\n\",\"He only attended chapel once on Sunday, never on the week-day, and generally devoted the time service was in progress\\n\",\"to taking the descriptions of newly-arrived prisoners.\\n\",\"He really did not know what passed in his jail\\n\",\"and was surprised when the inspectors proved to him that practices of which he was ignorant, and which he admitted that he reprehended, went on without hindrance.\\n\",\"He was satisfied to let matters run on as in the old times, he said in his own justification; with him what was, was right,\\n\",\"and evils that should have been speedily rooted out remained because they had the prescription of long usage.\\n\",\"He kept no daily journal of occurrences, and nothing, however important, was recorded at the time.\\n\",\"The aldermen never called upon him to report, and left him nearly unsupervised and uncontrolled.\\n\",\"In his administration of discipline he was quite uncertain;\\n\",\"the punishments he inflicted were unequal,\\n\",\"and it was not the least part of the blame imputed to him that he made special favorites of particular prisoners, retaining of his own accord in Newgate,\\n\",\"and for years, felons who should have been sent beyond the seas.\\n\",\"But, indeed, his whole rule was far too mild, and under this mistaken leniency\\n\",\"the interior of the jail was more like a bear-garden or the noisy purlieus of a public-house than a prison.\\n\",\"It was the same old story -- evil constantly in the ascendant, the least criminal at the mercy of the most depraved.\\n\",\"Under the reckless contempt for regulations,\\n\",\"the apathy of the authorities, and the undue ascendancy of those who, as convicted felons, should have been most sternly repressed,\\n\",\"the most hardened and the oldest in vice had the best of it, while the inexperienced beginner went to the wall.\\n\",\"Edward Gibbon Wakefield, who spent three years in Newgate a little before the time of the inspectors' first report,\\n\",\"said with justice that \\\"incredible scenes of horror occur in Newgate.\\\"\\n\",\"It was, moreover, in his opinion undoubtedly the greatest nursery of crime in London.\\n\",\"The days were passed in idleness, debauchery, riotous quarreling, immoral conversation,\\n\",\"gambling, indirect contravention of parliamentary rules, instruction in all nefarious processes,\\n\",\"lively discourse upon past criminal exploits, elaborate discussion of others to be perpetrated after release.\\n\",\"No provision whatever was made for the employment of prisoners, no materials were purchased, no trade instructors appointed.\\n\",\"There was no school for adults; only the boys were taught anything, and their instructor, with his assistant, were convicted prisoners.\\n\",\"Idle hands and unoccupied brains found in mischief the only means of whiling away the long hours of incarceration.\\n\",\"Gaming of all kinds, although forbidden by the Jail Acts, was habitually practiced.\\n\",\"This was admitted in evidence by the turnkeys, and was proved by the appearance of the prison tables, which bore the marks of gaming-boards deeply cut into them.\\n\",\"Prisoners confessed that it was a favorite occupation, the chief games being \\\"shoving halfpence\\\" on the table,\\n\",\"pitch in the hole, cribbage, dominoes, and common tossing, at which as much as four or five shillings would change hands in an hour.\\n\",\"But this was not the only amusement. Most of the wards took in the daily papers,\\n\",\"the most popular being the \\\"Times,\\\" \\\"Morning Herald,\\\" and \\\"Morning Chronicle\\\"; on Sunday the \\\"Weekly Dispatch,\\\" \\\"Bell's Life,\\\" and the \\\"Weekly Messenger.\\\"\\n\",\"The newsman had free access to the prison; he passed in unsearched and unexamined, and, unaccompanied by an officer,\\n\",\"went at once to his customers, who bought their paper and paid for it themselves.\\n\",\"The news-vendor was also a tobacconist,\\n\",\"and he had thus ample means of introducing to the prisoners the prohibited but always much-coveted and generally procurable weed.\\n\",\"In the same way the wardsman laid in his stock to be retailed. Other light literature besides the daily journals were in circulation:\\n\",\"novels, flash songs, play-books, such as \\\"Jane Shore,\\\" \\\"Grimm's German Tales,\\\" with Cruikshank's illustrations,\\n\",\"and publications which in these days would have been made the subject of a criminal prosecution.\\n\",\"One of these, published by Stockdale, the inspectors styled \\\"a book of the most disgusting nature.\\\"\\n\",\"There was also a good supply of Bibles and prayers,\\n\",\"the donation of a philanthropic gentleman, Captain Brown, but these, particularly the Bibles, bore little appearance of having been used.\\n\",\"Drink, in more or less unlimited quantities, was still to be had.\\n\",\"Spirits certainly were now excluded; but a potman, with full permission of the sheriffs,\\n\",\"brought in beer for sale from a neighboring public-house, and visited all the wards with no other escort than the prisoner gatesman.\\n\",\"The quantity to be issued per head was limited by the prison regulations to one pint\\n\",\"but no steps were taken to prevent any prisoner from obtaining more if he could pay for it.\\n\",\"The beer-man brought in as much as he pleased; he sold it without the controlling presence of an officer.\\n\",\"Not only did prisoners come again and again for a \\\"pint,\\\" but large quantities were carried off to the wards to be drunk later in the day.\\n\",\"There were more varied, and at times, especially when beer had circulated freely, more uproarious diversions.\\n\",\"Wrestling, in which legs were occasionally broken, was freely indulged in; also such low games as \\\"cobham,\\\"\\n\",\"leap-frog, puss in the corner, and \\\"fly the garter,\\\" for which purpose the rugs were spread out to prevent feet slipping on the floor.\\n\",\"Feasting alternated with fighting.\\n\",\"The weekly introduction of food, to which I shall presently refer, formed the basis of luxurious banquets, washed down by liquor\\n\",\"and enlivened by flash songs and thrilling long-winded descriptions of robberies and other \\\"plants.\\\"\\n\",\"There was much swearing and bad language, the very worst that could be used, from the first thing in the morning to the last thing at night.\\n\",\"New arrivals, especially the innocent and still guileless debutant, were tormented with rude horse-play, and assailed by the most insulting \\\"chaff.\\\"\\n\",\"If any man presumed to turn in too early\\n\",\"he was \\\"toed,\\\" that is to say, a string was fastened to his big toe while he was asleep, and he was dragged from off his mat,\\n\",\"or his bedclothes were drawn away across the room.\\n\",\"The ragged part of the prisoners were very anxious to destroy the clothes of the better dressed, and often lighted small pieces of cloth,\\n\",\"which they dropped smoldering into their fellow-prisoners' pockets.\\n\",\"Often the victim, goaded to madness, attacked his tormentors; a fight was then certain to follow.\\n\",\"These fights sometimes took place in the daytime, when a ring was regularly formed, and two or three stood by the door to watch for the officer's approach.\\n\",\"More often they occurred at night, and were continued to the bitter end.\\n\",\"The prisoners in this way administered serious punishment on one another. Black eyes and broken noses were always to be seen.\\n\",\"More cruel injuries were common enough, which did not result from honest hand-to-hand fights.\\n\",\"The surgeon's journal produced to the inspectors contained numerous entries of terrible wounds inflicted in a cowardly way.\\n\",\"\\\"A serious accident: one of the prisoners had a hot poker run into his eye.\\\"\\n\",\"\\\"A lad named Matthew White has had a wound in his eye by a bone thrown at him, which very nearly destroyed vision.\\\"\\n\",\"\\\"There was a disturbance in the transport yard yesterday evening, and the police were called in.\\n\",\"During the tumult a prisoner, who was one of the worst of the rioters, was bruised about the head and body.\\n\",\"Watkins' knee-joint is very severely injured.\\n\",\"A prisoner Baxter is in the infirmary in consequence of a severe injury to his wrist-joint.\\n\",\"Watkins' case, referred to above, is made the subject of another and a special report from the surgeon.\\n\",\"He was in the transport side, when one of his fellows, in endeavoring to strike another prisoner with a large poker, missed his aim, and struck Watkins' knee\\n\",\"Violent inflammation and extensive suppuration ensued, and for a considerable time amputation seemed inevitable.\\n\",\"After severe suffering prolonged for many months, the inflammation was subdued, but the cartilage of the knee-joint was destroyed, and he was crippled for life.\\n\",\"On another occasion a young man, who was being violently teased, seized a knife and stabbed his tormentor in the back.\\n\",\"The prisoner who used the knife was secured, but it was the wardsman, and not the officers, to whom the report was made, and no official inquiry or punishment followed.\\n\",\"Matters were at times still worse, and the rioting went on to such dangerous lengths as to endanger the safety of the building.\\n\",\"On one occasion a disturbance was raised which was not quelled until windows had been broken and forms and tables burnt.\\n\",\"The officers were obliged to go in among the prisoners to restore order with drawn cutlasses,\\n\",\"but the presence and authority of the governor himself became indispensable.\\n\",\"The worst fights occurred on Sunday afternoons; but nearly every night the act of locking up became, from the consequent removal of all supervision,\\n\",\"the signal for the commencement of obscene talk, revelry, and violence.\\n\",\"Other regulations laid down by the Jail Acts were still defied. One of these was that prisoners should be restricted to the jail allowance of food;\\n\",\"but all could still obtain as much extra, and of a luxurious kind, as their friends chose to bring them in.\\n\",\"Visitors were still permitted to come with supplies on given days of the week, about the only limitation being that the food should be cooked, and cold;\\n\",\"hot meat, poultry, and fish were also forbidden.\\n\",\"But the inspectors found in the ward cupboards mince-pies and other pasties, cold joints, hams, and so forth.\\n\",\"Many other articles were introduced by visitors, including money, tobacco, pipes, and snuff.\\n\",\"From the same source came the two or three strong files which the inspectors found in one ward,\\n\",\"together with four bradawls, several large iron spikes, screws, nails, and knives;\\n\",\"all of them instruments calculated to facilitate attempts at breaking out of prison,\\n\",\"and capable of becoming most dangerous weapons in the hands of desperate and determined men.\\n\",\"The nearly indiscriminate admission of visitors, although restricted to certain days, continued to be an unmixed evil.\\n\",\"The untried might see their friends three times a week, the convicted only once.\\n\",\"On these occasions precautions were supposed to be taken to exclude bad characters,\\n\",\"yet many persons of notoriously loose life continually obtained egress.\\n\",\"Women saw men if they merely pretended to be wives; even boys were visited by their sweethearts.\\n\",\"Decency was, however, insured by a line of demarcation, and visitors were kept upon each side of a separated double iron railing.\\n\",\"But no search was made to intercept prohibited articles at the gate, and there was no permanent gate-keeper,\\n\",\"which would have greatly helped to keep out bad characters. Some idea of the difficulty and inconvenience of these lax regulations as regards visiting,\\n\",\"may be gathered from the statement that as many as three hundred were often admitted on the same day\\n\",\"enough to altogether upset what small show of decorum and discipline was still preserved in the prison.\\n\",\"Perhaps the worst feature of the visiting system was the permission accorded to male prisoners \\\"under the name of husbands, brothers, and sons\\\"\\n\",\"to have access to the female side on Sundays and Wednesdays, in order to visit their supposed relations there.\\n\",\"On this female side, where the Ladies' Association still reigned supreme, more system and a greater semblance of decorum was maintained.\\n\",\"But there were evils akin to those on the male side, prominent amongst which was the undue influence accorded to prisoners.\\n\",\"A female prisoner kept the registers.\\n\",\"Wards-women were allowed much the same authority, with the same temptations to excess, and intoxication was not unknown among them and others.\\n\",\"The clothing was still meager and ragged: the washing places insufficient, and wanting in decency;\\n\",\"in some yards\\n\",\"the pump was the only provision, and this in a place within sight of visitors, of the windows of the male turnkeys, and unprotected from the weather.\\n\",\"There was the same crowding in the sleeping arrangements as on the male side; the same scarcity of bedding.\\n\",\"It was a special evil of this part of the prison, that the devotional exercises, originally so profitable, had grown into a kind of edifying spectacle,\\n\",\"which numbers of well-meaning but inquisitive people were anxious to witness.\\n\",\"Thus, when the inspectors visited there were twenty-three strangers, and only twenty-eight prisoners.\\n\",\"The presence of so many strangers, many of them gentlemen, distracted the prisoners' attention, and could not be productive of much good.\\n\",\"The separation of the sexes was not indeed rigidly carried out in Newgate as yet.\\n\",\"We have seen that male prisoners visited their female relations and friends on the female side. Besides this,\\n\",\"the gatesman who prepared the briefs had interviews with female prisoners alone while taking their instructions; a female came alone and unaccompanied by a matron\\n\",\"to clean the governor's office in the male prison;\\n\",\"male prisoners carried coal into the female prison, when they saw and could speak or pass letters to the female prisoners;\\n\",\"and the men could also at any time go for tea, coffee, and sugar to Mrs. Brown's shop, which was inside the female gate.\\n\",\"In the bail-dock, where most improper general association was permitted, the female prisoners were often altogether in the charge of male turnkeys.\\n\",\"The governor was also personally responsible for gross contravention of this rule of separation,\\n\",\"and was in the habit of drawing frequently upon the female prison for prisoners to act as domestic servants in his own private dwelling.\\n\",\"Some member of the Ladies' Association observed and commented upon the fact that a \\\"young rosy-cheeked girl\\\" had been kept by the governor from transportation,\\n\",\"while older women in infirm health were sent across the seas.\\n\",\"His excuse was that he had given the girl his promise that she should not go, an assumption of prerogative which by no means rested with him;\\n\",\"but he afterwards admitted that the girl had been recommended to him by the principal turnkey, who knew something of her friends.\\n\",\"This woman was really his servant, employed to help in cleaning, and taken on whenever there was extra work to be done.\\n\",\"The governor had a great dislike, he said, to seeing strangers in his house.\\n\",\"This girl had been first engaged on account of the extra work entailed by certain prisoners\\n\",\"committed by the House of Commons, who had been lodged in the governor's own house.\\n\",\"The house at this time was full of men and visitors; waiters came in from the taverns with meals.\\n\",\"Some of the prisoners had their valets, and all these were constantly in and out of the kitchen where this female prisoner was employed.\\n\",\"There was reveling and roistering, as usual, with \\\"high life below-stairs.\\n\",\"The governor sent down wine on festive occasions, of which no doubt the prisoner housemaid had her share.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section ten: The first report of the inspector of prisons.\\n\",\"Eighteen years had elapsed since the formation of the \\\"Ladies' Association,\\\"\\n\",\"and Mrs. Fry with her colleagues still labored assiduously in Newgate, devoting themselves mainly to the female prison,\\n\",\"although their ministrations were occasionally extended to the male side.\\n\",\"The inspectors paid tribute to the excellence of the motives of these philanthropic ladies, and recognized the good they did.\\n\",\"They had introduced \\\"much order and cleanliness,\\\"\\n\",\"had provided work for those who had hitherto passed their time in total idleness, and had made the treatment of female transports on the way to New South Wales\\n\",\"their especial care.\\n\",\"They had tried, moreover,\\n\",\"by their presence and their pious, disinterested efforts, to restrain the dissolute manners and vicious language of the unhappy and depraved inmates.\\n\",\"But it was already plain that they constituted an independent authority within the jails; they were frequently in conflict with the chaplain,\\n\",\"who not strangely resented the orders issued by the aldermen\\n\",\"that women should be frequently kept from chapel in order that they might attend the ladies' lectures and exhortations.\\n\",\"The admission of a crowd of visitors to assist in these lay services has already been remarked upon; as the inspectors pointed out,\\n\",\"it had the bad effect of distracting attention,\\n\",\"it tended to \\\"dissipate reflection, diminish the gloom of the prison, and mitigate the punishment which the law has sentenced the prisoner to undergo.\\\"\\n\",\"It is to be feared too that although the surface was thus whitewashed and decorous, much that was vicious still festered and rankled beneath,\\n\",\"and that when the restraining influences of the ladies were absent, the female prisoners relapsed into immoral and uncleanly discourse.\\n\",\"Even in the daytime, when supervision was withdrawn, \\\"the language used to be dreadful,\\\" says one of the women when under examination;\\n\",\"\\\"swearing and talking of what crimes they had committed, and how they had done it.\\\" Another witness declared she had heard the most shocking language in the yard; she said\\n\",\"\\\"she had never witnessed such scenes before, and hopes she never shall again -- it was dreadful!\\\"\\n\",\"After locking-up time, which varied, as on the male side, according to the daylight, the scenes were often riotous and disgraceful.\\n\",\"The poor, who could afford no luxuries, went to bed early, but were kept awake by the revelries of the rich,\\n\",\"who supped royally on the supplies provided from outside, and kept it up till ten or eleven o'clock.\\n\",\"There were frequent quarrels and fights; shoes and other missiles were freely bandied about;\\n\",\"and with all this \\\"the most dreadful oaths, the worst language, too bad to be repeated,\\\" were made use of every night.\\n\",\"Bad as were the various parts of the jail already dealt with,\\n\",\"there still remained one where the general callous indifference and mismanagement culminated in cruel culpable neglect.\\n\",\"The condition of the capitally-convicted prisoners after sentence was still very disgraceful. The side they occupied, still known as the press-yard,\\n\",\"consisted of two dozen rooms and fifteen cells. In these various chambers, until just before the inspectors made their report,\\n\",\"all classes of the condemned, those certain to suffer, and the larger number who were nearly certain of a reprieve,\\n\",\"were jumbled up together, higgledy-piggledy, the old and the young, the murderer and the child who had broken into a dwelling.\\n\",\"All privacy was impossible under the circumstances.\\n\",\"At times the numbers congregated together were very great; as many as fifty and sixty, even more, were crowded indiscriminately into the press-yard.\\n\",\"The better-disposed complained bitterly of what they had to endure;\\n\",\"one man declared that the language of the condemned rooms was disgusting, that he was dying a death every day in being compelled to associate with such characters.\\n\",\"In the midst of the noisy and blasphemous talk no one could pursue his meditations; any who tried to pray became the sport and ridicule of his brutal fellows.\\n\",\"Owing to the repeated entreaties of the criminals who could hardly hope to escape the gallows, some show of classification was carried out,\\n\",\"and when the inspectors visited Newgate they found the three certain to die in a day-room by themselves;\\n\",\"in a second room were fourteen more who had every hope of a reprieve.\\n\",\"The whole of these seventeen had, however, a common airing-yard, and took their exercise there at the same time,\\n\",\"so that men in the most awful situation, daily expecting to be hanged,\\n\",\"were associated continually with a number of those who could look with certainty on a mitigation of punishment.\\n\",\"The latter, light-hearted and reckless, conducted themselves in the most unseemly fashion, and \\\"with as much indifference as the inmates of the other parts of the prison.\\\"\\n\",\"They amused themselves after their own fashion; played all day long at blind-man's-buff and leap-frog, or beat each other with a knotted handkerchief,\\n\",\"laughing and uproarious, utterly unmindful of the companionship of men upon whom lay the shadow of an impending shameful death.\\n\",\"\\\"Men whose cases were dangerous, and those most seriously inclined, complained of these annoyances,\\\"\\n\",\"so subversive of meditation, so disturbing to the thoughts;\\n\",\"they suffered sickening anxiety, and wished to be locked up alone. This indiscriminate association lasted for months,\\n\",\"during the whole of which time the unhappy convicts who had but little hope of commutation were exposed to the mockery of their reckless associates.\\n\",\"The brutal callousness of the bulk of the inmates of the press-yard may be gathered from the prison punishment-book, which frequently recorded such entries as the following:\\n\",\"Benjamin Vines and Daniel Ward put in irons for two days for breaking the windows of the day room in the condemned cells.\\n\",\"\\\"Joseph Coleman put in irons for three days for striking one of the prisoners,\\\" in the same place.\\n\",\"There were disputes and quarrels constantly among these doomed men; it was a word and blow, an argument clenched always with a fight.\\n\",\"The more peaceably disposed found some occupation in making Newgate tokens,\\n\",\"leaden hearts, and \\\"grinding the impressions off penny-pieces, then pricking figures or words on them to give to their friends as memorials.\\n\",\"Turnkeys occasionally visited the press-yard, but its occupants were under little or no control.\\n\",\"The chaplain, who might have been expected to make these men his peculiar care, and who at one time had visited them frequently, often several times a week,\\n\",\"had relaxed his efforts, because, according to his own account, he was so frequently stopped in the performance of his duties.\\n\",\"In his evidence before the inspectors he declared that \\\"for years he gave his whole time to his duties, from an early hour in the morning till late in the afternoon.\\n\",\"He left off because he was so much interfered with and laughed at, and from seeing that no success attended his efforts, owing to the evils arising from association.\\n\",\"Latterly his ministrations to the condemned had been restricted to a visit on Sunday afternoons, and occasionally about once a fortnight on a week-day.\\n\",\"It is only fair to Mr. Cotton to add that, according to his own journal, he was unremitting in his attentions to convicts who were actually cast for death,\\n\",\"and the day of whose execution was fixed. He had no doubt a difficult mission to discharge;\\n\",\"on the one hand, the Ladies' Association, supported and encouraged by public approval, trenched upon his peculiar province;\\n\",\"on the other, the governor of the jail sneered at his zeal\\n\",\"stigmatized his often most just strictures on abuses as \\\"a bundle of nonsense,\\\" and the aldermen, when he appealed to them for protection and countenance,\\n\",\"generally sided with his opponents. Nevertheless the inspectors summed up against him.\\n\",\"While admitting that he had had many difficulties to contend with,\\n\",\"and that he had again and again protested against the obstacles thrown in his way, the inspectors \\\"cannot forbear expressing their opinion that he might have shown greater perseverance,\\n\",\"in the face of impediments confessedly discouraging\\n\",\"as regards the private teaching of prisoners; and they went on to say that \\\"a resolved adherence, in spite of discouragements the most disheartening,\\n\",\"to that line of conduct which his duty imposed on him\\n\",\"would, it is probable, have eventually overcome the reluctance of some of the prisoners at least, and would have possessed so much moral dignity\\n\",\"as effectually to rebuke and abash the profane spirit of the more insolent and daring of the criminals.\\n\",\"The lax discipline maintained in Newgate was still further deteriorated by the presence of two other classes of prisoners who ought never to have been inmates of such a jail.\\n\",\"One of these were the criminal lunatics, who were at this time and for long previous continuously imprisoned there.\\n\",\"As the law stood since the passing of the ninth George the fourth c. forty, any two justices might remove a prisoner found to be insane, either on commitment\\n\",\"or arraignment, to an asylum, and the Secretary of State had the same power as regards any who became insane while undergoing sentence.\\n\",\"These powers were not invariably put in force, and there were in consequence many unhappy lunatics in Newgate and other jails,\\n\",\"whose proper place was the asylum.\\n\",\"At the time the Lords' Committee sat there were eight thus retained in Newgate, and a return in the appendix of the Lords' report\\n\",\"gives a total of thirty-nine lunatics confined in various jails, many of them guilty of murder and other serious crimes.\\n\",\"The inspectors in the following year, on examining the facts, found that some of these poor creatures had been in confinement for long periods:\\n\",\"at Newgate and York Castle as long as five years; \\\"at Ilchester and Morpeth for seven years; at Warwick for eight years,\\n\",\"at Buckingham and Hereford for eleven years\\n\",\"at Appleby for thirteen years, at Anglesea for fifteen years, at Exeter for sixteen years, and at Pembroke\\n\",\"for not less a period than twenty-four years.\\n\",\"It was manifestly wrong that such persons, \\\"visited by the most awful of calamities,\\\" should be detained in a common prison.\\n\",\"Not only did their presence tend greatly to interfere with the discipline of the prison, but their condition was deplorable in the extreme.\\n\",\"The lunatic became the sport of the idle and the depraved. His cure was out of the question;\\n\",\"he was placed in a situation \\\"beyond all others calculated to confirm his malady and prolong his sufferings.\\\"\\n\",\"The matter was still further complicated at Newgate by the presence within the walls of sham lunatics. Some of those included in the category\\n\",\"had actually been returned as sane from the asylum to which they had been sent, and there was always some uncertainty as to who was mad and who not.\\n\",\"Prisoners indeed were known to boast that they had saved their necks by feigning insanity.\\n\",\"It was high time that the unsatisfactory state of the law as regards the treatment of criminal lunatics should be remedied\\n\",\"and not the least of the good services rendered by the new inspectors was their inquiry into the status of these unfortunate people, and their recommendation to improve it.\\n\",\"The other inmates of the prison of an exceptional character, and exempted from the regular discipline, such as it was,\\n\",\"were the ten persons committed to Newgate by the House of Commons in eighteen thirty-five.\\n\",\"These were the gentlemen concerned in the bribery case at Ipswich in eighteen thirty-five,\\n\",\"when a petition was presented against the return of Messrs. Adam Dundas and Fitzroy Kelly. Various witnesses, including Messrs. J. B. Dasent,\\n\",\"Pilgrim, Bond, and Clamp, had refused to give evidence before the House of Commons' Committee; a Speaker's warrant was issued for their arrest when they absconded.\\n\",\"Mr. J. E. Sparrow and Mr. Clipperton\\n\",\"the parliamentary agents of the members whose election was impugned, were implicated in aiding and abetting the others to abscond, and a Mr. O'Mally,\\n\",\"counsel for the two M.P.'s, was also concerned.\\n\",\"Pilgrim and Dasent were caught and given into the custody of the sergeant-at-arms, and the rest were either arrested or they surrendered.\\n\",\"A resolution at once passed the House without division to commit the whole to Newgate, where they remained for various terms.\\n\",\"Dasent and Pilgrim were released in ten days, on making due submission.\\n\",\"O'Mally sent in a medical certificate, declaring that the imprisonment was endangering his life, and after some question he was also released.\\n\",\"The rest were detained for more than a month, it being considered that they were the most guilty, as being either professional agents, who advised the others to abscond,\\n\",\"or witnesses who did not voluntarily come forward when the chance was given them.\\n\",\"Many of the old customs once prevalent in the State Side, so properly condemned and abolished,\\n\",\"were revived for the convenience of these gentlemen, whose incarceration was thus rendered as little like imprisonment as possible.\\n\",\"A certain number, who could afford the high rate of a guinea per diem, fixed by the under sheriff, were lodged in the governor's house,\\n\",\"slept there, and had their meals provided for them from the Sessions House or London Coffee-House.\\n\",\"A few others, who could not afford a payment of more than half a guinea, were permitted to monopolize a part of the prison infirmary,\\n\",\"where the upper ward was exclusively appropriated to their use. They also had their meals sent in, and, with the food, wine almost ad libitum.\\n\",\"A prisoner, one of the wardsmen, waited on those in the infirmary; the occupants of the governor's house had their own servants, or the governor's.\\n\",\"As a rule, visitors, many of them persons of good position, came and went all day long, and as late as nine at night;\\n\",\"some to the infirmary, many more to the governor's house.\\n\",\"There were no restraints, cards and backgammon were played, and the time passed in feasting and revelry.\\n\",\"Even Mr. Cope admitted that the committal of this class of prisoners to Newgate was most inconvenient,\\n\",\"and the inspectors expressed themselves still more strongly in reprehension of the practice.\\n\",\"The infirmary at this particular period epitomized the condition of the jail at large.\\n\",\"It was diverted from its proper uses, and, as the \\\"place of the greatest comfort,\\\" was allotted to persons who should not have been sent to Newgate at all.\\n\",\"All the evils of indiscriminate association were strongly accentuated by the crowd collected within its narrow limits.\\n\",\"\\\"It may easily be imagined,\\\" say the inspectors, in speaking of the prison generally,\\n\",\"\\\"what must be the state of discipline in a place filled with characters so various as were assembled there, where the tried and the untried, the sick and the healthy,\\n\",\"the sane and the insane, the young and the old, the trivial offender and the man about to suffer the extreme penalty of the law,\\n\",\"are all huddled together without discrimination, oversight, or control.\\\"\\n\",\"Enough has probably been extracted from this most damnatory report to give a complete picture of the disgraceful state in which Newgate still remained in eighteen thirty-five.\\n\",\"The inspectors, however, honestly admitted that although the site of the prison was convenient, its construction was as bad as bad could be.\\n\",\"Valuable space was cumbered with many long and winding passages, numerous staircases, and unnecessarily thick and cumbrous inner walls.\\n\",\"The wards were in some cases spacious, but they were entirely unsuited for separation or the inspection of prisoners.\\n\",\"The yards were narrow and confined, mainly because the ground plan was radically vicious. These were evils inseparable from the place.\\n\",\"But there were others remediable under a better system of management.\\n\",\"More attention to ventilation, which was altogether neglected and inadequate, would have secured a better atmosphere for the unhappy inmates\\n\",\"who constantly breathed an air heavy, and, when the wards were first opened in the morning, particularly offensive.\\n\",\"Again, the discipline commonly deemed inseparable from every place of durance was entirely wanting.\\n\",\"The primary object of committing a prisoner to jail, as the inspectors pointed out, was to deter not only the criminal himself, but others from crime,\\n\",\"and \\\"to dispose him, by meditation and seclusion, to return to an honest life.\\\"\\n\",\"But at Newgate the convicted prisoner, instead of privation and hard fare,\\n\",\"\\\"is permitted to purchase whatever his own means or the means of his friends in or out of prison can afford,\\n\",\"and he can almost invariably procure the luxuries of his class of life, beer and tobacco, in abundance.\\n\",\"Instead of seclusion and meditation, his time is passed in the midst of a body of criminals of every class and degree, in riot, debauchery, and gaming,\\n\",\"vaunting his own adventures, or listening to those of others;\\n\",\"communicating his own skill and aptitude in crime, or acquiring the lessons of greater adepts. He has access to newspapers, and of course\\n\",\"prefers that description which are expressly prepared for his own class, and which abound in vulgar adventure in criminal enterprise, and in the histories of the police,\\n\",\"the jail, and the scaffold.\\n\",\"He is allowed intercourse with prostitutes who, in nine cases out of ten, have originally conduced to his ruin;\\n\",\"and his connection with them is confirmed by that devotion and generosity towards their paramours in adversity for which these otherwise degraded women are remarkable.\\n\",\"Having thus passed his time, he returns a greater adept in crime, with a wider acquaintance among criminals, and, what perhaps is even more injurious to him,\\n\",\"is generally known to all the worst men in the country; not only without the inclination, but almost without the ability of returning to an honest life.\\\"\\n\",\"These pungent and well-grounded strictures applied with still greater force to the unconvicted prisoner, the man who came to the prison innocent, and still uncontaminated,\\n\",\"to be subjected to the same baneful influences, and to suffer the same moral deterioration, whether ultimately convicted or set free.\\n\",\"The whole system, or more correctly the want of system, was baneful and pernicious to the last degree.\\n\",\"The evils of such association were aggravated by the unbroken idleness; one \\\"evil inflamed the other;\\\" reformation\\n\",\"or any kind of moral improvement was impossible; the prisoner's career was inevitably downward, till he struck the lowest depths.\\n\",\"Forced and constant intercourse with the most depraved individuals of his own class;\\n\",\"the employment of those means and agents by which the lowest passions and the most vulgar propensities of man are perpetually kept in the highest state of excitement\\n\",\"drink, gaming, obscene and blasphemous language; utter idleness, the almost unrestricted admission of money and luxuries;\\n\",\"uncontrolled conversation with visitors of the very worst description -- prostitutes, thieves, receivers of stolen goods\\n\",\"all the tumultuous and diversified passions and emotions which circumstances like these must necessarily generate\\n\",\"forbid the faintest shadow of a hope that in a soil so unfavorable for moral culture\\n\",\"any awakening truth, salutary exhortation, or imperfect resolutions of amendment can take root or grow.\\n\",\"Strong as were the foregoing remarks, the inspectors wound up their report in still more trenchant language\\n\",\"framing a terrible indictment against those responsible for the condition of Newgate. Their words deserve to be quoted in full.\\n\",\"\\\"We cannot close these remarks,\\\" say the inspectors, \\\"without an expression of the painful feelings with which we submit to your Lordship\\n\",\"this picture of the existing state of Newgate\\n\",\"That in this vast metropolis, the center of wealth, civilization, and information;\\n\",\"distinguished as the seat of religion, worth, and philanthropy,\\n\",\"where is to be found in operation every expedient by which Ignorance may be superseded by Knowledge, Idleness by Industry, and Suffering by Benevolence;\\n\",\"that in the metropolis of this highly-favored country, to which the eyes of other lands turn for example, a system of prison discipline such as that enforced in Newgate\\n\",\"should be for a number of years in undisturbed operation, not only in contempt of religion and humanity,\\n\",\"but in opposition to the recorded denunciations of authority, and in defiance of the express enactments of the law,\\n\",\"is indeed a subject which cannot but impress every considerate mind with humiliation and sorrow.\\n\",\"We trust, however, that the day is at hand when this stain will be removed from the character of the city of London,\\n\",\"and when the first municipal authority of our land will be no longer subjected to the reproach of fostering an institution which outrages the rights and feelings of humanity,\\n\",\"defeats the ends of justice, and disgraces the profession of a Christian country.\\n\",\"The publication of this report raised a storm in the city, and the corporation was roused to make an immediate protest.\\n\",\"A committee of aldermen was forthwith appointed to report upon the inspectors' report,\\n\",\"and the result was another lengthy blue book, printed in the parliamentary papers, eighteen thirty-six,\\n\",\"traversing where it was possible the statements of the inspectors, and offering explanation and palliation of such evils as could not be denied.\\n\",\"The inspectors retorted without loss of time, reiterating their charges, and pointing out that the committee of aldermen by its own admission\\n\",\"justified the original allegations. It was impossible to deny the indiscriminate association; the gambling, drinking, smoking, quarreling in the jail;\\n\",\"the undue authority given to prisoners, the levying of garnish under another name\\n\",\"the neglect of the condemned convicts, the filthy condition of the wards, the insufficiency of bedding and clothing,\\n\",\"the misemployment of officers and prisoners by the governor.\\n\",\"The corporation evidently had the worst of it, and began to feel the necessity for undertaking the great work of reform.\\n\",\"Next year we find the inspectors expressing their satisfaction that \\\"the full and faithful exposure which we felt it our duty to make of Newgate\\n\",\"has been productive of at least some advantage,\\n\",\"inasmuch as it has aroused the attention of those upon whom parliamentary reports and grand jury presentments had hitherto failed to make the slightest impression.\\n\",\"The measures of improvement introduced were mainly as follows:\\n\",\"the fixing of \\\"inspection holes\\\" in the doors and walls, so as to insure more supervision; of windows opening into the well-holes,\\n\",\"to give better light and ventilation; the construction of bed-places, three tiers high alongside the walls for males, two tiers for females;\\n\",\"the provision of dining-rooms and dining-tables.\\n\",\"The infirmary was enlarged, the admission of visitors limited, and the passing of articles prevented by a wire screen.\\n\",\"The windows were to be glazed and painted to prevent prisoners from looking out;\\n\",\"baths, fumigating places for clothing, wash-house, and the removal of dust-bins, completed the new arrangements in the main prison.\\n\",\"In the press-yard, the press-room and ward above it were parceled out into nine separate sleeping cells;\\n\",\"each was provided with an iron bedstead, and a small desk at which the condemned man might read or write.\\n\",\"But the one great and most crying evil remained unremedied.\\n\",\"\\\"The mischief of jail associations,\\\" say the inspectors,\\n\",\"\\\"which has been demonstrably proved to be the fruitful source of all the abuses and irregularities which have so long disgraced Newgate,\\n\",\"is not only permitted still to exist in the prison, but is rendered more powerful than before.\\n\",\"In endeavoring to arrest contamination, prisoners were more closely confined, and associated in smaller numbers;\\n\",\"but this had the effect of throwing them into closer contact, and of making them more intimately acquainted with, more directly influential upon, one another.\\n\",\"In the inspectors' fourth report, dated eighteen thirty-nine,\\n\",\"they return to the charge, and again call the corporation to task for their mismanagement of Newgate.\\n\",\"Abuses and irregularities, which had been partially remedied by the reform introduced in eighteen thirty-seven, were once more in the ascendant.\\n\",\"\\\"In our late visits,\\\" they say, \\\"we have seen manifest indications of a retrograde movement in this respect,\\n\",\"and a tendency to return to much of that laxity and remissness which formerly marked the management of this prison.\\\"\\n\",\"Again the following year the inspectors repeat their charge.\\n\",\"\\\"The prominent evils of this prison (Newgate) -- evils which the alterations made within the last four years have failed to remove\\n\",\"are the association of prisoners, and the unusual contamination to which such association gives rise.\\n\",\"For nearly twenty-two hours out of the twenty-four the prisoners are locked up, during which time no officer is stationed in the ward with them.\\n\",\"They go on to say\\n\",\"Newgate is only less extensively injurious than formerly because it is less crowded.\\n\",\"The effects of the imprisonment are to vitiate its inmates, to extend their acquaintanceship with each other,\\n\",\"to corrupt the prisoner charged with an offense of which he may be innocent, and to confirm in guilt the young and inexperienced offender.\\n\",\"The reports as the years flow on reiterate the same complaints.\\n\",\"Much bitterness of feeling is evidently engendered, and the corporation grows more and more angry with the inspectors.\\n\",\"The prison officials appear to be on the side of the inspectors, to the great dissatisfaction of the corporation, who claimed the full allegiance and support of its servants.\\n\",\"In a resolution passed by the Court of Aldermen on eighteenth March, eighteen forty-two,\\n\",\"I find it ordered \\\"that the ordinary of Newgate be restricted from making any communications to the Home Office\\n\",\"or the Inspectors of Prisons, and that he be required wholly to confine himself to the performance of his duty as prescribed by Act of Parliament.\\n\",\"The inspectors were not to be deterred, however, by any opposition from the earnest discharge of their functions, and continued to report against Newgate.\\n\",\"In their tenth report\\n\",\"they state that they are compelled by an imperative sense of duty to advert in terms of decided condemnation to the lamentable condition of the prisons of the city of London,\\n\",\"Newgate, Giltspur St. Compter, and the City Bridewell,\\n\",\"in which the master evil of jail association and consequent contamination still continues to operate directly to the encouragement of crime.\\n\",\"The plan adopted for ventilating the dining-room on the 'master's side' and that of the middle yard is very inefficient;\\n\",\"it consists of several circular perforations, about two inches in diameter,\\n\",\"slanting downwards from the top of the walls to the outside adjoining the slaughterhouses of Newgate market; and occasionally, in hot weather,\\n\",\"instead of ventilating the apartments, they only serve to convey the offensive effluvia arising from the decaying animal matter into the dining-rooms.\\n\",\"Sometimes the stench in hot weather is said to be very bad.\\n\",\"Many rats also come through these so-called ventilators, as they open close to the ground at the back of the prison.\\n\",\"At the same time the inspectors animadvert strongly upon the misconduct of prisoners and the frequency of prison punishments,\\n\",\"both offenses and punishments affording a sufficient index to the practices going forward; and they wind up by declaring\\n\",\"that a strict compliance with their duties gave them no choice \\\"but to report matters as we found them,\\n\",\"and again and again to protest against Newgate as it at present exists.\\n\",\"No complete and permanent improvement was indeed possible while Newgate remained unchanged.\\n\",\"It was not till the erection of the new prison at Holloway in eighteen fifty, and the entire internal reconstruction of Newgate according to new ideas,\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section eleven: Executions, part one.\\n\",\"I propose to return now to the subject of Newgate executions,\\n\",\"which we left at the time of the discontinuance of the long-practiced procession to Tyburn.\\n\",\"The reasons for this change were fully set forth in a previous chapter.\\n\",\"The terrible spectacle was as demoralizing to the public, for whose admonition it was intended,\\n\",\"as the exposure was brutal and cruel towards the principal actors.\\n\",\"The decision to remove the scene of action to the immediate front of the jail itself\\n\",\"was in the right direction, as making the performance shorter and diminishing the area of display.\\n\",\"But the Old Bailey was not exclusively used;\\n\",\"at first, and for some few years after seventeen eighty-four, executions took place occasionally at a distance from Newgate.\\n\",\"This was partly due to the survival of the old notion that the scene of the crime ought also to witness the retribution;\\n\",\"partly perhaps because residents in and about the Old Bailey raised a loud protest against the constant erection of the scaffold in their neighborhood.\\n\",\"As regards the first, I find that in seventeen eighty-six\\n\",\"John Hogan, the murderer of a Mr. Odell, an attorney who resided in Charlotte Street, Rathbone Place,\\n\",\"was executed on a gibbet in front of his victim's house.\\n\",\"Lawrence Jones, a burglar, was in seventeen ninety-three ordered for execution in Hatton Garden, near the house he had robbed;\\n\",\"and when he evaded the sentence by suicide, his body was exhibited in the same neighborhood,\\n\",\"extended upon a plank on the top of an open cart, in his clothes, and fettered.\\n\",\"Again, as late as eighteen oh nine and eighteen twelve, Execution Dock, on the banks of the Thames, was still retained.\\n\",\"Here John Sutherland, commander of the British armed transport 'The Friends,' suffered on the twenty-ninth June, eighteen oh nine,\\n\",\"for the murder of his cabin-boy, whom he stabbed after much ill-usage on board the ship as it lay in the Tagus.\\n\",\"On the eighteenth December, eighteen twelve,\\n\",\"two sailors, Charles Palm and Sam Tilling, were hanged at the same place for the murder of their captain, James Keith\\n\",\"of the trading vessel 'Adventure,' upon the high seas.\\n\",\"They were taken in a cart to the place of execution, amidst a vast concourse of people.\\n\",\"Palm, as soon as he was seated in the cart,\\n\",\"put a quid of tobacco into his mouth, and offered another to his companion, who refused it with indignation\\n\",\"Some indications of pity were offered for the fate of Tilling; Palm, execration alone.\\n\",\"But the Old Bailey gradually, and in spite of all objections urged, monopolized the dread business of execution.\\n\",\"The first affair of the kind on this spot was on the third December, seventeen eighty-three,\\n\",\"when, in pursuance of an order issued by the Recorder to the sheriffs of Middlesex and the keeper of His Majesty's jail, Newgate,\\n\",\"a scaffold was erected in front of that prison for the execution of several convicts named by the Recorder.\\n\",\"Ten were executed\\n\",\"the scaffold hung with black; and the inhabitants of the neighborhood, having petitioned the sheriffs to remove the scene of execution to the old place,\\n\",\"were told that the plan had been well considered, and would be persevered in.\\n\",\"The following twenty-third April, it is stated that the malefactors ordered for execution on the eighteenth instead\\n\",\"were brought out of Newgate about eight in the morning, and suspended on a gallows of a new construction.\\n\",\"After hanging the usual time they were taken down, and the machine cleared away in half-an-hour.\\n\",\"By practice the art is much improved, and there is no part of the world in which villains are hanged in so neat a manner, and with so little ceremony.\\n\",\"A full description of this new gallows, which was erected in front of the debtors' door, is to be found in contemporary records.\\n\",\"The criminals are not exposed to view till they mount the fatal stage. The last part of the stage, or that next to the jail,\\n\",\"is enclosed by a temporary roof, under which are placed two seats for the reception of the sheriffs, one on each side of the stairs leading to the scaffold.\\n\",\"Round the north, west, and south sides are erected galleries for the reception of officers, attendants, etc.\\n\",\"and at the distance of five feet from the same is fixed a strong railing all round the scaffold to enclose a place for the constables.\\n\",\"In the middle of this machinery is placed a movable platform, in form of a trap-door, ten feet long by eight wide,\\n\",\"on the middle of which is placed the gibbet, extending from the jail across the Old Bailey.\\n\",\"This movable platform is raised six inches higher than the rest of the scaffold, and on it the convicts stand;\\n\",\"it is supported by two beams, which are held in their place by bolts. The movement of the lever withdraws the bolts, the platform falls in;\\n\",\"and this, being much more sudden and regular than that of a cart being drawn away, has the effect of immediate death.\\n\",\"A broadsheet dated April twenty-fourth, seventeen eighty-seven, describing an execution on the newly-invented scaffold before the debtors' door,\\n\",\"says, \\\"The scaffold on which these miserable people suffered is a temporary machine which was drawn out of the yard of the sessions house by horses;\\n\",\"it is supported by strong posts fixed into grooves made in the street;\\n\",\"the whole is temporary, being all calculated to take to pieces, which are preserved within the prison.\\\"\\n\",\"This contrivance appears to have been copied with improvements from that which had been used in Dublin at a still earlier date,\\n\",\"for that city claims the priority in establishing the custom of hanging criminals at the jail itself.\\n\",\"The Dublin \\\"engine of death,\\\" as the gallows are styled in the account from which the following description is taken, consisted of an iron bar\\n\",\"parallel to the prison wall, and about four feet from it, but strongly affixed thereto with iron scroll clamps.\\n\",\"From this bar hang several iron loops, in which the halters are tied.\\n\",\"Under this bar at a proper distance is a piece of flooring or platform,\\n\",\"projecting somewhat beyond the range of the iron bar, and swinging upon hinges affixed to the wall.\\n\",\"The entrance upon this floor or leaf is from the middle window over the gate of the prison;\\n\",\"and this floor is supported below,\\n\",\"while the criminals stand upon it, by two pieces of timber, which are made to slide in and out of the prison wall through apertures made for that purpose.\\n\",\"When the criminals are tied up and prepared for their fate, this floor suddenly falls down, upon withdrawing the supporters inwards.\\n\",\"They are both drawn at once by a windlass, and the unhappy culprits remain suspended.\\n\",\"This mode of execution, it is alleged, gave rise to the old vulgar \\\"chaff,\\\" \\\"Take care, or you'll die at the fall of the leaf.\\\"\\n\",\"The machinery in use in Dublin is much the same as that employed at many jails now-a-days.\\n\",\"But the fall apart and inwards of two leaves is considered superior.\\n\",\"The latter is the method still followed at Newgate.\\n\",\"The sentences inflicted in front of Newgate were not limited to hanging.\\n\",\"In the few years which elapsed between the establishment of the gallows at Newgate\\n\",\"and the abolition of the practice of burning females for petty treason, more than one woman suffered this penalty at the Old Bailey.\\n\",\"One case is preserved by Catnach,\\n\",\"that of Phoebe Harris, who in seventeen eighty-eight was \\\"barbariously\\\" executed and burnt before Newgate for coining.\\n\",\"She is described as a well-made little woman, something more than thirty years of age, of a pale complexion and not disagreeable features.\\n\",\"When she came out of prison she appeared languid and terrified, and trembled greatly as she advanced to the stake,\\n\",\"where the apparatus for the punishment she was about to experience\\n\",\"seemed to strike her mind with horror and consternation, to the exclusion of all power of recollectedness in preparation for the approaching awful moment.\\n\",\"She walked from the debtors' door to a stake fixed in the ground about half-way between the scaffold and Newgate Street.\\n\",\"She was immediately tied by the neck to an iron bolt fixed near the top of the stake,\\n\",\"and after praying fervently for a few minutes, the steps on which she stood were drawn away, and she was left suspended.\\n\",\"A chain fastened by nails to the stake was then put round her body by the executioner with his assistants.\\n\",\"Two cart-loads of faggots were piled about her, and after she had hung for half-an-hour the fire was kindled.\\n\",\"The flames presently burned the halter, the body fell a few inches, and hung then by the iron chain.\\n\",\"The fire had not quite burnt out at twelve, in nearly four hours, that is to say.\\n\",\"A great concourse of people attended on this melancholy occasion.\\n\",\"The change from Tyburn to the Old Bailey had worked no improvement as regards the gathering together of the crowd or its demeanor.\\n\",\"As many spectators as ever thronged to see the dreadful show,\\n\",\"and they were packed into a more limited space, disporting themselves as heretofore by brutal horse-play, coarse jests, and frantic yells.\\n\",\"It was still the custom to offer warm encouragement or bitter disapproval, according to the character and antecedents of the sufferer.\\n\",\"The highwayman, whose exploits many in the crowd admired or emulated, was cheered and bidden to die game;\\n\",\"the man of better birth could hope for no sympathy, whatever his crime.\\n\",\"At the execution of Governor Wall, in eighteen oh two, the furious hatred of the mob was plainly apparent in their appalling cries.\\n\",\"His appearance on the scaffold was the signal for three prolonged shouts from an innumerable populace, \\\"the brutal effusion of one common sentiment.\\\"\\n\",\"It was said that so large a crowd had never collected since the execution of Mrs. Brownrigg, nor had the public indignation risen so high.\\n\",\"Pieman and ballad-monger did their usual roaring trade amidst the dense throng.\\n\",\"No sooner was the \\\"job\\\" finished than half-a-dozen competitors appeared, each offering the identical rope for sale at a shilling an inch.\\n\",\"One was the \\\"yeoman of the halter,\\\" a Newgate official, the executioner's assistant, whom Mr. J. T. Smith, who was present at the execution,\\n\",\"describes as \\\"a most diabolical-looking little wretch -- Jack Ketch's head man.\\n\",\"The yeoman was, however, under-sold by his wife, \\\"Rosy Emma,\\\"\\n\",\"exuberant in talk and hissing hot from Pie Corner, where she had taken her morning dose of gin-and-bitters.\\n\",\"A little further off, says Mr. Smith, was \\\"a lath of a fellow past three-score years and ten,\\n\",\"who had just arrived from the purlieus of Black Boy Alley, woebegone as Romeo's apothecary, exclaiming,\\n\",\"Here's the identical rope at sixpence an inch.\\n\",\"Mr. Smith's account of the condemned convict, whose cell he was permitted to enter, may be inserted here.\\n\",\"He was introduced by the ordinary, Dr. Forde, a name familiar to the reader, who met him at the felons' door\\n\",\"in his canonicals, and with his head as stiffly erect as a sheriff's coachman.\\n\",\"The ordinary \\\"gravely uttered, 'Come this way, Mr. Smith.'\\n\",\"As we crossed the press yard a cock crew, and the solitary clanking of a restless chain was dreadfully horrible.\\n\",\"The prisoners had not risen.\\n\",\"They entered a \\\"stone cold room,\\\" and were presently joined by the prisoner.\\n\",\"He was death's counterfeit, tall, shriveled, and pale;\\n\",\"and his soul shot out so piercingly through the port-holes of his head, that the first glance of him nearly petrified me\\n\",\"His hands were clasped, and he was truly penitent.\\n\",\"After the yeoman had requested him to stand up, 'he pinioned him,' as the Newgate phrase is\\n\",\"and tied the cord with so little feeling that the governor (Wall), who had not given the wretch his accustomed fee, observed,\\n\",\"\\\"You have tied me very tight,\\\" upon which Dr. Forde ordered him to slacken the cord, which he did, but not without muttering.\\n\",\"\\\"Thank you, sir,\\\" said the governor to the doctor, \\\"it is of little moment.\\\"\\n\",\"He then made some observations to the attendant about the fire, and turning to the doctor, questioned him.\\n\",\"\\\"Do tell me, sir; I am informed I shall go down with great force; is it so?\\\"\\n\",\"After the construction and action of the machine had been explained, the doctor asked the governor what kind of men he had commanded at Goree,\\n\",\"where the murder for which he was condemned had been committed.\\n\",\"\\\"Sir,\\\" he answered, \\\"they sent me the very riff-raff.\\\"\\n\",\"The poor soul then joined the doctor in prayer, and never did I witness more contrition at any condemned sermon than he then evinced.\\n\",\"The sheriff arrived, attended by his officers, to receive the prisoner from the keeper.\\n\",\"A new hat was partly flattened on his head, for, owing to its being too small in the crown, it stood many inches too high behind.\\n\",\"As we were crossing the press yard,\\n\",\"the dreadful execrations of some of the felons so shook his frame that he observed \\\"the clock had struck;\\\" and quickening his pace,\\n\",\"he soon arrived at the room where the sheriff was to give a receipt for his body, according to the usual custom.\\n\",\"Before the colonel had been pinioned he had pulled out two white handkerchiefs, one of which he bound over his temples so as nearly to conceal his eyes,\\n\",\"the other he kept between his hands.\\n\",\"Over the handkerchief around his brows he placed a white cap, the new hat being on top of all.\\n\",\"He was dressed in a mixed-colored loose coat with a black collar, swandown waistcoat, blue pantaloons, and white silk stockings.\\n\",\"Thus appareled he ascended the stairs at the debtors' door,\\n\",\"and stepped out on to the platform, to be received, as has been said, by prolonged yells.\\n\",\"These evidently deprived him of the small portion of fortitude he had summoned up.\\n\",\"He bowed his head under extreme pressure of ignominy,\\n\",\"and at his request the ordinary drew the cap further down over his face, when in an instant,\\n\",\"without waiting for any signal, the platform dropped, and he was launched into eternity.\\n\",\"Whenever the public attention had been specially called to a particular crime, either on account of its atrocity,\\n\",\"the doubtfulness of the issue, or the superior position of the perpetrator,\\n\",\"the attendance at the execution was certain to be tumultuous, and the conduct of the mob disorderly.\\n\",\"This was notably the case at the execution of Holloway and Haggerty\\n\",\"in eighteen oh seven, an event long remembered from the fatal and disastrous consequences which followed it.\\n\",\"They were accused by a confederate, who, goaded by conscience, had turned approver, of the murder of a Mr. Steele,\\n\",\"who kept a lavender warehouse in the city, and who had gardens at Feltham,\\n\",\"whither he often went to distill the lavender, returning to London the same evening.\\n\",\"One night he was missing\\n\",\"and after a long interval his dead body was discovered, shockingly disfigured, in a ditch. This was in eighteen oh two.\\n\",\"Four years passed without the detection of the murderers,\\n\",\"but in the beginning of eighteen oh seven one of them, at that time just sentenced to transportation,\\n\",\"made a full confession, and implicated Holloway and Haggerty.\\n\",\"They were accordingly apprehended and brought to trial, the informer, Hanfield by name, being accepted as king's evidence.\\n\",\"Conviction followed mainly on his testimony; but the two men, especially Holloway, stoutly maintained their innocence to the last.\\n\",\"Very great excitement prevailed in the town throughout the trial, and this greatly increased when the verdict was known.\\n\",\"An enormous crowd assembled to witness the execution, amounting, it was said, to the hitherto unparalleled number of forty thousand.\\n\",\"By eight o'clock not an inch of ground in front of the platform was unoccupied.\\n\",\"The pressure soon became so frightful that many would have willingly escaped from the crowd; but their attempts only increased the general confusion.\\n\",\"Very soon women began to scream with terror;\\n\",\"some, especially of low stature, found it difficult to remain standing, and several, although held up for some time by the men nearest them,\\n\",\"presently fell, and were at once trampled to death.\\n\",\"Cries of Murder! murder! were now raised, and added greatly to the horrors of the scene.\\n\",\"Panic became general. More women, children, and many men were borne down, to perish beneath the feet of the rest.\\n\",\"The most affecting and distressing scene was at Green Arbor Lane, just opposite the debtors' door of the prison.\\n\",\"Here a couple of piemen had been selling their wares; the basket of one of them, which was raised upon a four-legged stool, was upset.\\n\",\"The pieman stooped down to pick up his scattered stock, and some of the mob, not seeing what had happened, stumbled over him.\\n\",\"No one who fell ever rose again.\\n\",\"Among the rest was a woman with an infant at the breast.\\n\",\"She was killed, but in the act of falling she forced her child into the arms of a man near her, and implored him in God's name to save it;\\n\",\"the man, needing all his care for his own life, threw the child from him,\\n\",\"and it passed along the heads of the crowd, to be caught at last by a person who struggled with it to a cart and deposited it there in safety.\\n\",\"In another part seven persons met their death by suffocation.\\n\",\"In this convulsive struggle for bare existence people fought fiercely with one another, and the weakest, of course the women, went under.\\n\",\"One cart-load of spectators having broken down, some of its occupants fell off the vehicle, and were instantly trampled to death.\\n\",\"This went on for more than an hour, and until the malefactors were cut down and the gallows removed;\\n\",\"then the mob began to thin, and the streets were cleared by the city marshals and a number of constables.\\n\",\"The catastrophe exceeded the worst anticipations. Nearly one hundred dead and dying lay about; and after all had been removed,\\n\",\"the bodies for identification, the wounded to hospitals, a cart-load of shoes, hats, petticoats, and fragments of wearing apparel were picked up.\\n\",\"Among the dead was a sailor lad whom no one knew;\\n\",\"he had his pockets filled with bread and cheese, and it was generally supposed that he had come a long distance to see the fatal show.\\n\",\"A tremendous crowd assembled when Bellingham was executed in eighteen twelve for the murder of Spencer Percival, at that time prime minister;\\n\",\"but there were no serious accidents, beyond those caused by the goring of a maddened, over-driven ox which forced its way through the crowd.\\n\",\"Precautions had been taken by the erection of barriers, and the posting of placards at all the avenues to the Old Bailey, on which was printed,\\n\",\"Beware of entering the crowd! Remember thirty poor persons were pressed to death by the crowd when Haggerty and Holloway were executed!\\n\",\"The concourse was very great, notwithstanding these warnings.\\n\",\"It was still greater at Fauntleroy's execution in eighteen twenty-four, when no less than one hundred thousand persons assembled, it was said.\\n\",\"Every window and roof which could command a view of the horrible performance was occupied.\\n\",\"All the avenues and approaches, places even whence nothing whatever could be seen of the scaffold,\\n\",\"were blocked by persons who had overflowed from the area in front of the jail.\\n\",\"At Courvoisier's execution in eighteen forty it was the same, or worse.\\n\",\"As early as six a.m. the number assembled already exceeded that seen on ordinary occasions;\\n\",\"by seven a.m. the whole space was so thronged that it was impossible to move one way or the other.\\n\",\"Some persons were kept for more than five hours standing against the barriers, and many nearly fainted from exhaustion.\\n\",\"Every window had its party of occupants; the adjoining roofs were equally crowded.\\n\",\"High prices were asked and paid for front seats or good standing room. As much as five pounds was given for the attic story\\n\",\"of the Lamb's Coffee House;\\n\",\"two pounds was a common price for a window.\\n\",\"At the George public-house to the south of the drop, Sir W. Watkin Wynn, Baronet,\\n\",\"hired a room for the night and morning, which he and a large party of friends occupied before and during the execution;\\n\",\"in an adjoining house, that of an undertaker, was Lord Alfred Paget, also with several friends.\\n\",\"Those who had hired apartments spent the night in them, keeping up their courage with liquids and cigars.\\n\",\"Numbers of ladies were present, although the public feeling was much against their attendance.\\n\",\"One well-dressed woman fell out of a first-floor window on to the shoulders of the crowd below, but neither she nor any one else was greatly hurt.\\n\",\"The city authorities had endeavored to take all precautions against panic and excitement among the crowd,\\n\",\"and caused a number of stout additional barriers to be erected in front of the scaffold,\\n\",\"and although one of these gave way owing to the extraordinary pressure, no serious accident occurred.\\n\",\"Some years later an eye-witness published a graphic account of one of these scenes.\\n\",\"Soon after midnight on the Sunday night, for by this time the present practice of executing on Monday morning had been pretty generally introduced,\\n\",\"the crowd began to congregate in and about the Old Bailey.\\n\",\"Gin-shops and coffee-houses were the first to open doors, and touts began to bid for tenants for the various rooms upstairs.\\n\",\"Cries of \\\"Comfortable room!\\\" \\\"Excellent situation!\\\" \\\"Beautiful prospect!\\\" \\\"Splendid view!\\\" resounded on every side.\\n\",\"By this time the workmen might be heard busily erecting the gallows;\\n\",\"the sounds of hammer and saw intermingled with the broad jeers and coarse jests of the rapidly increasing mob.\\n\",\"One by one the huge uprights of black timber were fitted together,\\n\",\"until presently the huge stage loomed dark above the crowd which was now ranged round the barriers;\\n\",\"a throng of people whom neither rain, snow, storm, nor darkness ever hindered from attending the show.\\n\",\"They were mainly members of the criminal classes.\\n\",\"their conversation was of companions and associates of former years, long ago imprisoned, transported, hanged, while they,\\n\",\"hoary-headed and hardened in guilt, were still at large.\\n\",\"They talked of the days when the convicts were hung up a dozen or more in a row;\\n\",\"of those who had shown the white, and those who had died game.\\n\",\"The approaching ceremony had evidently no terrors for these \\\"idolaters of the gallows.\\\"\\n\",\"With them were younger men and women:\\n\",\"the former already vowed to the same criminal career, and looking up to their elders with the respect due to successful practitioners;\\n\",\"the latter unsexed and brutalized by dissipation,\\n\",\"slipshod and slovenly, in crushed bonnet and dirty shawl, the gown fastened by a single hook,\\n\",\"their harsh and half-cracked voices full of maudlin, besotted sympathy for those about to die.\\n\",\"Above the murmur and tumult of that noisy assembly, the lowing and bleating of cattle as they were driven into the stalls and pens of Smithfield\\n\",\"fell with a strange unnatural sound upon the ear\\n\",\"Hush! the unceasing murmur of the mob now breaks into a loud deep roar,\\n\",\"a sound as if the ocean had suddenly broken through some ancient boundary, against which its ever restless billows had for ages battered;\\n\",\"the wide dark sea of heads is all at once in motion;\\n\",\"each wave seems trying to overleap the other as they are drawn onwards towards this outlet.\\n\",\"Every link in that great human chain is shaken, along the whole lengthened line has the motion jarred, and each in turn sees,\\n\",\"coiled up on the floor of the scaffold like a serpent, the hangman's rope!\\n\",\"The human hand that placed it there was only seen for a moment,\\n\",\"as it lay, white and ghastly, upon the black boards, and then again was as suddenly withdrawn, as if ashamed of the deed it had done.\\n\",\"The loud shout of the multitude once more subsided, or only fell upon the abstracted ear like the dreamy murmur of an ocean shell.\\n\",\"Then followed sounds more distinct and audible, in which ginger-beer, pies, fried fish, sandwiches, and fruit\\n\",\"were vended under the names of notorious murderers, highwaymen, and criminals,\\n\",\"famous in the annals of Newgate for the hardihood they had displayed in the hour of execution, when they terminated their career of crime at the gallows.\\n\",\"Threading his way among these itinerant vendors was seen the meek-faced deliverer of tracts, the man of good intentions, now bonneted,\\n\",\"now laughed at, the skirt of his seedy black coat torn across; yet,\\n\",\"though pulled right and left, or sent headlong into the crowd by the swing of some brutal and muscular arm,\\n\",\"Never once from that pale face passed away its benign and patient expression.\\n\",\"but ever the same form moved along in the fulfillment of his mission, in spite of all persecution.\\n\",\"Another fight followed the score which had already taken place; this time two women were the combatants.\\n\",\"Blinded with their long hair, they tore at each other like two furies; their bonnets and caps were trodden underfoot in the kennel,\\n\",\"and lay disregarded beside the body of the poor dog which, while searching for its master in the crowd,\\n\",\"was an hour before kicked to death by the savage and brutal mob.\\n\",\"Another deep roar, louder than any which had preceded it, broke from the multitude.\\n\",\"Then came the cry of 'Hats off!' and 'Down in front!' as at a theatre.\\n\",\"It was followed by the deep and solemn booming of the death-bell from the church of St. Sepulchre\\n\",\"the iron knell that rang upon the beating heart of the living man who was about to die;\\n\",\"and with blanched cheek, and sinking, we turned away from the scene.\\n\",\"In thus describing the saturnalia before the gallows I have been drawn on somewhat beyond the period with which I am at present dealing.\\n\",\"Let me retrace my steps, and speak more in detail of the treatment of the condemned in those bloodthirsty and brutally indifferent days,\\n\",\"and of their demeanor after sentence until the last penalty was paid.\\n\",\"One of the worst evils was the terrible and long-protracted uncertainty as to the result.\\n\",\"In the case of convicted murderers only was prompt punishment inflicted,\\n\",\"and with them indeed this dispatch amounted to undue precipitancy.\\n\",\"Forty-eight hours was the limit of time allowed to the unhappy man to make his peace, and during that time he was still kept on a bare allowance of bread and water.\\n\",\"But the murderers formed only a small proportion of the total number sentenced to death, and for the rest there was a long period of anxious suspense,\\n\",\"although in the long run mercy generally prevailed, and very few capitally convicted for crimes less than murder actually suffered.\\n\",\"Thus in the years between May first, eighteen twenty-seven, and thirtieth April, eighteen thirty-one,\\n\",\"no less than four hundred and fifty-one sentences of death for capital crimes were passed at the Old Bailey;\\n\",\"but of these three hundred and ninety-six were reversed by the king in council, and only fifty-two were really executed.\\n\",\"Already the severity of our criminal code, and the number of capital felonies upon the statute book, had brought a reaction;\\n\",\"and while the courts adhered to the letter of the law, appeals were constantly made to the royal prerogative of mercy.\\n\",\"This was more particularly the practice in London.\\n\",\"Judges on assize were satisfied with simply recording a sentence of death against offenders whom they did not think deserved the extreme penalty.\\n\",\"At the Old Bailey almost every one capitally convicted by a jury was sentenced to be hanged.\\n\",\"The result in the latter case was left in the first place to the king in council,\\n\",\"but there was a further appeal then, as now, to the king himself, or practically to the Home Secretary.\\n\",\"Neither in town or country were cases entirely taken on their own merits.\\n\",\"Convicted offenders might have good or bad luck; they might be arraigned when their particular crime was uncommon, and were then nearly certain to escape;\\n\",\"or theirs might be one of many, and it might be considered necessary to \\\"make an example.\\\"\\n\",\"In this latter it might fairly be said that a man was put to death less for his own sins than for the crimes of others.\\n\",\"The absurdity of the system, its irregularity and cruelty, were fully touched upon by the inspectors of prisons in their first report.\\n\",\"They found at Newgate, under disgraceful conditions as already described,\\n\",\"seventeen capital convicts, upon all of whom the sentence of death had been passed. Eventually two only of the whole number suffered;\\n\",\"two others were sentenced to three months' imprisonment, and the balance to varying terms.\\n\",\"Nothing could be more strongly marked than the contrast between the ultimate destiny of different individuals all abiding the same awful doom:\\n\",\"on the one hand the gallows, on the other a short imprisonment.\\n\",\"The inspectors very properly desired to call attention to the inevitable tendency in this mode of dealing with \\\"the most awful sanctions of the law,\\\"\\n\",\"to make those sanctions an object of contemptuous mockery.\\n\",\"The consequences were plainly proved to the inspectors.\\n\",\"Capitally convicted prisoners did, as a matter of fact, \\\"treat with habitual and inexpressible levity the sentence of death.\\\"\\n\",\"Of this I have treated at length in the last chapter.\\n\",\"The time thus spent varied considerably,\\n\",\"but it was seldom less than six weeks. It all depended upon the sovereign's disposition to do business.\\n\",\"Sometimes the Privy Council did not meet for months, and during all that time the convicts languished with hope\\n\",\"nearly indefinitely deferred.\\n\",\"When the council had decided, the news was conveyed to Newgate by the Recorder, who made his \\\"report,\\\" as it was called.\\n\",\"The time of the arrival of this report was generally known at Newgate,\\n\",\"and its contents were anxiously awaited by both convicts in the press-yard and their friends collected in a crowd outside the gates.\\n\",\"Sometimes the report was delayed.\\n\",\"On one occasion, Mr. Wakefield tells us, the Recorder, who had attended the council at Windsor, did not deliver the report till the following day.\\n\",\"The prisoners and their friends, therefore, were kept in a state of the most violent suspense for many hours,\\n\",\"during which they counted the moments -- the prisoners in their cells as usual, and their friends in the street in front of Newgate, where they passed the night.\\n\",\"I have heard the protracted agony of both classes described by those who witnessed it in terms so strong, that I am unwilling to repeat them.\\n\",\"The crowd of men and women who passed the night in front of Newgate, began, as soon as the hour was passed when they had expected the report,\\n\",\"to utter imprecations against the Recorder, the Secretary of State, the Council, and the King;\\n\",\"they never ceased cursing until the passion of anger so excited was exchanged for joy in some and grief in others.\\n\",\"I myself heard more than one of those whose lives were spared by that decision of the council,\\n\",\"afterwards express a wish to murder the Recorder for having kept them so long in suspense.\\n\",\"The Recorder's report generally reached Newgate late at night.\\n\",\"Its receipt was immediately followed by the promulgation of its contents to the persons most closely concerned,\\n\",\"which was done with a sort of ceremony intended to be impressive.\\n\",\"The whole of the convicts were assembled together in one ward, and made to kneel down.\\n\",\"To them entered the chaplain or ordinary of Newgate in full canonicals,\\n\",\"who in solemn tones communicated to each in turn the fate in store for him.\\n\",\"The form of imparting the intelligence was generally the same.\\n\",\"\\\"So-and-so, I am sorry to tell you that it is all against you;\\\" or,\\n\",\"\\\"A. B., your case has been taken into consideration by the king in council, and His Majesty has been mercifully pleased to spare your life.\\\"\\n\",\"The fatal news was not always received in the same way.\\n\",\"The men who were doomed often fell down in convulsions upon the floor.\\n\",\"Sometimes any who had had a narrow escape fainted, but the bulk of those respited looked on with unfeeling indifference.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section twelve: Executions, part two.\\n\",\"It is satisfactory to be able to record that some consideration was shown the capital convict actually awaiting execution.\\n\",\"Even so severe a critic as Mr. Wakefield states that \\\"a stranger to the scene\\n\",\"would be astonished to observe the peculiar tenderness, I was going to add respect,\\n\",\"which persons under sentence of death obtain from all the officers of the prison.\\n\",\"Before sentence a prisoner has only to observe the regulations of the jail in order to remain neglected and unnoticed.\\n\",\"Once ordered to the cells, friends of all classes suddenly rise up; his fellow-prisoners, the turnkeys, the chaplain,\\n\",\"the keepers, and the sheriffs all seem interested in his fate, and he can make no reasonable request that is not at once granted by whomsoever he may address.\\n\",\"This rule has some, but very few, exceptions; such as where a hardened offender behaves with great levity and brutality, as if he cared nought for his life,\\n\",\"and thought every one anxious to promote his death.\\n\",\"Mr. Wakefield goes on to remark that persons convicted of forgery \\\"excited an extraordinary degree of interest in all who approached them.\\\"\\n\",\"This was noticeable with Fauntleroy, who, on account of his birth and antecedents, was allowed to occupy a turnkey's room,\\n\",\"and kept altogether separate from the other prisoners until the day of his death.\\n\",\"It cannot be denied, however, that the ordinary's treatment was somewhat unfeeling, and in proof thereof\\n\",\"I will quote an extract from the reverend gentleman's own journal.\\n\",\"He seems to have improved the occasion when preaching the condemned sermon before Fauntleroy, by pointing a moral from that unhappy man's own case.\\n\",\"For this the chaplain was a few days later summoned before the jail committee of aldermen,\\n\",\"and informed that the public would not in future be admitted to hear the condemned sermon. \\\"I was also informed,\\\" writes Mr. Cotton,\\n\",\"that this resolution was in consequence of their (the aldermen's) disapproving of the last discourse delivered by me,\\n\",\"previous to the execution of Henry Fauntleroy for uttering a forged security\\n\",\"in which it was said I had enlarged upon the heinous nature of his crime, and warned the public to avoid such conduct.\\n\",\"I was informed that this unnecessarily harassed his feelings, and that the object of such sermons was solely to console the prisoner,\\n\",\"and that from the time of his conviction nothing but what is consolatory should be addressed to a criminal.\\n\",\"One of the aldermen, moreover, informed me that the whole court of aldermen were unanimous in their opinion on this subject.\\n\",\"As to the exclusion of strangers on these occasions,\\n\",\"the experience I have had convinces me that one, and perhaps the only, good of an execution, i. e. the solemn admonition to the public,\\n\",\"will thereby be lost.\\n\",\"Probably the reader will side with the aldermen against the ordinary.\\n\",\"This episode throws some doubt upon the tenderness and proper feeling exhibited by the chaplain towards the most deserving members of his criminal flock;\\n\",\"and the idea will be strengthened by the following account of the Sunday service in the prison chapel on the occasion when the condemned sermon was preached.\\n\",\"The extract is from Mr. E. Gibbon Wakefield's brochure, the date eighteen twenty-eight, just three years after Fauntleroy's death.\\n\",\"Strangers were now excluded, but the sheriffs attended in state, wearing their gold chains,\\n\",\"while behind their pew stood a couple of tall footmen in state liveries.\\n\",\"The sheriffs were in one gallery;\\n\",\"in the other opposite were the convicts capitally convicted who had been respited.\\n\",\"Down below between the galleries was the mass of the prison population;\\n\",\"the schoolmaster and the juvenile prisoners being seated round the communion-table, opposite the pulpit.\\n\",\"In the center of the chapel was the condemned pew, a large dock-like erection painted black.\\n\",\"Those who sat in it were visible to the whole congregation, and still more to the ordinary,\\n\",\"whose desk and pulpit were just in front of the condemned pew, and within a couple of yards of it.\\n\",\"The occupants of this terrible black pew were the last always to enter the chapel.\\n\",\"Upon the occasion which I am describing they were four in number; and here I will continue the narrative in Mr. Wakefield's own words:\\n\",\"First is a youth of eighteen, condemned for stealing in a dwelling-house goods valued above five pounds.\\n\",\"His features have no felonious cast;\\n\",\"he steps boldly with head upright, looks to the women's gallery, and smiles. His intention is to pass for a brave fellow,\\n\",\"but the attempt fails; he trembles, his knees knock together, and his head droops as he enters the condemned pew.\\n\",\"The next convict is clearly and unmistakably a villain.\\n\",\"He is a hardened offender, previously cast for life, reprieved, transported to Australia, and since returned without pardon.\\n\",\"For this offense the punishment is death.\\n\",\"He has, however, doubly earned his sentence, and is actually condemned for burglary committed since his arrival in England.\\n\",\"His look at the sheriffs and the ordinary is full of scorn and defiance.\\n\",\"The third convict is a sheep-stealer, a poor ignorant fellow in whose crime are mitigating circumstances,\\n\",\"but who is left to die on the supposition that this is not his first conviction, and still more because a good many sheep have of late been stolen by other people.\\n\",\"He is quite content to die;\\n\",\"indeed the chaplain and others have brought him firmly to believe that his situation is enviable, and that the gates of heaven are open to receive him.\\n\",\"The last of the four is said to have been a clergyman of the Church of England, condemned for forgery, \\\"a miserable old man in a tattered suit of black.\\n\",\"Already he is half dead.\\n\",\"Great efforts have been made to save his life.\\n\",\"Friends, even utter strangers, have interceded for him, and to the last he has buoyed himself up by hope of reprieve.\\n\",\"Now his doom is sealed irrevocably, and he has given himself up to despair.\\n\",\"He staggers towards the pew, reels into it, stumbles forward, flings himself on the ground, and, by a curious twist of the spine,\\n\",\"buries his head under his body.\\n\",\"The sheriffs shudder, their inquisitive friends crane forward, the keeper frowns on the excited congregation,\\n\",\"the lately smirking footmen close their eyes and forget their liveries, the ordinary clasps his hands, the turnkeys cry 'Hush!'\\n\",\"and the old clerk lifts up his cracked voice, saying, 'Let us sing to the praise and glory of God.'\\n\",\"The morning hymn is sung first, as if to remind the condemned that next morning at eight a.m. they are to die.\\n\",\"The service proceeds. At last the burial service is reached.\\n\",\"The youth alone is able to read, but from long want of practice he is at a loss to find the place in his prayer-book.\\n\",\"The ordinary observes him, looks to the sheriffs, and says aloud, 'The service for the dead!'\\n\",\"The youth's hands tremble as they hold the book upside down.\\n\",\"The burglar is heard to mutter an angry oath.\\n\",\"The sheep-stealer smiles, and, extending his arms upwards, looks with a glad expression to the roof of the chapel.\\n\",\"The forger has never moved.\\n\",\"Let us pass on.\\n\",\"All have sung 'the Lamentation of a Sinner,' and have seemed to pray 'especially for those now awaiting the awful execution of the law.'\\n\",\"We come to the sermon.\\n\",\"The ordinary of Newgate is an orthodox, unaffected, Church of England divine,\\n\",\"who preaches plain, homely discourses, as fit as any religious discourse can be fit for the irritated audience.\\n\",\"The sermon of this day, whether eloquent or plain, useful or useless, must produce a striking effect at the moment of its delivery.\\n\",\"The text, without another word, is enough to raise the wildest passions of the audience\\n\",\"For a while the preacher addresses himself to the congregation at large, who listen attentively\\n\",\"except the clergyman and the burglar, the former of whom is still rolled up at the bottom of the condemned pew,\\n\",\"while the eyes of the latter are wandering round the chapel, and one of them is occasionally winked impudently at some acquaintance amongst the prisoners for trial.\\n\",\"At length the ordinary pauses, and then, in a deep tone, which, though hardly above a whisper, is audible to all, says,\\n\",\"'Now for you, my poor fellow mortals, who are about to suffer the last penalty of the law.'\\n\",\"But why should I repeat the whole?\\n\",\"It is enough to say that in the same solemn tone he talks about the minutest of crimes, punishments, bonds, shame,\\n\",\"ignominy, sorrow, sufferings, wretchedness, pangs,\\n\",\"childless parents, widows and helpless orphans, broken and contrite hearts, and death tomorrow morning for the benefit of society.\\n\",\"The dying men are dreadfully agitated.\\n\",\"The young stealer in a dwelling-house no longer has the least pretense to bravery. He grasps the back of the pew,\\n\",\"his legs give way, he utters a faint groan, and sinks on the floor.\\n\",\"Why does no one stir to help him? Where would be the use? The hardened burglar moves not, nor does he speak;\\n\",\"but his face is of an ashy paleness; and if you look carefully you may see the blood trickling from his lip,\\n\",\"which he has bitten unconsciously, or from rage, or to rouse his fainting courage.\\n\",\"The poor sheep-stealer is in a frenzy.\\n\",\"He throws his hands far from him, and shouts aloud, 'Mercy, good Lord! mercy is all I ask. The Lord in His mercy come!\\n\",\"There! there! I see the Lamb of God! Oh! how happy! Oh! this is happy!\\n\",\"Meanwhile the clergyman, still bent into the form of a sleeping dog,\\n\",\"struggles violently; his feet, legs, hands, and arms, even the muscles of his back,\\n\",\"move with a quick, jerking motion, not naturally, but, as it were, like the affected parts of a galvanized corpse.\\n\",\"Suddenly he utters a short sharp scream, and all is still.\\n\",\"The silence is short. As the ordinary proceeds 'to conclude,'\\n\",\"the women set up a yell, which is mixed with a rustling noise, occasioned by the removal of those whose hysterics have ended in fainting.\\n\",\"The sheriffs cover their faces, and one of their inquisitive friends blows his nose with his glove.\\n\",\"The keeper tries to appear unmoved, but his eye wanders anxiously over the combustible assembly.\\n\",\"The children round the communion-table stare and gape with childish wonder.\\n\",\"The two masses of prisoners for trial undulate and slightly murmur,\\n\",\"while the capital convicts who were lately in that black pew appear faint with emotion.\\n\",\"This exhibition lasts for some minutes, and then the congregation disperses,\\n\",\"the condemned returning to the cells: the forger carried by turnkeys; the youth sobbing aloud convulsively, as a passionate child;\\n\",\"the burglar muttering curses and savage expressions of defiance; whilst the poor sheep-stealer shakes hands with the turnkeys,\\n\",\"whistles merrily, and points upwards with madness in his look.\\n\",\"Mr. Wakefield winds up his graphic but somewhat sensational account by describing another religious service, which may appropriately be inserted here.\\n\",\"He says, \\\"On the day of execution there is no service in the chapel of Newgate.\\n\",\"On the following day the capital convicts, whose companions have been hanged, are required to return thanks for their narrow escape.\\n\",\"The firmest disbeliever in religion, if he had not lately been irritated by taking part in such a scene as the condemned service in Newgate,\\n\",\"could hardly witness this ceremony without being affected. The men, who were so lately snatched from the jaws of death,\\n\",\"kneel, whilst the rest of the congregation sit, and the ordinary, in a tone of peculiar solemnity, says,\\n\",\"Almighty God, Father of all mercies, we thine unworthy servants do give thee most humble and hearty thanks\\n\",\"for all thy goodness and loving-kindness to us, and to all men;\\n\",\"particularly to those who desire now to offer up their praises and thanksgivings for thy late mercies vouchsafed unto them.\\n\",\"Could any one, knowing the late situation of the kneeling men, looking as they do at the empty pew,\\n\",\"occupied when they saw it last, but a few hours ago, by their comrades who are now dead;\\n\",\"could any one, not disgusted with the religious ceremonials of Newgate, witness this scene without emotion?\\n\",\"Hardly any one.\\n\",\"But what are the feelings of those who take part in it?\\n\",\"I have been present at the scene not less than twenty times, and have invariably observed\\n\",\"that many of the kneeling men or boys laughed while they knelt, pinched each other, and, when they could do so without fear of being seen by any officer of the prison,\\n\",\"winked at other prisoners in derision of what was taking place; and I have frequently heard men and lads who had been of the kneeling party\\n\",\"boast to their companions after the service that they had wiped their eyes during the thanksgiving, to make the ordinary believe they had been crying.\\n\",\"Although this misapplication of religious services still went on,\\n\",\"the outside public continued to be excluded from the Newgate chapel on the day the condemned sermon was preached.\\n\",\"This very proper rule was, however, set aside on the Sunday preceding Courvoisier's execution.\\n\",\"So many applications for admission were made to the sheriffs,\\n\",\"that they reluctantly agreed to open the gallery which had formerly been occupied by strangers on these occasions.\\n\",\"Cards were issued, and to such an extent, that although the service was not to commence till half-past ten, by nine a.m.\\n\",\"all the avenues to the prison gates were blocked by ticket-holders.\\n\",\"In spite of the throng, owing to the excellent arrangements made by the sheriffs,\\n\",\"no inconvenience was suffered by the congregation, among whom were Lord Adolphus Fitz Clarence, Lord Coventry,\\n\",\"Lord Paget, Lord Bruce, several members of the House of Commons, and a few ladies.\\n\",\"Contemporary accounts give a minute description of the demeanor of the convict upon this solemn occasion.\\n\",\"He sat on a bench before the pulpit, -- the hideous condemned pew had been swept away, -- and never once raised his eyes during the service.\\n\",\"In fact his looks denoted extreme sorrow and contrition,\\n\",\"and he seemed to suffer great inward agitation when the ordinary particularly alluded to the crime for the perpetration of which he stood condemned.\\n\",\"Mr. Carver, the ordinary, appears to have addressed himself directly to Courvoisier,\\n\",\"and to have dwelt with more emphasis than good taste upon the nature of the crime, and the necessity for repentance.\\n\",\"But the chaplain admitted that the solitude of the convict's cell\\n\",\"was more appropriate for serious reflection and profitable ministration than this exciting occasion before a large and public assembly.\\n\",\"So far as I can find, Courvoisier was the last condemned criminal who was thus exhibited to a crowd of morbidly curious spectators.\\n\",\"The atrocity of the murder no doubt attracted extraordinary attention to it.\\n\",\"The crowd outside Newgate on the day of execution has already been described; but there was also a select gathering of distinguished visitors within the jail.\\n\",\"First came the sheriffs, the under-sheriffs, and several aldermen and city officials, then Lord Powerscourt and several other peers of the realm.\\n\",\"Mr. Charles Kean the tragedian was also present,\\n\",\"drawn to this terrible exhibition by the example of his father, the more celebrated Edmund Kean, who had witnessed the execution of Thistlewood\\n\",\"\\\"with a view,\\\" as he himself said, \\\"to his professional studies.\\\"\\n\",\"But there is little doubt that as executions became more rare they made more impression on the public mind.\\n\",\"Already a strong dislike to the reckless and almost indiscriminate application of the extreme penalty was apparent in all classes,\\n\",\"and the mitigation of the criminal code, for which Romilly had so strenuously labored, was daily more and more of an accomplished fact.\\n\",\"In eighteen thirty-two\\n\",\"capital punishment was abolished for forgery, except in cases of forging or altering wills or powers of attorney to transfer stock.\\n\",\"Nevertheless, after that date no person whatever was executed for this offense.\\n\",\"In the same year capital punishment was further restricted, and ceased to be the legal sentence for coining,\\n\",\"sheep or horse stealing, and stealing in a dwelling-house.\\n\",\"House-breaking, as distinguished from burglary, was similarly exempted in the following year;\\n\",\"next, the offenses of returning from transportation, stealing post-office letters, and sacrilege were no longer punishable with death.\\n\",\"In eighteen thirty-seven Lord John Russell's acts swept away a number of capital offenses, including cutting and maiming, rick-burning,\\n\",\"robbery, burglary, and arson.\\n\",\"Within a couple of years the number of persons sentenced to death in England had fallen from four hundred and thirty-eight in eighteen thirty-seven\\n\",\"to fifty-six in eighteen thirty-nine.\\n\",\"Gradually the application of capital punishment became more and more restricted, and was soon the penalty for murder alone.\\n\",\"While in London, for instance, in eighteen twenty-nine, twenty-four persons had been executed for crimes other than murder,\\n\",\"from eighteen thirty-two to eighteen forty-four not a single person had been executed in the metropolis except for this the gravest crime.\\n\",\"In eighteen thirty-seven the death penalty was practically limited to murder or attempts to murder,\\n\",\"and in eighteen forty-one this was accepted as the almost universally established rule.\\n\",\"Seven other crimes, however, were still capital by law, and so continued till the passing of the Criminal Consolidation Acts of eighteen sixty-one.\\n\",\"With the amelioration of the criminal code, other cruel concomitants of execution also disappeared.\\n\",\"In eighteen thirty-two the dissection of bodies cut down from the gallows, which had been decreed centuries previously, was abolished;\\n\",\"the most recent enactment in force was the ninth George the fourth cap. thirty-one, which directed the dissection of all bodies of executed murderers,\\n\",\"the idea being to intensify the dread of capital punishment. That such dread was not universal or deep-seated may be gathered from the fact\\n\",\"that authentic cases were known previous to the first cited act of criminals selling their own bodies to surgeons for dissection.\\n\",\"This dissection was carried out for Newgate prisoners in Surgeons' Hall, adjoining Newgate,\\n\",\"the site of the present Sessions House of the Old Bailey, and the operation was witnessed by students and a number of curious spectators.\\n\",\"Lord Ferrers' body was brought to Surgeons' Hall after execution in his own carriage and six;\\n\",\"after the post mortem had been carried out, the corpse was exposed to view in a first-floor room.\\n\",\"Pennant speaks of Surgeons' Hall as a handsome building, ornamented with Ionic pilasters, and with a double flight of steps to the first floor.\\n\",\"Beneath is a door for the admission of the bodies of murderers and other felons. There were other public dissecting rooms for criminals.\\n\",\"One was attached to Hicks' Hall, the Clerkenwell Sessions House, built out of monies provided by Sir Baptist Hicks, a wealthy alderman of the reign of James the first\\n\",\"Persons were still living in eighteen fifty-five who had witnessed dissections at Hicks' Hall, and\\n\",\"whom the horrid scene, with the additional effect of some noted criminals hanging on the walls, drove out again sick and faint,\\n\",\"as we have heard some relate, and with pale and terrified features, to get a breath of air.\\n\",\"The dissection of executed criminals was abolished soon after the discovery of the crime of burking,\\n\",\"with the idea that ignominy would no longer attach to an operation which ceased to be compulsory for the most degraded beings;\\n\",\"and that executors or persons having lawful possession of the bodies\\n\",\"of people who had died friendless, would voluntarily surrender them for the advancement of medical science.\\n\",\"Another brutal practice had nearly disappeared about the time of the abolition of dissection. This was the public exhibition of the body,\\n\",\"as was done in the case of Mrs. Phipoe, the murderess, who was executed in front of Newgate in seventeen ninety-eight,\\n\",\"and her body publicly exhibited in a place built for the purpose in the Old Bailey.\\n\",\"About this time I find that the bodies of two murderers, Clench and Mackay,\\n\",\"were publicly exposed in a stable in Little Bridge Street, near Apothecaries' Hall,\\n\",\"Surgeons' Hall being let to the lieutenancy of the county for the accommodation of the militia.\\n\",\"In eighteen eleven Williams, who murdered the Marrs in Ratcliffe Highway, having committed suicide in jail to escape hanging,\\n\",\"it was determined that a public exhibition should be made of the body through the neighborhood which had been the scene of the monster's crimes.\\n\",\"A long procession was formed, headed by constables, who cleared the way with their staves.\\n\",\"Then came the newly-formed horse patrol, with drawn cutlasses,\\n\",\"parish officers, peace officers, the high constable of the county of Middlesex on horseback, and then the body of Williams,\\n\",\"extended at full length on an inclined platform\\n\",\"erected on the cart, about four feet high at the head, and gradually sloping towards the horse, giving a full view of the body,\\n\",\"which was dressed in blue trousers and a blue-and-white striped waistcoat, but without a coat, as when found in the cell.\\n\",\"On the left side of the head the fatal mall,\\n\",\"and on the right the ripping chisel, with which the murders had been committed, were exposed to view.\\n\",\"The countenance of Williams was ghastly in the extreme, and the whole had an appearance too horrible for description.\\n\",\"The procession traversed Ratcliffe twice, halting for a quarter of an hour in front of the victims' dwelling,\\n\",\"and was accompanied throughout by \\\"an immense concourse of persons, eager to get a sight of the murderer's remains.\\n\",\"All the shops in the neighborhood were shut, and the windows and tops of the houses were crowded with spectators.\\n\",\"Hanging in chains upon the gibbet which had served for the execution,\\n\",\"or on another specially erected on some commanding spot, had fallen into disuse by eighteen thirty-two.\\n\",\"But there was an attempt to revive it at that date, when the act for dispensing with the dissection of criminals was passed.\\n\",\"A clause was inserted to the effect that\\n\",\"the bodies of all prisoners convicted of murder should either be hung in chains, or buried under the gallows on which they had been executed,\\n\",\"according to the discretion of the court before whom the prisoners might be tried.\\n\",\"The revival of this barbarous practice caused much indignation in certain quarters,\\n\",\"but it was actually tried in two provincial towns, Leicester and Durham.\\n\",\"At the first-named the exhibition nearly created a tumult, and the body was taken down and buried,\\n\",\"but not before the greatest scandal had been caused by the unseemly proceedings of the crowd that flocked to see the sight. A sort of fair was held,\\n\",\"gaming-tables were set up, cards were played under the gibbet, to the disturbance of the public peace and the annoyance of all decent people.\\n\",\"At Jarrow Stake, where the Durham murderer's body was exposed, there were similar scenes, mingled with compassion for the culprit's family,\\n\",\"and a subscription was set on foot for them then and there at the foot of the gibbet.\\n\",\"Later on, after dark, some friends of the deceased stole the body and buried it in the sand, and this was the end of hanging in chains.\\n\",\"After this a law was passed which prescribed that the bodies of all executed murderers should be buried within the walls of the jail.\\n\",\"Although these objectionable practices had disappeared,\\n\",\"there were still many shocking incidents at executions, owing to the bungling and unskilful way in which the operation was performed.\\n\",\"The rope still broke sometimes, although it was not often that the horrid scene seen at Jersey at the beginning of the century was repeated.\\n\",\"There the hangman added his weight to that of the suspended culprit,\\n\",\"and having first pulled him sideways, then got upon his shoulders, so that the rope broke.\\n\",\"To the great surprise of all who witnessed this dreadful scene,\\n\",\"the poor criminal rose straight upon his feet, with the hangman on his shoulders, and immediately loosened the rope with his fingers.\\n\",\"After this the sheriffs sent for another rope, but the spectators interfered, and the man was carried back to jail.\\n\",\"The whole case was referred to the king, and the poor wretch, whose crime had been a military one, was eventually pardoned.\\n\",\"A somewhat similar event happened at Chester not long afterwards; the ropes by which two offenders were turned off broke a few inches from their necks.\\n\",\"They were taken back to jail, and were again brought out in the afternoon, by which time fresh and stronger ropes had been procured,\\n\",\"and the sentence was properly and completely carried out.\\n\",\"Other cases might be quoted,\\n\",\"especially that of William Snow, alias Sketch, who slipped from the gallows at Exeter and fell to the ground.\\n\",\"He soon rose to his feet, and hearing the sorrowful exclamations of the populace, coolly said,\\n\",\"Good people, do not be hurried; I am not, I can wait.\\n\",\"Similar cases were not wanting as regards the executions before Newgate. Others were not less horrible, although there was no failure of apparatus.\\n\",\"Sometimes the condemned man made a hard fight for life.\\n\",\"When Charles White was executed in eighteen twenty-three for arson, he arranged a handkerchief\\n\",\"in such a way that the executioner found a difficulty in pinioning his hands.\\n\",\"White managed to keep his wrists asunder, and continued to struggle with the officials for some time. Eventually he was pinioned with a cord in the usual manner.\\n\",\"On the scaffold he made a violent attempt to loosen his bonds, and succeeded in getting his hands free.\\n\",\"Then with a strong effort he pushed off the white cap, and tried to liberate his neck from the halter, which by this time had been adjusted.\\n\",\"The hangman summoned assistance, and with help tied the cap over White's face with a handkerchief.\\n\",\"The miserable wretch during the whole of this time was struggling with the most determined violence, to the great horror of the spectators.\\n\",\"Still he resisted.\\n\",\"and having got from the falling drop to the firm part of the platform, he nearly succeeded in tearing the handkerchief from his eyes.\\n\",\"However, the ceremony went forward, and when the signal was given the drop sank.\\n\",\"The wretched man did not fall with it, but jumped on to the platform, and seizing the rope with his hands, tried to avoid strangulation.\\n\",\"The spectacle was horrible;\\n\",\"the convict was half on the platform, half hanging, and the convulsions of his body were appalling.\\n\",\"The crowd vociferously yelled their disapproval, and at length\\n\",\"the executioner forced the struggling criminal from the platform, so that the rope sustained his whole weight.\\n\",\"His face was visible to the whole crowd, and was fearful to behold.\\n\",\"Even now his sufferings were not at an end,\\n\",\"and his death was not compassed until the executioner terminated his sufferings by hanging on to his legs.\\n\",\"When Luigi Buranelli was executed in eighteen fifty-five,\\n\",\"through the improper adjustment of the rope his sufferings were prolonged for five minutes;\\n\",\"his chest heaved, and it was evident that his struggle was a fearful one.\\n\",\"A worse case still was that of William Bousfield, who, when awaiting execution for murder, about the same date,\\n\",\"had attempted to throw himself upon the fire in his condemned cell.\\n\",\"He was in consequence so weak when brought out for execution, that he had to be carried by four men,\\n\",\"two supporting his body and two his legs.\\n\",\"His wretched, abject condition, seated in a chair under the drop, was such as almost to unnerve the executioner Calcraft,\\n\",\"who bad been further upset by a letter threatening to shoot him when he appeared to perform his task.\\n\",\"Calcraft, the moment he had adjusted the cap and rope, ran down the steps, drew the bolt, and disappeared.\\n\",\"For a second or two the body hung motionless, then, with a strength that astonished the attendant officials,\\n\",\"Bousfield slowly drew himself up, and rested with his feet on the right side of the drop.\\n\",\"One of the turnkeys rushed forward and pushed him off.\\n\",\"Again the wretched creature succeeded in obtaining foothold, but this time on the left side of the drop.\\n\",\"Calcraft was forced to return, and he once more pushed Bousfield off,\\n\",\"who for the fourth time regained his foothold. Again he was repelled,\\n\",\"this time Calcraft adding his weight to the body, and the strangulation was completed.\\n\",\"It was stated in evidence before the Commission on Capital Punishment in eighteen sixty-four,\\n\",\"that Calcraft's method of hanging was very rough, much the same as if he had been hanging a dog.\\n\",\"There has never been much science in the system of carrying out the extreme penalty in this country; the \\\"finisher of the law\\\"\\n\",\"has come more by chance than fitness or special education to exercise his loathsome office.\\n\",\"Calcraft, of whom mention has just been made, was by trade a lady's shoemaker,\\n\",\"and before he took to hanging he was employed as a watchman at Reid's brewery in Liquorpond Street.\\n\",\"He was at first engaged as assistant to the executioner Tom Cheshire, but in due course rose to be chief.\\n\",\"He was always known as a mild-mannered man of simple tastes, much given to angling in the New River, and a devoted rabbit fancier.\\n\",\"He was well known in the neighborhood where he resided, and the street gamins cried \\\"Jack Ketch\\\" as he went along the street.\\n\",\"While Calcraft was in office other aspirants to fame appeared in the field.\\n\",\"One was Askern,\\n\",\"who had been a convicted prisoner at York, but who consented to act as hangman when Calcraft was engaged, and no other functionary could be obtained.\\n\",\"It was not always easy to hire a hangman.\\n\",\"There is still extant a curious petition presented to the Treasury by Ralph Griffith, Esq., high sheriff of Flintshire,\\n\",\"which sets forth that the petitioner had been at great expense by sending clerks and agents to Liverpool and Shrewsbury to hire an executioner.\\n\",\"The man to be hanged belonged to Wales, and no Welshman would do the job.\\n\",\"Traveling expenses of these agents cost fifteen pounds, and another ten pounds were spent in the hire of a Shropshire man,\\n\",\"who deserted, and was pursued, but without success.\\n\",\"Another man was hired, himself a convict, whose fees for self and wife were twelve guineas.\\n\",\"Then came the cost of the gallows,\\n\",\"four pounds, twelve shillings; and finally the funeral, cart, coffin, and other petty expenses, amounting to seven pounds ten\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section thirteen: Newgate notorieties, part one.\\n\",\"In chapter two of the present volume I brought down the record of crime to the second decade of the present century.\\n\",\"I propose now to continue the subject, and to devote a couple of chapters to criminal occurrences of a more recent date,\\n\",\"only premising that as accounts become more voluminous I shall be compelled to deal with fewer cases,\\n\",\"taking in preference those which are typical and invested with peculiar interest. It is somewhat remarkable that a marked change soon comes over the Calendar.\\n\",\"Certain crimes, those against the person especially, diminished gradually. They became less easy or remunerative.\\n\",\"Police protection was better and more effective;\\n\",\"the streets of London were well lighted, the suburbs were more populous and regularly patrolled.\\n\",\"People, too, were getting into the habit of carrying but little cash about them, and no valuables but their watches or personal jewelery.\\n\",\"Street robberies offered fewer inducements to depredators, and evil-doers were compelled to adopt other methods of preying upon their fellows.\\n\",\"This led to a rapid and marked increase in all kinds of fraud;\\n\",\"and prominent in the criminal annals of Newgate in these later years will be found numerous remarkable instances of this class of offense --\\n\",\"forgeries committed systematically, and for long periods, as in the case of Fauntleroy,\\n\",\"to cover enormous defalcations; the fabrication of deeds, wills, and false securities\\n\",\"for the purpose of misappropriating funds or feloniously obtaining cash;\\n\",\"thefts of bullion, bank-notes, specie, and gold-dust, planned with consummate ingenuity,\\n\",\"eluding the keenest vigilance, and carried out with reckless daring;\\n\",\"jewel-boxes cleverly stolen under the very noses of owners or care-takers.\\n\",\"As time passed,\\n\",\"the extraordinary extension of all commercial operations led to many entirely novel and often gigantic financial frauds.\\n\",\"The credulity of investors, the unscrupulous dishonesty of bankers,\\n\",\"the slackness of supervision over wholly irresponsible agents, produced many terrible monetary catastrophes,\\n\",\"and lodged men like Cole, Robson, and Redpath in Newgate.\\n\",\"While the varying conditions of social life thus brought about many changes in the character of offenses against property,\\n\",\"those against the person became more and more limited to the most heinous, or those which menaced or destroyed life.\\n\",\"There was no increase in murder or manslaughter; the number of such crimes remained pretty constant proportionately to population.\\n\",\"Nor did the methods by which they were perpetrated greatly vary from those in times past.\\n\",\"The causes also continued much the same. Passion, revenge, cupidity, sudden ebullitions of homicidal rage,\\n\",\"the cold-blooded, calculating atrocity born of self-interest, were still the irresistible incentives to kill.\\n\",\"The brutal ferocity of the wild beast once aroused, the same means, the same weapons were employed to do the dreadful deed,\\n\",\"the same and happily often futile precautions taken to conceal the crime.\\n\",\"Pegsworth, and Greenacre, and Daniel Good merely reproduced types that had gone before, and that have since reappeared.\\n\",\"Esther Hibner was as inhuman in her ill-usage of the parish apprentice she killed as Martha Brownrigg had been.\\n\",\"Thurtell and Hunt followed in the footsteps of Billings, Wood, and Catherine Hayes.\\n\",\"Courvoisier might have lived a century earlier.\\n\",\"Hocker was found upon the scene of his crime, irresistibly attracted thither, as was Theodore Gardelle.\\n\",\"Now and again there seemed to be a recurrence of a murder epidemic,\\n\",\"as there had been before; as in the year eighteen forty-nine, a year memorable for the Rush murders at Norwich,\\n\",\"the Gleeson Wilson murder at Liverpool, that of the Mannings in London, and of many more.\\n\",\"Men like Mobbs, the miscreant known as \\\"General Haynau\\\" on account of his blood-thirstiness, still murdered their wives;\\n\",\"or like Cannon the chimney-sweeper, who savagely killed the policeman.\\n\",\"A not altogether new crime, however, akin to murder,\\n\",\"although happily never passing beyond dastardly attempts, cropped up in these times, and was often frequently repeated within a short interval.\\n\",\"The present Queen very soon after her accession\\n\",\"became the victim of the most cowardly and unmanly outrages, and the attempted murder of the sovereign by Oxford in eighteen forty\\n\",\"was followed in the very next year by those of Francis and of Bean in two consecutive months,\\n\",\"while in eighteen fifty Her Majesty was the victim of another outrage at the hands of one Pate.\\n\",\"These crimes had their origin too often in the disordered brains of lunatics at large, like Captain Goode.\\n\",\"Their perpetrators were charged with high treason, but met with merciful clemency as irresponsible beings.\\n\",\"But at various dates treason more distinct and tangible came to the front: attempts to levy war against the State.\\n\",\"The well-known Cato Street conspiracy,\\n\",\"which grew out of disturbed social conditions after the last French war, amidst general distress,\\n\",\"and when the people were beginning to agitate for a larger share of political power, was among the earliest, and to some extent the most desperate, of these.\\n\",\"Its ringleaders, Thistlewood and the rest, were after capture honored by committal as State prisoners to the Tower,\\n\",\"but they came one and all to Newgate for trial at the Old Bailey, and remained there after conviction till they were hanged.\\n\",\"Later on, the Chartists agitated persistently for the concession embraced in the so-called People's Charter, many of which\\n\",\"are by this time actually, and by more legitimate efforts, engrafted upon our Constitution.\\n\",\"But the Chartists sought their ends by riot and rebellion, and gained only imprisonment for their pains.\\n\",\"Some five hundred in all were arrested, but as only three of these were lodged in Newgate, I shall not recur to them in my narrative.\\n\",\"The Cato Street conspiracy would have been simply ridiculous but for the recklessness of the desperadoes who planned it.\\n\",\"That some thirty or more needy men should hope to revolutionize England is a sufficient proof of the absurdity of their attempt.\\n\",\"But they proceeded in all seriousness, and would have shrunk from no outrage or atrocity in furtherance of their foolhardy enterprise.\\n\",\"The massacre of the whole of the Cabinet Ministers at one stroke was to be followed by an attack\\n\",\"upon \\\"the old man and the old woman,\\\" as they styled the Mansion House and the Bank of England.\\n\",\"At the former the \\\"Provisional Government\\\" was to be established,\\n\",\"which under Thistlewood as dictator was to rule the nation, by first handing over its capital to fire and pillage.\\n\",\"This Thistlewood had seen many vicissitudes throughout his strange, adventurous career. The son of a respectable Lincolnshire farmer,\\n\",\"he became a militia officer, and married a woman with ten thousand pounds, in which, however, she had only a life interest.\\n\",\"She died early, and Thistlewood, left to his own resources,\\n\",\"followed the profession of arms, first in the British service, and then in that of the French revolutionary Government.\\n\",\"It was during this period that he was said to have imbibed his revolutionary ideas.\\n\",\"Returning to England,\\n\",\"he found himself rich in a small landed property, which he presently sold to a man who became bankrupt before he had paid over the purchase money.\\n\",\"After this he tried farming, but failed.\\n\",\"He married again and came to London, where he soon became notorious as a reckless gambler and a politician holding the most extreme views.\\n\",\"In this way he formed the acquaintance of Watson and others, with whom he was arraigned for treasonable practices, and imprisoned.\\n\",\"On his release he sent a challenge to Lord Sidmouth, the Home Secretary, and was again arrested and imprisoned.\\n\",\"On his second release, goaded by his fancied wrongs, he began to plot a dark and dreadful revenge,\\n\",\"and thus the conspiracy in which he was the prime mover took shape, and came to a head.\\n\",\"The Government obtained early and full information of the nefarious scheme.\\n\",\"One of the conspirators, by name Edwards,\\n\",\"made a voluntary confession to Sir Herbert Taylor one morning at Windsor; after which Thistlewood and his accomplices were closely watched,\\n\",\"and measures taken to arrest them when their plans were so far developed that no doubt could remain as to their guilt.\\n\",\"The day appointed for the murder and rising actually arrived before the authorities interfered.\\n\",\"It was the day on which Lord Harrowby was to entertain his colleagues at dinner in Grosvenor Square.\\n\",\"The occasion was considered excellent by the conspirators for disposal of the whole Cabinet at one blow,\\n\",\"and it was arranged that one of their number should knock at Lord Harrowby's door on the pretense of leaving a parcel,\\n\",\"and that when it was opened the whole band should rush in.\\n\",\"While a few secured the servants, the rest were to fall upon Lord Harrowby and his guests.\\n\",\"Hand-grenades were to be thrown into the dining-room, and during the noise and confusion the assassination of the ministers was to be completed,\\n\",\"the heads of Lord Castlereagh and Lord Sidmouth being carried away in a bag.\\n\",\"Lord Harrowby's dinner-party was postponed, but the conspirators knew nothing of it,\\n\",\"and those who watched his house were further encouraged in their mistake by the arrival of many carriages,\\n\",\"bound, as it happened, to the Archbishop of York's.\\n\",\"Meanwhile the main body remained at their headquarters, a ruined stable in Cato Street,\\n\",\"Edgeware Road, completing their dispositions for assuming supreme power after the blow had been struck.\\n\",\"Here they were surprised by the police, headed by a magistrate, and supported by a strong detachment of Her Majesty's Guards.\\n\",\"The police were the first to arrive on the spot, the Guards having entered the street at the wrong end.\\n\",\"The conspirators were in a loft, approached by a ladder and a trap-door, access through which could only be obtained one by one.\\n\",\"The first constable who entered Thistlewood ran through the body with a sword, but others quickly followed,\\n\",\"the lights were extinguished, and a desperate conflict ensued.\\n\",\"The Guards, headed by Lord Adolphus Fitz Clarence, now reinforced the police, and the conspirators gave way.\\n\",\"Nine of the latter were captured, with all the war material, cutlasses, pistols, hand-grenades, and ammunition.\\n\",\"Thistlewood and fourteen more succeeded for the moment in making their escape, but most of them were subsequently taken.\\n\",\"Thistlewood was discovered next morning in a mean house in White Street, Moorfields.\\n\",\"He was in bed with his breeches on (in the pockets of which were found a number of cartridges), the black belt he had worn at Cato Street,\\n\",\"and a military sash.\\n\",\"The trial of the conspirators came on some six weeks later, at the Old Bailey.\\n\",\"Thistlewood made a long and rambling defense, the chief features of which were abuse of Lord Sidmouth, and the vilification of the informer Edwards.\\n\",\"Several of the other prisoners took the same line as regards Edwards,\\n\",\"and there seems to have been good reason for supposing that he was a greater villain than any of those arraigned.\\n\",\"He had been in a state of abject misery, and when he first joined \\\"the reformers,\\\" as the Cato Street conspirators called themselves,\\n\",\"he had neither a bed to lie upon nor a coat to his back.\\n\",\"His sudden access to means unlimited was no doubt due to the profitable role he soon adopted of Government informer and spy,\\n\",\"and it is pretty certain that for some time he served both sides;\\n\",\"on the one inveigling silly enthusiasts to join in the plot, and denouncing them on the other.\\n\",\"The employment of Edwards, and the manner in which the conspirators were allowed to commit themselves further and further before the law was set in motion against them,\\n\",\"were not altogether creditable to the Government.\\n\",\"It was asserted, not without foundation, at these trials, that Edwards repeatedly incited the associates he was betraying\\n\",\"to commit outrage, to set fire to houses, throw hand-grenades into the carriages of ministers;\\n\",\"that he was, to use Thistlewood's words, \\\"a contriver, instigator, and entrapper.\\\"\\n\",\"The Government were probably not proud of their agent, for Edwards, after the conviction had been assured, went abroad to enjoy, it was said,\\n\",\"an ample pension, so long as he did not return to England.\\n\",\"Five of the conspirators, Thistlewood, Ings, Brunt, Davidson, and Tidd, were sentenced to death,\\n\",\"and suffered in the usual way in front of Newgate, with the additional penalty of decapitation, as traitors, after they had been hanged.\\n\",\"A crowd as great as any known collected in the Old Bailey to see the ceremony, about which there were some peculiar features worth recording.\\n\",\"The reckless demeanor of all the convicts except Davidson was most marked. Thistlewood and Ings sucked oranges on the scaffold;\\n\",\"they with Brunt and Tidd scorned the ordinary's ministrations,\\n\",\"but Ings said he hoped God would be more merciful to him than men had been.\\n\",\"Ings was especially defiant. He sought to cheer Davidson, who seemed affected, crying out,\\n\",\"Come, old cock-of-wax, it will soon be over.\\n\",\"As the executioner fastened the noose, he nodded to a friend he saw in the crowd;\\n\",\"and catching sight of the coffins ranged around the gallows, he smiled at the show with contemptuous indifference.\\n\",\"He roared out snatches of a song about Death or Liberty, and just before he was turned off,\\n\",\"yelled out three cheers to the populace whom he faced.\\n\",\"He told the executioner to \\\"do it tidy,\\\" to pull it tight, and was in a state of hysterical exaltation up to the very last.\\n\",\"Davidson, who was the only one who seemed to realize his awful situation, listened patiently and with thankfulness to the chaplain,\\n\",\"and died in a manner strongly contrasting with that of his fellows.\\n\",\"After the five bodies had hung for half-an-hour, a man in a mask came forward to complete the sentence.\\n\",\"Contemporary reports state that from the skillful manner in which he performed the decapitation,\\n\",\"he was generally supposed to be a surgeon.\\n\",\"Be this as it may, the weapon used was only an ordinary axe, which rather indicates that force, not skill, was employed.\\n\",\"This axe is still in existence, and is preserved at Newgate with various other unpleasant curiosities,\\n\",\"but is only an ordinary commonplace tool.\\n\",\"These were the last executions for high treason, but not the last prisoners by many who passed through Newgate charged with sedition.\\n\",\"Attacks upon the sovereign, as I have said, became more common after the accession of the young Queen Victoria in eighteen thirty-eight.\\n\",\"It was a form of high treason not unknown in earlier reigns. In seventeen eighty-six a mad woman, Margaret Nicholson,\\n\",\"tried to stab George the third as he was alighting from his carriage at the gate of St. James's Palace.\\n\",\"She was seized before she could do any mischief,\\n\",\"and eventually lodged in Bethlehem Hospital, where she died after forty years' detention, at the advanced age of one hundred.\\n\",\"Again, a soldier, by name Hatfield, who had been wounded in the head, and discharged from the army for unsoundness of mind,\\n\",\"fired a pistol at George the third from the pit of Drury Lane theatre in eighteen hundred.\\n\",\"William the fourth was also the victim of a murderous outrage on Ascot race-course in eighteen thirty-two,\\n\",\"when John Collins, \\\"a person in the garb of a sailor, of wretched appearance, and having a wooden leg,\\\"\\n\",\"threw a stone at the king, which hit him on the forehead, but did no serious injury.\\n\",\"Collins, when charged, pleaded that he had lost his leg in action, that he had petitioned without success for a pension,\\n\",\"and that, as he was starving, he had resolved on this desperate deed,\\n\",\"feeling, as he said, that he might as well be shot or hanged as remain in such a state.\\n\",\"He was eventually sentenced to death, but the plea of lunacy was allowed, and he was confined for life.\\n\",\"None of the foregoing attempts were, however, so dastardly or determined as that made by Oxford upon our present gracious Queen\\n\",\"two years after she ascended the throne.\\n\",\"The cowardly crime was probably encouraged by the fearless and confiding manner in which the Queen,\\n\",\"secure as it seemed in the affections of her loyal people, freely appeared in public.\\n\",\"Oxford, who was only nineteen at the time his offense was committed, had been born at Birmingham,\\n\",\"but he came as a lad to London, and took service as a pot-boy to a publican.\\n\",\"From this he was promoted to barman, and as such had charge of the business in various public-houses.\\n\",\"He left his last situation in April eighteen forty, and established himself in lodgings in Lambeth,\\n\",\"after which he devoted himself to pistol practice in shooting-galleries, sometimes in Leicester Square,\\n\",\"sometimes in the Strand, or the West End.\\n\",\"His acquaintances often asked his object in this, but he kept his own counsel till the tenth June.\\n\",\"On that day Oxford was on the watch at Buckingham Palace.\\n\",\"He saw Prince Albert return there from a visit to Woolwich, and then passed on to Constitution Hill,\\n\",\"where he waited till four p.m., the time at which the Queen and Prince Consort usually took an afternoon drive.\\n\",\"About six p.m. the royal carriage, a low open vehicle drawn by four horses, ridden by postilions, left the palace.\\n\",\"Oxford, who had been pacing backwards and forwards with his hands under the lapels of his coat, saw the carriage approach.\\n\",\"He was on the right or north side of the road. Prince Albert occupied the same side of the carriage, the Queen the left.\\n\",\"As the carriage came up to him Oxford turned, put his hand into his breast, drew a pistol, and fired at the Queen.\\n\",\"The shot missed, and as the carriage passed on, Oxford drew a second pistol and fired again.\\n\",\"The Queen saw this second movement, and stooped to avoid the shot;\\n\",\"the Prince too rose to shield her with his person. Again, providentially, the bullet went wide of the mark,\\n\",\"and the royal party drove back to Clarence House, the Queen being anxious to give the first news of the outrage and of her safety to her mother,\\n\",\"the Duchess of Kent.\\n\",\"Meanwhile the pistol-shots had attracted the attention of the bystanders, of whom there was a fair collection, as usual, waiting to see the Queen pass.\\n\",\"Oxford was seized by a person named Lowe, who was at first mistaken for the assailant.\\n\",\"But Oxford at once assumed the responsibility for his crime, saying, \\\"It was I. I did it. I'll give myself up.\\n\",\"There is no occasion to use violence. I will go with you.\\n\",\"He was taken into custody, and removed first to a police cell, thence committed to Newgate, after he had been examined before the Privy Council.\\n\",\"Oxford expressed little anxiety or concern.\\n\",\"He asked more than once whether the Queen was hurt, and acknowledged that the pistols were loaded with ball.\\n\",\"A craze for notoriety, to be achieved at any cost, was the one absorbing idea in young Oxford's disordered brain.\\n\",\"After his arrest he thought only of the excitement his attempt had raised, nothing of its atrocity,\\n\",\"or of the fatal consequences which might have ensued.\\n\",\"When brought to trial he hardly realized his position,\\n\",\"but gazed with complacency around the crowded court, and eagerly inquired what persons of distinction were present.\\n\",\"He smiled continually, and when the indictment was read, burst into loud and discordant fits of laughter.\\n\",\"These antics may have been assumed to bear out the plea of insanity set up in his defense,\\n\",\"but that there was madness in his family, and that he himself was of unsound mind, could not be well denied.\\n\",\"His father, it was proved in evidence, had been at times quite mad; and Oxford's mental state might be inferred from his own proceedings.\\n\",\"Among his papers was found a curious document, purporting to be the rules of an association called\\n\",\"\\\"Young England,\\\" which Oxford had evolved out of his own inflated self-conceit, and which had never any real corporeal existence.\\n\",\"\\\"Young England\\\" was a secret society, with no aim or object.\\n\",\"Its sworn members, known only to Oxford, and all of them mere shadows,\\n\",\"were bound to provide themselves with sword, rifle, dagger, and a pair of pistols;\\n\",\"to wear a black crape mask, to obey punctually the orders of their commander-in-chief,\\n\",\"and to assume any disguise, if required to go into the country on the business of the association.\\n\",\"The officers of the society were to be known only by \\\"factitious names.\\\"\\n\",\"Thus, among the presidents were those of Gowrie, Justinian, Aloman, Colsman, Kenneth, and Godfrey;\\n\",\"Hannibal and Ethelred were on the council; Anthony, Augustus, and Frederic were among the generals;\\n\",\"Louis and Amadeus among the captains; and Hercules, Neptune, and Mars among the lieutenants of the association.\\n\",\"The various grades were distinguished by cockades and bows of different colors.\\n\",\"The society was supposed to meet regularly, and its proceedings, together with the speeches made, were duly recorded.\\n\",\"With Oxford's other papers were found letters from the secretary, written as it seemed by Oxford to himself, after the manner of Mr. Toots,\\n\",\"all of which declared their approval of the commander-in-chief.\\n\",\"One expressed pleasure that Oxford improved so much in speaking, and declared that his (Oxford's) speech the last time \\\"was beautiful.\\\"\\n\",\"This letter went on to say that a new member had been introduced by Lt. Mars, \\\"a fine, tall, gentlemanly young man,\\n\",\"and it is said that he is a military officer, but his name has not yet transpired.\\n\",\"Soon after he was introduced we were alarmed by a violent knocking at the door;\\n\",\"in an instant our faces were covered, we cocked our pistols, and with drawn swords stood waiting to receive the enemy.\\n\",\"While one stood over the fire with the papers, another stood with lighted torch to fire the house.\\n\",\"We then sent the old woman to open the door, and it proved to be some little boys who had knocked and ran away.\\n\",\"Another letter directed Oxford to attend an extraordinary meeting of \\\"Young England\\\"\\n\",\"in consequence of having received some information of an important nature from Hanover.\\n\",\"You must attend; and if your master will not give you leave, you must come in defiance of him.\\n\",\"No serious importance could be attached to these, the manifest inventions of a disordered intellect.\\n\",\"The whole of the evidence pointed so strongly towards insanity, that the jury brought in a verdict of acquittal on that ground,\\n\",\"and Oxford was ordered to be detained during Her Majesty's pleasure.\\n\",\"He went from Newgate first to Bethlehem, from which he was removed to Broadmoor on the opening of the great criminal lunatic asylum at that place.\\n\",\"He was released from Broadmoor in eighteen seventy-eight, and went abroad.\\n\",\"Within a couple of years a second attempt to assassinate the Queen was perpetrated in nearly the same spot, by a man named John Francis,\\n\",\"who was arrested in the very act, just as he had fired one shot.\\n\",\"His motives for thus imitating the dastardly crime of Oxford are shrouded in obscurity.\\n\",\"He could not plead insanity like his predecessor, and no attempt was made at his trial to prove him of unsound mind.\\n\",\"Here again probably it was partly the love of notoriety which was the incentive,\\n\",\"backed possibly with the hope that, as in a much more recent case,\\n\",\"he would be in some way provided for, he having been for some time previously in abject circumstances.\\n\",\"The deed was long premeditated, and would have been executed a day earlier had not his courage failed him at the last moment.\\n\",\"A youth named Pearson had seen him present a pistol at the Queen's carriage,\\n\",\"but draw it back again, exclaiming presently, \\\"I wish I had done it.\\\"\\n\",\"Pearson weakly allowed Francis to go off without securing his apprehension, but later he gave full information.\\n\",\"The Queen was apprised of the danger, and begged not to go abroad;\\n\",\"but she declared she would not remain a prisoner in her own palace, and next day drove out as usual in an open barouche.\\n\",\"Nothing happened till Her Majesty returned to Buckingham Palace about six p.m., when, on descending Constitution Hill,\\n\",\"with an equerry riding close on each side of her carriage, a man who had been leaning against the palace garden wall suddenly advanced,\\n\",\"leveled a pistol at the Queen, and fired. He was so close to the carriage that the smoke of his pistol enveloped the face of Colonel Wylde,\\n\",\"one of the equerries. The Queen was untouched, and at first, it is said, hardly realized the danger she had escaped.\\n\",\"Francis had already been seized by a policeman named Trounce, who saw his movement with the pistol, but too late to prevent its discharge.\\n\",\"The prisoner was conveyed without delay to the Home Office, and there examined by the Privy Council, which had been hastily summoned for the purpose.\\n\",\"On searching him the pistol was found in his pocket, the barrel still warm; also some loose powder and a bullet.\\n\",\"There was some doubt as to whether the pistol when fired was actually loaded with ball, but the jury brought in a verdict of guilty\\n\",\"of the criminal intent to kill.\\n\",\"Francis was sentenced to be hanged, decapitated, and quartered,\\n\",\"the old traitor's doom, but was spared, and subsequently transported for life.\\n\",\"The enthusiasm of the people at the Queen's escape was uproarious, and her drive next day was one long triumphal progress.\\n\",\"At the Italian Opera in the evening the audience, on the Queen's appearance, greeted her with loud cheers, and called for the national anthem.\\n\",\"This was in May eighteen forty-two.\\n\",\"Undeterred by the well-merited punishment which had overtaken Francis,\\n\",\"a third miscreant made a similar but far less serious attempt in the month of July following.\\n\",\"As the Queen was driving from Buckingham Palace to the Chapel Royal,\\n\",\"a deformed lad among the crowd was seen to present a pistol at Her Majesty's carriage,\\n\",\"in the Mall, about half-way between Buckingham and St. James's Palaces.\\n\",\"Only one person saw the movement, a lad named Dasset, who at once collared the cripple, and taking him up to two policemen,\\n\",\"charged him with the offense.\\n\",\"The policemen treated the matter as a hoax, and allowed the culprit to make off.\\n\",\"Later on, however, Dasset was himself seized and interrogated,\\n\",\"and on his information handbills were circulated, giving the exact description of the deformed youth, who had a hump-back,\\n\",\"and a long, sickly, pale face, with light hair;\\n\",\"his nose was marked with a scar or black patch, and he was altogether of a dirty appearance.\\n\",\"It happened that a lad named Bean had absconded from his father's home some weeks before,\\n\",\"whose description, as given by his father to the police,\\n\",\"exactly tallied with that of the deformed person \\\"wanted\\\" for the assault on the Queen.\\n\",\"A visit to the father's residence was followed by the arrest of the son, who had by this time returned.\\n\",\"This son, John William Bean, was fully identified by Dasset, and presently examined by the Privy Council.\\n\",\"He was eventually charged with a misdemeanor, the capital charge having been abandoned, and committed for trial.\\n\",\"Much the same motives of seeking notoriety seem to have impelled Bean, who was perfectly sane, to his rash act;\\n\",\"but it was proved that the pistol was not loaded with ball,\\n\",\"and he was only convicted of an attempt \\\"to harass, vex, and grieve the sovereign.\\n\",\"Lord Abinger sentenced him to eighteen months' imprisonment in Newgate,\\n\",\"but the place of durance was changed, to meet the existing law, to Millbank Penitentiary.\\n\",\"I shall mention briefly one more case, in which, however, there was no murderous intent, before I pass on to other crimes.\\n\",\"On June eighteen fifty the Queen was once more subjected to cowardly outrage, the offender being a Mr. Pate, a gentleman by birth,\\n\",\"who had borne the Queen's commission, first as cornet, and then lieutenant, in the tenth Hussars.\\n\",\"Pate was said to be an eccentric person, given to strange acts and antics, such as mixing whiskey and camphor with his morning bath-water,\\n\",\"and walking for choice through prickly gorse bushes.\\n\",\"He always kept the blinds down at his chambers in Jermyn Street; and as the St. James's clock chimed quarter-past three,\\n\",\"invariably went out in a cab, for which he always paid the same fare,\\n\",\"nine shillings, all in shillings, and no other coin.\\n\",\"But this was not sufficient to constitute lunacy, nor was his plea of \\\"momentary uncontrollable impulse\\\"\\n\",\"deemed valid as any palliation of his offense.\\n\",\"That offense was a brutal assault upon Her Majesty, whom he struck in the face with a small stick just as she was leaving Cambridge House.\\n\",\"The blow crushed the bonnet and bruised the forehead of the Queen, who was happily not otherwise injured.\\n\",\"Pate was found guilty, and sentenced to seven years' transportation, the judge, Baron Alderson, abstaining from inflicting the penalty of whipping,\\n\",\"which was authorized by a recent act, on account of Mr. Pate's family and position in life.\\n\",\"I have already remarked that as violence was more and more eliminated from crimes against the person,\\n\",\"frauds indicating great boldness, extensive design, and ingenuity became more prevalent.\\n\",\"The increase of bank forgeries, and its cause, I referred to in a previous chapter.\\n\",\"At one session of the Old Bailey, in eighteen twenty-one, no less than thirty-five true bills were found for passing forged notes.\\n\",\"But there were other notorious cases of forgery.\\n\",\"That of Fauntleroy the banker, in eighteen twenty-four,\\n\",\"caused much excitement at the time on account of the magnitude of the fraud, and the seeming probity of the culprit.\\n\",\"Mr. Fauntleroy was a member of a banking firm, which his father had established in conjunction with a gentleman of the name of Marsh, and others.\\n\",\"He had entered the house as clerk in eighteen hundred;\\n\",\"in eighteen oh seven, and when only twenty-two, he succeeded to his father's share in the business.\\n\",\"According to Fauntleroy's own case, he found at once that the firm was heavily involved,\\n\",\"through advances made to various builders, and that it could only maintain its credit by wholesale discounting.\\n\",\"Its embarrassments were greatly increased by the bankruptcy of two of its clients in the building trade,\\n\",\"and the bank became liable for a sum of one hundred seventy thousand pounds.\\n\",\"New liabilities were incurred to the extent of one hundred thousand pounds by more failures, and in eighteen nineteen,\\n\",\"by the death of one of the partners, a large sum in cash had to be withdrawn from the bank to pay his heirs.\\n\",\"\\\"During these numerous and trying difficulties\\\" -- it is Mr. Fauntleroy who speaks --\\n\",\"the house was nearly without resources, and the whole burthen of management falling on me, I sought resources where I could;\\n\",\"in other words, he forged powers of attorney, and proceeded to realize securities lodged in his bank under various names.\\n\",\"Among the prisoner's private papers, one was found giving full details of the stock he had feloniously sold out,\\n\",\"the sum total amounting to some one hundred seventy thousand pounds, with a declaration in his own handwriting to the following effect.\\n\",\"In order to keep up the credit of our house, I have forged powers of attorney for the above sums and parties,\\n\",\"and sold out to the amount here stated, and without the knowledge of my partners.\\n\",\"I kept up the payments of the dividends, but made no entries of such payments in my books.\\n\",\"The bank began first to refuse our acceptances, and to destroy the credit of our house; the bank shall smart for it.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section fourteen: Newgate notorieties, part one\\n\",\"Many stories were in circulation at the time of Fauntleroy's trial with regard to his forgeries. It was said that he had by means of them\\n\",\"sold out so large an amount of stock, that he paid sixteen thousand pounds a year in dividends to escape detection.\\n\",\"Once he ran a narrow risk of being found out.\\n\",\"A lady in the country, who had thirteen thousand pounds in the stocks, desired her London agent to sell them out.\\n\",\"He went to the bank, and found that no stocks stood in her name. He called at once upon Fauntleroy, his client's bankers, for an explanation,\\n\",\"and was told by Mr. Fauntleroy that the lady had desired him to sell out, \\\"which I have done,\\\" added the fraudulent banker, \\\"and here are the proceeds,\\\"\\n\",\"whereupon he produced exchequer bills to the amount.\\n\",\"Nothing more was heard of the affair, although the lady declared that she had never instructed Fauntleroy to sell.\\n\",\"On another occasion the banker forged a gentleman's name while the latter was sitting with him in his private room,\\n\",\"and took the instrument out to a clerk with the ink not dry.\\n\",\"It must be added that the Bank of England, on discovering the forgeries,\\n\",\"replaced the stock in the names of the original holders, who might otherwise have been completely ruined.\\n\",\"A newspaper report of the time describes Fauntleroy as a well-made man of middle stature.\\n\",\"His hair, though gray, was thick, and lay smooth over his forehead.\\n\",\"His countenance had an expression of most subdued resignation.\\n\",\"The impression which his appearance altogether was calculated to make was that of the profoundest commiseration.\\n\",\"The crime, long carried on without detection, was first discovered in eighteen twenty,\\n\",\"when it was found that a sum of ten thousand pounds, standing in the name of three trustees, of whom Fauntleroy was one,\\n\",\"had been sold out under a forged power of attorney.\\n\",\"Further investigations brought other similar frauds to light,\\n\",\"and fixed the whole sum misappropriated at one hundred seventy thousand pounds, the first forgery dating back to eighteen fourteen.\\n\",\"A run upon the bank immediately followed, which was only met by a suspension of payment and the closing of its doors.\\n\",\"Meanwhile public gossip was busy with Fauntleroy's name,\\n\",\"and it was openly stated in the press and in conversation that the proceeds of these frauds had been squandered in chambering, gambling, and debauchery.\\n\",\"Fauntleroy was scouted as a licentious libertine, a deep and determined gamester, a spendthrift whose extravagance knew no bounds.\\n\",\"The veil was lifted from his private life, and he was accused of persistent immorality.\\n\",\"In his defense\\n\",\"he sought to rebut these charges, which indeed were never clearly made out, and it is pretty certain that his own account of the causes which led him into dishonesty\\n\",\"was substantially true\\n\",\"He called many witnesses, seventeen in all, to speak of him as they had found him; and these, all respectable city merchants and business men,\\n\",\"declared that they had hitherto formed a high opinion of his honor, integrity, and goodness of disposition,\\n\",\"deeming him the last person capable of a dishonorable action.\\n\",\"These arguments availed little with the jury, who after a short deliberation found Fauntleroy guilty, and he was sentenced to death.\\n\",\"Every endeavor was used, however, to obtain a commutation of sentence. His case was twice argued before the judges on points of law,\\n\",\"but the result in both cases was unfavorable.\\n\",\"Appeals were made to the Home Secretary, and all possible political interest brought to bear, but without success.\\n\",\"Fauntleroy meanwhile lay in Newgate, not herded with other condemned prisoners, as the custom was,\\n\",\"but in a separate chamber, that belonging to one of the warders of the jail.\\n\",\"I find in the chaplain's journal, under date eighteen twenty-four, various entries relative to this prisoner.\\n\",\"Visited Mr. Fauntleroy. My application for books for him not having been attended, I had no prayer-book to give him.\\n\",\"Visited Mr. Fauntleroy. The sheriffs have very kindly permitted him to remain in the turnkey's room where he was originally placed; nor can I omit expressing a hope\\n\",\"that this may prove the beginning of a better system of confinement, and that every description of persons who may be unfortunately under sentence of death\\n\",\"will no longer be herded indiscriminately together.\\n\",\"The kindliness of the city authorities to Fauntleroy was not limited to the assignment of a separate place of durance.\\n\",\"As I have already said, they took the chaplain seriously to task for the bad taste shown in the condemned sermon preached before Fauntleroy.\\n\",\"This was on the text,\\n\",\"Wherefore let him that thinketh he standeth take heed lest he fall,\\\" and was full of the most pointed allusions to the culprit.\\n\",\"Fauntleroy constantly groaned aloud while the sermon proceeded, and contemporary reports declared\\n\",\"that he appeared to feel deeply the force of the reverend gentleman's observations, especially when the chaplain spoke of\\n\",\"the great magnitude of our erring brother's offense, one of the most dangerous description in a trading community.\\n\",\"The sermon ended with an appeal to the dying man, exhorting him to penitence.\\n\",\"This \\\"personality,\\\" and it can be called by no other name, is carefully excluded from prison pulpit utterances on the eve of an execution.\\n\",\"A very curious and, in its way, amusing circumstance in connection with this case was the offer of a certain Italian,\\n\",\"Edmund Angelini, to take Fauntleroy's place.\\n\",\"Angelini wrote to the Lord Mayor to this effect,\\n\",\"urging that Fauntleroy was a father, a citizen: \\\"his life is useful, mine a burthen, to the State.\\\"\\n\",\"He was summoned to the Mansion House, where he repeated his request, crying, \\\"Accordez moi cette gr\\u00e2ce,\\\" with much urgency.\\n\",\"There were doubts of his sanity.\\n\",\"He wrote afterwards to the effect that the moment he had offered himself, an unknown assassin came to aim a blow at him.\\n\",\"Let this monster give his name; I am ready to fight him. I am still determined to put myself in the place of Mr. Fauntleroy.\\n\",\"If the law of this country can receive such a sacrifice, my death will render to heaven an innocent man, and to earth a repentant sinner.\\n\",\"Fauntleroy was not entirely dependent upon the ordinary for ghostly counsel in his extremity.\\n\",\"He was also attended by the Rev. Mr. Springett and the indefatigable Mr. Baker, whose name has already been mentioned.\\n\",\"When led out on the morning of his execution, these two last-named gentlemen each took hold of one of his arms, and so accompanied him to the scaffold.\\n\",\"The concourse in front of Newgate was enormous, but much sympathy was evinced for this unfortunate victim to human weakness and ruthless laws.\\n\",\"A report was, moreover, widely circulated, and the impression long prevailed, that he actually escaped death.\\n\",\"It was said that strangulation had been prevented by the insertion of a silver tube in his wind-pipe,\\n\",\"and that after hanging for the regulated time he was taken down and easily restored to consciousness.\\n\",\"Afterwards, according to the common rumor, he went abroad and lived there for many years; but the story is not only wholly unsubstantiated,\\n\",\"but there is good evidence to show that the body after execution was handed over to his friends and interred privately.\\n\",\"Some years were still to elapse before capital punishment ceased to be the penalty for forgery, and in the interval\\n\",\"several persons were sentenced to or suffered death for this crime.\\n\",\"There were two notable capital convictions for forgery in eighteen twenty-eight.\\n\",\"One was that of Captain Montgomery, who assumed the aliases of Colonel Wallace and Colonel Morgan.\\n\",\"His offense was uttering forged notes, and there was strong suspicion that he had long subsisted entirely by this fraud.\\n\",\"The act for which he was taken into custody was the payment of a forged ten-pound note for half-a-dozen silver spoons.\\n\",\"Montgomery was an adept at forgery. He had gone wrong early. Although born of respectable parents, and gazetted to a commission in the army,\\n\",\"he soon left the service and betook himself to dishonest ways.\\n\",\"His first forgery was the marvelous imitation of the signature of the Hon. Mr. Neville, M.P., who wrote an extremely cramped and curious hand.\\n\",\"He was not prosecuted for this fraud on account of the respectability of his family, and soon after this escape\\n\",\"he came to London, where he practiced as a professional swindler and cheat.\\n\",\"For a long time justice did not overtake him for any criminal offense, but he was frequently in Newgate and in the King's Bench for debt.\\n\",\"After three years' confinement in the latter prison he passed himself off as his brother, Colonel Montgomery,\\n\",\"a distinguished officer, and would have married an heiress had not the imposture been discovered in time.\\n\",\"He then took to forging bank-notes, and was arrested as I have described above.\\n\",\"Montgomery was duly sentenced to death, but he preferred suicide to the gallows. After sentence his demeanor was serious yet firm.\\n\",\"The night previous to that fixed for his execution he wrote several letters, one of them being to Edward Gibbon Wakefield, a fellow-prisoner,\\n\",\"and listened attentively to the ordinary, who read him the well-known address written and delivered by Dr. Dodd previous to his own execution for forgery.\\n\",\"But next morning he was found dead in his cell.\\n\",\"In one corner after much search a phial was found labeled \\\"Prussic acid,\\\"\\n\",\"which it was asserted he had been in the habit of carrying about his person ever since he had taken to passing forged notes, as an antidote against disgrace.\\n\",\"This phial he had managed to retain in his possession in spite of the frequent searches to which he was subjected in Newgate.\\n\",\"The second conviction for forgery in eighteen twenty-eight was that of the Quaker Joseph Hunton, a man of previously the highest repute in the city of London.\\n\",\"He had prospered in early life, was a slop-seller on a large scale at Bury St. Edmunds, and a sugar-baker in the metropolis.\\n\",\"He married a lady also belonging to the Society of Friends, who brought him a large fortune, which, and his own money, he put into a city firm,\\n\",\"that of Dickson and Co.\\n\",\"He soon, however, became deeply involved in Stock Exchange speculations,\\n\",\"and losing heavily, to meet the claims upon him he put out a number of forged bills of exchange or acceptances,\\n\",\"to which the signature of one Wilkins of Abingdon was found to be forged.\\n\",\"Hunton tried to fly the country on the detection of the fraud, but was arrested at Plymouth just as he was on the point of leaving England in the New York packet.\\n\",\"He had gone on board in his Quaker dress, but when captured was found in a light-green frock,\\n\",\"a pair of light gray pantaloons, a black stock and a foraging cap.\\n\",\"Hunton was put upon his trial at the Old Bailey, and in due course sentenced to death.\\n\",\"His defense was that the forged acceptances would have been met on coming to maturity, and that he had no real desire to defraud.\\n\",\"Hunton accepted his sentence with great resignation, although he protested against the inhumanity of the laws which condemned him to death.\\n\",\"On entering Newgate he said,\\n\",\"I wish after this day to have communication with nobody; let me take leave of my wife, and family, and friends. I have already suffered an execution;\\n\",\"my heart has undergone that horrible penalty.\\n\",\"He was, however, visited by and received his wife, and several members of the Society of Friends.\\n\",\"Two elders of the meeting sat up with him in the press yard the whole of the night previous to execution, and a third,\\n\",\"Mr. Sparks Moline, came to attend him to the scaffold.\\n\",\"He met his death with unshaken firmness, only entreating that a certain blue handkerchief,\\n\",\"to which he seemed fondly attached, should be used to bandage his eyes, which request was readily granted.\\n\",\"Hunton's execution no doubt aroused public attention to the cruelty and futility of the capital law against forgery.\\n\",\"A society which had already been started against capital punishment\\n\",\"devoted its efforts first to a mitigation of the forgery statute, but could not immediately accomplish much.\\n\",\"In eighteen twenty-nine the gallows claimed two more victims for this offense.\\n\",\"One was Richard Gifford, a well-educated youth who had been at Christ's Hospital, and afterwards in the National Debt Office.\\n\",\"Unfortunately he took to drink, lost his appointment, and fell from bad to worse.\\n\",\"Suddenly, after being at the lowest depths, he emerged, and was found by his friends living in comfort in the Waterloo Road.\\n\",\"His funds, which he pretended came to him with a rich wife, were really the proceeds of frauds upon the Bank of England.\\n\",\"He forged the names of people who held stock on the Bank books, and got the value of the stock;\\n\",\"he also forged dividend receipts and got the dividends. He was only six-and-twenty when he was hanged.\\n\",\"The other and the last criminal executed for forgery in this country was one Maynard, who was convicted of a fraud upon the Custom House.\\n\",\"In conjunction with two others, one of whom was a clerk in the Custom House,\\n\",\"and had access to the official records, he forged a warrant for one thousand nine-hundred seventy-three pounds and was paid the money by the comptroller general.\\n\",\"Maynard was convicted of uttering the forged document, Jones of being an accessory; the third prisoner was acquitted.\\n\",\"Maynard was the only one who suffered death.\\n\",\"This was on the last day of eighteen twenty-nine. In the following session Sir Robert Peel brought in a bill to consolidate the acts relating to forgery.\\n\",\"Upon the third reading of this bill Sir James Macintosh moved as an amendment that capital punishment should be abolished for all crimes of forgery,\\n\",\"except the forgery of wills and powers of attorney.\\n\",\"This amendment was strongly supported outside the House, and a petition in favor of its passing was presented,\\n\",\"signed by more than a thousand members of banking firms.\\n\",\"Macintosh's amendment was carried in the Commons, but the new law did not pass the Lords, who re-enacted the capital penalty.\\n\",\"Still no sentence of death was carried out for the offense, and in eighteen thirty-two\\n\",\"the Attorney-General introduced a bill to abolish capital punishment entirely for forgery.\\n\",\"It passed the Commons, but opposition was again encountered in the Lords.\\n\",\"This time they sent back the bill, re-enacting only the two penalties for will forging and the forging of powers of attorney;\\n\",\"in other words, they had advanced in eighteen thirty-two to the point at which the Lower House had arrived in eighteen thirty.\\n\",\"There were at the moment in Newgate six convicts sentenced to death for forging wills.\\n\",\"The question was whether the Government would dare to take their lives at the bidding of the House of Lords,\\n\",\"and in defiance of the vote of the assembly which more accurately represented public opinion. It was indeed announced that their fate was sealed;\\n\",\"but Mr. Joseph Hume pressed the Government hard, and obtained an assurance that the men should not be executed.\\n\",\"The new Forgery Act with the Lords' amendment passed into law, but the latter proved perfectly harmless,\\n\",\"and no person ever after suffered death for any variety of this crime.\\n\",\"I will include in this part of the present chapter almost one of the last instances of a crime which in time past\\n\",\"had invariably been visited with the death penalty, and which was of a distinctly fraudulent nature.\\n\",\"The abduction of Miss Turner by the brothers Wakefield bore a strong resemblance to the carrying off and forcible marrying of heiresses as already described.\\n\",\"Miss Turner was a school-girl of barely fifteen,\\n\",\"only child of a gentleman of large property in Cheshire, of which county he was actually high sheriff at the time of his daughter's abduction.\\n\",\"The elder brother,\\n\",\"Edward Gibbon Wakefield, the prime mover in the abduction, was a barrister, not exactly briefless, but without a large practice.\\n\",\"He had, it was said, a good private income, and was already a widower with two children at the time of his committing the offense for which he was subsequently tried.\\n\",\"He had eloped with his first wife from school.\\n\",\"While on a visit to Macclesfield he heard by chance of Miss Turner, and that she would inherit all her father's possessions.\\n\",\"He thereupon conceived an idea of carrying her off and marrying her willy nilly at Gretna Green.\\n\",\"The two brothers started at once for Liverpool, where Miss Turner was at school with a Mrs. Daulby.\\n\",\"At Manchester, en route, a traveling carriage was purchased, which was driven up to Mrs. Daulby's door at eight in the morning,\\n\",\"and a servant hurriedly alighted from it, bearing a letter for Miss Turner.\\n\",\"This purported to be from the medical attendant of Mr. Turner, written at Shrigley, Mr. Turner's place of residence;\\n\",\"and it stated that Mrs. Turner had been stricken with paralysis.\\n\",\"She was not in immediate danger, but she wished to see her daughter, \\\"as it was possible she might soon become incapable of recognizing any one.\\\"\\n\",\"Miss Turner, greatly agitated, accompanied the messenger who had brought this news, a disguised servant of Wakefield's,\\n\",\"who had plausibly explained that he had only recently been engaged at Shrigley.\\n\",\"The road taken was via Manchester, where the servant said a Dr. Hull was to be picked up to go on with them to Shrigley.\\n\",\"At Manchester, however, the carriage stopped at the Albion Hotel.\\n\",\"Miss Turner was shown into a private room, where Mr. Wakefield soon presented himself.\\n\",\"Miss Turner, not knowing him, would have left the room, but he said he came from her father, and she remained.\\n\",\"Wakefield, in reply to her inquiries, satisfied her that her mother was well, and that the real reason for summoning her from school\\n\",\"was the state of her father's affairs.\\n\",\"Mr. Turner was on the verge of bankruptcy. He was at that moment at Kendal, and wished her to join him there at once.\\n\",\"Miss Turner consented to go on, and they traveled night and day towards the north.\\n\",\"But at Kendal there was no Mr. Turner, and, to allay Miss Turner's growing anxiety,\\n\",\"Wakefield found it necessary to become more explicit regarding her father's affairs.\\n\",\"He now pretended that Mr. Turner was also on his way to the border, pursued by sheriffs' officers.\\n\",\"The fact was, Wakefield went on to say, an uncle of his had advanced Mr. Turner sixty thousand pounds, which had temporarily staved off ruin.\\n\",\"But another bank had since failed, and nothing could save Mr. Turner but the transfer of some property to Miss Turner, and its settlement on her,\\n\",\"so that it might become the exclusive property of her husband, \\\"whoever he might be.\\\"\\n\",\"Wakefield added that it had been suggested he should marry Miss Turner, but that he had laughed at the idea.\\n\",\"Wakefield's uncle took the matter more seriously, and declared that unless the marriage came off Mr. Turner must be sold up.\\n\",\"Miss Turner, thus pressed, consented to go on to Gretna Green.\\n\",\"Passing through Carlisle, she was told that Mr. Turner was in the town, but could not show himself.\\n\",\"Nothing could release him from his trouble but the arrival of the marriage certificate from Gretna Green.\\n\",\"Filial affection rose superior to all scruples, and Miss Turner, having crossed the border, was married to Wakefield\\n\",\"by the blacksmith in the usual way.\\n\",\"Returning to Carlisle, she now heard that her father had been set free, and had gone home to Shrigley, whither they were to follow him.\\n\",\"They set out, but at Leeds Wakefield found himself called suddenly to Paris;\\n\",\"the other brother was accordingly sent on a pretended mission to Shrigley to bring Mr. Turner on to London, whither Wakefield and Miss Turner also proceeded.\\n\",\"On arrival, Wakefield pretended that they had missed Mr. Turner, and must follow him over to France.\\n\",\"The strangely-married couple thereupon pressed on to Dover, and crossed over to Calais.\\n\",\"The fact of the abduction did not transpire for some days.\\n\",\"Then Mrs. Daulby learnt that Miss Turner had not arrived at Shrigley, but that she had gone to Manchester.\\n\",\"Friends went in pursuit and traced her to Huddersfield and further north.\\n\",\"The terror and dismay of her parents were soon intensified by the receipt of a letter from Wakefield, at Carlisle, announcing the marriage.\\n\",\"Mr. Turner at once set off for London, where he sought the assistance of the police,\\n\",\"and presently ascertained that Wakefield had gone to the Continent with his involuntary bride.\\n\",\"An uncle of Miss Wakefield's, accompanied by his solicitor and a Bow Street runner, at once went in pursuit.\\n\",\"Meanwhile, a second letter turned up from Wakefield at Calais, in which he assured Mrs. Turner that Miss Turner was fondly attached to him,\\n\",\"and went on to say, \\\"I do assure you, madam, that it shall be the anxious endeavor of my life to promote her happiness by every means in my power.\\\"\\n\",\"The game, however, was nearly up. Miss Turner was met by her uncle on Calais pier as she was walking with Wakefield.\\n\",\"The uncle claimed her. The husband resisted.\\n\",\"Monsieur le Maire was appealed to, and decided to leave it to the young lady, who at once abandoned Wakefield.\\n\",\"As he still urged his rights over his wife, Miss Turner cried out in protest, \\\"No, no, I am not his wife;\\n\",\"he carried me away by fraud and stratagem, and forced me to accompany him to Gretna Green\\n\",\"By the same forcible means I was compelled to quit England, and to trust myself to the protection of this person,\\n\",\"whom I never saw until I was taken from Liverpool, and never want to see again.\\n\",\"On this Wakefield gave in.\\n\",\"He surrendered the bride who had never been a wife, and she returned to England with her friends, while Wakefield went on alone to Paris.\\n\",\"Mr. William Wakefield was arrested at Dover, conveyed to Chester, and committed to Lancaster Jail for trial at the next assizes,\\n\",\"when indictments were preferred against both brothers \\\"for having carried away Ellen Turner, spinster,\\n\",\"then a maid and heir apparent unto her father, for the sake of the lucre of her substance; and for having afterwards unlawfully and against her will\\n\",\"married the said Ellen Turner.\\n\",\"They were tried in March of the following year, Edward Wakefield having apparently given himself up,\\n\",\"and found guilty, remaining in Lancaster Jail for a couple of months, when they were brought up to the court of King's Bench for judgment.\\n\",\"The prosecution pressed for a severe penalty. Edward Wakefield pleaded that his trial had already cost him three thousand pounds.\\n\",\"Mr. Justice Bayley, in summing up,\\n\",\"spoke severely of the gross deception practiced upon an innocent girl, and sentenced the brothers each to three years' imprisonment,\\n\",\"William Wakefield in Lancaster Jail, and Edward Gibbon Wakefield in Newgate, which sentences were duly enforced.\\n\",\"The marriage was annulled by an Act of Parliament, although Wakefield petitioned against it,\\n\",\"and was brought from Newgate, at his own request, to oppose the second reading of the bill.\\n\",\"He also wrote and published a pamphlet from the jail to show that Miss Turner had been a consenting party to the marriage, and was really his wife.\\n\",\"Neither his address nor his pamphlet availed much, for the bill for the divorce passed both Houses.\\n\",\"That Mr. Wakefield was a shrewd critic and close observer of all that went on in the Newgate of those days,\\n\",\"will be admitted by those who have read his book on \\\"the punishment of death,\\n\",\"which was based on his jail experiences, and of which I have availed myself in the last chapter.\\n\",\"After their release from Lancaster and Newgate respectively, both Wakefields went abroad.\\n\",\"Mr. W. Wakefield served in a continental army, and rose to the rank of colonel,\\n\",\"after which he went to New Zealand, and held an important post in that colony.\\n\",\"Mr. E. G. Wakefield took part in the scheme for the colonization of North Australia, and for some years resided in that colony.\\n\",\"Miss Turner subsequently married Mr. Legh of Lym Hall, Cheshire.\\n\",\"It must not be imagined that although highway robbery was now nearly extinct, and felonious outrages in the streets were rare,\\n\",\"that thieves or depredators were idle or entirely unsuccessful.\\n\",\"Bigger \\\"jobs\\\" than ever were planned and attempted,\\n\",\"as in the burglary at Lambeth Palace, when the thieves were fortunately disappointed, the archbishop having, before he left town,\\n\",\"sent his plate-chests, eight in number, to the silversmith's for greater security.\\n\",\"The jewelers were always a favorite prey of the London thieves.\\n\",\"Shops were broken into, as when that of Grimaldi and Johnson, in the Strand, was robbed of watches to the value of six thousand pounds.\\n\",\"Where robbery with violence was intended, the perpetrators had now to adopt various shifts and contrivances to secure their victim.\\n\",\"No more curious instance of this ever occurred than the assault made by one Howard upon a Mr. Mullay, with intent to rob him.\\n\",\"The latter had advertised, offering a sum of one thousand pounds to anyone who would introduce him to some mercantile equipment.\\n\",\"Howard replied, desiring Mr. Mullay to call upon him in a house in Red Lion Square.\\n\",\"Mr. Mullay went, and a second interview was agreed upon, when a third person, Mr. Owen,\\n\",\"through whose interest an appointment under Government was to be obtained for Mullay, would be present.\\n\",\"Mr. Mullay called again, taking with him five hundred pounds in cash. Howard discovered this, and his manner was very suspicious;\\n\",\"there were weapons in the room -- a long knife, a heavy trap-ball bat, and a poker.\\n\",\"Mr. Mullay became alarmed, and as Mr. Owen did not appear, withdrew;\\n\",\"Howard, strange to say, making no attempt to detain him; probably because Mullay promised to return a few days later, and to bring more money.\\n\",\"On this renewed visit Mr. Owen was still absent, and Mr. Mullay agreed to write him a note from a copy Howard gave him.\\n\",\"While thus engaged, Howard thrust the poker into the fire.\\n\",\"Mullay protested, and then Howard, under the influence of ungovernable rage, as it seemed, jumped up,\\n\",\"locked the door, and attacked Mullay violently with the trap-ball bat and knife.\\n\",\"Mullay defended himself, and managed to break the knife, but not before he had cut himself severely.\\n\",\"A life and death struggle ensued. Mullay cried \\\"Murder!\\\"\\n\",\"Howard swore he would finish him, but proved the weaker of the two, and Mullay got him down on the floor.\\n\",\"By this time the neighbors were aroused, and several people came to the scene of the affray.\\n\",\"Howard was secured, given into custody, and committed to Newgate.\\n\",\"The defense he set up was, that Mullay had used epithets towards him while they were negotiating a business matter,\\n\",\"and that, being an irritable temper, he had struck Mullay, after which a violent scuffle took place.\\n\",\"It was, however, proved that Howard was in needy circumstances, and that his proposals to Mr. Mullay could only have originated in a desire to rob him.\\n\",\"He was found guilty of an assault with intent, and sentenced to transportation for fourteen years.\\n\",\"A more complicated and altogether most extraordinary case of assault, with intent to extort money, occurred a few years later.\\n\",\"It was perpetrated upon a respectable country solicitor,\\n\",\"Mr. Gee, of Bishop Stortford, who administered the estate of a certain Mr. Canning, deceased.\\n\",\"This Mr. Canning had left his widow a life interest in two thousand pounds so long as she remained unmarried.\\n\",\"The money went after her to her children.\\n\",\"Mr. Gee had invested one thousand two hundred pounds of this, and was seeking how best to place the remaining eight hundred pounds,\\n\",\"when he was asked to meet a Mr. Heath in London with regard to the sale of certain lands at Bishop Stortford.\\n\",\"An appointment was made and kept by Mr. Gee,\\n\",\"but on arrival he was met by a young sailor with a letter which begged Mr. Gee to go to Heath's house, as the latter was not well.\\n\",\"Mr. Gee went in the coach sent for him, and alighted at twenty-seven, York Street, West, Commercial Road.\\n\",\"The coach immediately drove off; Mr. Gee entered the house, asked for Mr. Heath, was told he would find him in the back kitchen at breakfast.\\n\",\"He was about to descend the stairs when three persons, one of them the young sailor,\\n\",\"fell upon him, and in spite of his resistance carried him into a sort of den partitioned off at the end of the back kitchen.\\n\",\"There he was seated on some sort of wooden bench and securely fastened.\\n\",\"\\\"A chain fixed to staples at his back passed round his chest under his arms, and was padlocked on the left side;\\\"\\n\",\"his feet were bound with cords and made fast to rings in the floor. Thus manacled, one of the party, who pretended to be Mrs. Canning's brother,\\n\",\"addressed him, insisting that he should forthwith sign a cheque for the eight hundred pounds of the Canning inheritance still uninvested,\\n\",\"and write an order sufficient to secure the surrender of the other one thousand two hundred pounds.\\n\",\"Mr. Gee at first stoutly refused.\\n\",\"Then, as they warned him that he would be kept a prisoner in total darkness in this horrible den until he agreed to their demands,\\n\",\"he gave in, and signed the documents thus illegally extorted.\\n\",\"One was a cheque for eight hundred pounds on his bankers, the other an order to Mr. Bell of Newport, Essex, requesting the surrender of a deed.\\n\",\"His captors having thus succeeded in their designs, left him, no doubt to realize the money.\\n\",\"The door of his place of durance stood open, and Mr. Gee began to consider whether he might not escape.\\n\",\"For three hours he struggled without success with his bonds,\\n\",\"but at length managed to wriggle out of the chain which confined his body, and soon loosened the ropes round his feet.\\n\",\"Thus free, he eluded the vigilance of two of the party, who were at dinner in the front kitchen,\\n\",\"and creeping out into the garden at the back, climbed the wall, and got into the street.\\n\",\"His first act was to send a messenger to stop the cheque and the order to Mr. Bell, his next to seek the help of the police.\\n\",\"Two Bow Street runners were dispatched to the house in York Street, which had evidently been taken on purpose for the outrage.\\n\",\"There was no furniture in the place, and the den in the kitchen had been recently and specially constructed of boards of immense strength and thickness.\\n\",\"It was a cell five feet by three, within another, the intervening being filled with rammed earth to deaden the sound.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section fifteen: Newgate notorieties, part three\\n\",\"On the arrival of the police the house was empty.\\n\",\"The two men on guard had gone off immediately after Mr. Gee had escaped, but they returned later in the day, and were apprehended.\\n\",\"Inquiries set on foot also elicited the suspicion that the person who had represented Mrs. Canning's brother\\n\",\"was a blind man named Edwards, who had taken this house in York Street, and who was known to be a frequent visitor at Mrs. Canning's.\\n\",\"A watch was set on him at her house, where he was soon afterwards arrested.\\n\",\"Edwards, whom Mr. Gee easily identified with the others, at once admitted that he was the prime mover of the conspiracy.\\n\",\"He had sought by all legal means to obtain possession of the two thousand pounds, but had failed, and had had recourse to more violent means.\\n\",\"It turned out that he was really married to Mrs. Canning,\\n\",\"both having been recognized by the clergyman who had performed the ceremony, and the assault had been committed to secure the money\\n\",\"which Mrs. Canning had lost by remarriage.\\n\",\"All three men were committed for trial, although Edwards wished to exculpate the others as having only acted under his order.\\n\",\"At the trial the indictment charging them with felony could not be sustained, but they were found guilty of conspiracy and assault.\\n\",\"Edwards was sentenced to two years' imprisonment in Newgate,\\n\",\"Weedon and Lecasser to twelve and six months respectively in Coldbath Fields.\\n\",\"At no period could thieves in London or elsewhere have prospered had they been unable to dispose of their ill-gotten goods.\\n\",\"The trade of fence, or receiver, therefore, is very nearly as old as the crimes which it so obviously fostered.\\n\",\"One of the most notorious, and for a time most successful practitioners in this illicit trade, passed through Newgate in eighteen thirty-one.\\n\",\"The name of Ikey Solomons was long remembered by thief and thief-taker.\\n\",\"He began as an itinerant street vendor at eight, at ten he passed bad money,\\n\",\"at fourteen he was a pickpocket and a \\\"duffer,\\\" or a seller of sham goods.\\n\",\"He early saw the profits to be made out of purchasing stolen goods, but could not embark in it at first for want of capital.\\n\",\"He was taken up when still in his teens for stealing a pocketbook, and was sentenced to transportation, but did not get beyond the hulks at Chatham.\\n\",\"On his release an uncle, a slop-seller in Chatham, gave him a situation as \\\"barker,\\\" or salesman,\\n\",\"at which he realized one hundred fifty pounds within a couple of years.\\n\",\"With this capital he returned to London and set up as a fence.\\n\",\"He had such great aptitude for business, and such a thorough knowledge of the real value of goods,\\n\",\"that he was soon admitted to be one of the best judges known of all kinds of property, from a glass bottle to a five hundred guinea chronometer.\\n\",\"But he never paid more than a fixed price for all articles of the same class, whatever their intrinsic value.\\n\",\"Thus, a watch was paid for as a watch, whether it was of gold or silver; a piece of linen as such, whether the stuff was coarse or fine.\\n\",\"This rule in dealing with stolen goods continues to this day, and has made the fortune of many since Ikey.\\n\",\"Solomons also established a system of provincial agency, by which stolen goods were passed on from London to the seaports, and so abroad.\\n\",\"Jewels were re-set,\\n\",\"diamonds refaced; all marks by which other articles might be identified, the selvages of linen, the stamps on shoes,\\n\",\"the number and names on watches, were carefully removed or obliterated after the goods passed out of his hands.\\n\",\"On one occasion the whole of the proceeds of a robbery from a boot shop was traced to Solomons';\\n\",\"the owner came with the police, and was morally convinced that it was his property,\\n\",\"but could not positively identify it, and Ikey defied them to remove a single shoe.\\n\",\"In the end the injured bootmaker agreed to buy back his stolen stock\\n\",\"at the price Solomons had paid for it, and it cost him about a hundred pounds to re-stock his shop with his own goods.\\n\",\"As a general rule Ikey Solomons confined his purchases to small articles, mostly of jewelery and plate,\\n\",\"which he kept concealed in a hiding-place with a trap-door just under his bed.\\n\",\"He lived in Rosemary Lane, and sometimes he had as much as twenty thousand pounds worth of goods secreted on the premises.\\n\",\"When his trade was busiest he set up a second establishment, at the head of which, although he was married,\\n\",\"he put another lady, with whom he was on intimate terms.\\n\",\"The second house was in Lower Queen Street, Islington, and he used it for some time as a depot for valuables.\\n\",\"But it was eventually discovered by Mrs. Solomons, a very jealous wife,\\n\",\"and this, with the danger arising from an extensive robbery of watches in Cheapside, in which Ikey was implicated as a receiver,\\n\",\"led him to think seriously of trying his fortunes in another land.\\n\",\"He was about to emigrate to New South Wales, when he was arrested at Islington and committed to Newgate on a charge of receiving stolen goods.\\n\",\"While thus incarcerated he managed to escape from custody, but not actually from jail, by an ingenious contrivance which is worth mentioning.\\n\",\"He claimed to be admitted to bail, and was taken from Newgate on a writ of habeas before one of the judges sitting at Westminster.\\n\",\"He was conveyed in a coach driven by a confederate, and under the escort of a couple of turnkeys.\\n\",\"Solomons, while waiting to appear in court, persuaded the turnkeys to take him to a public-house, where all might \\\"refresh.\\\"\\n\",\"While there he was joined by his wife and other friends.\\n\",\"After a short carouse the prisoner went into Westminster, his case was heard, bail refused, and he was ordered back to Newgate.\\n\",\"But he once more persuaded the turnkeys to pause at the public, where more liquor was consumed.\\n\",\"When the journey was resumed, Mrs. Solomons accompanied her husband in the coach. Half-way to Newgate she was taken with a fit.\\n\",\"One turnkey was stupidly drunk, and Ikey persuaded the other, who was not much better,\\n\",\"to let the coach change and pass Petticoat Lane en route to the jail, where the suffering woman might be handed over to her friends.\\n\",\"On stopping at a door in this low street, Ikey jumped out, ran into the house, slamming the door behind him.\\n\",\"He passed through and out at the back, and was soon beyond pursuit.\\n\",\"By-and-by the turnkeys, sobered by their loss, returned to Newgate alone, and pleaded in excuse that they had been drugged.\\n\",\"Ikey left no traces, and the police could hear nothing of him. He had in fact gone out of the country, to Copenhagen, whence he passed on to New York.\\n\",\"There he devoted himself to the circulation of forged notes. He was also anxious to do business in watches,\\n\",\"and begged his wife to send him over a consignment of cheap \\\"righteous\\\" watches, or such as had been honestly obtained, and not \\\"on the cross.\\\"\\n\",\"But Mrs. Solomons could not resist the temptation to dabble in stolen goods, and she was found shipping watches of the wrong category to New York.\\n\",\"For this she received a sentence of fourteen years' transportation, and was sent to Van Diemen's Land.\\n\",\"Ikey joined her at Hobart Town, where they set up a general shop, and soon began to prosper.\\n\",\"He was, however, recognized, and ere long an order came out from home for his arrest and transfer to England,\\n\",\"which presently followed, and again found himself an inmate of Newgate, waiting trial as a receiver and a prison-breaker.\\n\",\"He was indicted on eight charges, two only of which were substantiated, but on each of them he received a sentence of seven years' transportation.\\n\",\"At his own request he was reconveyed to Hobart Town, where his son had been carrying on the business.\\n\",\"Whether Ikey was \\\"assigned\\\" to his own family is not recorded, but no doubt he succeeded to his own property when the term of servitude had expired.\\n\",\"No doubt, on the removal of Ikey Solomons from the scene, his mantle fell upon worthy successors.\\n\",\"There was an increase rather than an abatement in jewel and bullion robberies in the years immediately following,\\n\",\"and the thieves seem to have had no difficulty in disposing of their spoil.\\n\",\"One of the largest robberies of its class was that effected upon the Custom House in the winter of eighteen thirty-four.\\n\",\"A large amount of specie was nearly always retained here in the department of the Receiver of Fines.\\n\",\"This was known to some clerks in the office, who began to consider how they might lay hands on a lot of cash.\\n\",\"Being inexperienced, they decided to call in the services of a couple of professional housebreakers,\\n\",\"Jordan and Sullivan, who at once set to work in a business-like way to obtain impressions of the keys of the strong room and chest.\\n\",\"But before committing themselves to an attempt on the latter, it was of importance to ascertain how much it usually contained.\\n\",\"For this purpose Jordan waited on the receiver to make a small payment, for which he tendered a fifty-pound note.\\n\",\"The chest was opened to give change, and a heavy tray lifted out which plainly held some four thousand pounds in cash.\\n\",\"Some difficulty then arose as to gaining admission to the strong room, and it was arranged that a man, May, another Custom House clerk,\\n\",\"should be introduced into the building, and secreted there during the night to accomplish the robbery.\\n\",\"May was smuggled in through a window on the esplanade behind an opened umbrella. When the place was quite deserted\\n\",\"he broke open the chest and stole four thousand, seven hundred pounds in notes, with a quantity of gold and some silver.\\n\",\"He went out next morning with the booty when the doors were re-opened, and attracted no attention.\\n\",\"The spoil was fairly divided; part of the notes were disposed of to a traveling \\\"receiver,\\\" who passed over to the Continent and there cashed them easily.\\n\",\"This occurred in November eighteen thirty-four. The Custom House officials were in a state of consternation,\\n\",\"and the police were unable at first to get on the track of the thieves.\\n\",\"While the excitement was still fresh, a new robbery of diamonds was committed at a bonded warehouse in the immediate neighborhood, on Custom House Quay.\\n\",\"The jewels had belonged to a Spanish countess recently deceased, who had sent them to England for greater security on the outbreak of the first Carlist war.\\n\",\"At her death the diamonds were divided between her four daughters, but only half had been claimed,\\n\",\"and at the time of the robbery there were still six thousand pounds worth in the warehouse.\\n\",\"These were deposited in an iron chest of great strength on the second floor.\\n\",\"The thieves it was supposed had secreted themselves in the warehouse during business hours, and waited till night to carry out their plans.\\n\",\"Some ham sandwiches, several cigar ends, and two empty champagne bottles were found on the premises next day, showing how they had passed their time.\\n\",\"They had had serious work to get at the diamonds. It was necessary to force one heavy door from its hinges, and to cut through the thick panels of another.\\n\",\"The lock and fastenings of the chest were forced by means of a \\\"jack,\\\" an instrument known to housebreakers,\\n\",\"which if introduced into a keyhole, and worked like a bit and brace, will soon destroy the strongest lock.\\n\",\"The thieves were satisfied with the diamonds; they broke open other cases containing gold watches and plate, but abstracted nothing.\\n\",\"The police were of opinion that these robberies were both the work of the same hand.\\n\",\"But it was not until the autumn that they traced some of the notes stolen from the Custom House to Jordan and Sullivan.\\n\",\"About this time also suspicion fell upon Huey, one of the clerks, who was arrested soon afterwards, and made a clean breast of the whole affair.\\n\",\"There was a hunt for the two well-known house-breakers, who were eventually heard of at a lodging in Kennington.\\n\",\"But they at once made tracks, and took up their residence under assumed names in a tavern in Bloomsbury.\\n\",\"The police lost all trace of them for some days, but at length Sullivan's brother was followed from the house in Kennington to the above-mentioned tavern.\\n\",\"Both the thieves were now apprehended, but only a small portion of the lost property was recovered,\\n\",\"notwithstanding a minute search through the room they had occupied.\\n\",\"After their arrest, Jordan's wife and Sullivan's brother came to the inn, and begged to be allowed to visit this room;\\n\",\"but their request, in spite of their earnest entreaties,\\n\",\"was refused, at the instigation of the police. A few days later a frequent guest at the tavern arrived, and had this same room allotted to him.\\n\",\"A fire was lit in it, and the maid in doing so threw a lot of rubbish, as it seemed, which had accumulated under the grate, on top of the burning coals.\\n\",\"By-and-by the occupant of the room noticed something glittering in the center of the fire, which, to inspect more closely, he took out with the tongs.\\n\",\"It was a large gold brooch set in pearls, but a portion of the mounting had melted with the heat.\\n\",\"The fire was raked out, and in the ashes were found seven large and four dozen small brilliants, also seven emeralds,\\n\",\"one of them of considerable size.\\n\",\"A part of the \\\"swag\\\" stolen from the bonded warehouse was thus recovered, but it was supposed that a number of the stolen notes had perished in the fire.\\n\",\"The condign punishment meted out to these Custom House robbers had no deterrent effect seemingly.\\n\",\"Within three months, three new and most mysterious burglaries were committed at the West End, all in houses adjoining each other.\\n\",\"One was occupied by the Portuguese ambassador, who lost a quantity of jewelery from an escritoire, and his neighbors lost plate and cash.\\n\",\"Not the slightest clue to these large affairs was ever obtained, but it is probable that they were \\\"put up\\\" jobs, or managed with the complicity of servants.\\n\",\"The next year twelve thousand sovereigns were cleverly stolen in the Mile End Road.\\n\",\"The gold-dust robbery of eighteen thirty-nine, the first of its kind, was cleverly and carefully planned with the assistance of a dishonest employee.\\n\",\"A young man named Caspar, clerk to a steam-ship company,\\n\",\"learnt through the firm's correspondence that a quantity of gold-dust\\n\",\"brought in a man-of-war from Brazil had been transhipped at Falmouth for conveyance to London.\\n\",\"The letter informed him of the marks and sizes of the cases containing the precious metal,\\n\",\"and he with his father arranged that a messenger should call for the stuff with forged credentials, and anticipating the rightful owner.\\n\",\"The fraudulent messenger, by the help of young Caspar, established his claim to the boxes, paid the wharfage dues, and carried off the gold-dust.\\n\",\"Presently the proper person arrived from the consignees, but found the gold-dust gone.\\n\",\"The police were at once employed, and after infinite pains they discovered the person, one Moss, who had acted as the messenger.\\n\",\"Moss was known to be intimate with the elder Caspar,\\n\",\"father of the clerk to the steam-ship company, and these facts were deemed sufficient to justify the arrest of all three.\\n\",\"They also ascertained that a gold-refiner,\\n\",\"Solomons, had sold bar gold to the value of one thousand two hundred pounds to certain bullion dealers.\\n\",\"Solomons was not straightforward in his replies as to where he got the gold, and he was soon placed in the dock with the Caspars and Moss.\\n\",\"Moss presently turned approver,\\n\",\"and implicated \\\"Money Moses,\\\" another Jew, for the whole affair had been planned and executed by members of the Hebrew persuasion.\\n\",\"\\\"Money Moses\\\" had received the stolen gold-dust from Moss' father-in-law, Davis, or Isaacs, who was never arrested,\\n\",\"and passed it on to Solomons by his daughter, a widow named Abrahams.\\n\",\"Solomons was now also admitted as a witness, and his evidence, with that of Moss, secured the transportation of the principal actors in the theft.\\n\",\"In the course of the trial it came out that almost every one concerned except the Caspars had endeavored to defraud his accomplices.\\n\",\"Moss peached because he declared he had been done out of the proper price of the gold-dust; but it was clear that he had tried to appropriate the whole of the stuff,\\n\",\"instead of handing it or the price of it back to the Caspars.\\n\",\"\\\"Money Moses\\\" and Mrs. Abrahams imposed upon Moss as to the price paid by Solomons;\\n\",\"Mrs. Abrahams imposed upon her father by abstracting a portion of the dust and selling it on her own account;\\n\",\"Solomons cheated the whole lot by retaining half the gold in his possession, and only giving an I. O. U. for it,\\n\",\"which he refused to redeem on account of the row about the robbery.\\n\",\"Moses, it may be added, was a direct descendant of Ikey Solomons.\\n\",\"He was ostensibly a publican,\\n\",\"and kept the Black Lion in Vinegar Yard, Drury Lane, where secretly he did business as one of the most daring and successful fencers ever known in the metropolis.\\n\",\"His arrest and conviction cast dismay over the whole gang of receivers, and for a time seriously checked the nefarious traffic.\\n\",\"It may be added that prison life did not agree with \\\"Money Moses\\\"; a striking change came over his appearance while in Newgate.\\n\",\"Before his confinement he had been a sleek round person, addicted obviously to the pleasures of the table.\\n\",\"He did not thrive on prison fare,\\n\",\"now more strictly meager, thanks to the inspectors and the more stringent discipline, and before he embarked for Australia to undergo his fourteen years,\\n\",\"he was reported to have fallen away to a shadow.\\n\",\"Having brought down the records of great frauds, forgeries, and thefts from about eighteen twenty-five to eighteen forty,\\n\",\"I will now retrace my steps and give some account of the more remarkable murders during that period.\\n\",\"No murder has created greater sensation and horror throughout England than that of Mr. Weare by Thurtell, Hunt, and Probert.\\n\",\"As this was accomplished beyond the limits of the metropolis, and its perpetrators arraigned at Hertford,\\n\",\"where the principal actor suffered death, the case hardly comes within the limits of my subject.\\n\",\"But Probert, who turned king's evidence, and materially assisted conviction,\\n\",\"was tried at the Old Bailey the following year for horse-stealing, and hanged in front of Newgate.\\n\",\"The murder was still fresh in the memory of the populace, and Probert was all but lynched on his way to jail.\\n\",\"According to his statement, when sentenced to death, he had been driven to horse-stealing by the execration which had pursued him after the murder.\\n\",\"Every door had been closed against him, every hope of future support blasted.\\n\",\"Since the calamitous event,\\\" he went on, \\\"that happened at Hertford, I have been a lost man.\\\"\\n\",\"The event which he styles calamitous we may well characterize as one of the most deliberately atrocious murders on record.\\n\",\"Thurtell was a gambler, and Weare had won a good deal of money from him.\\n\",\"Weare was supposed to carry a \\\"private bank\\\" about with him in a pocket in his under waistcoat.\\n\",\"To obtain possession of this, Thurtell with his two associates resolved to kill him.\\n\",\"The victim was invited to visit Probert's cottage in the country near Elstree.\\n\",\"Thurtell drove him down in a gig, \\\"to be killed as he traveled,\\\" in Thurtell's own words.\\n\",\"The others followed, and on overtaking Thurtell, found he had done the job alone in a retired part of the road known as Gill's Hill Lane.\\n\",\"The murderer explained that he had first fired a pistol at Weare's head, but the shot glanced off his cheek.\\n\",\"Then he attacked the other's throat with a penknife, and last of all drove the pistol barrel into his forehead.\\n\",\"After the murder the villains divided the spoil, and went on to Probert's cottage, and supped off pork-chops brought down on purpose.\\n\",\"During the night they sought to dispose of the body by throwing it into a pond, but two days later had to throw it into another pond.\\n\",\"Meanwhile the discovery of pistol and knife spattered with human blood and brains\\n\",\"raised the alarm, and suspicion fell upon the three murderers, who were arrested.\\n\",\"The crime was brought home to Thurtell by the confession of Hunt,\\n\",\"one of his accomplices, who took the police to the pond, where the remains of the unfortunate Mr. Weare were discovered, sunk in a sack weighted by stones.\\n\",\"Probert was then admitted as a witness, and the case was fully proved against Thurtell, who was hanged in front of Hertford Jail.\\n\",\"Hunt, in consideration of the information he had given, escaped death, and was sentenced to transportation for life.\\n\",\"Widespread horror and indignation was evoked throughout the kingdom by the discovery of the series\\n\",\"of atrocious murders perpetrated in Edinburgh by the miscreants Burke and Hare,\\n\",\"the first of whom has added to the British language a synonym for illegal suppression.\\n\",\"The crimes of these inhuman purveyors to medical science do not fall within the limits of this work.\\n\",\"But Burke and Hare had their imitators further south,\\n\",\"and of these Bishop and Williams, who were guilty of many peculiar atrocities, ended their murderous careers in front of the debtors' door at Newgate.\\n\",\"Bishop, whose real name was Head, married a half-sister of Williams'. Williams was a professional resurrectionist, or body-snatcher,\\n\",\"a trade almost openly countenanced when \\\"subjects\\\" for the anatomy schools were only to be got by rifling graves, or worse.\\n\",\"Bishop was a carpenter, but having been suddenly thrown out of work, he joined his brother-in-law in his line of business.\\n\",\"After a little\\n\",\"Bishop got weary of the dangers and fatigues of exhumation, and proposed to Williams that instead of disinterring they should murder their subjects.\\n\",\"Bishop confessed that he was moved to this by the example of Burke and Hare.\\n\",\"They pursued their terrible trade for five years without scruple and without detection.\\n\",\"Eventually the law overtook them, but almost by accident.\\n\",\"They presented themselves about noon one day at the dissecting room of King's College Hospital, accompanied by a third man,\\n\",\"an avowed \\\"snatcher\\\" and habitu\\u00e9 of the Fortune of War, a public-house in Smithfield frequented openly by men of this awful profession.\\n\",\"This man, May, asked the porter at King's College if \\\"he wanted anything?\\\" the euphemism for offering a body.\\n\",\"The porter asked what he had got, and the answer was, a male subject.\\n\",\"Reference was made to Mr. Partridge, the demonstrator in anatomy,\\n\",\"and after some haggling they agreed on a price, and in the afternoon the snatchers brought a hamper which contained a body in a sack.\\n\",\"The porter received it, but from its freshness became suspicious of foul play.\\n\",\"Mr. Partridge was sent for, and he with some of the students soon decided that the corpse had not died a natural death.\\n\",\"The snatchers were detained, the police sent for, and arrest followed as a matter of course.\\n\",\"An inquest was held on the body, which was identified as that of an Italian boy,\\n\",\"Carlo Ferrari, who made a living by exhibiting white mice about the streets,\\n\",\"and the jury returned a verdict of willful murder against persons unknown, expressing a strong opinion that Bishop,\\n\",\"Williams, and May had been concerned in the transaction.\\n\",\"Meanwhile, a search had been made at Nova Scotia Gardens, Bethnal Green, where Bishop and Williams lived.\\n\",\"At first nothing peculiar was found; but at a second search the back-garden ground was dug up,\\n\",\"and in one corner, at some depth, a bundle of clothes were unearthed, which, with a hairy cap,\\n\",\"were known to be what Ferrari had worn when last seen.\\n\",\"In another portion of the garden more clothing, partly male and partly female, was discovered,\\n\",\"plainly pointing to the perpetration of other crimes.\\n\",\"These facts were represented before the police magistrate\\n\",\"who examined Bishop and his fellows, and further incriminating evidence adduced, to the effect that the prisoners had bartered for a coach to carry \\\"a stiff 'un\\\";\\n\",\"they had also been seen to leave their cottage, carrying out a sack with something heavy inside. On this they were fully committed to Newgate for trial.\\n\",\"This trial came off in due course at the Central Criminal Court, where the prisoners were charged on two counts,\\n\",\"one that of the murder of the Italian boy, the other that of a boy unknown.\\n\",\"The evidence from first to last was circumstantial,\\n\",\"but the jury, after a short deliberation, did not hesitate to bring in a verdict of guilty, and all three were condemned to death.\\n\",\"Shortly before the day fixed for execution, Bishop made a full confession, the bulk of which bore the impress of truth,\\n\",\"although it included statements that were improbable and unsubstantiated.\\n\",\"He asserted that the victim was a Lincolnshire lad, and not an Italian boy, although the latter was fully proved.\\n\",\"According to the confession, death had been inflicted by drowning in a well, whereas the medical evidence all pointed to violence.\\n\",\"It was, however, pretty clear that this victim, like preceding ones, had been lured to Nova Scotia Gardens, and there drugged with a large dose of laudanum.\\n\",\"While they were in a state of insensibility the murder was committed.\\n\",\"Bishop's confession was endorsed by Williams, and the immediate result was the respite of May.\\n\",\"A very painful scene occurred in Newgate when the news of his escape from death was imparted to May.\\n\",\"He fainted, and the warrant of mercy nearly proved his death-blow. The other two looked on at his agitation with an indifference amounting to apathy.\\n\",\"The execution took place a week or two later, in the presence of such a crowd as had not been seen near Newgate for years.\\n\",\"I will close this chapter with a brief account of another murder,\\n\",\"the memory of which is still fresh in the minds of Londoners, although half a century has passed since it was committed.\\n\",\"The horror with which Greenacre's crime struck the town was unparalleled since the time when Catherine Hayes slew her husband.\\n\",\"There were many features of resemblance in these crimes.\\n\",\"The decapitation and dismemberment, the bestowal of the remains in various parts of the town, the preservation of the head in spirits of wine,\\n\",\"in the hope that the features might some day be recognized, were alike in both.\\n\",\"The murder in both cases was long a profound mystery. In this which I am now describing,\\n\",\"a bricklayer found a human trunk near some new buildings in the Edgeware Road, one morning in the last week of eighteen thirty-six.\\n\",\"The inquest on these remains, which medical examination showed to be those of a female,\\n\",\"returned a verdict of willful murder against some person unknown.\\n\",\"On the seventh July, eighteen thirty-seven,\\n\",\"the lockman of \\\"Ben Jonson lock,\\\" in Stepney Fields, found a human head jammed into the lock gates.\\n\",\"Closer investigation proved that it belonged to the trunk already discovered on the second February.\\n\",\"A further discovery was made in an osier bed near Cold Harbor Lane, Camberwell,\\n\",\"where a workman found a bundle containing two human legs, in a drain.\\n\",\"These were the missing members of the same mutilated trunk,\\n\",\"and there was now evidence sufficient to establish conclusively that the woman thus collected piecemeal had been barbarously done to death.\\n\",\"But the affair still remained a profound mystery. No light was thrown upon it till, towards the end of March,\\n\",\"a Mr. Gay of Goodge Street came to view the head, and immediately recognized it as that of a widowed sister, Hannah Brown,\\n\",\"who had been missing since the previous Christmas Day.\\n\",\"The murdered individual was thus identified. The next step was to ascertain where and with whom she had last been seen.\\n\",\"This brought suspicion on to a certain James Greenacre,\\n\",\"whom she was to have married, and in whose company she had left her own lodgings to visit his in Camberwell.\\n\",\"The police wished to refer to Greenacre, but as he was not forthcoming,\\n\",\"a warrant was issued for his apprehension, which was effected at Kennington on the twenty-fourth March.\\n\",\"A woman named Gale, who lived with him, was arrested at the same time. The prisoners were examined at the Marylebone police court.\\n\",\"Greenacre, a stout, middle-aged man, wrapped in a brown greatcoat, assumed an air of insolent bravado;\\n\",\"but his despair must have been great, as was evident from his attempt to strangle himself in the station-house.\\n\",\"Suspicion grew almost to certainty as the evidence was unfolded.\\n\",\"Mrs. Brown was a washer-woman, supposed to be worth some money; hence Greenacre's offer of marriage.\\n\",\"She had realized all her effects, and brought them with her furniture to Greenacre's lodgings. The two when married were to emigrate to Hudson's Bay.\\n\",\"Whether it was greed or a quarrel that drove Greenacre to the desperate deed remains obscure.\\n\",\"They were apparently good friends when last seen together at a neighbor's, where they seemed \\\"perfectly happy and sociable, and eager for the wedding day.\\\"\\n\",\"But Greenacre in his confession pretended that he and his intended had quarreled over her property or the want of it,\\n\",\"and that in a moment of anger he knocked her down.\\n\",\"He thought he had killed her, and in his terror began at once to consider how he might dispose of the body and escape arrest.\\n\",\"While she was senseless, but really still alive, he cut off her head, and dismembered the body in the manner already described.\\n\",\"It is scarcely probable that he would have gone to this extremity if he had had no previous evil intention,\\n\",\"and the most probable inference is that he inveigled Mrs. Brown to his lodgings with the set purpose of taking her life.\\n\",\"His measures for the disposal of the corpus delicti remind us of those taken by Mrs. Hayes and her associates,\\n\",\"or of Gardelle's frantic efforts to conceal his crime.\\n\",\"The most ghastly part of the story is that which deals with his getting rid of the head.\\n\",\"This, wrapped up in a silk handkerchief,\\n\",\"he carried under his coat-flaps through the streets, and afterwards on his cap in a crowded city omnibus.\\n\",\"It was not until he left the bus, and walked up by the Regent's Canal, that he conceived the idea of throwing the head into the water.\\n\",\"Another day elapsed before he got rid of the rest of the body,\\n\",\"all of which, according to his own confession, made no doubt with the idea of exonerating Mrs. Gale, he accomplished without her assistance.\\n\",\"On the other hand, it was adduced in evidence that Mrs. Gale had been at his lodgings the very day after the murder,\\n\",\"and was seen to be busily engaged in washing down the house with bucket and mop.\\n\",\"Greenacre, when tried at the Old Bailey, admitted that he had been guilty of manslaughter.\\n\",\"While conversing with Mrs. Brown, he declared the unfortunate woman was rocking herself to and fro in a chair;\\n\",\"as she leant back he put his foot against the chair, and so tilted it over.\\n\",\"Mrs. Brown fell with it, and Greenacre, to his horror, found that she was dead.\\n\",\"But the medical evidence was clear that the decapitation had been effected during life, and the jury, after a short deliberation,\\n\",\"without hesitation brought in a verdict of willful murder.\\n\",\"The woman Gale was also found guilty, but sentence of death was only passed on Greenacre.\\n\",\"The execution was, as usual, attended by an immense concourse, and Greenacre died amidst the loudest execrations.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section sixteen: Newgate notorieties continued, part one.\\n\",\"As the century advanced crimes of fraud increased.\\n\",\"They not only became more numerous, but they were on a wider scale.\\n\",\"The most extensive and systematic robberies were planned and carried out so as long to escape detection.\\n\",\"One of the earliest of the big operators in fraudulent finance was Edward Beaumont Smith,\\n\",\"who was convicted in eighteen forty-one of uttering false exchequer bills to an almost fabulous amount.\\n\",\"A not entirely novel kind of fraud, but one carried out on a larger scale than heretofore,\\n\",\"came to light in this same year, eighteen forty-one.\\n\",\"This was the willful shipwreck and casting away of a vessel which, with her supposed cargo, had been heavily insured.\\n\",\"The 'Dryad' was a brig owned principally by two persons named Wallace, one a seaman, the other merchant.\\n\",\"She was freighted by the firm of Zulueta and Co. for a voyage to Santa Cruz.\\n\",\"Her owners insured her for a full sum of two thousand pounds, after which the Wallaces insured her privily\\n\",\"with other underwriters for a second sum of two thousand pounds.\\n\",\"After this, on the faith of forced bills of lading, the captain, Loose by name,\\n\",\"being a party to the intended fraud, they obtained further insurances on goods never shipped.\\n\",\"It was fully proved in evidence that when the Dryad sailed she carried nothing but the cargo belonging to Zulueta and Co.\\n\",\"Yet the Wallaces pretended to have put on board quantities of flannels, cloths, cotton prints,\\n\",\"beef, pork, butter, and earthenwares, on all of which they effected insurances.\\n\",\"Loose had his instructions to cast away the ship on the first possible opportunity, and from the time of his leaving Liverpool\\n\",\"he acted in a manner which excited the suspicions of the crew.\\n\",\"The larboard pump was suffered to remain choked up, and the long-boat was fitted with tackles and held ready for use at a moment's notice.\\n\",\"The ship, however, met with exasperatingly fine weather, and it was not until the captain reached the West India Islands\\n\",\"that he got a chance of accomplishing his crime.\\n\",\"At a place called the Silver Keys he ran the ship on the reef.\\n\",\"But another ship, concluding that he was acting in ignorance, rendered him assistance.\\n\",\"The 'Dryad' was got off, repaired, and her voyage renewed to Santa Cruz.\\n\",\"He crept along the coast close in shore, looking for a quiet spot to cast away the ship,\\n\",\"and at last, when within fifteen miles of port, with wind and weather perfectly fair, he ran her on to the rocks.\\n\",\"Even then she might have been saved, but the captain would not suffer the crew to act. Nearly the whole of the cargo was lost as well as the ship.\\n\",\"The captain and crew, however, got safely to Jamaica, and so to England; the captain dying on the voyage home.\\n\",\"The crime soon became public.\\n\",\"Mate, carpenter, and crew were eager to disavow complicity, and voluntarily gave information.\\n\",\"The Wallaces were arrested, committed to Newgate, and tried at the Old Bailey.\\n\",\"The case was clearly proved against them, and both were sentenced to transportation for life.\\n\",\"While lying in Newgate, awaiting removal to the convict ship, both prisoners made full confessions.\\n\",\"According to their own statements the loss of the 'Dryad' was only one of six intentional shipwrecks with which they had been concerned.\\n\",\"The crime of fraudulent insurance they declared was very common, and the underwriters must have lost great sums in this way.\\n\",\"The merchant Wallace said he had been led into the crime by the advice and example of a city friend who had gone largely into this nefarious business;\\n\",\"this Wallace added that his friend had made several voyages with the distinct intention of superintending the predetermined shipwrecks.\\n\",\"The other Wallace, the sailor, also traced his lapse into crime to evil counsel.\\n\",\"He was an honest sea-captain, he said, trading from Liverpool, where once he had the misfortune to be introduced to a man of wealth,\\n\",\"the foundations of which had been laid by buying old ships on purpose to cast them away.\\n\",\"This person made much of Wallace, encouraged his attentions to his daughter,\\n\",\"and tempted him to take to fraudulent insurance as a certain method of achieving fortune.\\n\",\"Wallace's relations warned him against his Liverpool friend,\\n\",\"but he would not take their advice, and developing his transactions, ended as we have seen.\\n\",\"A clergyman nearly a century later followed in the steps of Dr. Dodd, but did not under more humane laws lose his life.\\n\",\"The Rev. W. Bailey, LL.D., was convicted at the Central Criminal Court, in February eighteen forty-three, of forgery.\\n\",\"A notorious miser, Robert Smith, had recently died in Seven Dials, where he had amassed a considerable fortune.\\n\",\"But among the charges on the estate he left\\n\",\"was a promissory note for two thousand eight hundred seventy-five pounds, produced by Dr. Bailey, and purporting to be signed by Smith.\\n\",\"The executors to the estate disputed the validity of this document.\\n\",\"Miss Bailey, the doctor's sister, in whose favor the note was said to have been given,\\n\",\"then brought an action against the administrators, and at the trial Dr. Bailey swore that the note had been given him by Smith.\\n\",\"The jury did not believe him, and the verdict was for the defendants.\\n\",\"Subsequently Bailey was arrested on a charge of forgery, and after a long trial found guilty. His sentence was transportation for life.\\n\",\"A gigantic conspiracy to defraud was discovered in the following year, when a solicitor named William Henry Barber,\\n\",\"Joshua Fletcher a surgeon, and three others were charged with forging wills for the purpose of obtaining unclaimed stock in the funds.\\n\",\"There were two separate affairs.\\n\",\"In the first a maiden lady, Miss Slack,\\n\",\"who was the possessor of two separate sums in consols, neglected through strange carelessness on her own part and that of her friends\\n\",\"to draw the dividends on more than one sum.\\n\",\"The other, remaining unclaimed for ten years, was transferred at the end of that time to the commissioners for the reduction of the National Debt.\\n\",\"Barber, it was said, became aware of this,\\n\",\"and that he gained access to Miss Slack on pretense of conveying to her some funded property left her by an aunt.\\n\",\"By this means her signature was obtained; a forged will was prepared bequeathing the unclaimed stock to Miss Slack;\\n\",\"a note purporting to be from Miss Slack was addressed to the governor of the Bank of England, begging that the said stock might be handed over to her,\\n\",\"and a person calling herself Miss Slack duly attended at the bank, where the money was handed over to her in proper form.\\n\",\"A second will, also forged, was propounded at Doctors Commons as that of a Mrs. Hunt of Bristol.\\n\",\"Mrs. Hunt had left money in the funds which remained unclaimed, and had been transferred, as in Miss Slack's case.\\n\",\"Here again the money, with ten years' interest, was handed over to Barber and another calling himself Thomas Hunt, an executor of the will.\\n\",\"It was shown that the will must be a forgery,\\n\",\"as its signature was dated eighteen twenty-nine, whereas Mrs. Hunt actually died in eighteen oh six.\\n\",\"A third similar fraud to the amount of two thousand pounds was also brought to light.\\n\",\"Fletcher was the moving spirit of the whole business. It was he who had introduced Barber to Miss Slack,\\n\",\"and held all the threads of these intricate and nefarious transactions.\\n\",\"Barber and Fletcher were both transported for life, although Fletcher declared that Barber was innocent, and had no guilty knowledge of what was being done.\\n\",\"Barber was subsequently pardoned, but was not replaced on the rolls as an attorney till eighteen fifty-five,\\n\",\"when Lord Campbell delivered judgment on Barber's petition, to the effect that\\n\",\"the evidence to establish his (Barber's) connivance in the frauds was too doubtful for us to continue his exclusion any longer.\\n\",\"Banks and bankers continued to be victimized.\\n\",\"In eighteen forty-four\\n\",\"the Bank of England was defrauded of a sum of eight thousand pounds by one of its clerks, Burgess, in conjunction with an accomplice named Elder.\\n\",\"Burgess fraudulently transferred consols to the above amount, standing in the name of Mr. Oxenford, to another party.\\n\",\"A person, Elder of course, who personated Oxenford, attended at the bank to complete the transfer and sell the stock.\\n\",\"Burgess, who was purposely on leave from the bank, effected the sale, which was paid for with a cheque for nearly the whole amount on Lubbock's Bank.\\n\",\"Burgess and Elder proceeded in company to cash this, but as they wanted all gold,\\n\",\"the cashier gave them eight Bank of England notes for one thousand pounds each, saying that they could get so much specie nowhere else.\\n\",\"Thither Elder went alone, provided with a number of canvas and one large carpet-bag.\\n\",\"But when the latter was filled with gold it was too heavy to lift,\\n\",\"and Elder had to be assisted by two bank porters, who carried it for him to a carriage waiting near the Mansion House.\\n\",\"The thieves, for Elder was soon joined by Burgess, drove together to Ben Caunt's, the pugilist's, public-house in St. Martin's Lane,\\n\",\"where the cash was transferred from the carpet-bag to a portmanteau.\\n\",\"The same evening both started for Liverpool, and embarking on board the mail steamer 'Britannia,' escaped to the United States.\\n\",\"Burgess' continued absence was soon noticed at the bank.\\n\",\"Suspicions were aroused when it was found that he had been employed in selling stock for Mr. Oxenford, which developed into certainty\\n\",\"as soon as that gentleman was referred to.\\n\",\"Mr. Oxenford having denied that he had made any transfer of stock, the matter was at once put into the hands of the police.\\n\",\"A smart detective, Forrester, after a little inquiry,\\n\",\"established the fact that the man who had personated Mr. Oxenford was a horse-dealer named Joseph Elder, an intimate acquaintance of Burgess'.\\n\",\"Forrester next traced the fugitives to Liverpool,\\n\",\"and thence to Halifax, whither he followed them, accompanied by a confidential clerk from the bank.\\n\",\"At Halifax Forrester learnt that the men he wanted had gone on to Boston, thence to Buffalo and Canada, and back to Boston.\\n\",\"He found them at length residing at the latter place, one as a landed proprietor, the other as a publican.\\n\",\"Elder, the former, was soon apprehended at his house, but he evaded the law by hanging himself with his pocket-handkerchief.\\n\",\"The inn belonging to Burgess was surrounded\\n\",\"but he escaped through a back door on to the river, and rowed off in a boat to a hiding-place in the woods.\\n\",\"Next day a person betrayed him for the reward, and he was soon captured.\\n\",\"The proceeds of the robbery were lodged in a Boston bank,\\n\",\"but four hundred sovereigns were found on Elder, while two hundred more were found in Burgess' effects.\\n\",\"Burgess was eventually brought back to England, tried at the Central Criminal Court, and sentenced to transportation for life.\\n\",\"Within a month or two the bank of Messrs. Rogers and Co., Clement's Lane, was broken into.\\n\",\"Robberies as daring in conception as they were boldly executed were common enough.\\n\",\"One night a quantity of plate was stolen from Windsor Castle; another time Buckingham Palace was robbed.\\n\",\"Of this class was the ingenious yet peculiarly simple robbery effected at the house of Lord Fitzgerald in Belgrave Square.\\n\",\"The butler, on the occasion of a death in the family, when the house was in some confusion, arranged with a burglar to come in,\\n\",\"and with another carry off the plate-chest in broad daylight, and as a matter of business. No one interfered or asked any questions.\\n\",\"The thief walked into the house in Belgrave Square, and openly carried off the plate-chest, deposited it in a light cart at the door, and drove away.\\n\",\"Howse, the steward, accused the other servants, but they retorted, declaring that he had been visited by the thief the day previous,\\n\",\"whom he had shown over the plate closet.\\n\",\"Howse and his accomplice were arrested; the former was found guilty and sentenced to fifteen years, but the latter was acquitted.\\n\",\"Stealing plate was about this period the crime of a more aristocratic thief.\\n\",\"The club spoons and other articles of plate were long a source of profitable income to a gentleman named Ashley,\\n\",\"who belonged to five good London clubs --\\n\",\"the Junior United Service, the Union, Reform, Colonial, and Erechtheum clubs.\\n\",\"When one of these clubs was taken in at the Army and Navy, that establishment also suffered.\\n\",\"Suspicion fell at length upon Ashley, who was seen to handle the forks and spoons at table in a strange manner.\\n\",\"A watch was set on his house, in Allington Street, Pimlico,\\n\",\"and one day a police constable tracked him to a silversmith's in Holborn Hill,\\n\",\"where Ashley produced four silver spoons, and begged that his initials might be engraved upon them.\\n\",\"Ashley was arrested as he left the shop; the spoons were impounded, and it was found that the club monogram had been erased from them.\\n\",\"On a search of the prisoner's lodgings in Allington Street, a silver fork was found,\\n\",\"a number of pawnbrokers' duplicates, and three small files. It was proved at the trial that Ashley had asked his landlady for brick-dust and leather,\\n\",\"and it was contended that these with the files were used to alter the marks on the plate.\\n\",\"At most of the clubs the servants had been mulcted to make good lost plate, which had no doubt been stolen by the prisoner.\\n\",\"Several pawnbrokers were subpoenaed and obliged to surrender plate, to the extent in some cases of a couple of dozen of spoons or forks,\\n\",\"which the various club secretaries identified as the property of their respective clubs.\\n\",\"Ashley was the son of an army agent and banker,\\n\",\"and many witnesses were brought to attest to his previous good character, but he was found guilty and sentenced to seven years' transportation.\\n\",\"A robbery of a somewhat novel kind was executed in rather a bungling fashion by Ker, a sea-captain,\\n\",\"whose ship brought home a mixed cargo from Bahia and other ports.\\n\",\"Part of the freight were four hundred rough diamonds valued at four thousand pounds.\\n\",\"These packages were consigned to Messrs. Shroeder of London; and as it was known that they were to arrive in Ker's ship,\\n\",\"one of the owners had met her at Deal, but the captain had already absconded with the packages of precious stones in his pocket.\\n\",\"Ker came at once to London, and, by the help of the landlord of a public-house in Smithfield and others, disposed of the whole of the diamonds.\\n\",\"A Jew named Benjamin effected the sale to certain merchants named Blogg and Martin,\\n\",\"who declared that the rough diamond market was in such a depressed condition that they could only afford to give one thousand seven fifty pounds for stones worth\\n\",\"four thousand pounds\\n\",\"The circumstances of this purchase of brilliants from a stranger at such an inadequate price was strongly commented upon at Ker's trial.\\n\",\"The moment it was discovered that the diamonds had disappeared, the affair was taken up by the police.\\n\",\"Forrester, the detective who had pursued and captured Burgess at Boston, tracked Ker to France, and following him there, eventually captured him\\n\",\"at Montreuil. He was arraigned at the Old Bailey, and the case fully proved. His sentence was seven years' transportation.\\n\",\"The gravest crimes continued at intervals to inspire the town with horror, and concentrate public attention upon the jail of Newgate,\\n\",\"and the murderers immured within its walls.\\n\",\"Courvoisier's case made a great stir. There was unusual atrocity in this murder of an aged, infirm gentleman,\\n\",\"a scion of the ducal house of Bedford, by his confidential valet and personal attendant.\\n\",\"Lord William Russell lived alone in Norfolk Street, Park Lane. He was a widower, and seventy-three years of age.\\n\",\"One morning in May his lordship was found dead in his bed with his throat cut.\\n\",\"The fact of the murder was first discovered by the housemaid,\\n\",\"who, on going down early, was surprised to find the dining-room in a state of utter confusion;\\n\",\"the furniture turned upside down, the drawers of the escritoire open and rifled,\\n\",\"a bundle lying on the floor, as though thieves had been interrupted in the act.\\n\",\"The housemaid summoned the cook, and both went to call the valet, Courvoisier,\\n\",\"who came from his room ready dressed, a suspicious circumstance, as he was always late in the morning.\\n\",\"The housemaid suggested that they should see if his lordship was all right, and the three went to his bedroom.\\n\",\"While Courvoisier opened the shutters, the housemaid, approaching the bed, saw that the pillow was saturated with blood.\\n\",\"The discovery of the murdered man immediately followed. The neighborhood was alarmed, the police sent for, and a close inquiry forthwith commenced.\\n\",\"That Lord William Russell had committed suicide was at once declared impossible.\\n\",\"It was also clearly proved that no forcible entry had been made into the house;\\n\",\"the fresh marks of violence upon the door had evidently been made inside, and not from outside;\\n\",\"moreover, the instruments, poker and chisel, by which they had no doubt been effected,\\n\",\"were found in the butler's pantry, used by Courvoisier.\\n\",\"The researches of the police soon laid bare other suspicious facts.\\n\",\"The bundle found in the dining-room contained, with clothes, various small articles of plate and jewelery which a thief would probably have put into his pocket.\\n\",\"Upstairs in the bedroom a rouleaux box for sovereigns had been broken open,\\n\",\"also the jewel-box and note-case, from the latter of which was abstracted a ten-pound note known to have been in the possession of the deceased.\\n\",\"His lordship's watch was gone.\\n\",\"Further suspicion was caused by the position of a book and a wax candle by the bedside.\\n\",\"The latter was so placed that it could throw no light on the former, which was a 'Life of Sir Samuel Romilly.'\\n\",\"The intention of the real murderer to shift the crime to burglars was evident although futile,\\n\",\"and the police, feeling convinced that the crime had been committed by some inmate of the house,\\n\",\"took Courvoisier into custody, and placed the two female servants under surveillance.\\n\",\"The valet's strange demeanor had attracted attention from the first.\\n\",\"He had hung over the body in a state of dreadful agitation, answering no questions, and taking no part in the proceedings.\\n\",\"Three days later a close search of the butler's pantry produced fresh circumstantial evidence.\\n\",\"Behind the skirting board several of his lordship's rings were discovered;\\n\",\"near it was his Waterloo medal, and the above-mentioned ten-pound note.\\n\",\"Further investigation was rewarded by the discovery in the pantry of a split gold ring, used by Lord William to carry his keys on;\\n\",\"next, and in the same place, a chased gold key;\\n\",\"and at last his lordship's watch was found secreted under the leads of the sink.\\n\",\"All this was evidence sufficient to warrant Courvoisier's committal for trial;\\n\",\"but still he found friends, and a liberal subscription was raised among the foreign servants in London to provide funds for his defense.\\n\",\"Courvoisier, when put on his trial, pleaded not guilty;\\n\",\"but on the second day the discovery of fresh evidence, more particularly the recovery of some of Lord William's stolen plate,\\n\",\"induced the prisoner to make a full confession of his crime to the lawyers who defended him.\\n\",\"This placed them in a position of much embarrassment. To have thrown up their brief would have been to have secured Courvoisier's conviction.\\n\",\"Mr. Phillips, who led in the case, went to the other extreme,\\n\",\"and in an impassioned address implored the jury not to send an innocent man to the gallows.\\n\",\"It will be remembered that the question whether Mr. Phillips had not exceeded the limits usually allowed to counsel was much debated at the time.\\n\",\"The jury without hesitation found Courvoisier guilty, and he was sentenced to death.\\n\",\"The prisoner's demeanor had greatly changed during the trial.\\n\",\"Coolness amounting almost to effrontery gave way to hopeless dejection.\\n\",\"On his removal to Newgate after sentence,\\n\",\"he admitted that he had been justly convicted, and expressed great anxiety that his fellow-servants should be relieved from all suspicion.\\n\",\"Later in the day he tried to commit suicide by cramming a towel down his throat, but was prevented.\\n\",\"Next morning he made a full confession in presence of his attorney, and the governor, Mr. Cope.\\n\",\"In this he gave as the motives of his crime a quarrel he had with his master, who threatened to discharge him without a character.\\n\",\"Lord William, according to the valet, was of a peevish, difficult temper;\\n\",\"he was annoyed with his man for various small omissions and acts of forgetfulness, and on the night of the murder had taken Courvoisier to task rather sharply.\\n\",\"Finally, on coming downstairs after bed-time, Lord William had found Courvoisier in the dining-room.\\n\",\"\\\"What are you doing here?\\\" asked his lordship.\\n\",\"\\\"You can have no good intentions; you must quit my service tomorrow morning.\\\"\\n\",\"This seems to have decided Courvoisier,\\n\",\"who took a carving-knife from the sideboard in the dining-room, went upstairs to Lord William's bedroom, and drew the knife across his throat.\\n\",\"\\\"He appeared to die instantly,\\\" said the murderer, in conclusion.\\n\",\"His account of his acts and movements after the deed\\n\",\"varied so considerably in the several documents he left behind, that too much reliance cannot be placed upon his confession.\\n\",\"His last statement contains the words, \\\"The public now think I am a liar, and they will not believe me when I say the truth.\\\"\\n\",\"This was no doubt the case, but this much truth his confession may be taken to contain:\\n\",\"that Courvoisier was idle, discontented, ready to take offense, greedy of gain;\\n\",\"that he could not resist the opportunity for robbery offered him by his situation at Lord William Russell's; that when vexed with his master\\n\",\"he did not shrink from murder, both for revenge and to conceal his other crimes.\\n\",\"Courvoisier wished to commit suicide in Newgate, but was prevented by the vigilant supervision to which he was subjected while in jail.\\n\",\"The attempt was to have been made by opening a vein and allowing himself to bleed to death.\\n\",\"The Sunday night before his execution he would not go to bed when ordered.\\n\",\"The governor insisted, but Courvoisier showed great reluctance to strip.\\n\",\"The order was, however, at length obeyed, and the whole of the prisoner's clothes were minutely searched.\\n\",\"In the pocket of the coat Mr. Cope, the governor, found a neatly-folded cloth, and asked what it was for.\\n\",\"Courvoisier admitted that he had intended to bind it tightly round his arm and bleed himself to death in the night.\\n\",\"The next inquiry was how he hoped to open a vein. \\\"With a bit of sharpened stick picked out of the ordinary firewood.\\\"\\n\",\"\\\"Where is it?\\\" asked the governor.\\n\",\"The prisoner replied that he had left it in the mattress of which he had just been deprived.\\n\",\"The bed was searched, but no piece of sharpened wood was found. It was thought that it might have been lost in changing the mattresses.\\n\",\"The cloth above referred to belonged to the inner seam of his trousers, which he had managed to tear out.\\n\",\"There is nothing to show that Courvoisier really contemplated self-destruction.\\n\",\"A murder which reproduced many of the features of that committed by Greenacre soon followed, and excited the public mind even more than that of Courvoisier's.\\n\",\"Daniel Good's crime might have remained long undiscovered but for his own careless stupidity.\\n\",\"He was coachman to a gentleman at Roehampton. One day he went into a pawnbroker's at Wandsworth, and bought a pair of breeches on credit.\\n\",\"At the same time he was seen to steal and secrete a pair of trousers. The shop-boy gave information.\\n\",\"Good was followed to his stables by a policeman, but obstinately denied the theft.\\n\",\"The policeman insisted on searching the premises, at which Good displayed some uneasiness.\\n\",\"This increased when the officer, accompanied by two others, a neighbor and a bailiff, entered one of the stables.\\n\",\"Good now offered to go to Wandsworth and satisfy the pawnbroker.\\n\",\"Just at this moment, however, the searchers found concealed under two trusses of hay a woman's headless and dismembered trunk.\\n\",\"At the constable's cry of alarm Good rushed from the stable and locked the door behind him.\\n\",\"Some time elapsed before the imprisoned party could force open the doors, and by then the fugitive had escaped.\\n\",\"Medical assistance having been summoned, it was ascertained how the dismemberment had been effected.\\n\",\"At the same time an overpowering odor attracted them to the adjoining harness-room, where the missing remains were raked out\\n\",\"half consumed in the ashes of a wood fire.\\n\",\"In the same room a large axe and saw were found covered with blood.\\n\",\"Inquiry into the character of Good exposed him as a loose liver, who \\\"kept company\\\" with several women.\\n\",\"One called his sister, but supposed to be his wife, had occupied a room in South Street, Manchester Square,\\n\",\"with a son of Good's by a former wife. Another wife, real or fictitious, existed in Spitalfields,\\n\",\"and evidence was given of close relation between Good and a third woman, a girl named Butcher, residing at Woolwich.\\n\",\"The victim was the first of these three.\\n\",\"Good had told her, much to her perturbation, that she was to move from South Street to Roehampton, and one day he fetched her.\\n\",\"They were seen together on Barnes Common, and again in Putney Park Lane, where they were talking loud and angrily.\\n\",\"The poor creature was never seen again alive.\\n\",\"The actual method of the murder was never exactly ascertained.\\n\",\"Good himself remained at large for some weeks. He had tramped as far as Tunbridge, where he obtained work as a bricklayer's laborer;\\n\",\"he there gave satisfaction for industry, but he was taciturn, and would hold no converse with his fellows.\\n\",\"The woman where he lodged noticed that he was very restless at night, moaning and sighing much. Detection came unexpectedly.\\n\",\"He was recognized by an ex-policeman who had known him at Roehampton, and immediately arrested.\\n\",\"In his effects were found the clothes he had on at the time of his escape from the stables, and under the jacket he was wearing\\n\",\"was a piece of a woman's calico apron stained with blood, which he had used to save the pressure on his shoulder by the hod.\\n\",\"Good was committed to Newgate, and tried at the Central Criminal Court before a crowded court.\\n\",\"He made a rambling defense, ending by saying,\\n\",\"Good ladies and gentlemen all, I have a great deal more to say, but I am so bad I cannot say it.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section seventeen: Newgate notorieties continued, part two.\\n\",\"Hocker's murder is in its way interesting, as affording another proof of the extraordinary way in which the culprit returned to the scene of his guilt.\\n\",\"The cries of his victim, a Mr. Delarue,\\n\",\"brought passers-by and policemen to the spot, a lonely place near a dead wall beyond Belsize Hall, Hampstead,\\n\",\"but too late to give substantial aid.\\n\",\"While the body lay there still warm, battered and bleeding from the cruel blows inflicted upon him by his cowardly assailant, a man came by singing.\\n\",\"He entered into conversation with the policemen, and learnt, as it seemed for the first time, what had happened.\\n\",\"His remark was, \\\"It is a nasty job;\\\" he took hold of the dead hand, and confessed that he felt \\\"queer\\\" at the shocking sight.\\n\",\"This sight was his own handiwork,\\n\",\"yet he could not overcome the strange fascination it had for him, and remained by the side of the corpse till the stretcher came.\\n\",\"Even then he followed it as far as Belsize Lane.\\n\",\"It was here that the others engaged in their dismal office in removing the dead first got a good look at the stranger's face.\\n\",\"He wanted a light for a cigar, and got it from a lantern which was lifted up and fully betrayed his features.\\n\",\"It was noticed that he wore a mackintosh. Next day the police, in making a careful search of the scene of the murder,\\n\",\"picked up a coat-button, which afterwards played an important part in the identification of the murderer.\\n\",\"A letter, which afforded an additional clue, was also found in the pocket of the deceased. Still it was many weeks before any arrest was made.\\n\",\"In the mean time the police were not idle.\\n\",\"It came out by degrees that the person who had been seen in Belsize Lane on the night the body was found was a friend of the deceased.\\n\",\"His name was Hocker; he was by trade a ladies' shoemaker; and it was also ascertained that after the day of the murder he was flush of money.\\n\",\"He was soon afterwards arrested on suspicion, and a search of his lodgings brought to light several garments saturated with blood;\\n\",\"a coat among them much torn and stained, with three buttons missing, one of which corresponded with that picked up at Hampstead.\\n\",\"The letter found in the pocket of the deceased was sealed with a wafer marked F,\\n\",\"and many of the same sort were found in the possession of the accused. This was enough to obtain a committal,\\n\",\"after several remands; but the case contained elements of doubt, and the evidence at the trial was entirely circumstantial.\\n\",\"A witness deposed to meeting Hocker, soon after the cries of murder were heard,\\n\",\"running at a dog-trot into London, and others swore that they plainly recognized him as the man seen soon afterwards in the lane.\\n\",\"A woman whom he called on the same evening declared he had worn a mackintosh, his coat was much torn, there was a stain of blood on his shirt-cuff,\\n\",\"and he was in possession, the first time to her knowledge, of a watch.\\n\",\"This was Delarue's watch, fully identified as such, which Hocker told his brother Delarue had given him the morning of the murder.\\n\",\"These were damnatory facts which well supported the prosecution.\\n\",\"The prisoner made an elaborate defense, in which he sought to vilify the character of deceased\\n\",\"as the seducer of an innocent girl to whom he (Hocker) had been fondly attached.\\n\",\"When her ruin was discovered her brother panted for revenge.\\n\",\"Hocker, whose skill in counterfeiting handwriting was known, was asked to fabricate a letter making an assignation with Delarue\\n\",\"in a lonely part of Hampstead.\\n\",\"Hocker and the brother went to the spot, where the latter left him to meet his sister's seducer alone.\\n\",\"Soon afterwards Hocker heard cries of \\\"murder,\\\"\\n\",\"and proceeding to where they came from, found Delarue dead, slain by the furious brother.\\n\",\"Hocker was so overcome, feeling himself the principal cause of the tragedy,\\n\",\"that he rushed to a slaughterhouse in Hampstead and purposely stained his clothes with blood.\\n\",\"Such an extravagant defense did not weigh with judge or jury;\\n\",\"the first summed up dead against the prisoner, and the latter, after retiring for ten minutes, found him guilty.\\n\",\"Hocker's conduct in Newgate while under sentence of death was most extraordinary.\\n\",\"He drew up several long statements, containing narratives purely fictitious, imputing crimes to his victim, and repeating his line of defense\\n\",\"that Delarue had suffered by the hands of imaginary outraged brothers acting as the avengers of females deeply injured by him.\\n\",\"Hocker made several pretended confessions and revelations, all of which were proved to be absolutely false by the police on inquiry.\\n\",\"His demeanor was a strange compound of wickedness, falsehood, and deceit.\\n\",\"But at the fatal hour his hardihood forsook him, and he was almost insensible when taken out of his cell for execution.\\n\",\"Restoratives were applied, but he was in a fainting condition when tied, and had to be supported by the assistant executioner\\n\",\"while Calcraft adjusted the noose.\\n\",\"There was an epidemic of murder in the United Kingdom about eighteen forty-eight to nine.\\n\",\"In November of the first-named year occurred the wholesale slaughter of the Jermys in their house, Stanfield Hall, by the miscreant Rush.\\n\",\"Soon afterwards, in Gloucestershire,\\n\",\"a maidservant, Sarah Thomas, murdered her mistress, an aged woman, by beating out her brains with a stone.\\n\",\"Next year John Gleeson Wilson, at Liverpool, murdered a woman, Ann Henrichson, also a maidservant and two children;\\n\",\"while in Ireland a wife dashed out her husband's brains with a hammer.\\n\",\"London did not escape the contagion, and prominent among the detestable crimes of the period stands that of the Mannings at Bermondsey.\\n\",\"These great criminals suffered at Horsemonger Lane Jail, but they were tried at the Central Criminal Court, and were for some time inmates of Newgate.\\n\",\"Their victim was a man named Patrick O'Connor, a Custom-House gauger, who had been a suitor of Marie de Roux before she became Mrs. Manning.\\n\",\"Marie de Roux up to the time of her marriage had been in service as lady's maid to Lady Blantyre, daughter of the Duchess of Sutherland,\\n\",\"and Manning hoped to get some small Government appointment through his wife's interest.\\n\",\"He had failed in this as well as in the business of a publican, which he had at one time adopted.\\n\",\"After the marriage a close intimacy was still maintained between O'Connor and the Mannings.\\n\",\"He lived at Mile End, whence he walked often to call at three, Minver Place, Bermondsey, the residence of his old love.\\n\",\"O'Connor was a man of substance. He had long followed the profitable trade of a money-lender,\\n\",\"and by dint of usurious interest on small sums advanced to needy neighbors, had amassed as much as eight thousand pounds or ten thousand pounds.\\n\",\"His wealth was well known to \\\"Maria,\\\" as he called Mrs. Manning, who made several ineffectual attempts to get money out of him.\\n\",\"At last this fiendish woman made up her mind to murder O'Connor and appropriate all his possessions.\\n\",\"Her husband, to whom she coolly confided her intention,\\n\",\"a heavy brutish fellow, was yet aghast at his wife's resolve, and tried hard to dissuade her from bad purpose.\\n\",\"In his confession after sentence he declared that she plied him well with brandy at this period,\\n\",\"and that during the whole time he was never in his right senses.\\n\",\"Meanwhile this woman, unflinching in her cold, bloody determination, carefully laid all her plans for the consummation of the deed.\\n\",\"One fine afternoon in August, O'Connor was met walking in the direction of Bermondsey.\\n\",\"He was dressed with particular care, as he was to dine at the Mannings and meet friends, one a young lady.\\n\",\"He was seen afterwards smoking and talking with his hosts in their back parlor, and never seen again alive.\\n\",\"It came out in the husband's confession that Mrs. Manning induced O'Connor to go down to the kitchen to wash his hands, that she followed him to the basement,\\n\",\"that she stood behind him as he stood near the open grave she herself had dug for him,\\n\",\"and which he mistook for a drain, and that while he was speaking to her she put the muzzle of a pistol close to the back of his head and shot him down.\\n\",\"She ran upstairs, told her husband, made him go down to look at her handiwork, and as O'Connor was not quite dead,\\n\",\"Manning gave the coup de grace with a crowbar.\\n\",\"After this Mrs. Manning changed her dress and went off in a cab to O'Connor's lodgings,\\n\",\"which, having possessed herself of the murdered man's keys, she rifled from end to end.\\n\",\"Returning to her own home, where Manning meantime had been calmly smoking and talking to the neighbors over the basement wall,\\n\",\"the corpse lying just inside the kitchen all the while, the two set to work to strip the body and hide it under the stones of the floor.\\n\",\"This job was not completed till the following day, as the hole had to be enlarged, and the only tool they had was a dust-shovel.\\n\",\"A quantity of quicklime was thrown in with the body to destroy all identification.\\n\",\"This was on a Thursday evening.\\n\",\"For the remainder of that week and part of the next the murderers stayed in the house, and occupied the kitchen, close to the remains of their victim.\\n\",\"On the Sunday Mrs. Manning roasted a goose at this same kitchen fire, and ate it with relish in the afternoon.\\n\",\"This cold-blooded indifference after the event was only outdone by the premeditation of this horrible murder.\\n\",\"The hole must have been excavated and the quicklime purchased quite three weeks before O'Connor met his death,\\n\",\"and during that time he must frequently have stood or sat over his own grave.\\n\",\"Discovery of the murder came in this wise. O'Connor, a punctual and well-conducted official, was at once missed at the London Docks.\\n\",\"On the third day his friends began to inquire for him,\\n\",\"and at their request two police officers were sent to Bermondsey to inquire for him at the Mannings, with whom it was well known that he was very intimate.\\n\",\"The Mannings had seen or heard nothing of him, of course. As O'Connor still did not turn up, the police after a couple of days returned to Minver Place.\\n\",\"The house was empty, bare and stripped of all its furniture, and its former occupants had decamped.\\n\",\"The circumstance was suspicious, and a search was at once made of the whole premises.\\n\",\"In the back kitchen one of the detectives remarked that the cement between certain stones looked lighter than the rest, and on trying it with a knife,\\n\",\"he found that it was soft and new, while elsewhere it was set and hard.\\n\",\"The stones were at once taken up;\\n\",\"beneath them was a layer of fresh mortar, beneath that a lot of loose earth, amongst which a stocking was turned up, and presently a human toe.\\n\",\"Six inches lower the body of O'Connor was uncovered.\\n\",\"He was lying on his face, his legs tied up to his hips so as to allow of the body fitting into the hole.\\n\",\"The lime had done its work so rapidly that the features would have been indistinguishable but for the prominent chin and a set of false teeth.\\n\",\"The corpse settled all doubts, and the next point was to lay hands upon the Mannings.\\n\",\"It was soon ascertained that the wife had gone off in a cab with a quantity of luggage.\\n\",\"Part of this she had deposited to be left till called for at one station, while she had gone herself to another, that at Euston Square.\\n\",\"At the first the boxes were impounded, opened, and found to contain many of O'Connor's effects.\\n\",\"At the second exact information was obtained of Mrs. Manning's movements. She had gone to Edinburgh.\\n\",\"A telegraphic message, then newly adapted to the purposes of criminal detection,\\n\",\"advised the Edinburgh police of the whole affair, and within an hour an answer was telegraphed, stating that Mrs. Manning was in custody.\\n\",\"She had been to brokers to negotiate the sale of certain foreign railway stock, with which they had been warned from London not to deal,\\n\",\"and they had given information to the police.\\n\",\"Her arrest was planned, and, when the telegram arrived from London, completed.\\n\",\"An examination of her boxes disclosed a quantity of O'Connor's property.\\n\",\"Mrs. Manning was transferred to London and lodged in the Horsemonger Lane Jail, where her husband soon afterwards joined her.\\n\",\"He had fled to Jersey, where he was recognized and arrested.\\n\",\"Each tried to throw the blame on the other; Manning declared his wife had committed the murder, Mrs. Manning indignantly denied the charge.\\n\",\"The prisoners were in due course transferred to Newgate, to be put upon their trial at the Central Criminal Court.\\n\",\"A great number of distinguished people assembled as usual at the Old Bailey on the day of trial.\\n\",\"The Mannings were arraigned together; the husband standing at one of the front corners of the dock, his wife at the other end.\\n\",\"Manning, who was dressed in black, appeared to be a heavy, bull-necked, repulsive-looking man, with a very fair complexion and light hair.\\n\",\"Mrs. Manning was not without personal charms;\\n\",\"her face was comely, she had dark hair and good eyes, and was above the middle height, yet inclined to be stout.\\n\",\"She was smartly dressed in a plaid shawl, a white lace cap;\\n\",\"her hair was dressed in long crepe bands. She had lace ruffles at her wrist, and wore primrose-colored kid gloves.\\n\",\"The case rested upon the facts which have been already set forth, and was proved to the satisfaction of the jury, who brought in a verdict of guilty.\\n\",\"Manning, when sentence of death was passed on him, said nothing;\\n\",\"but Mrs. Manning, speaking in a foreign accent, addressed the court with great fluency and vehemence.\\n\",\"She complained that she had no justice; there was no law for her, she had found no protection either from judges, the prosecutor, or her husband.\\n\",\"She had not been treated like a Christian, but like a wild beast of the forest. She declared that the money found in her possession had been sent her from abroad;\\n\",\"that O'Connor had been more to her than her husband, that she ought to have married him.\\n\",\"It was against common sense to charge her with murdering the only friend she had in the world;\\n\",\"the culprit was really her husband, who killed O'Connor out of jealousy and revengeful feelings.\\n\",\"When the judge assumed the black cap\\n\",\"Mrs. Manning became still more violent, shouting, \\\"No, no, I will not stand it! You ought to be ashamed of yourselves!\\\"\\n\",\"and would have left the dock had not Mr. Cope, the governor of Newgate, restrained her.\\n\",\"After judgment was passed she repeatedly cried out Shame!\\n\",\"and stretching out her hand, she gathered up a quantity of the rue which, following ancient custom dating from the days of the jail fever,\\n\",\"was strewn in front of the dock, and sprinkled it towards the bench with a contemptuous gesture.\\n\",\"On being removed to Newgate from the court Mrs. Manning became perfectly furious.\\n\",\"She uttered loud imprecations, cursing judge, jury, barristers, witnesses, and all who stood around.\\n\",\"They had to handcuff her by force against the most violent resistance, and still she raged and stormed,\\n\",\"shaking her clenched and manacled hands in the officers' faces.\\n\",\"From Newgate the Mannings were taken in separate cabs to Horsemonger Lane Jail.\\n\",\"On this journey her manner changed completely. She became flippant, joked with the officers, asked how they liked her \\\"resolution\\\" in the dock,\\n\",\"and expressed the utmost contempt for her husband, whom she never intended to acknowledge or speak to again.\\n\",\"Later her mood changed to abject despair.\\n\",\"On reaching the condemned cell she threw herself upon the floor and shrieked in an hysterical agony of tears.\\n\",\"After this, until the day of execution, she recovered her spirits, and displayed reckless effrontery,\\n\",\"mocking at the chaplain, and turning a deaf ear to the counsels of a benevolent lady who came to visit.\\n\",\"Now she abused the jury, now called Manning a vagabond,\\n\",\"and through all ate heartily at every meal, slept soundly at nights, and talked with cheerfulness on almost any subject.\\n\",\"Nevertheless, she attempted to commit suicide by driving her nails, purposely left long, into her throat.\\n\",\"She was discovered just as she was getting black in the face.\\n\",\"Manning's demeanor was more in harmony with his situation, and the full confession he made\\n\",\"elucidated all dark and uncertain points in connection with the crime.\\n\",\"The actual execution, which took place at another prison than Newgate, is rather beyond the scope of this work.\\n\",\"But it may be mentioned that the concourse was so enormous that it drew down the well-merited and trenchant disapproval of Charles Dickens,\\n\",\"who wrote to the 'Times,' saying that he believed \\\"a sight so inconceivably awful\\n\",\"as the wickedness and levity of the immense crowd collected at the execution this morning could be imagined by no man,\\n\",\"and presented by no heathen land under the sun.\\n\",\"faded in my mind before the atrocious bearing, looks, and language of the assembled spectators.\\n\",\"When I came upon the scene at midnight, the shrillness of the cries and howls that were raised from time to time,\\n\",\"denoting that they came from a concourse of boys and girls already assembled in the best places, made my blood run cold.\\n\",\"It will be in the memory of many that Mrs. Manning appeared on the scaffold in a black satin dress, which was bound tightly round her waist.\\n\",\"This preference brought the costly stuff into disrepute, and its unpopularity lasted for nearly thirty years.\\n\",\"I will briefly describe one or two of the more remarkable murders in the years immediately following, then pass on to another branch of crime.\\n\",\"Robert Marley at the time of his arrest called himself a surgical instrument maker.\\n\",\"It was understood also that he had served in the army as a private, and had, moreover, undergone a sentence of transportation.\\n\",\"But it was supposed that he had been once in a good position, well born, and well educated.\\n\",\"When lying under sentence of death in Newgate, he was visited by a lady, a gentlewoman in every sense of the word, who was said to be his sister.\\n\",\"His determined addiction to evil courses had led to his being cast off by his family,\\n\",\"and he must have been at the end of his resources when he committed the crime for which he suffered.\\n\",\"His offense was the murder of Richard Cope,\\n\",\"a working jeweler, shopman to a Mr. Berry of Parliament Street. It was Cope's duty to stay in the shop till the last, close the shutters,\\n\",\"secure the stock of watches and jewelry, then lock up the place and take on the keys to Mr. Berry's private house in Pimlico.\\n\",\"Cope, a small man, crippled, and of weakly constitution, was alone in the shop about nine:thirty.\\n\",\"the shutters were up, and he was preparing to close, when Marley entered and fell upon him with a life-preserver,\\n\",\"meaning to kill him and rifle the shop.\\n\",\"The noise of the struggle was heard outside in the street,\\n\",\"and bystanders peeped in through the shutters, but no one entered or sought to interfere in what seemed only a domestic quarrel.\\n\",\"A milliner's porter,\\n\",\"Lerigo, was also attracted by the noise of the row, but after walking a few paces he felt dissatisfied, and returned to the spot.\\n\",\"Pushing the shop-door open, he saw Marley finishing his murderous assault.\\n\",\"Lerigo turned for assistance to take the man into custody.\\n\",\"Marley, disturbed, picked up a cigar and parcel from the counter, then ran out, pursued by Lerigo only.\\n\",\"Marley ran along the street, down into Cannon Row\\n\",\"then into Palace Yard, where the waterman of the cab-tank, in obedience to Lerigo's shouts, collared the fugitive.\\n\",\"Escorted by his two captors, Marley was taken back into Parliament Street to the jeweler's shop.\\n\",\"The policemen were now in possession;\\n\",\"two of them supported Cope, who was still alive, although insensible, and Marley was apprehended. The evidence against him was completed\\n\",\"by his identification by Cope in Westminster Hospital, who survived long enough to make a formal deposition before Mr. Jardine,\\n\",\"the police magistrate, that Marley was the man who had beaten him to death.\\n\",\"Marley at his trial was undefended, and the sheriffs offered him counsel; but he declined. The witnesses against him all spoke the truth, he said;\\n\",\"there was no case to make out; why waste money on lawyers for the defense? His demeanor was cool and collected throughout;\\n\",\"he seemed while in Newgate to realize thoroughly that there was no hope for him, and was determined to face his fate bravely.\\n\",\"After sentence, the Newgate officers who had special charge of him noticed that he slept well and ate well, enjoying all his meals.\\n\",\"One of them went into his cell just at dinner-time;\\n\",\"the great clock of St. Sepulchre's close by was striking the hour, and Marley, who had his elbows on the table,\\n\",\"with his head resting on his hands, looked up and observed calmly, \\\"Go along, clock; come along, gallows.\\\"\\n\",\"On the dread morning he came out to execution quite gaily, and tripped up the stairs to the scaffold.\\n\",\"His captors, it may be added (Lerigo and Allen), were warmly commended by the judge for their courage and activity.\\n\",\"The former was given a reward of twenty and the latter of ten pounds.\\n\",\"A murderous assault on a police constable, which so nearly ended fatally that the culprit was sentenced to death, although not executed,\\n\",\"was perpetrated in eighteen fifty-two. The case was accompanied with the most shocking brutality.\\n\",\"Cannon, by trade a chimney-sweep, had long been characterized by the bitterest hatred of the police force,\\n\",\"and had been repeatedly sentenced to imprisonment for most desperate and ferocious attacks upon various constables. His last victim was Dwyer,\\n\",\"a fine young officer who had been summoned to take Cannon into custody when the latter was drunk and riotous in front of a public-house.\\n\",\"Dwyer found Cannon bleeding profusely from a wound in the head, and persuaded him to go to a doctor's.\\n\",\"They walked together quietly for some little distance, then Cannon, without the slightest warning,\\n\",\"threw the constable on his back, and violently assaulted him by jumping on his chest and stomach,\\n\",\"and by getting his hand inside Dwyer's stock, with the idea of strangling him.\\n\",\"Dwyer managed to overpower his assailant, and got to his feet; but Cannon butted at him with his head, and again threw him to the ground,\\n\",\"after which he kicked his prostrate foe in the most brutal and cowardly manner, and until he was almost senseless, and bruised from head to foot.\\n\",\"Once more Dwyer got to his feet, and managed, by drawing his staff, to keep Cannon at bay until a second constable came to his aid.\\n\",\"All this time not one of a numerous body of bystanders offered to assist the policeman in his extremity.\\n\",\"On the contrary, many of them encouraged the brutal assailant in his savage attack.\\n\",\"To Cannon's infinite surprise, he was indicted for attempt to murder, and not for a simple assault, and found guilty.\\n\",\"The judge, in passing sentence of death, told him he richly deserved the punishment.\\n\",\"As Dwyer survived, Cannon escaped the death sentence, which was commuted to penal servitude for life.\\n\",\"A handsome sum was subscribed for the injured constable, who was disabled for life.\\n\",\"Only a few have vied with Cannon in fiendish cruelty and brutality.\\n\",\"One of these was Mobbs, who lived in the Minories,\\n\",\"generally known by the soubriquet of \\\"General Haynau,\\\" a name execrated in England about this time.\\n\",\"Mobbs systematically ill-used his wife for a long space of time, and at last cut her throat.\\n\",\"For this he was executed in front of Newgate in eighteen thirty-three.\\n\",\"Emmanuel Barthelemy again,\\n\",\"the French refugee, was a murderer of the same description, who dispatched his victim with a loaded cane, after which, to secure his escape,\\n\",\"he shot an old soldier who had attempted to detain him. He was convicted and executed.\\n\",\"He died impenitent, declaring that he had no belief, and that it was idle to ask forgiveness of God.\\n\",\"I want forgiveness of man; I want those doors (of the prison) opened.\\n\",\"Barthelemy was generally supposed to have been a secret agent of the French police.\\n\",\"I will now pass to grave but less atrocious crimes.\\n\",\"In eighteen fifty occurred the first of a series of gigantic frauds,\\n\",\"which followed each other at no long intervals, which had a strong family likeness, and originated all of them to make money easily,\\n\",\"without capital, and at railroad speed.\\n\",\"Walter Watts was an inventor, a creator, who struck an entirely new and original line of crime.\\n\",\"Employed as a clerk in the Globe Assurance,\\n\",\"he with unusual quickness of apprehension discovered and promptly turned to account an inexcusably lax system of management,\\n\",\"which offered peculiar chances of profit to an ingenious and unscrupulous man.\\n\",\"It was the custom in this office to make the banker's passbook the basis of the entries in the company's ledgers.\\n\",\"Thus, when a payment was made by the company, the amount disbursed was carried to account in the general books from its entry in the passbook,\\n\",\"and without reference to or comparison with the documents in which the payment was claimed.\\n\",\"This passbook, when not at the bank, was in the exclusive custody of Watts.\\n\",\"The cheques drawn by the directors also passed through his hands; to him too they came back to be verified and put by,\\n\",\"after they had been cashed by the bank.\\n\",\"In this way Watts had complete control over the whole of the monetary transactions of the company.\\n\",\"He could do what he liked with the passbook, and by its adoption, as described as the basis of all entries,\\n\",\"there was no independent check upon him if he chose to tamper with it.\\n\",\"This he did to an enormous extent,\\n\",\"continually altering, erasing, and adding figures to correspond with and cover the abstractions he made of various cheques as they were drawn.\\n\",\"It seems incredible that this passbook, which when produced in court\\n\",\"was a mass of blots and erasures, should not have created suspicion of foul play either at the bank or at the company's board.\\n\",\"Implicit confidence appears to have been placed in Watts, who was the son of an old and trusted employee, and, moreover, a young man of plausible address.\\n\",\"Watts led two lives.\\n\",\"In the West End he was a man of fashion, with a town house, a house at Brighton, and a cellar full of good wine at both.\\n\",\"He rode a priceless hack in Rotten Row, or drove down to Richmond in a mail phaeton and pair.\\n\",\"He played high, and spent his nights at the club, or in joyous and dissolute company.\\n\",\"When other pleasures palled he took a theatre, and posed as a munificent patron of the dramatic art.\\n\",\"Under his auspices several \\\"stars\\\" appeared on the boards of the Marylebone theatre,\\n\",\"and later he became manager of the newly rebuilt Olympic at Wych Street.\\n\",\"No one cared too closely to inquire into the sources of wealth. Some said he was a fortunate speculator in stocks,\\n\",\"others that he had had extraordinary luck as a gold-digger. Had his West End and little-informed associates followed him into the city,\\n\",\"whither he was taken every morning in a smart brougham, they would have seen him alight from it in Cornhill,\\n\",\"and walk forward on foot to enter as a humble and unpretending employee the doors of the Globe Assurance office.\\n\",\"Nevertheless, in this position, through the culpable carelessness which left him unfettered, he managed between eighteen forty-four\\n\",\"and eighteen fifty to embezzle and apply to his own purposes some seventy-one thousand pounds.\\n\",\"The detection of these frauds came while he was still prominently before the world as the lessee of the Olympic.\\n\",\"Rumors were abroad that serious defalcations had been discovered in one of the insurance offices,\\n\",\"but it was long before the public realized that the fraudulent clerk and the great theatrical manager were one and the same person.\\n\",\"Watts's crime was discovered by the secretary of the Globe Company, who came suddenly upon the extensive falsification of the passbook.\\n\",\"An inquiry was at once set on foot, and the frauds were traced to Watts.\\n\",\"The latter, when first taxed with his offense, protested his innocence boldly, and positively denied all knowledge of the affair;\\n\",\"and he had so cleverly destroyed all traces that it was not easy to bring home the charge.\\n\",\"But it was proved that Watts had appropriated one cheque for fourteen hundred pounds,\\n\",\"which he had paid into his own bankers, and on this he was committed to Newgate for trial.\\n\",\"There were two counts in the indictment: one for stealing a cheque value fourteen hundred pounds, the second for stealing a bit of paper value one penny.\\n\",\"The jury found him guilty of the latter only, with a point of law reserved. This was fully argued before three judges,\\n\",\"and not for the slight offense as it appeared on the record.\\n\",\"The sentence of the court, one of ten years' transportation, struck the prisoner with dismay.\\n\",\"He had been led to suppose that twelve months' imprisonment was the utmost the law could inflict, and he broke down utterly under the unexpected blow.\\n\",\"That same evening he committed suicide in Newgate.\\n\",\"The details of the suicide were given at the inquest. Watts had been in ill-health from the time of his first arrest.\\n\",\"In Giltspur Street Compter, where he was first lodged\\n\",\"he showed symptoms of delirium tremens, and admitted that he had been addicted to the excessive use of stimulants.\\n\",\"His health improved, but was still indifferent when he was brought up for sentence, and he was an occupant of the Newgate infirmary.\\n\",\"He returned from court in a state of gloomy dejection,\\n\",\"and in the middle of the night one of the fellow-prisoners who slept in the same ward noticed that he was not in his bed.\\n\",\"This man got up to look for him, and found him hanging from the bars of a neighboring room.\\n\",\"He had made use of a piece of rope cut out from the sacking of his bedstead, and had tied his feet together with a silk pocket-handkerchief.\\n\",\"The prison officers were called, but Watts was quite cold and stiff when he was cut down.\\n\",\"Strange to say, a second suicide occurred in Newgate the same night,\\n\",\"that of a prize-fighter named Donovan, tried the same day, and convicted of manslaughter.\\n\",\"Sentence of death had been recorded against Donovan, who, like Watts, had seemingly been overcome with sudden despair.\\n\",\"In eighteen fifty-three a second case of gigantic fraud alarmed and scandalized the financial world.\\n\",\"It outshone the defalcations of Watts.\\n\",\"Nothing to equal the excitement caused by the forgeries of Robert Ferdinand Pries had been known before in the city of London.\\n\",\"He was a corn merchant who operated largely in grain.\\n\",\"So enormous were his transactions, that they often affected the markets, and caused great fluctuations in prices.\\n\",\"These had been attributed to political action; some thought that the large purchases in foreign grains, effected at losing prices,\\n\",\"were intended by the protectionists to depress the wheat market, and secure the support of the farmers at the forthcoming election;\\n\",\"others, that Napoleon the third, but recently proclaimed Emperor of the French, wished to gain the popularity necessary to secure the people.\\n\",\"Few realized that these mysterious operations were the \\\"convulsive attempt\\\" of a ruined and dishonest speculator to sustain his credit.\\n\",\"Pries, although enjoying a high reputation in the city, had long been in a bad way.\\n\",\"His extensive business had been carried on by fraud.\\n\",\"His method was to obtain advances twice over on the same bills of lading or corn warrants. The duplicates were forged.\\n\",\"In this way he obtained vast sums from several firms, and one to which he was indebted upwards of fifty thousand pounds subsequently stopped payment.\\n\",\"Pries at length was discovered\\n\",\"through a dishonored cheque for three thousand pounds, paid over as an installment of eighteen thousand pounds owing for an advance on warrants.\\n\",\"Inquiries were instituted when the cheque was protested, which led to the discovery of the forgeries.\\n\",\"Pries was lodged in Newgate, tried at the Old Bailey, and transported for life.\\n\",\"Another set of frauds, which resembled those of Pries in principle, although not in practice, were soon afterwards discovered.\\n\",\"proposed to gain the capital he needed for business purposes by raising money on dock warrants for imported goods which had no real existence.\\n\",\"When such goods arrived they were frequently left at a wharf, paying rent until it suited the importer to remove them.\\n\",\"The dock warrant was issued by the wharfinger as certificate that he held the goods.\\n\",\"The warrant thus represented money, and was often used as such, being endorsed and passed from hand to hand as other negotiable bills.\\n\",\"Cole's plan was to have a wharf of his own, nominally occupied by a creature trading as Maltby and Co.\\n\",\"Goods would be landed at this wharf;\\n\",\"Maltby and Co. would issue warrants on them deliverable to the importer, and the goods were then passed to be stored in neighboring warehouses.\\n\",\"The owners of the latter would then issue a second set of warrants on these goods, in total ignorance of the fact that they were already pledged.\\n\",\"Cole quickly raised money on both sets of warrants. He carried on this game for some time with great success,\\n\",\"and so developed his business that in one year his transactions amounted to a couple of millions of pounds.\\n\",\"He had several narrow escapes.\\n\",\"Once a warrant-holder sent down a clerk to view certain goods, and the clerk found that these goods had already a \\\"stop\\\" upon them, or were pledged.\\n\",\"Cole escaped by throwing the blame on a careless partner, and at once removed the \\\"stop.\\\"\\n\",\"Again, some of the duplicate and fictitious warrants were held by a firm which suspended payment, and there was no knowing into whose hands they might fall.\\n\",\"Cole found out where they were, and redeemed them at a heavy outlay, thus obtaining business relations with the firm that held them,\\n\",\"which were soon developed, much to that firm's subsequent anger and regret.\\n\",\"Last of all, the well-known bankers Overend and Gurney, whose own affairs created much excitement some years later,\\n\",\"wishing to verify the value of warrants they held, and sending to Maltby and Co.'s wharf, found out half the truth.\\n\",\"These bankers, wishing for more specific information,\\n\",\"asked Davidson and Gordon, a firm with which Cole was closely allied, whether the warrants meant goods or nothing.\\n\",\"They could not deny that the latter was the truth, and were forthwith stigmatized by Mr. Chapman, Overend and Gurney's representative, as rogues.\\n\",\"Chronicles of Newgate, Volume two. By Arthur Griffiths. Section eighteen: Newgate notorieties continued, part three.\\n\",\"The course of the swindlers was by no means smooth, but it was not till eighteen fifty-four that suspicion arose that anything was wrong.\\n\",\"A firm which held a lot of warrants suddenly demanded the delivery of the goods they covered.\\n\",\"The goods having no existence, Cole of course could not deliver them.\\n\",\"About this time Davidson and Gordon, the people above-mentioned,\\n\",\"who had fraudulent warrants out of their own to the extent of one hundred fifty thousand pounds, suspended payment and absconded.\\n\",\"This affected Cole's credit, and ugly reports were in circulation charging him with the issue of simulated warrants.\\n\",\"These indeed were out to the value of three hundred sixty-seven thousand, eight hundred pounds.\\n\",\"Cole's difficulties increased more and more; warrant-holders came down upon him demanding to realize their goods.\\n\",\"Cole now suspended payment.\\n\",\"Maltby, who had bolted, was pursued and arrested, to end his life miserably by committing suicide in a Newgate cell.\\n\",\"Cole too was apprehended, and in due course tried at the Central Criminal Court.\\n\",\"He was found guilty, and sentenced to the seemingly inadequate punishment of four years' transportation.\\n\",\"Davidson and Gordon were also sentenced to imprisonment.\\n\",\"A more distressing case stands next on the criminal records --\\n\",\"the failure and subsequent sentence of the bankers Messrs. Strahan, Paul, and Bates,\\n\",\"for the fraudulent disposal of securities lodged in their hands. This firm was one of the oldest banking establishments in the kingdom,\\n\",\"and dated back to the Commonwealth, when, under the title of Snow and Walton, it carried on business as pawnbrokers.\\n\",\"The Strahan of the firm which came to grief was a Snow who changed his name for a fortune of two hundred thousand pounds;\\n\",\"he was a man esteemed and respected in society and the world of finance, incapable as it was thought of a dishonest deed.\\n\",\"Sir John Dean Paul had inherited a baronetcy from his father, together with an honored name;\\n\",\"he was himself a prominent member of the Low Church, of austere piety, active in all good works.\\n\",\"Mr. Bates had been confidential managing clerk, and was taken into the firm not alone as a reward for long and faithful service\\n\",\"but that he might strengthen it by his long experience and known business capacity.\\n\",\"The bank enjoyed an excellent reputation, it had a good connection, and was supposed to be perfectly sound.\\n\",\"Moreover, the partners were sober, steady men, who paid unremitting attention to business.\\n\",\"Yet even so early as the death of the first Sir John Paul,\\n\",\"the bank was insolvent, and instead of starting on a fresh life with a new name, it should then and there have closed its doors.\\n\",\"In December eighteen fifty-one the balance sheet showed a deficiency of upwards of seventy thousand pounds.\\n\",\"The bank had been conducted on false principles;\\n\",\"it had assumed enormous responsibilities -- on one side by the ownership of the Mostyn collieries, a valueless property,\\n\",\"and on the other by backing up\\n\",\"an impecunious and rotten firm of contractors with vast liabilities and pledged to impossible works abroad.\\n\",\"The engagements of the bank on these two heads amounting to nearly half a million of money,\\n\",\"produced immediate embarrassment and financial distress.\\n\",\"The bank was already insolvent,\\n\",\"and the partners had to decide between suspending payment or continuing to hold its head above water by flagitious processes.\\n\",\"They chose, unhappily for themselves, the latter alternative.\\n\",\"Money they must have, and money they raised to meet their urgent necessities upon the balances and securities deposited with them by their customers.\\n\",\"This borrowing continued, and on such a scale that their paper was soon at a discount,\\n\",\"and the various discount houses would not advance sufficient sums to relieve the necessities of the bank.\\n\",\"Then it was that instead of merely pledging securities, the bank sold them outright, and thus passed the Rubicon of fraud.\\n\",\"This went on for some time, and might never have been discovered had some good stroke of luck provided any of the partners\\n\",\"with money enough to retrieve the position of the bank. But that passed from bad to worse;\\n\",\"the firm's paper went down further and further in value; an application to the Committee of Bankers for assistance was peremptorily refused,\\n\",\"then came a run on the bank, and it was compelled to stop payment.\\n\",\"Its debts amounted to three-quarters of a million, and the dividend it eventually paid was three and twopence in the pound.\\n\",\"But worse than the bankruptcy was the confession made by the partners in the court.\\n\",\"They admitted that they had made away with many of the securities entrusted to their keeping.\\n\",\"Following this, warrants were issued for their arrest,\\n\",\"the specific charge being the unlawful negotiation of Danish bonds and other shares belonging to the Rev. Dr. Griffiths of Rochester\\n\",\"to the value of twenty thousand pounds.\\n\",\"Bates was at once captured in Norfolk Street, Strand.\\n\",\"Police officers went down at night to Nutfield, near Reigate, and arrested Sir John Paul, but allowed the prisoner to sleep there.\\n\",\"Next morning they only just saved the train to town, and left Sir John behind on the platform, but he subsequently surrendered himself.\\n\",\"Mr. Strahan was arrested at a friend's house in Bryanston Square.\\n\",\"All three were tried at the Central Criminal Court, and sentenced to fourteen years' transportation, passing some time in Newgate en route.\\n\",\"Bates, the least guilty, was pardoned in eighteen fifty-eight.\\n\",\"Two cases of extensive embezzlement which were discovered almost simultaneously, those of Robson and Redpath,\\n\",\"will long be remembered both within and without the commercial world.\\n\",\"They both reproduced many of the features of the case of Watts, already described,\\n\",\"but in neither did the sums misappropriated reach quite the same high figure.\\n\",\"But neither Robson nor Redpath would have been able to pursue their fraudulent designs with success had they not, like Watts,\\n\",\"been afforded peculiar facilities by the slackness of system and the want of methodical administration in the concerns by which they were employed.\\n\",\"Robson was of humble origin, but he was well educated, and he had some literary abilities.\\n\",\"His proclivities were theatrical, and he was the author of several plays,\\n\",\"one at least of which, 'Love and Loyalty,' with Wallack in a leading part, achieved a certain success.\\n\",\"He began life as a law-writer, earning thereby some fifteen or eighteen shillings a week;\\n\",\"but the firm he served got him a situation as clerk in the office of the Great Northern Railway,\\n\",\"whence he passed to a better position under the Crystal Palace Company.\\n\",\"He now married, although his salary was only a pound a week; but he soon got on.\\n\",\"He had a pleasant address, showed good business aptitudes, and quickly acquired the approval of his superiors.\\n\",\"Within a year he was advanced to the post of chief clerk in the transfer department, at a salary of one hundred fifty pounds a year.\\n\",\"His immediate chief was a Mr. Fasson, upon whose confidence he gained so rapidly, through his activity, industry, and engaging manners,\\n\",\"that ere long the whole management of the transfer department was entrusted to him.\\n\",\"Some time elapsed before Robson succumbed to temptation.\\n\",\"He was not the first man of loose morality and expensive tastes\\n\",\"who preferred to risk his future reputation and liberty to the present discomfort of living upon narrow means.\\n\",\"The temptation was all the greater because the chances of successful fraud lay ready to hand.\\n\",\"Shares in the company were represented by certificates, which often enough never left the company's, or more exactly Robson's, hands.\\n\",\"He conceived the idea of transferring shares, bogus shares from a person who held none, to any one who would buy them in the open market.\\n\",\"He took it for granted that the certificates representing these bogus shares, and which practically did not exist, would never be called for.\\n\",\"This ingenious method of raising funds he adopted and carried on without detection,\\n\",\"till the defalcations from fraudulent transfers and fraudulent issues combined amounted to twenty-seven thousand pounds.\\n\",\"With the proceeds of these flagitious frauds Robson feasted and made merry.\\n\",\"He kept open house at Kilburn Priory;\\n\",\"entertained literary, artistic, and dramatic celebrities; had a smart \\\"turn out,\\\" attended all the race-meetings, and dressed in the latest fashion.\\n\",\"To his wife, poor soul, he made no pretense of fidelity, and she enjoyed only so much of his company as was necessarily spent\\n\",\"in receiving guests at home, or could be spared from two rival establishments in other parts of the town.\\n\",\"To account for his revenues he pretended to have been very lucky on the Stock Exchange, which was at one time true to a limited extent,\\n\",\"and to have succeeded in other speculations.\\n\",\"When his friends asked why he, a wealthy man of independent means, continued to slave on as a clerk on a pittance,\\n\",\"he replied gaily that his regular work at the Crystal Palace office was useful as a sort of discipline, and kept him steady.\\n\",\"All this time his position was one of extreme insecurity. He was standing over a mine which at any moment might explode.\\n\",\"The blow fell suddenly, and when least expected. One morning Mr. Fasson asked casually for certain certificates,\\n\",\"whether representing real or fictitious shares does not appear; but they were certificates connected in some way with Robson's long practiced frauds\\n\",\"and he could not produce them. His chief asked sternly where they were.\\n\",\"Robson said they were at Kilburn Priory.\\n\",\"\\\"Let us go to Kilburn for them together,\\\" said Mr. Fasson, growing suspicious.\\n\",\"They drove there, and Robson on arrival did the honors of his house, rang for lunch to gain time,\\n\",\"but at Mr. Fasson's pressing demands went upstairs to fetch the certificates.\\n\",\"He came back to explain that he had mislaid them.\\n\",\"Mr. Fasson, more and more ill at ease, would not accept this subterfuge, and declared they must be found.\\n\",\"Robson again left him, but only to gather together hastily all the money and valuables on which he could lay his hands, with which he left the house.\\n\",\"Mr. Fasson waited and waited for his subordinate to re-appear, and at last discovered his flight.\\n\",\"A reward was forthwith offered for Robson's apprehension.\\n\",\"Meanwhile the absconding clerk had coolly driven to a favorite dining-place in the West End,\\n\",\"where a fish curry and a brace of partridges were set before him,\\n\",\"and he discussed the latter with appetite, but begged that they would never give him curry again, as he did not like it.\\n\",\"After dinner he went into hiding for a day or two,\\n\",\"then, accompanied by a lady, not Mrs. Robson, he took steamer and started for Copenhagen.\\n\",\"But the continental police had been warned to look out for him, and two Danish inspectors got upon his track,\\n\",\"followed him over to Sweden, and arrested him at Helsingfors.\\n\",\"Thence he was transferred to Copenhagen and surrendered in due course to a London police officer.\\n\",\"Little more remains to be said about Robson. He appears to have accepted his position, and to have at once resigned himself to his fate.\\n\",\"When brought to trial he took matters very coolly, and at first pleaded \\\"Not Guilty,\\\" but subsequently withdrew the plea.\\n\",\"Sergeant Ballantine, who prosecuted,\\n\",\"paid him the compliment of describing him as \\\"a young man of great intelligence, considerable powers of mind,\\n\",\"and possessed of an education very much beyond the rank of life to which he originally belonged.\\\"\\n\",\"Robson was found guilty, and sentenced to two terms of transportation, one for twenty and one for fourteen years.\\n\",\"Newgate officers who remember Robson still describe him as a fine young man, who behaved well as a prisoner,\\n\",\"but who had all the appearance of a careless, thoughtless, happy-go-lucky fellow.\\n\",\"In many respects the embezzlement of which Leopold Redpath was guilty closely resembled that of Robson,\\n\",\"but it was based upon more extended and audacious forgeries.\\n\",\"Redpath's crime arose from his peculiar and independent position as registrar of stock of the Great Northern Railway Company.\\n\",\"This offered him great facilities for the creation of artificial stock, its sale from a fictitious holder, and transfer to himself.\\n\",\"All the signatures in the transfer were forged. Not only did he thus transfer and realize \\\"bogus\\\" stock\\n\",\"but he bought bona fide amounts, and increased their value by altering the figures,\\n\",\"by inserting say one before five hundred, and thus making it\\n\",\"fifteen hundred pounds, which larger amount was duly carried to his credit on the register, and entered upon the certificates of transfer.\\n\",\"By these means Redpath misappropriated vast sums during a period extending over ten years.\\n\",\"The total amount was never exactly made out, but the false stock created and issued by him was estimated at two hundred twenty thousand pounds.\\n\",\"Even when the bubble burst Redpath, who had lived at the rate of twenty thousand a year,\\n\",\"had assets in the shape of land, house, furniture, pictures, and objets d'art to the value of fifty thousand pounds.\\n\",\"He began in a very small way.\\n\",\"First a lawyer's clerk, he then got an appointment in the Peninsular and Oriental Company's office;\\n\",\"afterwards he set up as an insurance broker on his own account, but presently failed.\\n\",\"His fault was generosity,\\n\",\"an open-handed, unthinking charity which gave freely to the poor and needy the money which belonged to his creditors.\\n\",\"After his bankruptcy he obtained a place as clerk in the Great Northern Railway office,\\n\",\"from which he rose to be assistant registrar, with the special duties of transferring shares.\\n\",\"He soon proved his ability, and by unremitting attention mastered the whole work of the office.\\n\",\"Later on he became registrar, and in this more independent position\\n\",\"developed to a colossal extent the frauds he had already practiced as a subordinate.\\n\",\"Now he launched out into great expenditure, took a house in Chester Terrace, and became known as a Maecenas and patron of the arts.\\n\",\"He had a nice taste in bric-\\u00e0-brac, and was considered a good judge of pictures.\\n\",\"Leading social and artistic personages were to be met with at his house, and his hospitality was far famed.\\n\",\"The choicest wines, the finest fruits,\\n\",\"peas at ten shillings a quart, five-guinea pines, and early asparagus were to be found on his table.\\n\",\"But his chief extravagance, his favorite folly, was the exercise of an ostentatious benevolence.\\n\",\"The philanthropy he had displayed in a small way when less prosperous became now a passion.\\n\",\"His name headed every subscription list; his purse was always open.\\n\",\"Not content with giving where assistance was solicited, he himself sought out deserving cases and personally afforded relief.\\n\",\"When the crash came there were pensioners and other recipients of his bounty who could not believe\\n\",\"that so good a man had really been for years a swindler and a rogue.\\n\",\"Down at Weybridge, where he had a country place, his name was long remembered with gratitude by the poor.\\n\",\"During the days of his prosperity he was a governor of Christ's Hospital,\\n\",\"of the St. Ann's Society, and one of the supporters and managers of the Patriotic Fund.\\n\",\"In his person he was neat and fastidious;\\n\",\"he patronized the best tailors, and had a fashionable coiffeur from Hanover Square daily to curl his hair.\\n\",\"There was something dramatic in Redpath's detection\\n\",\"Just after Robson's frauds had agitated the minds of all directors of companies, the chairman of the Great Northern (Mr. Denison)\\n\",\"was standing at a railway station talking to a certain well-known peer of the realm.\\n\",\"Redpath passed and lifted his hat to his chairman; the latter acknowledged the salute.\\n\",\"But the peer rushed forward and shook Redpath warmly by the hand.\\n\",\"\\\"What do you know of our clerk?\\\" asked Mr. Denison of his lordship. \\\"Only that he is a capital fellow, who gives the best dinners and balls in town.\\\"\\n\",\"Redpath had industriously circulated reports that he had prospered greatly in speculation;\\n\",\"but the chairman of the Great Northern could not realize that a clerk of the company could honestly be in the possession of unlimited wealth.\\n\",\"It was at once decided at the board to make a thorough examination of all his books.\\n\",\"Redpath was called in and informed of the intended investigation. He tried to stave off the evil hour by declaring that everything was perfectly right;\\n\",\"but finding he could not escape, he said he would resign his post, and leaving the boardroom, disappeared.\\n\",\"The inquiry soon revealed the colossal character of the frauds.\\n\",\"Warrants were issued for Redpath's arrest, but he had flown to Paris.\\n\",\"Thither police officers followed, only to find that he had returned to London.\\n\",\"A further search discovered him at breakfast at a small house in the New Road.\\n\",\"He was arrested, examined before a police magistrate, and committed to Newgate.\\n\",\"Great excitement prevailed in the city and the West End when Redpath's defalcations were made public.\\n\",\"The Stock Market was greatly affected, and society, more especially that which frequents Exeter Hall, was convulsed.\\n\",\"The Central Criminal Court, when the trial came on,\\n\",\"was densely crowded, and many curious eyes were turned upon the somewhat remarkable man who occupied the dock.\\n\",\"He is described by a contemporary account as a fresh-looking man of forty years of age, slightly bald, inclined to embonpoint,\\n\",\"and thoroughly embodying the idea of English respectability.\\n\",\"His manner was generally self-possessed, but his face was marked with \\\"uneasy earnestness,\\\"\\n\",\"and he looked about him with wayward, furtive glances.\\n\",\"When the jury found a verdict of guilty he remained unmoved. He listened without emotion to the judge's well-merited censures,\\n\",\"and received his sentence of transportation for life without much surprise.\\n\",\"Redpath passed away into the outer darkness of a penal colony, where he was still living a year or two back\\n\",\"But his name lingers still in this country as that of the first swindler of his time,\\n\",\"and the prototype of a class not uncommon in our later days\\n\",\"that of dishonest rogues who assume piety and philanthropy as a cloak for their misdeeds.\\n\",\"In Newgate Redpath is remembered by the prison officer as a difficult man to deal with.\\n\",\"From the moment of his reception he gave himself great airs, as a martyr and a man heavily wronged.\\n\",\"By-and-by, when escape seemed hopeless, and after sentence, he suddenly degenerated into the lowest stamp of criminal,\\n\",\"and behaved so as to justify a belief that he had been a jail-bird all his life.\\n\",\"It has been already remarked in these pages that with changed social conditions came a great change in the character of crimes.\\n\",\"Highway robberies, for instance, had disappeared, if we except the spasmodic and severely repressed outbreak of \\\"garotting,\\\"\\n\",\"which at one time spread terror throughout London. Thieves preferred now to use ingenuity rather than brute force.\\n\",\"It was no longer possible to stop a coach or carriage, or rob the postman who carried the mail.\\n\",\"The improved methods of locomotion had put a stop to these depredations. People traveled in company, as a rule;\\n\",\"only when single and unprotected were they in any danger of attack, and that but rarely.\\n\",\"There were still big prizes, however, to tempt the daring, and none appealed more to the thievish instinct than the custom of transmitting gold by rail.\\n\",\"The precious metal was sent from place to place carefully locked up and guarded, no doubt;\\n\",\"but were the precautions too minute, the vigilance too close to be eluded or overcome?\\n\",\"This was the question which presented itself to the fertile brain of one Pierce,\\n\",\"who had been concerned in various \\\"jobs\\\" of a dishonest character, and who for the moment was a clerk in a betting office.\\n\",\"He laid the suggestion before Agar, a professional thief, who was of opinion it contained elements of success.\\n\",\"But the collusion and active assistance of employees of the railway carriers were indispensable, and together\\n\",\"they sounded one Burgess, a guard on the South-Eastern Railway, a line by which large quantities of bullion were sent to the Continent.\\n\",\"Burgess detailed the whole system of transmission.\\n\",\"The gold, packed in an iron-bound box, was securely lodged in safes locked with patent Chubbs.\\n\",\"Each safe had three sets of double keys, all held by confidential servants of the company.\\n\",\"One pair was with the traffic superintendent in London, another with an official in Folkestone,\\n\",\"a third with the captain of the Folkestone and Boulogne boat.\\n\",\"At the other side of the Channel the French railway authorities took charge.\\n\",\"The safes while on the line en route between London and Folkestone were in the guard's van.\\n\",\"This was an important step, and they might easily be robbed some day when Burgess was the guard, provided only that they could be opened.\\n\",\"The next step was to get impressions and fabricate false keys.\\n\",\"A new accomplice was now needed within the company's establishment, and Pierce looked about long before he found the right person.\\n\",\"At last he decided to enlist one Tester, a clerk in the traffic department, whom he thought would prove a likely tool.\\n\",\"The four waited patiently for their opportunity,\\n\",\"which came when the safes were sent to Chubbs' to be repaired; and Chubbs sent them back, but only with one key,\\n\",\"in such a way that Tester had possession of this key for a time.\\n\",\"He lent it to Agar for a brief space, who promptly took an impression on wax. But the safes had a double lock;\\n\",\"the difficulty was to get a copy of the second key.\\n\",\"This was at length effected by Agar and Pierce.\\n\",\"After hanging about the Folkestone office for some time, they saw at last that the key was kept in a certain cupboard.\\n\",\"Still watching and waiting for the first chance, they seized it when the clerks left the office empty for a moment.\\n\",\"Pierce boldly stepped in, found the cupboard unlocked; he removed the key, handed it to Agar outside,\\n\",\"who quickly took the wax impression, handed it back to Pierce; Pierce replaced it, left the office, and the thing was done.\\n\",\"After this nothing remained but to wait for some occasion when the amount transmitted would be sufficient to justify the risks of robbery.\\n\",\"It was Tester's business, who had access to the railway company's books, to watch for this.\\n\",\"Meanwhile the others completed their preparations with the utmost care.\\n\",\"A weight of shot was bought and stowed in carpet bags ready to replace exactly the abstracted gold.\\n\",\"Courier bags were bought to carry the \\\"stuff\\\" slung over the shoulders;\\n\",\"and last, but not least, Agar frequently traveled up and down the line to test the false keys he had manufactured with Pierce's assistance.\\n\",\"Burgess admitted him into the guard's van, where he fitted and filed the keys till they worked easily and satisfactorily in the locks of the safe.\\n\",\"One night Tester whispered to Agar and Pierce, \\\"All right,\\\" as they cautiously lounged about London Bridge.\\n\",\"The thieves took first-class tickets, handed their bags full of shot to the porters, who placed them in the guard's van.\\n\",\"Just as the train was starting Agar slipped into the van with Burgess, and Pierce got into a first-class carriage.\\n\",\"Agar at once got to work on the first safe.\\n\",\"opened it, took out and broke into the bullion box, removed the gold, substituted the shot from a carpet bag,\\n\",\"re-fastened and re-sealed the bullion box, and replaced it in the safe.\\n\",\"At Redhill Tester met the train and relieved the thieves of a portion of the stolen gold.\\n\",\"At the same station Pierce joined Agar in the guard's van, and there were now three to carry on the robbery.\\n\",\"The two remaining safes were attacked and nearly entirely despoiled in the same way as the first, and the contents transferred to the courier bags.\\n\",\"The train was now approaching Folkestone, and Agar and Pierce hid themselves in a dark part of the van.\\n\",\"At that station the safes were given out, heavy with shot, not gold; the thieves went on to Dover, and by-and-by,\\n\",\"with Ostend tickets previously procured, returned to London without mishap, and by degrees disposed of much of the stolen gold.\\n\",\"The theft was discovered at Boulogne, when the boxes were found not to weigh exactly what they ought. But no clue was obtained to the thieves,\\n\",\"and the theft might have remained a mystery but for the subsequent bad faith of Pierce to his accomplice Agar.\\n\",\"The latter was ere long arrested on a charge of uttering forged cheques, convicted, and sentenced to transportation for life.\\n\",\"When he knew that he could not escape his fate,\\n\",\"he handed over to Pierce a sum of three thousand pounds, his own, whether rightly or wrongly acquired never came out,\\n\",\"together with the unrealized part of the bullion, amounting in all to some fifteen thousand pounds,\\n\",\"and begged his accomplice to invest it as a settlement on a woman named Kay, by whom he had had a child.\\n\",\"Pierce made Kay only a few small payments, then appropriated the rest of the money.\\n\",\"Kay, who had been living with Agar at the time of the bullion robbery,\\n\",\"went to the police in great fury and distress, and disclosed all she knew of the affair.\\n\",\"Agar too, in Newgate, heard how Pierce had treated him, and at once readily turned approver.\\n\",\"As the evidence he gave incriminated Pierce, Burgess, and Tester, all three were arrested and committed to Newgate for trial.\\n\",\"The whole strange story, the long incubation and the elaborate accomplishment of the plot,\\n\",\"came out at the Old Bailey, and was acknowledged to be one of the most extraordinary on record.\\n\",\"Scarcely had the conviction of these daring and astute thieves been assured, than another gigantic fraud was brought to light.\\n\",\"The series of boldly-conceived and cleverly-executed forgeries in which James Townshend Saward, commonly called \\\"Jem the Penman,\\\"\\n\",\"was the prime mover,\\n\",\"has probably no parallel in the annals of crime. Saward himself is a striking and in some respects an unique figure in criminal history.\\n\",\"A man of birth and education, a member of the bar, and of acknowledged legal attainments, his proclivities were all downward.\\n\",\"Instead of following an honorable profession, he preferred to turn his great natural talents and ready wits to the most nefarious practices.\\n\",\"He was known to the whole criminal fraternity as a high-class receiver of stolen goods, a negotiator more especially of stolen paper,\\n\",\"cheques and bills, of which he made a particular use.\\n\",\"He dealt too in the precious metals, when they had been improperly acquired,\\n\",\"and it was to him that Agar, Pierce, and the rest applied when seeking to dispose of their stolen bullion.\\n\",\"But Saward's operations were mainly directed to the fabrication and uttering of forged cheques.\\n\",\"His method was comprehensive and deeply laid.\\n\",\"Burglars brought him the cheques they stole from houses, thieves what they got in pocketbooks.\\n\",\"Cheques blank and canceled were his stock-in-trade. The former he filled up by exact imitation of the latter, signature and all.\\n\",\"When he could get nothing but the blank cheque, he set in motion all sorts of schemes for obtaining signatures, such as\\n\",\"commencing sham actions, and addressing formal applications, merely for the reply.\\n\",\"One stroke of luck which he turned to great account\\n\",\"was the return from transportation of an old \\\"pal\\\" and confederate, who brought with him some bills of exchange.\\n\",\"Saward's method of negotiating the cheques was equally well planned.\\n\",\"Like his great predecessor Old Patch, he never went to a bank himself, nor did any of his accomplices.\\n\",\"The bearer of the cheque was always innocent and ignorant of the fraudulent nature of the document he presented.\\n\",\"In order to obtain messengers of this sort, Saward answered advertisements of persons seeking employment,\\n\",\"and when these presented themselves, entrusted them as a beginning with the duty of cashing cheques.\\n\",\"A confederate followed the emissary closely,\\n\",\"not only to ensure fair play and the surrender of the proceeds if the cheque was cashed, but to give timely notice if it was not,\\n\",\"so that Saward and the rest might make themselves scarce.\\n\",\"As each transaction was carried out from a different address, and a different messenger always employed,\\n\",\"the forgers always escaped detection. But fate overtook two of the gang,\\n\",\"partly through their own carelessness, when transferring their operations to Yarmouth.\\n\",\"One named Hardwicke assumed the name of Ralph, and, to obtain commercial credit in Yarmouth, paid in two hundred fifty pounds to a Yarmouth bank\\n\",\"as coming from a Mr. Whitney.\\n\",\"He forgot to add that it was to be placed to Ralph's credit, and when he called as Ralph,\\n\",\"he was told it was only at Mr. Whitney's disposal, and that it could be paid to no one else.\\n\",\"Hardwicke, or \\\"Ralph,\\\" appealed to Saward in his difficulty\\n\",\"and that clever schemer sent an elaborate letter of instructions how to ask for the money.\\n\",\"But while Hardwicke was in communication with Saward, the bank was in communication with London\\n\",\"and the circumstances were deemed sufficiently suspicious to warrant the arrest of the gentlemen at Yarmouth on a charge of forgery and conspiracy.\\n\",\"Saward's letter to Hardwicke fell into the hands of the police and compromised him.\\n\",\"While Hardwicke and Atwell were in Newgate awaiting trial, active search was made for Saward,\\n\",\"who was at length taken in a coffee-shop near Oxford Street, under the name of Hopkins. He resisted at first, and denied his identity,\\n\",\"but on being searched, two blank cheques of the London and Westminster Bank were found in his pocket.\\n\",\"He then confessed that he was the redoubtable Jem Saward, or Jem the Penman, and was conveyed to a police-court, and thence to Newgate.\\n\",\"At his trial Atwell and Hardwicke, two of his chief allies and accomplices, turned approvers,\\n\",\"and the whole scheme of systematic forgery was laid bare.\\n\",\"The evidence was corroborated by that of many of the victims who had acted as messengers,\\n\",\"and others who swore to the meetings of the conspirators and their movements. Saward was found guilty,\\n\",\"and the judge, in passing sentence on him of transportation for life, expressed deep regret that \\\"the ingenuity, skill, and talent,\\n\",\"which had received so perverted and mistaken direction,\\n\",\"had not been guided by a sense of virtue, and directed to more honorable and useful pursuits.\\n\",\"The proceeds of these forgeries amounted, it was said, to some thousands per annum.\\n\",\"Saward spent all his share at low gaming houses, and in all manner of debaucheries.\\n\",\"He was in person a short, square-built man of gentlemanly address, sharp and shrewd in conversation and manner.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section nineteen: Later Records\\n\",\"The old notion always prevailed that Newgate was impregnable, so to speak, from within,\\n\",\"and that none of its inmates could hope to escape from its secure precincts.\\n\",\"Yet the jail, in spite of its fortress-like aspect, was by no means really safe.\\n\",\"Year after year prisoners determined to get free, and occasionally succeeded in their efforts.\\n\",\"The inspectors' reports mention many cases of evasion accomplished.\\n\",\"There were others less successful.\\n\",\"Charles Thomas White, awaiting execution for arson, made a desperate effort to escape from Newgate in eighteen twenty-seven.\\n\",\"He had friends and auxiliaries inside the jail and out. The cell he occupied was near the outer wall,\\n\",\"and had he but been able to remove its iron bars, he might have descended into Newgate Street by means of a rope ladder.\\n\",\"The ladder was actually made, of black sewing-thread firmly and closely interwoven. But White could not remove the bars;\\n\",\"the instruments needed for the purpose never reached him.\\n\",\"It was noticed that he was most anxious to receive a pair of shoes for which he had asked, and when they arrived they were closely examined.\\n\",\"Sewn in between the upper and lower leathers several spring saws were found, which would have easily cut through any bars.\\n\",\"White, when taxed with his attempt, admitted that the accusation was true, and spoke \\\"with pride and satisfaction of the practicability of his scheme.\\\"\\n\",\"There is an attempt at escape mentioned in Mr. Wakefield's book, which might have been an intended suicide.\\n\",\"John Williams, a young fellow only twenty-three years of age, awaited execution in eighteen twenty-seven for stealing in a dwelling-house.\\n\",\"On the very morning on which he was to suffer he eluded the vigilance, such as it was, of his officers\\n\",\"and climbed up the pipe of a cistern in the corner of the press yard; some thought with the idea of drowning himself.\\n\",\"He never reached the cistern, but fell back into the yard, injuring his legs severely.\\n\",\"Although his execution was imminent, a surgeon attended to his wounds, and he was carried more dead than alive to the scaffold.\\n\",\"A harrowing scene followed;\\n\",\"the wounds broke open and bled profusely while the last dread penalty was being performed, to the manifest excitement and indignation of the crowd.\\n\",\"A more daring and skilful escape was effected in eighteen thirty-six by the chimney-sweep Henry Williams,\\n\",\"who, while detained in the press-yard as a capital convict, under sentence of death for burglary,\\n\",\"managed to get away in the very same spot where his namesake had nine years before so miserably failed.\\n\",\"Escape seemed absolutely hopeless,\\n\",\"and would certainly have been impossible to any one less nimble than a chimney-sweep, trained under the old system to ascend the most intricate flues.\\n\",\"Even after Williams had got out, persons were disposed to disbelieve that the escape had been accomplished in the manner indicated;\\n\",\"they preferred to credit it to carelessness or collusion from officers of the jail.\\n\",\"Yet from the circumstantial account given by Williams after recapture, there can be little doubt that he got away as will be described.\\n\",\"Williams as a capital convict was lodged in the press-yard or condemned ward.\\n\",\"He had access to the airing yard, and there was for hours no kind of supervision.\\n\",\"In one corner of the airing yard stood a cistern at some height from the ground;\\n\",\"the wall beneath and above it was \\\"rusticated,\\\" in other words, the granite surface had become roughened, and offered a sort of foothold.\\n\",\"About fifty feet from the ground level, and above the cistern, a revolving chevaux-de-frise of iron was fixed,\\n\",\"with only a short interval between it and the wall, supported by a horizontal iron railing with upright points;\\n\",\"in the wall above the chevaux-de-frise projected a series of iron spikes sharp enough to forbid further ascent.\\n\",\"Williams surveyed these formidable obstacles to evasion, and calmly proceeded to surmount them.\\n\",\"His first task was to gain the top of the cistern; this he effected by keeping his back to one side of the angle,\\n\",\"and working with his hands behind him, while he used his bare feet like claws upon the other side of the wall angle.\\n\",\"The condition of the stone surface just mentioned assisted him in this, and he managed to get beyond the cistern to the railing below the chevaux-de-frise.\\n\",\"The least slip now would have been fatal to him. But he could not thrust his body in through the narrow space left by the chevaux-de-frise,\\n\",\"and was compelled to work along the railing round three-quarters of the square of the yard,\\n\",\"and at length reached a point opposite the top of the building containing the condemned wards. This had been a perilous and painful task;\\n\",\"the spikes of the railing penetrated his flesh and made progression slow and difficult.\\n\",\"But the worst part of the business was to jump from this irksome foothold of the iron grating on to the top of the building just mentioned,\\n\",\"a distance of eight or nine feet.\\n\",\"He had here completed his ascent.\\n\",\"His next job was to descend outside Newgate.\\n\",\"Clambering along the roof,\\n\",\"he passed to the top of the ordinary's residence, hoping to find an open sky-light by which he might enter and so work downstairs.\\n\",\"If the worst came to the worst, he intended to have gone down some chimney, as he had often done before in the way of business.\\n\",\"But he did not like the risk of entering a room by the fireplace, and the chances of detection it offered.\\n\",\"He traversed vainly all the roofs in Newgate Street,\\n\",\"running a great risk of discovery as he passed by a lot of workmen at Tyler's manufactory in Warwick Square, which had formerly been the College of Physicians.\\n\",\"As his coat was an encumbrance, he left it on the top of the third house in Newgate Street, and thus in shirt-sleeves, barefoot and bareheaded,\\n\",\"he worked along to the roofs in Warwick Lane.\\n\",\"Here he came upon a woman on the leads hanging out clothes to dry.\\n\",\"Williams concealed himself behind a chimney till she had re-entered her garret,\\n\",\"and then following her down a step ladder into the house, told his story, appealed to and won her compassion.\\n\",\"She suffered him to pass downstairs.\\n\",\"Below he met another woman and a girl, both of whom were terrified at his appearance, but\\n\",\"when he explained that he was running away from the gallows they left him the road clear.\\n\",\"To walk out into the street was an easy affair, and he was now free, with one and fourpence in his pocket and a shirt and trousers for all his clothing.\\n\",\"Denied admission everywhere as a ragged, half-naked beggar,\\n\",\"he tramped across London Bridge to Wandsworth, where he refreshed himself with a pint of strong ale, the first sustenance he had taken since his escape,\\n\",\"and continued his march to Kingston, where he slept soundly under a hedge till next morning.\\n\",\"Entering a town, he obtained employment at once as a chimney-sweep\\n\",\"from a widow woman, who gave him \\\"bub and grub,\\\" or food and one-and-sixpence, for every nine days' work.\\n\",\"Dissatisfied with this remuneration, he again took to the road, and tramped into Hampshire,\\n\",\"where he presently committed a burglary at Lymington, was caught, and lodged in Winchester Jail.\\n\",\"Mr. Cope, the governor of Newgate, having been communicated with, proceeded to Winchester, where he at once identified Williams.\\n\",\"The success, although very short-lived, which attended him, no doubt inspired other inmates of Newgate to follow his example.\\n\",\"It was for some time after this a constant practice to go up the chimneys in the hopes of escaping by the flue.\\n\",\"Even then, however, irons across barred the ascent after a certain distance, and in no one case did a fugitive get clear away.\\n\",\"A man named Lears, under sentence of transportation for an attempt at murder on board ship, got up part of the way,\\n\",\"but had to come down again covered with soot and filth just as the officers entered the ward.\\n\",\"Lears was rewarded by being obliged to wear cross irons on his legs, a punishment rarely inflicted in Newgate,\\n\",\"and probably one of the few cases of a recurrence, but under proper safeguards and limitations, to the old system of chains.\\n\",\"On another occasion Mr. Cope the governor came in and missed a man.\\n\",\"The ward was one short of its number. What had become of the fellow?\\n\",\"the fugitive, uncomfortably ensconced in the flue, came down of his own accord, like Colonel Colt's raccoon.\\n\",\"After this great iron guards, just as are to be seen in lunatic asylums,\\n\",\"were fixed over the fireplaces, and the prisoners had no longer access to the chimneys.\\n\",\"Among the escapes still remembered was one in eighteen forty-nine, accomplished by a man who had been employed\\n\",\"working at the roof of the chapel on the female side.\\n\",\"He was engaged in whitewashing and cleaning; the officer who had him in charge left him on the stairs leading to the gallery.\\n\",\"Taking advantage of being unobserved, he got out through the roof on to the leads, and traveled along them towards Number one, Newgate Street.\\n\",\"This was a public-house.\\n\",\"He stepped in at a garret window, coolly walked downstairs, and entered the bar.\\n\",\"They asked him how he had cut his hand, which was bleeding, and he said he had done it while working up on the roof.\\n\",\"No further notice was taken of him; no one seemingly suspected that he was a prisoner, and he was suffered to walk off without let or hindrance.\\n\",\"In eighteen fifty-three three men escaped in company from one of the wards in the middle yard.\\n\",\"They were penal servitude men, their names Bell, Brown, and Barry, and they were awaiting transfer to Leicester,\\n\",\"which with Wakefield was utilized as a receptacle for convicts not going to Western Australia,\\n\",\"or any of the new establishments at home, at Portland, Dartmoor, or elsewhere.\\n\",\"These men managed to cut a hole in the ceiling of the ward near the iron cage on the landing, and so got access to the roof.\\n\",\"At that time rope mats were still used as beds.\\n\",\"One of the three, shamming ill, remained all day in his ward, where he employed himself unraveling the rope from the sleeping-mats.\\n\",\"By evening he manufactured a good long length,\\n\",\"and after all was quiet the three got on to the roof through the hole, and so on to Tyler's manufactory close by,\\n\",\"whence they let themselves down into the street by the rope.\\n\",\"These men were all in prison dress at the time of their escape, but one of their number, Bell, sent back his clothes a few days later by parcel's delivery,\\n\",\"with a civil note to the governor, saying he had no further use for them. All three fugitives were recaptured,\\n\",\"Brown almost at once; then Barry, who was taken at the East End in a public-house where he had arranged to meet a pal.\\n\",\"The Newgate officers obtained information of this, and went to the spot, where they effected the capture,\\n\",\"but not till they had had an exciting chase down the street.\\n\",\"The third, Bell, remained longest at large. He too was run into at a lodging in the Kingsland Road.\\n\",\"The officers dropped on to him while he was still in bed, but as they came upstairs he jumped up and hid in a cupboard.\\n\",\"All three after recapture passed on, as originally intended, to Leicester, where they did their \\\"bit\\\" and were released;\\n\",\"but only to be taken soon afterwards for a fresh offense, and again pass through Newgate with sentences of penal servitude.\\n\",\"A later case was still more remarkable, as it was effected after the alteration of the prison and its reconstruction on the newest lines.\\n\",\"A sailor, Krapps by name, occupied one of the upper cells in the new block.\\n\",\"The doors, through incomplete knowledge of prison needs, were not, as now, sheeted with iron.\\n\",\"The prisoner had nothing to deal with but wooden panels, and by dint of cutting and chopping he got both the lower panels out.\\n\",\"Through the aperture he crept out on to the landing at the dead of night, and so down into the central space of the building.\\n\",\"Under superior orders all the doors and gates of this block were left open at night, to allow the night watchman to pass freely to all parts.\\n\",\"This was considered safer than intrusting him with keys.\\n\",\"Krapps walked at once into the yard and across to the female side, where he found some of the washing still hanging out to dry.\\n\",\"He made a strong rope with several of the sheets; then, returning to the male yard,\\n\",\"got hold of the step ladder used in lighting the gas, and which under our more careful supervision would have been, as now-a-days, chained up.\\n\",\"Cutting the cord which fastened the two legs of the step ladder, he opened them out and made one long length;\\n\",\"with this, placed against the wall near the chevaux-de-frise, he made an escalade.\\n\",\"The top of the wall was gained without difficulty.\\n\",\"Along this Krapps crawled, and then dropped down on to the cook-house.\\n\",\"He now put in requisition the rope made of the sheets, and with its help lowered himself into the street.\\n\",\"Down below were market-carts waiting for daylight, and among them Krapps found a refuge and friends.\\n\",\"The first intimation of his escape was afforded by the police, who informed the prison authorities next day that a rope was hanging down from the cook-house roof.\\n\",\"Nothing more was heard of Krapps. The curious thing in his case was that his offense was a trifling one;\\n\",\"he was still untried, but would almost certainly have escaped with a minor penalty, say of three or four months' imprisonment.\\n\",\"There is, however, no explanation of the motives which prompt prisoners to attempt escapes.\\n\",\"Cases well authenticated have been known of men who had all but completed their sentences, and for whom the prison gates would open within a few days,\\n\",\"who yet faced extraordinary risks to advance their enlargement by only a few hours.\\n\",\"On the other hand, at the great convict establishments, such is the moral restraint of a systematic discipline,\\n\",\"that numbers of men, \\\"lifers,\\\" and others with ten, fourteen, or twenty years to do, can be trusted to work out of doors without bolts and bars\\n\",\"at a distance from the prison.\\n\",\"The last escape from Newgate was only three years ago, and occurred just before the final closing of the prison.\\n\",\"No report of it was made public, as the man was almost immediately recaptured.\\n\",\"He was at work under the supervision of the artisan warder of the prison,\\n\",\"who permitted him to go up on to the roof of the old wards, in order to throw water for flushing purposes down a shoot.\\n\",\"He was out of sight while so employed, and remained so long absent that the warder, becoming uneasy, went in search of him.\\n\",\"He had disappeared.\\n\",\"Encouraged by the shouts and signals of some workmen employed on a building outside, the prisoner made one of the most marvellous jumps on record,\\n\",\"from the building he was on to a distant wall, with a drop of sixty feet between.\\n\",\"Then he ran along the coping of the wall towards its angle with Tyler's manufactory, and dropped down on to the gridiron below.\\n\",\"This was not strong enough to carry him, and he fell through.\\n\",\"Suicides and executions were, however, always the most effectual methods of making exit from durance.\\n\",\"Suicides at Newgate were numerous enough, but they seldom possessed any novel or unusual features;\\n\",\"prison suicides seldom do, except as regards ingenuity and determination.\\n\",\"Only great resolution indeed, persisted in to the bitter end,\\n\",\"would make death a certainty, so limited and imperfect are the means generally available.\\n\",\"When a bit of rope carefully secreted,\\n\",\"braces, shoe-strings, shirt torn into strips are the only instruments, and a bar or small hook\\n\",\"at no elevation affords the only drop, strangulation would seldom supervene but for the resolution of the miserable felo de se.\\n\",\"One curious instance of a suicide carried out under the most adverse and extraordinary circumstances may be quoted.\\n\",\"It was that of a \\\"Long Firm\\\" swindler, by name Johnson,\\n\",\"who contrived to hang himself from a hammock hook only eighteen inches from the ground.\\n\",\"The noose was one of his hammock straps, which he buckled round his throat.\\n\",\"Having carefully spread out a blanket on the floor just below the hammock as it lay suspended,\\n\",\"he fastened one end of the strap above mentioned to the hook, and then fell down.\\n\",\"He might have saved himself at any moment by merely extending an arm; but he lay there patiently till death supervened.\\n\",\"When discovered next morning, quite dead, it was found that the strap actually did not touch his throat;\\n\",\"three fingers might have been inserted between it and the flesh; the pressure was all on the arteries behind the ears,\\n\",\"and surgical opinion stated that the stoppage of circulation was the cause of death.\\n\",\"Probably dissolution came as easily and almost without pain.\\n\",\"A laudable desire to invest executions with more and more solemnity and decorum gained ground as they became more rare.\\n\",\"As more humane principles were introduced into prison management,\\n\",\"greater attention was paid to the capital convicts, and the horrors of their situation while awaiting sentence\\n\",\"were as far as possible mitigated and toned down. But there was little improvement in the ceremony itself.\\n\",\"There were still untoward accidents occasionally at executions, and even the chief practitioner of recent times, Calcraft,\\n\",\"was not always to be trusted to do his fell work efficiently.\\n\",\"Having mentioned Calcraft's name,\\n\",\"I may be permitted to digress for a moment to give a few particulars concerning the last officially appointed hangman of the city of London.\\n\",\"After Calcraft's resignation no successor was really appointed.\\n\",\"Marwood, whose name is so familiar with the present generation,\\n\",\"had no official status, and was merely an operator selected by the Corporation, and who, on the strength of it,\\n\",\"contracted with sheriffs and conveners to work by the job.\\n\",\"But Calcraft regularly succeeded Foxen, who followed Botting, and Dennis, the actor in the seventeen eighty riots.\\n\",\"Calcraft was born at Baddow, in Essex, in eighteen hundred;\\n\",\"he was a shoemaker by trade, and settled in London after his marriage in eighteen twenty-five.\\n\",\"The story goes, that about eighteen twenty-eight\\n\",\"his attention was drawn early one morning to a man who leant against a lamp-post in Finsbury Square, coughing violently.\\n\",\"Calcraft, who, in spite of the dreadful calling he subsequently followed, was always reputed a kindly man,\\n\",\"invited the man with the cough to enter a neighboring house and try a little peppermint for it.\\n\",\"The other accepted, and they got into conversation.\\n\",\"He told Calcraft that he was Foxen the executioner, and that he was that moment on his way to Newgate to hang a man,\\n\",\"but that his cough was getting so much the master of him that he feared he would not be able to carry on his duties much longer.\\n\",\"\\\"I have no idea who the sheriffs will get to do the work after me,\\\" said Foxen, adding that his assistant, Tom Cheshire,\\n\",\"was given to drink, and not to be trusted.\\n\",\"\\\"I think I could do that sort of job,\\\" said Calcraft, on the spur of the moment.\\n\",\"Foxen asked him his name and address, and went away.\\n\",\"Calcraft thought no more of what had occurred till the next sessions at the Old Bailey, when the sheriffs sent for him,\\n\",\"and offered him the post of executioner for the city of London and Middlesex.\\n\",\"He accepted, having at first Tom Cheshire as his assistant, then for a time, when Cheshire was dismissed for drunkenness, a man named Osborne.\\n\",\"After that he worked alone.\\n\",\"I cannot find that Calcraft was sworn in when appointed, or any exact information when the old forbidding ceremony ceased to be practiced.\\n\",\"It was customary to make the executioner take the Bible in his hand, and swear solemnly that he would dispatch every criminal condemned to die,\\n\",\"without favoring father or mother or any other relation or friend.\\n\",\"When he had taken the oath he was dismissed with the words, \\\"Get thee hence, wretch!\\\"\\n\",\"Calcraft's emoluments were a guinea per week, and an extra guinea for every execution.\\n\",\"He got besides half-a-crown for every man he flogged, and an allowance to provide cats or birch rods.\\n\",\"For acting as executioner of Horsemonger Lane Jail\\n\",\"he received a retaining fee of five pounds, five shillings, with the usual guinea for each job;\\n\",\"he was also at liberty to engage himself in the country, where he demanded and was paid ten pounds on each occasion.\\n\",\"It was not always easy to get a hangman so cheap, as I have already indicated on a previous page.\\n\",\"The onus and responsibility of carrying out the sentence is personal to the sheriff. A good story is told illustrating this.\\n\",\"Some wags in Scotland seized Calcraft and kept him in durance the night before the execution.\\n\",\"Meanwhile the convener or sheriff was in despair, expecting that, failing the executioner, he would have to do the job himself.\\n\",\"But, fortunately for him, just at the last moment Calcraft was set free.\\n\",\"Calcraft's salary was more than the proverbial \\\"thirteenpence halfpenny -- hangman's wages.\\\"\\n\",\"The origin of this expression dates, it is said, from the time when the Scottish mark,\\n\",\"a silver coin bearing the same relation to the Scottish pound that an English shilling does to an English pound, was made to pass current in England.\\n\",\"The mark was valued at thirteenpence halfpenny, or rather more than the shilling, which from time immemorial had been the hangman's wages.\\n\",\"That very ancient perquisite the convict's clothes was never claimed by Calcraft, and it may be doubted whether he was entitled to it.\\n\",\"On one particular occasion, however, he got them. A gentleman whose sins brought him to the gallows at Maidstone\\n\",\"wished to do Calcraft a good turn, and sent to his London tailor for a complete new suit, in which he appeared at his execution.\\n\",\"He expressly bequeathed them to Calcraft, who was graciously pleased to accept them.\\n\",\"On another occasion an importunate person begged Calcraft eagerly to claim his right to the clothes, and give them to him.\\n\",\"Calcraft consented, got and bestowed the clothes, only to find that the person he had obliged exhibited them publicly.\\n\",\"It may be added that of late years the clothes in which a convict has suffered are invariably burnt.\\n\",\"Capital convicts go to the gallows in their own clothing, and not in prison dress, unless the former is quite unfit to be worn.\\n\",\"Calcraft shared the odium which his office, not strangely, has always inspired. But he was admitted into the jail,\\n\",\"which his predecessors were not, and who were paid their wages over the gate to obviate the necessity for letting them enter.\\n\",\"To this curious etiquette was due the appointment of an official whose office has long since disappeared, \\\"the yeoman of the halter,\\\"\\n\",\"whose business it was to provide the rope and do the pinioning, and who was paid a fee of five shillings.\\n\",\"They did not dislike Calcraft, however, at Newgate. He was an illiterate, simple-minded man, who scarcely remembered what executions he had performed.\\n\",\"He kept no record of them, and when asked questions, referred to the officers of the jail.\\n\",\"His nature must have been kindly.\\n\",\"When he came to the prison for his wages his grandchildren often accompanied him, affectionately clinging to his hands;\\n\",\"and he owned a pet pony which would follow him about like a dog.\\n\",\"In his own profession\\n\",\"he was not unskilful, but he proceeded entirely by rule of thumb, leaving the result very much to chance and the strength of the rope.\\n\",\"He was so much in favor of short drops that his immediate successor, Marwood, stigmatized him as \\\"short-drop\\\" man.\\n\",\"Marwood being, on the other hand, in favor of giving a man as much rope as possible.\\n\",\"With Calcraft's method there were undoubtedly many failures, and it was a common custom for him to go below the gallows\\n\",\"\\\"just to steady their legs a little;\\\" in other words, to add his weight to that of the hanging bodies.\\n\",\"Marwood till latterly seemed to have done his work more effectually, and has been known to give as much as six feet fall.\\n\",\"This generally produces instantaneous death, although cases where complete fracture of the spinal cord occurred are said to be rare.\\n\",\"Calcraft served the city of London till eighteen seventy-four, when he was pensioned at the rate of twenty-five shillings per week.\\n\",\"The last execution at which he acted was that of Godwin, on the twenty-fifth May, eighteen seventy-four.\\n\",\"Marwood, who succeeded him, and who died while these sheets were in the press, was a Lincolnshire man, a native of Horncastle,\\n\",\"who first took to the work from predilection, and the idea of being useful in his generation, as he himself assured the writer of these pages.\\n\",\"Until the time of his death he kept a small shop close to the church in Horncastle.\\n\",\"Over the door, in gilt letters, were the words \\\"Crown Office\\\"; in the window was a pile of official envelopes, ostentatiously displayed,\\n\",\"while round about were shoe-strings, boot-laces, and lasts. Marwood, strange to say, followed the same trade as Calcraft.\\n\",\"Marwood was proud of his calling, and when questioned as to whether his process was satisfactory, replied that he heard \\\"no complaints.\\\"\\n\",\"The strange competition amongst hundreds to succeed Marwood is a strange fact too recently before the public to need mention here.\\n\",\"It may, however, be remarked that the wisdom of appointing any regular hangman is very open to question,\\n\",\"and must be strongly deprecated on moral grounds, as tending to the utter degradation of one individual.\\n\",\"Possibly such changes may be introduced into the method of execution\\n\",\"that the ceremony may be made more mechanical, thus rendering the personal intervention of a skilled functionary unnecessary.\\n\",\"Executions long continued to be in public, in spite of remonstrance and reprobation.\\n\",\"The old prejudices, such as that which enlisted Dr. Johnson on the side of the Tyburn procession, still lingered and prevented any change.\\n\",\"It was thought that capital punishment would lose its deterrent effect if it ceased to be public,\\n\",\"and the raison d'\\u00eatre of the penalty, which in principle so many opposed, would be gone.\\n\",\"This line of argument prevailed over the manifest horrors of the spectacle. These increased as time passed.\\n\",\"The graphic and terrible account given by Charles Dickens of the awful scene before Horsemonger Lane Jail, at the execution of the Mannings,\\n\",\"has already been quoted. Again, the concourse of people collected in front of Newgate to witness the execution,\\n\",\"simultaneously, of the five pirates, part of the mutinous crew of the 'Flowery Land,' was greater than on any previous occasion.\\n\",\"It was a callous, careless crowd of coarse-minded, semi-brutalized folk, who came to enjoy themselves.\\n\",\"Few, if any, showed any feeling of terror, none were impressed with the solemnity, or realized the warning which the sight conveyed.\\n\",\"The upturned faces of the eager spectators resembled those of the 'gods' at Drury Lane on Boxing Night;\\n\",\"the crowd had come to witness a popular and gratuitous public performance -- better than a prize-fight or a play.\\n\",\"No notion that they were assisting at a vindication of the law filled the minds of those present with dread.\\n\",\"On the contrary, the prevailing sentiment was one of satisfaction at the success of the spectacle.\\n\",\"The remarks heard amongst the crowd were of coarse approval.\\n\",\"The reply evinced equal satisfaction, and the speaker, with a profane oath, declared that he would like to act as Jack Ketch to the whole lot.\\n\",\"To the disgrace of the better-educated and better-bred public, executions could still command the attendance of curious aristocrats from the West End.\\n\",\"At M\\u00fcller's execution there was great competition for front seats,\\n\",\"and the windows of the opposite houses, which commanded a good view, as usual fetched high prices.\\n\",\"As much as twenty-five pounds was paid for a first-floor front on this occasion.\\n\",\"Never, indeed, had an execution been more generally patronized.\\n\",\"This is proved by contemporary accounts, especially one graphic and realistic article which appeared in the 'Times,'\\n\",\"and which contributed in no small degree to the introduction of private executions. A great crowd was expected, and a great crowd came.\\n\",\"They collected over night in the bright light of a November moon.\\n\",\"\\\"There were well-dressed and ill-dressed, old men and lads, women and girls.\\\"\\n\",\"Rain fell heavily at intervals, but did not thin the concourse.\\n\",\"\\\"Till three o'clock it was one long revelry of songs and laughter, shouting, and often quarreling, though,\\n\",\"to do them mere justice, there was at least till then a half-drunken ribald gaiety among the crowd that made them all akin.\\\"\\n\",\"There were preachers among the crowd, but they could not get a patient hearing.\\n\",\"Then one struck up the hymn of the Promised Land, and the refrain was at once taken up with a mighty chorus --\\n\",\"Oh, my! Think I've got to die.\\n\",\"This was presently superseded by a fresh catch --\\n\",\"\\\"M\\u00fcller, M\\u00fcller, He's the man,\\\" till a diversion was created by the appearance of the gallows, which was received with continuous yells.\\n\",\"As day broke the character of the crowd was betrayed.\\n\",\"There were but few women, except of the most degraded sort; the men were mostly young men --\\n\",\"sharpers, thieves, gamblers, betting men, the outsiders of the boxing ring,\\n\",\"bricklayers' laborers, dock workmen, German artisans and sugar-bakers\\n\",\"with the rakings of cheap singing-halls and billiard-rooms, the fast young men of London.\\n\",\"But all, whether young or old, men or women, seemed to know nothing, feel nothing, to have no object but the gallows, and to laugh,\\n\",\"curse, or shout, as in this heaving and struggling forward they gained or lost in their strong efforts to get nearer where M\\u00fcller was to die.\\n\",\"The actual execution made some impression.\\n\",\"The crowd was for a moment awed and stilled by the quiet rapid passage from life to death!\\n\",\"But before \\\"the slight slow vibrations of the body had well ended,\\n\",\"robbery and violence, loud laughing, oaths, fighting, obscene conduct, and still more filthy language reigned round the gallows far and near.\\n\",\"Such too the scene remained with little change or respite till the old hangman (Calcraft) slunk again along the drop,\\n\",\"amid hisses and sneering inquiries of what he had had to drink that morning.\\n\",\"He, after failing once to cut the rope, made a second attempt more successfully, and the body of M\\u00fcller disappeared from view.\\n\",\"It was preposterous to claim for such a scene as this that it conveyed any great moral lesson, or had any deterring influence.\\n\",\"Numbers of humane and thoughtful persons had long been convinced of this.\\n\",\"Already the urgent necessity for abolishing public executions had been brought before the House of Commons by Mr. Hibbert,\\n\",\"and the question, as part of the whole subject of capital punishment, had been referred to a royal commission in January eighteen sixty-four.\\n\",\"Full evidence was taken on all points, and on that regarding public executions there was a great preponderance of opinion towards their abolition,\\n\",\"yet the witnesses were not unanimous.\\n\",\"Some of the judges would have retained the public spectacle; the ordinary of Newgate was not certain that public executions were not the best.\\n\",\"Another distinguished witness feared\\n\",\"that any secrecy in the treatment of the condemned would invest them with a new and greater interest, which was much to be deprecated.\\n\",\"Foreign witnesses, too, were in favor of publicity.\\n\",\"On the other hand, Lords Cranworth and Wensleydale recommended private executions; so did Mr. Spencer Walpole, M.P.\\n\",\"Sir George Grey thought there was a growing feeling in favor of executions within the prison precincts.\\n\",\"Colonel (now Sir Edmund) Henderson was strongly in favor of them,\\n\",\"based on his experience of them in Western Australia. He not only thought them likely to be more deterrent,\\n\",\"but believed that a public ceremony destroyed the whole value of an execution.\\n\",\"Other officials, great lawyers, governors of prisons, and chaplains supported this view.\\n\",\"The only doubts expressed were as to the sufficiency of the safeguards, as to the certainty of death and its subsequent publication.\\n\",\"But these, it was thought, might be provided by the admission of the press and the holding of a coroner's inquest.\\n\",\"Duly impressed with the weight of evidence in favor of abolition,\\n\",\"the commission recommended that death sentences should be carried out within the jail, under such regulations as might be considered necessary\\n\",\"to prevent abuse, and satisfy the public that the law had been complied with.\\n\",\"But it is curious to note that there were several dissentients among the commissioners to this paragraph of the report.\\n\",\"The judge of the Admiralty Court, the Right Hon. Stephen Lushington, the Right Hon. James Moncrieff,\\n\",\"Lord Advocate, Mr. Charles Neate, Mr. William Ewart, and last, but not least, Mr. John Bright\\n\",\"declared that they were not prepared to agree to the resolution respecting private executions.\\n\",\"Nevertheless, in the very next session\\n\",\"a bill was introduced by Mr. Hibbert, M.P., and accepted by the Government, providing for the future carrying out of executions within prisons.\\n\",\"It was read for the first time in March eighteen sixty-six, but did not become law till eighteen sixty-eight.\\n\",\"The last public execution in front of Newgate was that of the Fenian Michael Barrett,\\n\",\"who was convicted of complicity in the Clerkenwell explosion, intended to effect the release of Burke and Casey\\n\",\"from Clerkenwell prison, by which many persons lost their lives.\\n\",\"Unusual precautions were taken upon this occasion, as some fresh outrage was apprehended.\\n\",\"There was no interference with the crowd, which collected as usual, although not to the customary extent.\\n\",\"But Newgate and its neighborhood was carefully held by the police, both city and metropolitan.\\n\",\"In the houses opposite the prison numbers of detectives mixed with the spectators;\\n\",\"inside the jail was Colonel Frazer, the chief commissioner of the city police, and at no great distance, although in the background,\\n\",\"troops were held in readiness to act if required. Everything passed off quite quietly, however,\\n\",\"and Calcraft, who had been threatened with summary retribution if he executed Barrett, carried out the sentence without mishap.\\n\",\"The sufferer was stolid and reticent to the last.\\n\",\"The first private execution under the new law took place within the precincts of Maidstone Jail.\\n\",\"The sufferer was a porter on the London, Chatham, and Dover railway, sentenced to death for shooting the station-master at Dover.\\n\",\"The ceremony, which was witnessed by only a few officials and representatives of the press, was performed with the utmost decency and decorum.\\n\",\"a fact duly advertised as completed by the hoisting of the black flag over the jail,\\n\",\"had undoubtedly a solemn, impressive effect upon those outside.\\n\",\"The same was realized in the first private execution within Newgate,\\n\",\"that of Alexander Mackay, who murdered his mistress at Norton Folgate by beating her with a rolling-pin and furnace-rake,\\n\",\"and who expiated his crime on the eighth September, eighteen sixty-eight.\\n\",\"A more marked change from the old scene can hardly be conceived. Instead of the roar of the brutalized crowd,\\n\",\"the officials spoke in whispers; there was but little moving to and fro.\\n\",\"Almost absolute silence prevailed until the great bell began to toll its deep note, and broke the stillness with its regular and monotonous clangour,\\n\",\"and the ordinary, in a voice trembling with emotion, read the burial service aloud.\\n\",\"Mackay's fortitude, which had been great,\\n\",\"broke down at the supreme moment before the horror of the stillness, the awful impressiveness of the scene in which he was the principal actor.\\n\",\"No time was lost in carrying out the dread ceremony; but it was not completed without some of the officials turning sick, and the moment it was over,\\n\",\"all who could were glad to escape from the last act of the ghastly drama at which they had assisted.\\n\",\"Private executions at their first introduction were not popular with the Newgate officials, and for intelligible reasons.\\n\",\"The change added greatly to the responsibilities of the governor and his subordinates. Hitherto the public had seemed to assist at the ceremony;\\n\",\"the moment too that the condemned man had passed through the debtors' door on to the scaffold the prison had done with him,\\n\",\"and the great outside world shared in the completion of the sacrifice.\\n\",\"This feeling was the stronger because\\n\",\"all the ghastly paraphernalia, the gallows itself and the process of erecting and removing it, rested with the city architect, and not with the prison officials.\\n\",\"Moreover, after the execution, under the old system, the latter had only to receive the body for burial after it had been cut down by the hangman,\\n\",\"and placed decently in a shell by the workmen who removed the gallows.\\n\",\"Under the new system the whole of the arrangements from first to last fell upon the officers.\\n\",\"It was they who formed the chief part of the small select group of spectators;\\n\",\"upon them devolved the painful duty of cutting down the body and preparing for the inquest.\\n\",\"All that the hangman, whoever he may be, does under the new regime is to unhook the halter and remove the pinioning straps.\\n\",\"The interment in a shell filled with quicklime in the passage-way leading to the Old Bailey is also a part of the duty of the prison officials.\\n\",\"and for the greater security of prisoners it is roofed in with iron bars which gives it, at least overhead, the aspect of a huge cage.\\n\",\"Underfoot and upon the walls roughly cut into the stones, are single initial letters, the brief epitaphs of those who lie below.\\n\",\"As this burial-ground leads to the adjacent Central Criminal Court, accused murderers, on going to and returning from trial,\\n\",\"literally walked over what, in case of conviction, would be their own graves.\\n\",\"The older officers, with several of whom I have conversed, have thus had unusual opportunities of watching the demeanor of murderers both before trial\\n\",\"and after sentence.\\n\",\"All as a rule, unless poignant remorse has brought a desire to court their richly-merited retribution, are buoyed up\\n\",\"with hope to the last. There is always the chance of a flaw in the indictment, of a missing witness, or extenuating circumstances.\\n\",\"Even when in the condemned cell, with a shameful death within measurable distance,\\n\",\"many cling still to life, expecting much from the intercession of friends or the humanitarianism of the age.\\n\",\"All almost without exception sleep soundly at night, except the first after sentence,\\n\",\"when the first shock of the verdict and the solemn notification of the impending blow keeps nearly all awake, or at least disturbs their night's rest.\\n\",\"But the uneasiness soon wears off. The second night sleep comes readily, and is sound;\\n\",\"many of the most abandoned murderers snore peacefully their eight hours, even on the night immediately preceding execution.\\n\",\"All too have a fairly good appetite, and eat with relish, up to the last moment.\\n\",\"A few go further, and are almost gluttonous.\\n\",\"Giovanni Lanni, the Italian boy who murdered a Frenchwoman in the Haymarket,\\n\",\"and was arrested on board ship just as he was about to leave the country, had a little spare cash, which he devoted entirely to the purchase of extra food.\\n\",\"He ate constantly and voraciously after sentence, as though eager to cram as many meals as possible into the few hours still left him to live.\\n\",\"Jeffrey, who murdered his own child, an infant of six, by hanging him in a cellar in Seven Dials,\\n\",\"called for a roast duck directly he entered the condemned cell.\\n\",\"The request was not granted, as the old custom of allowing capital convicts whatever they asked for in the way of food has not been the rule in Newgate.\\n\",\"The diet of the condemned is the ordinary diet of the prison,\\n\",\"but to which additions are sometimes made, chiefly of stimulants, if deemed necessary, by the medical officer of the jail.\\n\",\"The craving for tobacco which so dominates the habitual smoker often leads the convicted to plead hard for a last smoke.\\n\",\"As a special favor\\n\",\"Wainwright was allowed a cigar the night before execution, which he smoked in the prison yard, walking up and down with the governor, Mr. Sydney Smith.\\n\",\"Wainwright's demeanor was one of reckless effrontery steadily maintained to the last.\\n\",\"His conversation turned always upon his influence over the weaker sex, and the extraordinary success he had achieved.\\n\",\"No woman could resist him, he calmly assured Mr. Smith that night as they walked together, and he recounted his villanies one by one.\\n\",\"His effrontery was only outdone by his cool contempt for the consolations of religion.\\n\",\"The man who had made a pious life a cloak for his misdeeds, the once exemplary young man and indefatigable Sunday School teacher,\\n\",\"went impenitent to the gallows. The only sign of feeling he showed was in asking to be allowed to choose the hymns on the Sunday\\n\",\"the condemned sermon was preached in the prison chapel, and this was probably only that he might hear the singing of a lady with a magnificent voice\\n\",\"who generally attended the prison services.\\n\",\"During the singing of these hymns Wainwright fainted, but whether from real emotion or the desire to make a sensation was never exactly known.\\n\",\"On the fatal morning he came gaily out of his cell,\\n\",\"nodded pleasantly to the governor, who stood just opposite, and then walked briskly towards the execution shed, smiling as he went along.\\n\",\"There was a smile on his face when it was last seen, and just as the terrible white cap was drawn over it.\\n\",\"Wainwright's execution was within the jail, but only nominally private.\\n\",\"No less than sixty-seven persons were present, admitted by special permission of the sheriff.\\n\",\"Rumour even went so far as to assert that among the spectators were several women, disguised in male habiliments;\\n\",\"but the story was never substantiated, and we may hope that it rested only on the idle gossip of the day.\\n\",\"Many, like Wainwright, were calm and imperturbable throughout their trying ordeal.\\n\",\"Catherine Wilson, the poisoner, was reserved and reticent to the last, expressing no contrition, but also no fear --\\n\",\"a tall, gaunt, repulsive-looking woman, who no more shrank from cowardly, secret crimes than from the penalty they entailed.\\n\",\"Kate Webster, who was tried at the Central Criminal Court, and passed through Newgate, although she suffered at Wandsworth,\\n\",\"is remembered at the former prison as a defiant,\\n\",\"brutal creature who showed no remorse, but was subject to fits of ungovernable passion, when she broke out into language the most appalling.\\n\",\"The man Marley displayed fortitude of a less repulsive kind. He acknowledged his guilt from the first.\\n\",\"When the sheriff offered him counsel for his defense, he declined, saying he wished to make none -- \\\"the witnesses for the prosecution spoke the truth.\\\"\\n\",\"During the trial and after sentence he remained perfectly cool and collected.\\n\",\"When visited one day in the condemned cell, just as St. Sepulchre's clock was striking, he looked up and said laughingly, \\\"Go along, clock;\\n\",\"come along, gallows.\\n\",\"He tripped up the chapel-stairs to hear the condemned sermon, and came out with cheerful alacrity on the morning he was to die.\\n\",\"Some condemned convicts converse but little with the warders who have them unceasingly in charge.\\n\",\"Others talk freely enough on various topics, but principally upon their own cases.\\n\",\"When vanity is strongly developed there is the keen anxiety to hear what is being said about them outside.\\n\",\"One was vexed to think that his victims had a finer funeral than he would have.\\n\",\"The only subject another showed any interest in was the theatres and the new pieces that were being produced. A third, Christian Satler,\\n\",\"laughed and jested with the officers about \\\"Jack Ketch,\\\" who, through the postponement of the execution, would lose his Christmas dinner.\\n\",\"When they brought in the two watchers to relieve guard one night, Sattler said,\\n\",\"\\\"Two fresh men! May I speak to them? Yes! I must caution you,\\\" he went on to the warders, \\\"not to go to sleep, or I shall be off through that little hole,\\\"\\n\",\"pointing to an aperture for ventilating the cell. On the morning of execution he asked how far it was to the gallows, and was told it was quite close.\\n\",\"that the convict's clothes were still the executioner's perquisite.\\n\",\"Often the convicts give way to despair. They are too closely watched to be allowed to do themselves much mischief, or suicides would probably be more frequent.\\n\",\"But it is neither easy to obtain the instruments of self-destruction nor to elude the vigilance of their guard.\\n\",\"The man, Bousfield, however, whose execution was so sadly bungled,\\n\",\"made a determined effort to burn himself to death by throwing himself bodily on to the fire in the condemned ward.\\n\",\"He was promptly rescued from his perilous condition, but not before his face and hands were badly scorched.\\n\",\"They were still much swollen when he was led out to execution.\\n\",\"Miller, the Chelsea murderer, who packed his victim's body in a box, and tried to send it by parcels delivery, tried to kill himself,\\n\",\"but ineffectively, by running his head against his cell wall.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section twenty: Newgate Notorieties, part one.\\n\",\"As these records draw to a close, the crimes I chronicle become so much more recent in date that they will be fresh in the memory of most of my readers.\\n\",\"Nevertheless, in order to give completeness to the picture\\n\",\"I have attempted to draw of crime in connection with Newgate, from first to last, I must make some mention, in this my penultimate chapter,\\n\",\"of some of the most heinous offenses of modern times.\\n\",\"The crime of poisoning has always been viewed with peculiar loathing and terror in this country.\\n\",\"It will be remembered that as far back as the reign of Henry the eighth a new and most cruel penalty was devised for the punishment of the Bishop of Rochester's cook,\\n\",\"who had poisoned his master and many of his dependents.\\n\",\"Sir Thomas Overbury was undoubtedly poisoned by Lord Rochester in the reign of James the first,\\n\",\"and it is hinted that James himself nearly fell a victim to a nefarious attempt of the Duke of Buckingham.\\n\",\"But secret poisoning on a wholesale scale such as was practiced in Italy and France was happily never popularized in England.\\n\",\"The well-known and lethal aqua Toffania,\\n\",\"so called after its inventress, a Roman woman named Toffana, and which was so widely adopted by ladies anxious to get rid of their husbands,\\n\",\"was never introduced into this country. Its admission was probably checked by the increased vigilance at the custom houses,\\n\",\"the necessity for which was urged by Mr. Addison, when Secretary of State, in seventeen seventeen.\\n\",\"The cases of poisoning in the British calendars are rare, nor indeed was the guilt of the accused always clearly established.\\n\",\"It is quite possible that Catherine Blandy, who poisoned her father at the instigation of her lover,\\n\",\"was ignorant of the destructive character of the powders, probably arsenic, which she administered.\\n\",\"Captain Donellan, who was convicted of poisoning his brother-in-law, Sir Theodosius Broughton, and executed for it,\\n\",\"would probably have had the benefit in these days of the doubts raised at his trial.\\n\",\"A third case, more especially interesting to us as having passed through Newgate,\\n\",\"was that of Eliza Fenning, who was convicted of an attempt to poison a whole family\\n\",\"by putting arsenic in the dumplings she had prepared for them. The charge rested entirely on circumstantial evidence,\\n\",\"and as Fenning, although convicted and executed, protested her innocence in the most solemn manner to the last,\\n\",\"the justice of the sentence was doubted at the time.\\n\",\"Yet it was clearly proved that the dumplings contained arsenic, that she, and she alone, had made the dough,\\n\",\"that arsenic was within her reach in the house,\\n\",\"that she had had a quarrel with her mistress, and that the latter with all others who tasted the dumplings were similarly attacked, although no one died.\\n\",\"The crime of poisoning is essentially one which will be most prevalent in a high state of civilization,\\n\",\"when the spread of scientific knowledge places nefarious means at the disposal of many,\\n\",\"instead of limiting them, as in the days of the Borgias and Brinvilliers, to the specially informed and unscrupulously powerful few.\\n\",\"The first intimation conveyed to society of the new terror which threatened it was in the arrest and arraignment of William Palmer,\\n\",\"a medical practitioner, charged with doing to death persons who relied upon his professional skill.\\n\",\"The case contained elements of much uncertainty, and yet it was so essential,\\n\",\"in the interests and for the due protection of the public, that the fullest and fairest inquiry should be made,\\n\",\"that the trial was transferred to the Central Criminal Court,\\n\",\"under the authority of an Act passed on purpose, known as the Trial of offenses Act, and sometimes as Lord Campbell's Act.\\n\",\"That the administration of justice should never be interfered with by local prejudice or local feeling\\n\",\"is obviously of paramount importance, and the powers granted by this Act have been frequently put in practice since.\\n\",\"The trial of Catherine Winsor, the baby farmer,\\n\",\"was thus brought to the Central Criminal Court from Exeter assizes, and that of the Stauntons from Maidstone.\\n\",\"Palmer's trial caused the most intense excitement.\\n\",\"The direful suspicions which surrounded the case filled the whole country with uneasiness and misgiving,\\n\",\"and the deepest anxiety was felt that the crime, if crime there had been, should be brought home to its perpetrator.\\n\",\"The Central Criminal Court was crowded to suffocation.\\n\",\"Great personages occupied seats upon the bench;\\n\",\"the rest of the available space was allotted by ticket, to secure which the greatest influence was necessary.\\n\",\"People came to stare at the supposed cold-blooded prisoner;\\n\",\"with morbid curiosity to scan his features and watch his demeanor through the shifting, nicely-balanced phases of his protracted trial.\\n\",\"Palmer, who was only thirty-one at the time of his trial, was in appearance short and stout, with a round head\\n\",\"covered rather scantily with light sandy hair.\\n\",\"His skin was extraordinarily fair, his cheeks fresh and ruddy; altogether his face, though commonplace, was not exactly ugly;\\n\",\"there was certainly nothing in it which indicated cruel cunning or deliberate truculence.\\n\",\"His features were not careworn, but rather set, and he looked older than his age.\\n\",\"Throughout his trial he preserved an impassive countenance, but he clearly took a deep interest in all that passed.\\n\",\"Although the strain lasted fourteen days, he showed no signs of exhaustion, either physical or mental.\\n\",\"On returning to jail each day he talked freely and without reserve to the warders in charge of him, chiefly on incidents in the day's proceedings.\\n\",\"He was confident to the very last that it would be impossible to find him guilty;\\n\",\"even after sentence, and until within a few hours of execution, he was buoyed up with the hope of reprieve.\\n\",\"The conviction that he would escape had taken so firm a hold of him,\\n\",\"that he steadily refused to confess his guilt, lest it should militate against his chances.\\n\",\"In the condemned cell he frequently repeated, quote, I go to my death a murdered man, end quote.\\n\",\"He made no distinct admissions even on the scaffold; but when the chaplain at the last moment exhorted him to confess,\\n\",\"he made use of the remarkable words, quote, If it is necessary for my soul's sake to confess this murder,\\n\",\"I ought also to confess the others: I mean my wife and my brother's. End quote.\\n\",\"Yet he was silent when specifically pressed to confess that he had killed his wife and his brother.\\n\",\"Palmer was ably defended, but the weight of evidence was clearly with the prosecution, led by Sir Alexander Cockburn,\\n\",\"and public opinion at the termination of the trial coincided with the verdict of the jury.\\n\",\"Originally a doctor in practice at Rugeley, in Staffordshire, he had gradually withdrawn from medicine, and devoted himself to the turf;\\n\",\"but his sporting operations did not prosper, and he became a needy man, always driven to desperate straits for cash.\\n\",\"To meet his liabilities, he raised large sums on forged bills of acceptance drawn upon his mother, a woman of some means,\\n\",\"whose signature he counterfeited.\\n\",\"In eighteen fifty-four he owed a very large sum of money, but he was temporarily relieved by the death of his wife,\\n\",\"whose life he had insured for thirteen thousand pounds.\\n\",\"There is every reason to suppose that he poisoned his wife to obtain possession of this sum upon her death.\\n\",\"His brother was supposed to have been his next victim, upon whose life he had also effected an insurance for another thirteen thousand pounds.\\n\",\"The brother too died conveniently, but the life office took some exception to the manner of the death, and hesitated to disburse the funds claimed by Palmer.\\n\",\"Palmer tried to get a new insurance on the life of a hanger-on, one Bates, but no office would accept it, no doubt greatly to Bates's longevity.\\n\",\"Meanwhile the bill discounters who held the forged acceptances, with other promissory notes, began to clamor for payment, and talk of issuing writs.\\n\",\"Palmer, alive to the danger he ran of a prosecution for forgery, should the fraud he had committed be brought to light,\\n\",\"sought about for a fresh victim to supply him with funds.\\n\",\"He fixed upon a sporting friend, Mr. John Parsons Cook, who had been in luck at Shrewsbury races, both as a winner and a backer,\\n\",\"whom he persuaded to go and stay at Rugeley in an hotel just opposite his own house.\\n\",\"It was there that Cook was first taken ill with violent retchings and vomitings, all dating from visits of Palmer, who brought him medicines and food.\\n\",\"Palmer's plan was to administer poison in quantities insufficient to cause death, but enough to produce illness which would account for death.\\n\",\"For this purpose he gave, or there was the strongest presumption that he gave,\\n\",\"antimony, which caused Cook's constant sickness.\\n\",\"Quantities of antimony were found in the body after death.\\n\",\"While Cook lay ill, Palmer in his name pocketed the proceeds of the Shrewsbury settling,\\n\",\"and so got the money for which he was prepared to barter his soul.\\n\",\"The last act now approached, and in order to avoid the detection of this last fraud, Palmer laid his plans for disposing of Cook.\\n\",\"He decided to use strychnia, or the vegetable poison otherwise known as nux vomica;\\n\",\"and one of the many links in the long chain of evidence was an entry in a book of Palmer's to the effect that Quote.\\n\",\"strychnia kills by causing tetanic fixing of the respiratory muscles. End quote.\\n\",\"The purchase by Palmer of strychnia was proved.\\n\",\"The night he bought it, Cook, who had been taking certain pills under medical advice, not Palmer's, was seized with violent convulsions.\\n\",\"He had swallowed his pills as usual, at least Palmer had administered them\\n\",\"whether the ordinary or his own pills will never be known, except as may be inferred from the results, which indicate that he had taken the latter.\\n\",\"Cook recovered this time; it was probably Palmer's intention that he should recover, wishing to encourage the supposition that Cook was in a bad way.\\n\",\"Next night Cook had a second and a more violent attack.\\n\",\"That day Palmer had bought more strychnia, and had called in a fresh doctor.\\n\",\"The second attack was fatal, and ended in Cook's death from tetanus.\\n\",\"This tetanus, according to the prosecution, was produced by strychnia, and followed the administration of pills by Palmer\\n\",\"prescribed nominally by the fresh doctor, for which Palmer had substituted his own.\\n\",\"Cook's death was horrible\\n\",\"fearful paroxysms and cramps, ending in suffocation by the tetanic rigor which caught the muscles of the chest.\\n\",\"After Cook's death his stepfather, who was much attached to him, came to Rugeley.\\n\",\"He was struck with the appearance of the corpse, which was not emaciated, as after a long disease ending in death;\\n\",\"while the muscles of the fingers were tightly clenched, not open, as usual in a corpse.\\n\",\"He said nothing, but began to feel uneasy when he found that Cook's betting-book was missing, and that Palmer put it forward\\n\",\"that his friend had died greatly embarrassed, with bills to the amount of four thousand pounds out in his name.\\n\",\"Palmer too showed an indecent haste in preparing the body for interment, and in obtaining the usual certificate.\\n\",\"After this the step-father insisted upon a post-mortem, which was conducted somewhat carelessly.\\n\",\"The intestines were, however, preserved and sent for analysis,\\n\",\"but it was proved that Palmer tried hard to get possession of the jar containing them,\\n\",\"and even sought to upset the vehicle by which they were being conveyed a part of the way to London.\\n\",\"The examination of the stomach betrayed the presence of antimony in large quantities, but no strychnia,\\n\",\"and it was on the entire absence of the latter that the defense was principally based when Palmer was brought to trial.\\n\",\"All the circumstances were so suspicious that he could not escape the criminal charge.\\n\",\"He had already been arrested on a writ issued at the instance of the money-lenders, and an action had been commenced against Mrs. Palmer on her acceptances.\\n\",\"It came out at once that these had been forged, and the whole affair at once took the ugliest complexion.\\n\",\"A government prosecution was instituted, and Palmer was brought to Newgate for trial at the Central Criminal Court.\\n\",\"There was not much reserve about him when there.\\n\",\"He frequently declared before and during the trial that it would be impossible to find him guilty.\\n\",\"He never actually said that he was not guilty, but he was confident he would not be convicted.\\n\",\"He relied on the absence of the strychnia.\\n\",\"But the chain of circumstantial evidence was strong enough to satisfy the jury, who agreed to their verdict in an hour.\\n\",\"At the last moment Palmer tossed a bit of paper over to his counsel, on which he had written, quote, I think there will be a verdict of Not Guilty, end quote.\\n\",\"Even after the death sentence had been passed upon him he clung to the hope that the Government would grant him a reprieve.\\n\",\"To the last, therefore, he played the part of a man wrongfully convicted, and did not abandon hope\\n\",\"even when the high sheriff had told him there was no possibility of a reprieve, and within a few hours of execution.\\n\",\"He suffered at Stafford in front of the jail.\\n\",\"Palmer speedily found imitators.\\n\",\"Within a few weeks occurred the Leeds poisoning case, in which the murderer undoubtedly was inspired by the facts made public at Palmer's trial.\\n\",\"Dove, a fiendish brute, found from the evidence in that case that he could kill his wife, whom he hated,\\n\",\"with exquisite torture, and with a poison that would leave, as he thought, no trace.\\n\",\"In the latter hope he was happily disappointed. But as this case is beyond my subject, I merely mention it as one of the group already referred to.\\n\",\"Three years later came the case of Dr. Smethurst,\\n\",\"presenting still greater features of resemblance with Palmer's, for both were medical men, and both raised difficult questions of medical jurisprudence.\\n\",\"In both the jury had no doubt as to the guilt of the accused, only in Smethurst's case the then Home Secretary, Sir George Cornewall Lewis,\\n\",\"could not divest his mind of serious doubt, and of which the murderer got the benefit.\\n\",\"Smethurst's escape may have influenced the jury in the Poplar poisoning case,\\n\",\"which followed close on its heels, although in that the verdict of \\\"Not Guilty\\\" was excusable, as the evidence was entirely circumstantial.\\n\",\"There was no convincing proof that the accused had administered the poison, although beyond question that poison had occasioned the death.\\n\",\"Dr. Smethurst was long an inmate of Newgate, and was tried at the Central Criminal Court.\\n\",\"He had all the characteristics of the poisoner -- the calm deliberation,\\n\",\"the protracted dissimulation, as with unshrinking, relentless wickedness the deadly work is carried on to the end.\\n\",\"Smethurst's victim was a Miss Bankes, with whom he had contracted a bigamous marriage.\\n\",\"He had met her at a boarding-house, where he lived with his own wife, a person of \\\"shady\\\" antecedents,\\n\",\"and whom he left without scruple to join Miss Bankes.\\n\",\"The latter seems to have succumbed only too willingly to his fascinations, and to have as readily agreed to marry him,\\n\",\"in spite of the existence of the other Mrs. Smethurst.\\n\",\"Probably the doctor had told her the story he brought forward when tried for bigamy, namely,\\n\",\"that Mrs. Smethurst had no right to the name, but had a husband of her own, one Johnson, alive -- a story subsequently disproved.\\n\",\"Miss Bankes seems to have counted upon some species of whitewashing, no less than the repudiation of the other marriage,\\n\",\"and told her sister as much when they last met.\\n\",\"For some months Smethurst and Miss Bankes lived together as man and wife, first in London, and then at Richmond.\\n\",\"She had a little fortune of her own, some one thousand seven hundred pounds or one thousand eight hundred pounds,\\n\",\"and a life-interest in five thousand pounds, a fact on which Smethurst's counsel dwelt with much weight,\\n\",\"as indicating a motive for keeping her alive rather than killing her.\\n\",\"But probably the lump sum was the bait, or perhaps Smethurst wished to return to his temporarily deserted first wife.\\n\",\"Whatever the exact cause which impelled him to crime, it seems certain that he began to give her some poison,\\n\",\"either arsenic or antimony, or both, in small quantities,\\n\",\"with the idea of subjecting her to the irritant poison slowly but surely until the desired effect, death, was achieved.\\n\",\"As she became worse and worse, Smethurst called in the best medical advice in Richmond,\\n\",\"but was careful to prime them with his facts and lead them if possible to accept his diagnosis of the case.\\n\",\"Smethurst was found guilty by the jury, and sentenced to death.\\n\",\"But a long public discussion followed, and in consequence he was reprieved.\\n\",\"The Home Secretary, in a letter to the Lord Chief Baron, stated that, quote, although the facts are full of suspicion against Smethurst,\\n\",\"there is not absolute and complete evidence of his guilt. End quote.\\n\",\"Smethurst was therefore given a free pardon for the offense of murder,\\n\",\"but he was subsequently again tried for bigamy, and sentenced to twelve months' imprisonment.\\n\",\"Catherine Wilson was a female poisoner who did business wholesale.\\n\",\"She was tried in April eighteen sixty-two on suspicion of having attempted to poison a neighbor with oil of vitriol.\\n\",\"The circumstances were strange. Mrs. Wilson had gone to the chemist's for medicine,\\n\",\"and on her return had administered a dose of something which burnt the mouth badly, but did not prove fatal.\\n\",\"Wilson was acquitted on this charge, but other suspicious facts cropped up while she was in Newgate.\\n\",\"It appeared that several persons with whom she was intimate had succumbed suddenly.\\n\",\"In all cases the symptoms were much the same,\\n\",\"vomiting, violent retching, purging, such as are visible in cholera, and all dated from the time when she knew a young man named Dixon,\\n\",\"who had been in the habit of taking colchicum for rheumatism. Mrs. Wilson heard then casually from a medical man\\n\",\"that it was a very dangerous medicine, and she profited by what she had heard.\\n\",\"Soon afterwards Dixon died, showing all the symptoms already described.\\n\",\"Soon afterwards a friend, Mrs. Atkinson, came to London from Westmoreland, and stayed in Mrs. Wilson's house.\\n\",\"She was in good health on leaving home, and had with her a large sum of money.\\n\",\"While with Mrs. Wilson she became suddenly and alarmingly ill, and died in great agony.\\n\",\"Her husband, who came up to town, would not allow a post-mortem, and again Mrs. Wilson escaped.\\n\",\"Mrs. Atkinson's symptoms had been the same as Dixon's. Then Mrs. Wilson went to live with a man named Taylor,\\n\",\"who was presently attacked in the same way as the others, but, but, thanks to the prompt administration of remedies, he recovered.\\n\",\"After this came the charge of administering oil of vitriol, which failed, as has been described.\\n\",\"Last of all Mrs. Wilson poisoned her landlady, Mrs. Soames, under precisely the same conditions as the foregoing.\\n\",\"Here, however, the evidence was strong and sufficient.\\n\",\"It was proved that Mrs. Wilson had given Mrs. Soames something peculiar to drink,\\n\",\"that immediately afterwards Mrs. Soames was taken ill with vomiting and purging,\\n\",\"and that Mrs. Wilson administered the same medicine again and again.\\n\",\"The last time Mrs. Soames showed great reluctance to take it, but Wilson said it would certainly do her good.\\n\",\"This mysterious medicine Wilson kept carefully locked up, and allowed no one to see it,\\n\",\"but its nature was betrayed when this last victim also died.\\n\",\"The first post-mortem indicated death from natural causes,\\n\",\"but a more careful investigation attributed it beyond doubt to over-doses of colchicum.\\n\",\"Dr. Alfred Taylor, the great authority and writer on medical jurisprudence, corroborated this, and in his evidence on the trial\\n\",\"fairly electrified the court by declaring it his opinion that many deaths, supposed to be from cholera, were really due to poison.\\n\",\"This fact was referred to by the judge in his summing up,\\n\",\"who said that he feared it was only too true that secret poisoning was at that time very rife in the metropolis.\\n\",\"Wilson was duly sentenced to death, and suffered impenitent, hardened, and without any confession of her guilt.\\n\",\"Although murder by insidious methods had become more common, cases where violence of the most deadly and determined kind was offered\\n\",\"had not quite disappeared. I will mention two cases of this class, one accompanied with piracy on the high seas,\\n\",\"the other perpetrated in a railway-carriage, and showing the promptitude with which criminals accept and utilize altered conditions of life,\\n\",\"more particularly as regards locomotion.\\n\",\"The first case was that of the 'Flowery Land,'\\n\",\"which left London for Singapore on the twenty-eighth July, eighteen sixty-three, with a cargo of wine and other goods.\\n\",\"Her captain was John Smith;\\n\",\"the first and second mates, Karswell and Taffir; there were two other Englishmen on board, and the rest of the crew were a polyglot lot,\\n\",\"most of them, as was proved by their subsequent acts, blackguards of the deepest dye.\\n\",\"Six were Spaniards, or rather natives of Manilla, and men of color; one was a Greek, another a Turk;\\n\",\"there were also a Frenchman, a Norwegian (the carpenter), three Chinamen, a \\\"Sclavonian,\\\" and a black on board.\\n\",\"Navigation and discipline could not be easy with such a nondescript crew.\\n\",\"The captain was kindly but somewhat intemperate, the first mate a man of some determination,\\n\",\"and punishment such as rope's-ending and tying to the bulwarks had to be applied to get the work properly done.\\n\",\"The six Spaniards, the Greek, and the Turk were in the same watch,\\n\",\"eight truculent and reckless scoundrels, who, brooding over their fancied wrongs, and burning for revenge,\\n\",\"hatched amongst them a plot to murder their officers and seize the ship.\\n\",\"The mutiny was organized with great secrecy, and broke out most unexpectedly in the middle of the night.\\n\",\"A simultaneous attack was made upon the captain and the first mate.\\n\",\"The latter had the watch on deck.\\n\",\"One half of the mutineers fell upon him unawares with handspikes and capstan-bars.\\n\",\"He was struck down, imploring mercy, but they beat him about the head and face\\n\",\"till every feature was obliterated, and then, still living, flung him into the sea.\\n\",\"Meanwhile the captain, roused from his berth,\\n\",\"came out of the cabin, was caught near the 'companion' by the rest of the mutineers, and promptly dispatched with daggers.\\n\",\"His body was found lying in a pool of blood in a night-dress, stabbed over and over again in the left side.\\n\",\"The captain's brother, a passenger on board the 'Flowery Land,' was also stabbed to death and his body thrown overboard.\\n\",\"The second mate, who had heard the hammering of the capstan-bars and the handspikes, with the first mate's and captain's agonized cries, had come out,\\n\",\"verified the murderers, and then shut himself up in his cabin.\\n\",\"He was soon summoned on deck, but as he would not move, the mutineers came down and stood in a circle round his berth.\\n\",\"Leon, or Lyons, who spoke English,\\n\",\"when asked said they would spare his life if he would navigate the ship for them to the River Plate or Buenos Aires.\\n\",\"Taffir, the second mate, agreed, but constantly went in fear of his life for the remainder of the voyage;\\n\",\"and although the mutineers spared him, they ill-treated the Chinamen, and cut one badly with knives.\\n\",\"Immediately after the murder cases of champagne, which formed part of the cargo, were brought on deck and broached;\\n\",\"the captain's cabin ransacked, his money and clothes divided amongst the mutineers, as well as much of the merchandise on board.\\n\",\"Leon wished to make every one on board share and share alike, so as to implicate the innocent with the guilty;\\n\",\"but Vartos, or Watto, the Turk, would not allow any but the eight mutineers to have anything.\\n\",\"The murders were perpetrated on the tenth September, and the ship continued her voyage for nearly three weeks, meeting and speaking one ship only.\\n\",\"On the second October they sighted land, ten miles distant;\\n\",\"the mutineers took command of the ship, put her about till night-fall, by which time they had scuttled her, got out the boats, and all left the ship.\\n\",\"The rest of the crew were also permitted to embark, except the Chinamen, one of whom was thrown into the water and drowned,\\n\",\"while the other two were left to go down in the ship, and were seen clinging to the tops until the waters closed over them.\\n\",\"The boats reached the shore on the fourth October. Leon had prepared a plausible tale to the effect that they belonged to an American ship\\n\",\"from Peru bound to Bordeaux, which had foundered at sea;\\n\",\"that they had been in the boats five days and nights, but that the captain and others had been lost.\\n\",\"The place at which they landed was not far from the entrance to the River Plate.\\n\",\"A farmer took them in for the night, and drove them next day to Rocha, a place north of Maldonado.\\n\",\"Taffir, the mate, finding there was a man who could speak English at another place twenty miles off,\\n\",\"repaired there secretly, and so gave information to the Brazilian authorities.\\n\",\"The mutineers were arrested, the case inquired into by a naval court-martial,\\n\",\"and the prisoners eventually surrendered to the British authorities, brought to England, and lodged in Newgate.\\n\",\"Their trial followed at the Central Criminal Court.\\n\",\"Eight were arraigned at the same time: six Spaniards, Leon, Blanco, Duranno, Santos, and Marsolino;\\n\",\"Vartos the Turk, and Carlos the Greek.\\n\",\"Seven were found guilty of murder on the high seas, and one, Carlos, acquitted.\\n\",\"Two of the seven, Santos and Marsolino, were reprieved, and their sentences commuted to penal servitude for life;\\n\",\"the remaining five were executed in one batch.\\n\",\"They were an abject, miserable crew, cowards at heart; but some, especially Lopez, continued bloodthirsty to the last.\\n\",\"Lopez took a violent dislike to the officer of the ward in charge of them, and often expressed a keen desire to do for him.\\n\",\"They none of them spoke much English except Leon, commonly called Lyons.\\n\",\"After condemnation, as the rules now kept capital convicts strictly apart, they could not be lodged in the two condemned cells,\\n\",\"and they were each kept in an ordinary separate cell of the newly-constructed block, with the \\\"traps,\\\" or square openings in the cell door,\\n\",\"let down. A full view of them was thus at all times obtainable by the officers who, without intermission, day and night patrolled the ward.\\n\",\"On the morning of execution the noise of fixing the gallows in the street outside awoke one or two of them.\\n\",\"Lyons asked the time, and was told it was only five.\\n\",\"\\\"Ah!\\\" he remarked, \\\"they will have to wait for us then till eight.\\\"\\n\",\"Lopez was more talkative.\\n\",\"When the warder went in to call him he asked for his clothes. He was told he would have to wear his own.\\n\",\"Then he wanted to know when the policemen would arrive, and was told none would come.\\n\",\"The soldiers then?\\n\",\"No soldiers either.\\n\",\"The convicts were pinioned one by one and sent singly out to the gallows.\\n\",\"As the first to appear would have some time to wait for his fellows, a difficult and painful ordeal,\\n\",\"the seemingly most courageous was selected to lead the way.\\n\",\"This was Duranno; but the sight of the heaving mass of uplifted, impassioned faces\\n\",\"was too much for his nerves, and he so nearly fainted that he had to be seated in a chair.\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section twenty-one: Newgate Notorieties, part two.\\n\",\"In July eighteen sixty-four occurred the murder of Mr. Briggs, a gentleman advanced in years and chief clerk in Robarts' bank.\\n\",\"As the circumstances under which it was perpetrated were somewhat novel,\\n\",\"and as some time elapsed before the discovery and apprehension of the supposed murderer,\\n\",\"the public mind was greatly agitated by the affair for several months. The story of the murder must be pretty familiar to most of my readers.\\n\",\"Mr. Briggs left the bank one afternoon as usual, dined with his daughter at Peckham,\\n\",\"then returned to the city to take the train from Fenchurch Street home, traveling by the North London Railway.\\n\",\"He lived at Hackney, but he never reached it alive.\\n\",\"When the train arrived at Hackney station, a passenger who was about to enter one of the carriages found the cushions soaked with blood.\\n\",\"Inside the carriage was a hat, a walking-stick, and a small black leather bag.\\n\",\"About the same time a body was discovered on the line near the railway-bridge by Victoria Park.\\n\",\"It was that of an aged man, whose head had been battered in by a life-preserver.\\n\",\"There was a deep wound just over the ear, the skull was fractured, and there were several other blows and wounds on the head.\\n\",\"Strange to say, the unfortunate man was not yet dead, and he actually survived more than four-and-twenty hours.\\n\",\"His identity was established by a bundle of letters in his pocket, which bore his full address:\\n\",\"T. Briggs, Esq., Robarts and Co., Lombard Street.\\n\",\"The friends of Mr. Briggs were communicated with, and it was ascertained that when he left home the morning of the murderous attack,\\n\",\"he wore gold-rimmed eye-glasses and a gold watch and chain.\\n\",\"The stick and bag were his, but not the hat.\\n\",\"A desperate and deadly struggle must have taken place in the carriage, and the stain of a bloody hand marked the door.\\n\",\"The facts of the murder and its object, robbery, were thus conclusively proved.\\n\",\"It was also easily established that the hat found in the carriage had been bought at Walker's, a hatter's in Crawford Street,\\n\",\"Marylebone; while within a few days Mr. Briggs' gold chain was traced to a jeweler's in Cheapside,\\n\",\"Mr. Death, who had given another in exchange for it to a man supposed to be a foreigner.\\n\",\"More precise clues to the murderer were not long wanting; indeed the readiness with which they were produced and followed up\\n\",\"showed how greatly the publicity and wide dissemination of the news regarding murder facilitate the detection of crime.\\n\",\"In little more than a week a cabman came forward and voluntarily made a statement which at once drew suspicion to a German, Franz M\\u00fcller,\\n\",\"who had been a lodger of his. M\\u00fcller had given the cabman's little daughter a jeweler's cardboard box bearing the name of Mr. Death.\\n\",\"A photograph of M\\u00fcller shown the jeweler was identified as the likeness of the man who had exchanged Mr. Briggs' chain.\\n\",\"Last of all, the cabman swore that he had bought the very hat found in the carriage for M\\u00fcller at the hatter's, Walker's of Crawford Street.\\n\",\"This fixed the crime pretty certainly upon M\\u00fcller, who had already left the country, thus increasing suspicion under which he lay.\\n\",\"There was no mystery about his departure; he had gone to Canada, by the 'Victoria' sailing ship, starting from the London docks, and bound to New York.\\n\",\"Directly the foregoing facts were established, a couple of detective officers, armed with a warrant to arrest M\\u00fcller,\\n\",\"and accompanied by Mr. Death the jeweler and the cabman, went down to Liverpool and took the first steamer across the Atlantic.\\n\",\"This was the 'City of Manchester,' which was expected to arrive some days before the 'Victoria,' and did so.\\n\",\"The officers went on board the 'Victoria' at once, M\\u00fcller was identified by Mr. Death, and the arrest was made.\\n\",\"In searching the prisoner's box, Mr. Briggs' watch was found wrapped up in a piece of leather,\\n\",\"and M\\u00fcller at the time of his capture was actually wearing Mr. Briggs' hat, cut down and somewhat altered.\\n\",\"The prisoner was forthwith extradited and sent back to England, which he reached with his escort on the seventeenth September the same year.\\n\",\"His trial followed at the next sessions of the Central Criminal Court, and ended in his conviction.\\n\",\"The case was one of circumstantial evidence, but, as Sir Robert Collyer the Solicitor-General pointed out,\\n\",\"it was the strongest circumstantial evidence which had ever been brought forward in a murder case.\\n\",\"It was really evidence of facts which could not be controverted or explained away.\\n\",\"There was the prisoner's poverty, his inability to account for himself on the night of the murder, and his possession of the property of the murdered man.\\n\",\"An alibi was set up for the defense, but not well substantiated, and the jury without hesitation returned a verdict of guilty.\\n\",\"M\\u00fcller protested after sentence of death had been passed upon him that he had been convicted on a false statement of facts.\\n\",\"He adhered to this almost to the very last. His case had been warmly espoused by the Society for the Protection of Germans in this country,\\n\",\"and powerful influence was exerted both here and abroad to obtain a reprieve.\\n\",\"M\\u00fcller knew that any confession would ruin his chances of escape.\\n\",\"His arguments were specious and evasive when pressed to confess. \\\"Why should man confess to man?\\\" he replied;\\n\",\"man cannot forgive man, only God can do so. Man is therefore only accountable to God.\\n\",\"But on the gallows, when the cap was over his eyes and the rope had been adjusted round his neck, and within a second of the moment when he would be launched into eternity,\\n\",\"he whispered in the ear of the German pastor who attended him on the scaffold,\\n\",\"While in the condemned cell he conversed freely with the warders in broken English or through an interpreter.\\n\",\"He is described as not a bad-looking man, with a square German type of face,\\n\",\"blue eyes which were generally half closed, and very fair hair.\\n\",\"He was short in stature, his legs were light for the upper part of his body, which was powerful, almost herculean.\\n\",\"It is generally supposed that he committed the murder under a sudden access of covetousness and greed.\\n\",\"He saw Mr. Briggs' watch-chain, and followed him instantly into the carriage, determined to have it at all costs.\\n\",\"His crime under this aspect of it was less premeditated, and less atrocious therefore, than that of Lefroy.\\n\",\"One other curious murder may be added to the two foregoing.\\n\",\"Christian Sattler was by birth a German.\\n\",\"He had led a wild life; had left his native land and enlisted first in the French army in Algeria,\\n\",\"afterwards in the British German Legion raised for the Crimean War.\\n\",\"At the disbandment of the force, as he was without resources, he turned his attention to hotel robberies, by which he lived for some years.\\n\",\"He at length stole a carpet-bag containing valuables, and fled to Hamburgh.\\n\",\"Thither, he was pursued by a detective officer,\\n\",\"Inspector Thain, who, being unable to obtain his extradition legally, had him inveigled on board an English steamer,\\n\",\"where the arrest was made.\\n\",\"Sattler was ironed for safe custody,\\n\",\"a proceeding which he vehemently resented, and begged that they might be removed, as the handcuffs hurt his wrists.\\n\",\"The inspector said that they could not be removed till he reached England.\\n\",\"This reply of his contained no promise of immediate release.\\n\",\"Sattler probably misunderstood, and he declared that the police officer had broken faith with him, having, moreover, stated that\\n\",\"while at sea the captain of the ship was responsible for the security of the prisoner.\\n\",\"As Sattler brooded over his wrongs, his rage got the upper hand, and he resolved to wreak it upon Thain.\\n\",\"Although manacled, he managed to get a pistol from his chest and load it.\\n\",\"The next time Thain entered his cabin he fired at him point-blank, and lodged three bullets in his breast.\\n\",\"The unfortunate man survived till he landed, but died in Guy's Hospital.\\n\",\"Sattler was tried for murder and convicted;\\n\",\"his defense being that he had intended to commit suicide, but that, on the appearance of this officer who had wronged him,\\n\",\"he had yielded to an irresistible impulse to kill him.\\n\",\"Sattler was a very excitable although not an ill-tempered man.\\n\",\"While in Newgate awaiting trial he frequently tried to justify his murder by declaring that the police officer had broken faith with him.\\n\",\"He would shoot any man or any policeman like a dog, or any number of them, who had treated him in that way.\\n\",\"His demeanor immediately preceding his execution I have referred to in the last chapter.\\n\",\"Several cases of gigantic fraud, rivaling any already recorded, were brought to light between eighteen fifty-six and eighteen seventy-three.\\n\",\"I propose next to describe the leading features of the most important of these.\\n\",\"Another case of long-continued successful forgery was brought to light two years after the convictions of Saward and his accomplices.\\n\",\"This conspiracy was cleverly planned, but had scarcely so many ramifications as that of Saward. Its originators were a couple of men,\\n\",\"Wagner and Bateman, who had already been convicted of systematic forgery, and sentenced to transportation, but they had been released on ticket-of-leave\\n\",\"in eighteen fifty-six.\\n\",\"As a blind for their new frauds, they set up as law-stationers in York Buildings, Adelphi, and at once commenced their nefarious traffic.\\n\",\"Forged cheques and bills were soon uttered in great numbers, as well as base coin.\\n\",\"The police suspecting the house in York Buildings, put a watch on the premises, which they kept up for more than a year,\\n\",\"and thus obtained personal knowledge of all who passed in and out, but without obtaining any direct evidence.\\n\",\"At length a man was caught in the act of passing a forged cheque at the Union Bank,\\n\",\"and recognized as one of the frequenters of the bogus law-stationers. His arrest led to that of others.\\n\",\"Among them was a man named Chandler, formerly a bill discounter by profession, who by degrees, to meet his extravagant expenditure,\\n\",\"took to appropriating the bills intrusted to him, and so lost his business, after which he became a clerk to Messrs. Wagner and Bateman.\\n\",\"Chandler while in Newgate turned informer, and betrayed the whole conspiracy.\\n\",\"Besides his employers, a jeweler named Humphreys was in the \\\"swim,\\\" at whose shop in Red Lion Square was discovered a quantity of base gold\\n\",\"and silver coins, with all the latest appliances for coining, including those of electroplating;\\n\",\"also a furniture dealer and one or two more commonplace rogues. The arch villain was never taken into custody.\\n\",\"He, like Saward, was an artist in penmanship.\\n\",\"He was a German named Kerp,\\n\",\"eighty years of age, who had spent his whole life in imitating other people's signatures, and had acquired the most consummate skill in the practice.\\n\",\"His copies were generally pronounced indistinguishable from and as good as the originals.\\n\",\"The aged but wary Kerp, the moment the plot was discovered, vanished, and was never more heard of.\\n\",\"Much the same plan was adopted by these forgers as by Saward to get their cheques cashed.\\n\",\"They advertised for clerks, and employed the most likely of the applicants by sending them to the bank.\\n\",\"It was one of these, Glendinning, who had allowed himself to be utilized for some time in this way, whose capture led to the breaking up of the gang.\\n\",\"The principals in this conspiracy, Wagner and Bateman, were sentenced to penal servitude for life,\\n\",\"the others to twenty and ten years.\\n\",\"It was stated in evidence that the monies obtained by these forgeries amounted to eight thousand pounds or ten thousand pounds,\\n\",\"and that the forged cheques which had been presented, but refused, amounted to double the sum.\\n\",\"Wagner, after conviction, offered to reveal, for a reward of three thousand pounds\\n\",\"a system which had long been in practice of defrauding the Exchequer of vast sums by means of forged stamps.\\n\",\"His offer was not, however, accepted.\\n\",\"A more elaborate plot in many ways, more secretly, more patiently prepared than the preceding, or indeed than any in the calendar,\\n\",\"was the case of the forgeries upon the Bank of England discovered in eighteen sixty-three,\\n\",\"but not before the forged paper had been put in circulation for more than a couple of years. In eighteen sixty-one,\\n\",\"a man named Burnett came with his wife and took up his residence at Whitchurch, Hampshire, at no great distance from Laverstock,\\n\",\"where are Messrs. Portal's mills for the manufacture of bank-note paper.\\n\",\"Burnett had only just come out of jail after completing a sentence of penal servitude.\\n\",\"His object in visiting Whitchurch was to undermine the honesty of some workman in the mills;\\n\",\"and he eventually succeeded, his wife making the first overtures, in persuading a lad named Brown to steal some of the bank paper.\\n\",\"Brown took several sheets, and then was detected by Brewer, a fellow-workman of superior grade,\\n\",\"who threatened to betray the theft. But Brewer, either before or after this, succumbed to temptation,\\n\",\"and stole paper on a much larger scale than Brown.\\n\",\"All that was taken was handed over to Burnett, or a \\\"woman in black\\\" whom Brown met by appointment at Waterloo station.\\n\",\"To facilitate his operations, Brewer obtained a false master key from Burnett,\\n\",\"which gave him access to all parts of the mills, the packing-room included.\\n\",\"In this part of the mills a large quantity of bank-note paper was kept at the period of the robbery,\\n\",\"and in the states known as \\\"water-leaf\\\" and \\\"sized,\\\" which are the penultimate processes of manufacture.\\n\",\"One more remains, that of \\\"glazing,\\\" without which no paper is issued for engraving.\\n\",\"None of the stolen paper was glazed, and this was an important clue to the subsequent discovery of the crime.\\n\",\"Some time in eighteen sixty-two, a large deficiency in stock of bank paper unglazed was discovered at the mills.\\n\",\"Soon afterwards the inspectors of bank-notes at the Bank of England detected the presentation at the bank of spurious notes on genuine paper.\\n\",\"The two facts taken in conjunction\\n\",\"led to the employment of the police, and the offer of a reward of fifteen hundred pounds for the detection of the offenders.\\n\",\"By this time Brown alone had stolen three or four hundred sheets,\\n\",\"each containing two notes, many of the sheets suitable for engraving any kind of note from one thousand pounds downwards.\\n\",\"The amount of Brewer's abstractions (who was eventually acquitted) was never exactly estimated.\\n\",\"Suspicion appears to have rested on Brown, who had left Laverstock,\\n\",\"and he was soon approached by the police. Almost directly he was questioned he made a clean breast of the whole affair.\\n\",\"The next step was to take the principals, and under such circumstances as would insure their conviction.\\n\",\"A watch was set on Burnett, who was followed to the shop of one Buncher, a butcher in Strutton Ground.\\n\",\"Buncher was then tracked to North Kent Terrace, New Cross, where a Mr. and Mrs. Campbell resided,\\n\",\"with whom he did business in exchanging the false notes.\\n\",\"The police officers now taxed Mrs. Campbell with complicity, and frightened her into collusion.\\n\",\"With her assistance on a certain day a couple of bricks were taken out of the wall dividing her front and back parlors;\\n\",\"the officers ensconced themselves in the latter, and waited for Buncher's expected visit.\\n\",\"He came to complete a sale of forged notes, and he wanted a couple of hundred pounds for what he had.\\n\",\"Mrs. Campbell offered him less, and there was an altercation, in the course of which Buncher became very violent, and at length,\\n\",\"after using much intemperate language, he left the place in a huff.\\n\",\"In the course of his remarks, however, he said,\\n\",\"I am the man that has got all the bank paper; I have thirty thousand pounds now, and the Bank of England cannot stop it.\\n\",\"This was all the police wanted to know.\\n\",\"They next watched Buncher, and found that he paid frequent visits to Birmingham.\\n\",\"They also discovered that through the intermediacy of one Robert Cummings, well known as a reputed coiner,\\n\",\"he had been introduced to a man named Griffiths, an engraver and copper-plate printer.\\n\",\"Griffiths was an unusually clever and skilful workman,\\n\",\"who had devoted all his talent and all his energies for some seventeen years to the fabrication of false bank-notes.\\n\",\"On a certain day, the twenty-seventh October, eighteen sixty-two, the two were arrested simultaneously;\\n\",\"Buncher in London, and Griffiths in Birmingham.\\n\",\"Nothing was found in Buncher's premises in Strutton Ground, which were thoroughly searched,\\n\",\"but proofs of Griffiths' guilt were at once apparent on entering his work-room.\\n\",\"In one corner was a printing-press actually in use, and on it were twenty-one forged Bank of England notes, without date or signature.\\n\",\"On the bed were twenty forged ten-pound notes complete and ready for use, and twenty-five five-pound notes.\\n\",\"\\\"Mother plates\\\" for engraving the body of the notes lay about, and other plates for various processes.\\n\",\"More than this, Griffiths took the police to a field where, in a bank, a number of other plates were secreted.\\n\",\"Griffiths afterwards admitted that he had been employed in defrauding the bank since eighteen forty-six,\\n\",\"and the prominent part he played secured for him on conviction the heaviest sentence of the law.\\n\",\"This was penal servitude for life, Buncher's sentence being twenty-five, and Burnett's twenty years.\\n\",\"Cummings, who had introduced Buncher to Griffiths, was also tried for being in possession of stolen bank paper for improper purposes.\\n\",\"But as there was no independent corroboration of the informer's evidence, according to the custom of the British law,\\n\",\"the case was considered not proved, and he was acquitted.\\n\",\"On his return to Newgate to be finally discharged, Cummings jumped up the stairs and fairly danced for joy.\\n\",\"But he was not long at large; he was too active an evil-doer\\n\",\"and was perpetually in trouble. Commencing life as a resurrection man, when that trade failed through the change in the law,\\n\",\"and no more bodies were to be bought\\n\",\"he devoted his energies to coining and forgery, and in the latter line was a friend and associate of Saward's.\\n\",\"One narrow escape he had, however, before he abandoned his old business.\\n\",\"A Bow Street officer saw him leaving London in the evening by Camberwell Green, accompanied by two other men.\\n\",\"It was well known that they were resurrectionists, and a strict watch was kept at all the turnpike gates on the southern roads leading into London.\\n\",\"An officer was placed for this purpose at New Cross, Camberwell, and Kennington gates.\\n\",\"Presently \\\"Old Bob\\\" drove up to Camberwell Gate in the same cart in which he had been seen to start.\\n\",\"The officers rushed out to detain him. \\\"What have you got here? We must search the cart,\\\" they cry.\\n\",\"\\\"By all means,\\\" replies Bob, and a close investigation follows, without any detection of the corpse concealed.\\n\",\"Bob was therefore allowed to pass on.\\n\",\"But they had the body, all the same; it had been dressed up in decent clothes and made to stand upright in the cart.\\n\",\"With the police officers it had passed muster as a living member of the party.\\n\",\"Cummings was repeatedly \\\"run in\\\" for the offense of coining and uttering bad money, whether coin or notes.\\n\",\"His regular trade, followed before he took to the life of resurrectionist, was that of an engraver.\\n\",\"He was a notorious criminal,\\n\",\"an habitual offender in his own particular line, one who would stick at no trifles to evade detection or escape capture.\\n\",\"It is told of \\\"Bob\\\" Brennan, an official specially employed for years by the Mint\\n\",\"to watch and prosecute coiners, that he received information that coining was carried on by Cummings and others at a place in Westminster.\\n\",\"He went there with a posse of officers and forced his way upstairs to the first floor,\\n\",\"where the coiners, unexpectedly disturbed, fell an easy prey.\\n\",\"But the police nearly paid the penalty of capture with their lives.\\n\",\"Proceeding cautiously down the stairs, they found that the flooring at the bottom had been taken up.\\n\",\"Where it had lain was a yawning gulf or trap sufficient to do for the whole body of police engaged in the capture.\\n\",\"Cummings was caught shortly afterwards.\\n\",\"He was a tall, slender man, with a long face and iron-gray hair.\\n\",\"The community of coiners of which he was so notorious a member\\n\",\"were a low lot, the lowest among criminals except, perhaps, the 'smashers,' or those who passed the counterfeit money.\\n\",\"It was not easy to detect coiners, or bring home their guilt to them.\\n\",\"Those who manufactured and those who passed had no direct dealings with each other.\\n\",\"The false coin was bought by an agent from an agent, and dealings were carried on secretly at the \\\"Clock House\\\" in Seven Dials.\\n\",\"The annals of fraudulent crime probably contain nothing\\n\",\"which in dramatic interest can compare with the conviction of William Roupell for forgery.\\n\",\"As the case must still be well remembered by the present generation, it will be necessary to give here only the briefest summary.\\n\",\"William Roupell was the eldest but illegitimate son of a wealthy man who subsequently married Roupell's mother, and had further legitimate issue.\\n\",\"William was brought up as an attorney, and became in due course his father's man of business.\\n\",\"As such he had pretty general control over his father's estates and affairs.\\n\",\"In eighteen fifty-five\\n\",\"he instructed certain solicitors to prepare a deed of gift as from his father, conveying to him estates near Kingston.\\n\",\"The old gentleman's signature to this deed of gift was a forgery,\\n\",\"but upon this forged and false conveyance William Roupell, who had already embarked upon a career of wild extravagance,\\n\",\"obtained a mortgage of seven thousand pounds.\\n\",\"In eighteen fifty-six the father died.\\n\",\"It had been supposed up to this date that he had willed his property, amounting in all to upwards of two hundred thousand pounds,\\n\",\"but after the funeral William Roupell produced another and a later will,\\n\",\"leaving everything to the widow, and constituting William sole executor.\\n\",\"This will was a deliberate forgery.\\n\",\"Five or six years later, William Roupell minutely described how he had effected the fraud.\\n\",\"The day his father died he got the keys of his private bureau, opened it, and took out the authentic will.\\n\",\"After reading it, and finding this unfavorable to himself, he resolved to carry out his deliberate plan,\\n\",\"namely, to suppress it and substitute another.\\n\",\"He himself prepared it on a blank form which he had brought with him on purpose.\\n\",\"To this fraudulent instrument he appended forged signatures, and in due course obtained probate.\\n\",\"As he possessed nearly unbounded influence over his mother, her accession to the property meant that William could dispose of it as he pleased.\\n\",\"He embarked forthwith in a career of the wildest extravagance, and ere long he had parted in his mother's name with most of the landed estates.\\n\",\"One large item of his expenditure was a contested election at Lambeth, which he gained at a cost of ten thousand pounds.\\n\",\"No fortune could stand the inroads he made into his mother's money,\\n\",\"and in eighteen sixty-two he was obliged to fly the country, hopelessly and irretrievably ruined.\\n\",\"His disappearance gave color and substance to evil reports already in circulation that the will and conveyance above referred to\\n\",\"were fictitious documents. His next brother, who should have inherited under the authentic will,\\n\",\"forthwith brought an ejectment on the possessor of lands purchased on the authority of the forged conveyance and will.\\n\",\"The case was tried at Guildford Assizes, and caused intense excitement,\\n\",\"the hardship to the holders of these lands being plain, should the allegations of invalidity be made good.\\n\",\"The effect of establishing the forgeries would be to restore to the Roupell family lands for which a price had already been paid\\n\",\"in all good faith to another, but a criminal member of the family.\\n\",\"At first the case was contested hotly, but, to the profound astonishment of every one inside and outside the court,\\n\",\"William Roupell himself was brought as a principal witness to clench the case by a confession altogether against himself.\\n\",\"He told his story with perfect coolness and self-possession, but in a grave and serious tone.\\n\",\"Every word he uttered was said with consideration, and sometimes with a long pause,\\n\",\"but at the same time with an air of the most entire truthfulness and candor.\\n\",\"He confessed himself a perjurer in having sworn to the false will, and a wholesale forger, having manufactured no less than ten false signatures\\n\",\"to deeds involving on the whole some three hundred fifty thousand pounds.\\n\",\"For these crimes William Roupell was tried at the Central Criminal Court on the twenty-fourth September, eighteen sixty-two.\\n\",\"He declined to plead, but a plea of \\\"Not Guilty\\\" was recorded.\\n\",\"The case was easily and rapidly disposed of.\\n\",\"Roupell made a long statement more in exculpation than in his defense.\\n\",\"He complained that he had at first been the dupe of others, and admitted that he had too readily fallen astray.\\n\",\"But while repudiating the charges made against him of systematic extravagance and immorality,\\n\",\"he confessed that his whole life had been a gigantic mistake, and he was ready to make what atonement he could.\\n\",\"Mr. Justice Byles, in passing sentence, commented severely upon the commission of such crimes by a man in Roupell's position in life,\\n\",\"and passed the heaviest sentence of the law, transportation for life.\\n\",\"Roupell received the announcement with a cheerful countenance,\\n\",\"and left the dock with evident satisfaction and relief at the termination of a most painful ordeal.\\n\",\"Roupell was quiet and submissive while in Newgate, unassuming in manner, and ready to make the best of his position.\\n\",\"He carried this character with him into penal servitude, and after enduring the full severity of his punishment for several years,\\n\",\"was at length advanced to the comparative ease of a post much coveted by convicts, that of hospital nurse.\\n\",\"His uniform good conduct gained him release from Portland on ticket-of-leave in eighteen eighty-two, just twenty years after his conviction.\\n\",\"A daring and cleverly-planned robbery of diamonds was that of the Tarpeys, man and wife,\\n\",\"from an assistant of Loudon and Ryder's, the jewelers in Bond Street. The trick was an old one.\\n\",\"The assistant called with the jewels on approbation at a house specially hired for the purpose in the West End,\\n\",\"and was rendered insensible by chloroform, after which he was bound and the precious stones stolen.\\n\",\"Mrs. Tarpey was almost immediately captured and put on her trial, but she was acquitted on the plea that she had acted under the coercion of her husband.\\n\",\"Tarpey was caught through his wife,\\n\",\"who was followed, disguised, and with her hair dyed black, to a house in the Marylebone Road, where she met her husband.\\n\",\"On Tarpey's defense it was stated that the idea of the theft had been suggested to him by a novel, at a time he had lost largely on the turf.\\n\",\"The first plot was against Mr. Harry Emmanuel, but he escaped, and the attempt was made upon Loudon and Ryder.\\n\",\"The last great case of fraud upon the Bank of England will fitly close this branch of the criminal records of Newgate.\\n\",\"This was the well and astutely devised plot of the brothers Bidwell,\\n\",\"assisted by Macdonell and Noyes, all of them citizens of the United States, by which the bank lost upwards of one hundred thousand pounds.\\n\",\"The commercial experience of these clever rogues was cosmopolitan.\\n\",\"Their operations were no less worldwide.\\n\",\"In eighteen seventy-one they crossed the Atlantic,\\n\",\"and by means of forged letters of credit and introduction from London, obtained large sums from continental banks, in Berlin,\\n\",\"Dresden, Bordeaux, Marseilles, and Lyons.\\n\",\"With this as capital they came back to England via Buenos Aires,\\n\",\"and Austin Bidwell opened a bona fide credit in the Burlington or West End branch of the Bank of England,\\n\",\"to which he was introduced by a well-known tailor in Saville Row.\\n\",\"After this the other conspirators traveled to obtain genuine bills and master the system of the leading houses at home and abroad.\\n\",\"When all was ready, Bidwell first \\\"refreshed his credit\\\" at the Bank of England, as well as disarmed suspicion,\\n\",\"by paying in a genuine bill of Messrs. Rothschilds' for forty-five hundred pounds, which was duly discounted.\\n\",\"Then he explained to the bank manager\\n\",\"that his transactions at Birmingham would shortly be very large, owing to the development of his business there in the alleged manufacture of Pullman cars.\\n\",\"The ground thus cleared, the forgers poured in from Birmingham numbers of forged acceptances,\\n\",\"all of which were discounted to the value of one hundred two thousand, two hundred seventeen pounds.\\n\",\"The fraud was rendered possible by the absence of a check usual in the United States.\\n\",\"There such bills would be sent to the drawer to be initialed, and the forgery would have been at once detected.\\n\",\"It was the discovery of this flaw in the banking system which had encouraged the Americans to attempt this crime.\\n\",\"Time was clearly an important factor in the fraud, hence the bills were sent forward in quick succession.\\n\",\"Long before they came to maturity the forgers hoped to be well beyond arrest. They had, moreover, sought to destroy all clue.\\n\",\"The sums obtained by Bidwell in the name of \\\"Warren\\\" at the Bank of England\\n\",\"were lodged at once by drafts to \\\"Horton,\\\" another alias, in the Continental Bank.\\n\",\"For these cash was obtained in notes; the notes were exchanged by one of the conspirators for gold at the Bank of England, and again the same day\\n\",\"a second conspirator exchanged the gold for notes. But just as all promised well, the frauds were detected through the carelessness of the forgers.\\n\",\"They had omitted to insert the dates in certain bills.\\n\",\"The bills were sent as a matter of form to the drawer to have the date added, and the forgery was at once detected.\\n\",\"Noyes was seized without difficulty, as it was a part of the scheme that he should act as the dupe, and remain on the spot in London till all the money was obtained.\\n\",\"Through Noyes the rest of the conspirators were eventually apprehended. Very little if any of the ill-gotten proceeds, however, was ever recovered.\\n\",\"Large sums, as they were realized, were transmitted to the United States, and invested in various American securities,\\n\",\"where probably the money still remains.\\n\",\"The prisoners, who were committed to Newgate for trial,\\n\",\"had undoubtedly the command of large funds while there, and would have readily disbursed it to effect their enlargement.\\n\",\"A plot was soon discovered,\\n\",\"deep laid, and with many ramifications, by which some of the Newgate warders were to be bribed to allow the prisoners to escape from their cells at night.\\n\",\"Certain friends of the prisoners were watched, and found to be in communication with these warders,\\n\",\"to whom it was said one hundred pounds apiece had been given down as the price of their infidelity.\\n\",\"Further sums were to have been paid after the escape;\\n\",\"and one warder admitted that he was to have one thousand pounds more paid to him, and to be provided with a passage to Australia.\\n\",\"The vigilance of the Newgate officials, assisted by the city police, completely frustrated this plot.\\n\",\"A second was nevertheless set on foot,\\n\",\"in which the plan of action was changed, and the freedom of the prisoners was to be obtained by means of a rescue from the dock during the trial.\\n\",\"An increase of policemen on duty sufficed to prevent any attempt of this kind.\\n\",\"Nor were these two abortive efforts all that were planned.\\n\",\"A year or two after, when the prisoners were undergoing their life sentences of penal servitude,\\n\",\"much uneasiness was caused at one of the convict prisons by information that bribery on a large scale was again at work amongst the officials.\\n\",\"But extra precautions and close supervision have so far proved effectual, and the prisoners are still in custody after a lapse of ten years.\\n\",\"I propose to end at this point the detailed account of the more prominent criminal cases which lodged their perpetrators in Newgate.\\n\",\"The most recent affairs are still too fresh in the public mind to need more than a passing reference.\\n\",\"Few of the Newgate notorieties of late years show any marked peculiarities;\\n\",\"their crimes follow in the lines of others already found, and often more than once, in the calendars.\\n\",\"Violent passions too easily aroused prompted the Frenchwoman Marguerite Dixblanc\\n\",\"to murder her mistress, Madame Riel, in Park Lane, as Courvoisier, the Swiss, had been tempted to murder Lord William Russell.\\n\",\"Greed in the latter case was a secondary motive;\\n\",\"it was the principal incentive with Kate Webster, that fierce and brutal female savage who took the life of her mistress at Richmond.\\n\",\"Webster, it may be mentioned here, was one of the worst prisoners ever remembered in Newgate\\n\",\"most violent in temper, and addicted to the most frightful language.\\n\",\"Webster's devices for disposing of the body of her victim will call to mind those of Theodore Gardelle,\\n\",\"of Good, and Greenacre, and Catherine Hayes.\\n\",\"Greed in another form led the Stauntons to make away with Mrs. Patrick Staunton, murdering her with devilish cruelty by slow degrees.\\n\",\"The judge, Sir Henry Hawkins, in passing sentence\\n\",\"characterized this as a crime more black and hideous than any in the criminal annals of the country.\\n\",\"But it was scarcely worse than that of Mrs. Brownrigg, or that of the Meteyards, both of whom did their helpless apprentices to death.\\n\",\"It was to effect the rupture of an irksome tie that led Henry Wainwright to murder Harriet Lane deliberately and in cold blood.\\n\",\"In this case the tie was unsanctified, but it was not more inconvenient than that which urged Greenacre to a similar crime.\\n\",\"In cold-blooded premeditation it rivaled that of the Mannings.\\n\",\"As in that case, the grave had been dug long in anticipation, and the chloride of lime purchased to destroy the corpse.\\n\",\"Henry Wainwright's attempt to get rid of the body was ingenious, but not original,\\n\",\"and the circumstances which led to detection were scarcely novel proofs of the old adage that murder will out.\\n\",\"Henry Wainwright's impassioned denial of his crime, even after it had been brought fully home to him, has many parallels in the criminal records.\\n\",\"His disclaimer, distinct and detailed on every point, was intended simply for effect.\\n\",\"He might swear he was not the murderer, that he never fired a pistol in his life,\\n\",\"and that, in spite of the verdict of the jury, \\\"he left the dock with a calm and quiet conscience;\\\"\\n\",\"but there was no doubt of his guilt, as the Lord Chief Justice told him, while expressing great regret at his rash assertion.\\n\",\"Wainwright's demeanor after sentence has been described in the last chapter.\\n\",\"Doubts were long entertained whether Thomas Wainwright,\\n\",\"who was convicted as an accessory after the fact, had not really taken an active part in the murder.\\n\",\"But a conversation overheard between the two brothers in Newgate satisfactorily exonerated Thomas Wainwright.\\n\",\"Poisoning has still its victims.\\n\",\"Christina Edmunds had resort to strychnia, the same lethal drug that Palmer used;\\n\",\"her object being first to dispose of the wife of a man for whom she had conceived a guilty passion,\\n\",\"then to divert suspicion from herself by throwing it on a confectioner, whose sweetmeats she bought,\\n\",\"tampered with, and returned to the shop.\\n\",\"The trial of Miss Edmunds was transferred to the Central Criminal Court under Lord Campbell's Act, already referred to.\\n\",\"She was found guilty.\\n\",\"It will be remembered that she made a statement which led to the empaneling of a jury of matrons, who decided that there was no cause for an arrest of judgment.\\n\",\"Kate Webster followed the same course; but these pleas of pregnancy are not common now-a-days.\\n\",\"Although sentence of death was passed on Edmunds, it was commuted to penal servitude for life;\\n\",\"but she eventually passed into Broadmoor Lunatic Asylum, where she busies herself with watercolor drawing.\\n\",\"The still more recent cases of poisoning which have occurred were not connected with Newgate.\\n\",\"The mysterious Bravo case, that of Dr. Lamson, and that of Kate Dover\\n\",\"unhappily show that society is more than ever at the mercy of the insidious and unscrupulous administration of poisonous drugs.\\n\",\"A case reproducing many of the features of the 'Flowery Land' occurred twelve years later, when the crew of the 'Lennie'\\n\",\"mutinied, murdered the captain and mates, sparing the steward only on condition that he would navigate the ship to the Mediterranean.\\n\",\"The mutineers were of the same stamp as the crew of the 'Flowery Land'\\n\",\"foreigners, vindictive, reckless, and truculent ruffians, easily moved to murderous rage.\\n\",\"The 'Lennie's' men were all Greeks, except one known as French Peter,\\n\",\"who was the ringleader, and who had long been an habitual criminal, a reputed murderer, and certainly an inmate more than once of a French bagne.\\n\",\"Conviction was obtained through the evidence of the steward and two of the least culpable of the crew.\\n\",\"In Newgate the 'Lennie' mutineers were extremely well behaved.\\n\",\"Resolute, determined-looking men, their courage broke down in confinement.\\n\",\"They paid close attention to the counsels of the archimandrite, and died quite penitent. A story is told of one of them, \\\"Big Harry,\\\"\\n\",\"the wildest and most cut-throat looking of the lot, which proves that he could be grateful for kindness, and was not all bad.\\n\",\"He had steadfastly refused to eat meat on some religions scruples, and for the same reason would not touch soup.\\n\",\"He was glad, therefore, to get an extra allowance of bread,\\n\",\"and to show his gratitude to the warder who procured this privilege for him, he made him a present.\\n\",\"It was his own handiwork -- a bird pecking at a flower;\\n\",\"the whole manufactured while in the condemned cell of the crumb of bread made into paste.\\n\",\"The flower had berries also of bread fixed on stems made from the fiber drawn from the stuffing of his mattress,\\n\",\"and the bird's legs were a couple of teeth broken off the prisoner's comb.\\n\",\"Of the lesser criminals, forgers, thieves, swindlers, Newgate continued to receive its full share up to the last.\\n\",\"But there were few cases so remarkable as the great ones already recorded.\\n\",\"Mr. Bamell Oakley made a rich harvest for a time, and was said at the time of his trial\\n\",\"to have obtained as much as forty thousand pounds by false and fraudulent pretenses.\\n\",\"Messrs. Swindlehurst, Saffery, and Langley cleared a large profit\\n\",\"by swindling the Artisans' Dwellings Company; and Madame Rachel passed through Newgate on her way to Millbank\\n\",\"convicted of obtaining jewelery under the false pretense of making silly women \\\"beautiful for ever.\\\"\\n\",\"The greatest causes c\\u00e9l\\u00e8bre, however, of recent times were the turf frauds by which the Comtesse de Goncourt was swindled\\n\",\"out of large sums in sham sporting speculations. The conviction of the principals in this nefarious transaction,\\n\",\"Benson, the two Kurrs, Bale, and Murray, led to strange revelations of dishonest practices amongst the detective police,\\n\",\"The Chronicles of Newgate, Volume two. By Arthur Griffiths. Section twenty-two. Newgate Reformed.\\n\",\"The time at length approached when a radical and complete change was to come over the old city jail.\\n\",\"It was impossible for Newgate to escape for ever the influences pressing so strongly towards prison reform.\\n\",\"Elsewhere the spirit had been more or less active, although not uniformly or always to the same extent.\\n\",\"There had been a pause in legislation, except of a permissive kind. The second and third Victoria, cap. fifty-six\\n\",\"laid it down that individuals might be confined separately and apart in single cells.\\n\",\"By other acts local authorities were empowered to construct new jails or hire accommodation in the district;\\n\",\"but no steps had been taken in Parliament to enforce a better system of discipline,\\n\",\"or to insist upon the construction of prisons on the most approved plan.\\n\",\"As regards the first, however, Sir James Graham, when Home Secretary in eighteen forty-three,\\n\",\"had appointed a committee of prison inspectors, presided over by the Under Secretary of State, to draw up rules and dietaries,\\n\",\"which were then recommended to and generally adopted by the visiting justices all over the kingdom.\\n\",\"As regards the second, the Government had set a good example, and in deciding upon the erection of Pentonville prison\\n\",\"had embarked on a considerable expenditure in order to provide a model prison for general imitation.\\n\",\"The first stone of Pentonville prison was laid on the tenth April, eighteen forty, by the Marquis of Normanby,\\n\",\"then Home Secretary, and the prison, which contained five hundred and twenty cells, was occupied on the twenty-first December, eighteen forty-two.\\n\",\"This building was a costly affair. The site was uneven, and had to be leveled;\\n\",\"moreover, the gross expenditure was increased \\\"partly from its being considered necessary, as it was a national prison,\\n\",\"to make a great archway, and to make the character of it more imposing than if it had been situated in the country, and had been an ordinary prison.\\n\",\"Up to the twenty-first December, eighteen forty-two,\\n\",\"with the additions made to that date, the total expenditure amounted to nearly ninety thousand pounds, or about one hundred eighty pounds per cell.\\n\",\"On the other hand, it must be admitted\\n\",\"that this was an experimental construction, and that too strict a limitation of outlay would have militated seriously against the usefulness of the building.\\n\",\"Nor must it be overlooked that this, the first model prison, although obtained at a considerable cost, became actually what its name implied.\\n\",\"Pentonville has really been the model on which all subsequent prison construction has been based. All prisons at home and abroad are but variations,\\n\",\"of course with the added improvements following longer experience, of the pattern originated by the architectural genius of Sir Joshua Jebb.\\n\",\"The internal arrangements of the new model were carefully supervised by a body of distinguished men, among which were many peers, Lord John Russell,\\n\",\"Mr. Shaw-Lefevre, the Speaker of the House of Commons, Sir Benjamin Brodie,\\n\",\"Major Jebb, R.E., and the two prison inspectors, Messrs. Crawford and Russell, with whose names the reader is already familiar.\\n\",\"Major, afterwards Sir Joshua Jebb,\\n\",\"was the moving spirit among these commissioners, and he is now generally recognized as the originator of modern prison architecture.\\n\",\"The movement thus laudably initiated by the Government soon spread to the provinces.\\n\",\"Some jurisdictions, greatly to their credit, strove at once to follow the lead of the central authority.\\n\",\"Within half-a-dozen years no less than fifty-four new prisons were built on the Pentonville plan, others were in progress,\\n\",\"and the total number of separate cells provided amounted to eleven thousand odd.\\n\",\"This list included Wakefield, Leeds, Kirkdale, Manchester, Birmingham, and Dublin.\\n\",\"Liverpool was building a new prison with a thousand cells, the county of Surrey one with seven hundred.\\n\",\"The cost in each varied considerably, the general average being from one hundred twenty pounds to one hundred thirty pounds per cell.\\n\",\"At Pentonville the rate was higher, but there the expense had been increased by the site,\\n\",\"the difficulty of access, and the admitted necessity of giving architectural importance to this the national model prison.\\n\",\"Other jurisdictions were less prompt to recognize their responsibilities, the city of London among the number, as I shall presently show at length.\\n\",\"These were either satisfied with a makeshift, and modified existing buildings, without close regard to their suitability, or for a long time did nothing at all.\\n\",\"Among the latter were notably the counties of Cheshire, Lincolnshire, Norfolk, Suffolk, Nottinghamshire, the East and North Ridings of Yorkshire.\\n\",\"The south and west of England were also very laggard, and many years were still to elapse before the prisons in these parts were properly reconstituted.\\n\",\"Not less remarkable than this diverse interpretation of a manifest duty\\n\",\"was the variety of views as regards the discipline to be introduced in these new prisons. The time was one\\n\",\"when thoughtful people who concerned themselves closely with social questions were greatly exercised as to the best system of treating the inmates of a jail.\\n\",\"A new and still imperfectly understood science had arisen,\\n\",\"the principles of which were debated by disputants of widely opposite opinions with an earnestness that sometimes bordered upon acrimony.\\n\",\"One school were strongly in favor of the continuous separation of prisoners,\\n\",\"the other supported the theory of labor in association, but under a stringent rule of silence, with isolation only at night.\\n\",\"Both systems came to us from the United States. The difference was really more in degree than in principle,\\n\",\"and our modern practice has prudently tried to steer between the two extremes, accepting as the best system a judicious combination of both.\\n\",\"But about eighteen fifty the two sides were distinctly hostile, and the controversy ran high.\\n\",\"High authorities were in favor of continuous separation.\\n\",\"Colonel Jebb preferred it; Messrs. Crawford and Whitworth Russell were convinced that the complete isolation of criminals from one another\\n\",\"was the true basis of a sound system of prison discipline.\\n\",\"Prison chaplains of experience and high repute, such as Messrs. Field, Clay, Kingsmill, Burt, and Osborne, also advocated it.\\n\",\"It was claimed for it that it was more deterrent;\\n\",\"that in districts where it was the rule, evil-doers especially dreaded coming under its irksome conditions.\\n\",\"Another argument was, that it afforded more hope of the reformation of criminals.\\n\",\"The system of associated labor in silence had also its warm supporters,\\n\",\"who maintained that under this system prisoners were more industrious and more healthy\\n\",\"that their condition was more natural, and approximated more nearly to that of daily life.\\n\",\"Better industrial results were obtained from it, and instruction in trades was easier, and prisoners were more likely to leave jail\\n\",\"with the means of earning an honest livelihood if so disposed.\\n\",\"The opposing champions were not slow to find faults and flaws in the system they condemned.\\n\",\"Separation was injurious to health, mental or physical, said one side; men broke down when subjected to it for more than a certain period,\\n\",\"and it was unsafe to fix this limit above twelve months, although some rash advocates were in favor of eighteen months, some indeed of two years.\\n\",\"The other side retorted that the system of associated labor was most costly, so many officers being required to maintain the discipline of silence;\\n\",\"moreover, it was nearly impossible to prevent communication and mutual contamination.\\n\",\"It is scarcely necessary to follow the controversy further. I have only introduced the subject as showing how little as yet the State\\n\",\"was impressed with the necessity for authoritative interference.\\n\",\"The legislature was content to let local jurisdictions experimentalize for themselves; with the strange, anomalous result,\\n\",\"that a thief or other criminal might be quite differently treated according as he was incarcerated on one side or another of a border line.\\n\",\"This variety was often extended to all branches of prison economy.\\n\",\"There was an absolute want of uniformity in dietaries; in some prisons it was too liberal, in others too low.\\n\",\"The amount of exercise varied from one or two hours daily to half the working day.\\n\",\"The cells inhabited by prisoners were of very varying dimensions;\\n\",\"some were not sufficiently ventilated, others were warmed artificially, and were unwholesomely close.\\n\",\"The use of gas or some other means of lighting might be adopted, but more often was dispensed with.\\n\",\"In a great number of prisons no provision was made for the education of prisoners, in some others there was a sufficient staff of schoolmasters and instructors.\\n\",\"The discipline also varied greatly, from the severely penal to the culpably lax.\\n\",\"The greatest pains might be taken to secure isolation,\\n\",\"the prisoners might be supervised and watched at every step, and made liable to punishment for a trifling breach of an irksome code of regulations,\\n\",\"or they might herd together or communicate freely as in the old worst days. They might see each other when they liked, and converse sotto voce,\\n\",\"or make signs; or the chances of recognizing or being recognized were reduced to a minimum by the use of a mask.\\n\",\"There was no general rule of employment. Hard labor was often not insisted upon in separate confinement;\\n\",\"sometimes it embraced the tread-wheel or the newly-invented instruments known as cranks, which ground air.\\n\",\"The alternative between labor or idleness, or the selection of the form of labor,\\n\",\"were mere matters of chance, and decided according to the views of the local magistracy.\\n\",\"They were approved of and employed at some prisons, at others objected to because they were unproductive,\\n\",\"and because the machine was often so imperfect that the amount of effort could not be exactly regulated.\\n\",\"Opinions differed greatly with regard to the tread-wheel; some authorities advocated it as a very severe and irksome punishment,\\n\",\"which was yet under full control, and might be made to work corn-mills or prove otherwise productive;\\n\",\"other authorities as strongly condemned it as brutalizing, unequal in its operation, and altogether a \\\"deplorable invention.\\\"\\n\",\"This want of uniformity in prison discipline became ere long an acknowledged evil pressing for some remedy,\\n\",\"and the question was once more taken up in the House of Commons. In eighteen forty-nine Mr. Charles Pearson, M.P.,\\n\",\"moved for a committee to report upon the best means of securing some uniform system which should be \\\"punitive, reformatory, and self-supporting;\\\"\\n\",\"but the session was far advanced, and the matter was relegated to the following year.\\n\",\"In eighteen fifty Sir George Grey brought forward a new motion to the same effect,\\n\",\"which was promptly carried, with the additional instruction to the committee to suggest any improvements.\\n\",\"The latter had reference more especially to a proposal emanating from Mr. Charles Pearson himself.\\n\",\"That gentleman had come to the conclusion that the ordinary and hackneyed methods of treatment were practically inefficacious,\\n\",\"and that a new system of prison discipline should be introduced.\\n\",\"His plan was to devote the whole labor of prisoners sentenced to any term between three months and four years to agriculture.\\n\",\"District prisons were to be established for this purpose, each of which would be in the heart of a farm of a thousand acres.\\n\",\"The prisoners were to cultivate the land and raise sufficient produce for their own support.\\n\",\"Mr. Pearson backed up his recommendations by many sound arguments.\\n\",\"Field labor, he urged, and with reason, was a very suitable employment;\\n\",\"healthful, easily learnt, and well adapted to the circumstances of unskilled laborers.\\n\",\"Such excellent returns might be counted upon, that a margin of profit would be left after the cost of the prisons had been defrayed.\\n\",\"The scheme was no doubt fascinating, and in many respects feasible;\\n\",\"but Mr. Pearson overlooked some points in which a more practical mind would have foreseen difficulty, and perhaps forecasted failure.\\n\",\"In his proposal he dwelt much upon the humanizing effects of healthful open-air toil,\\n\",\"anticipating the best results from a system which made earnings, and indeed release, dependent upon the amount of work done.\\n\",\"That industry might thus be stimulated and encouraged was probable enough,\\n\",\"and later experience has fully proved the advantage of a judicious system of gratuities for labor;\\n\",\"but Mr. Pearson hardly considered the converse sufficiently, and\\n\",\"omitted the fact that he might have to deal with that persistent idleness which is not an unknown characteristic of the criminal class.\\n\",\"The hope of reward might do much, but no system of penal discipline is complete unless it can also count upon the fear of punishment.\\n\",\"Mr. Pearson seems to have taken for granted that all prisoners would behave well in his district prisons.\\n\",\"On that account he made no provision to insure safe custody,\\n\",\"thinking perhaps that prisoners so well disposed would cheerfully remain in jail of their own accord.\\n\",\"But an open farm of a thousand acres would have offered abundant chances of escape, which some at least would have attempted, probably with success.\\n\",\"The creation of an expensive staff for supervision,\\n\",\"or the still more costly process of walling in the whole farm, would have greatly added to the charges of these establishments.\\n\",\"I have lingered too long perhaps over Mr. Pearson's proposal, but some reference was indispensable to a scheme\\n\",\"which marked the growth of public interest in prison affairs, and which was the germ of the new system\\n\",\"since admirably developed in the convict prisons of this country.\\n\",\"Mr. Pearson and the committee of eighteen fifty have the more claim on our consideration, because,\\n\",\"in the inquiry which followed, attention was again attracted to Newgate.\\n\",\"The condition of that prison in eighteen fifty may be gathered from the pages of the report. Not much had been done to remedy the old defects;\\n\",\"radical improvement was generally considered impossible. The great evil, however, had been sensibly diminished.\\n\",\"There was no longer, or at worst but rarely, and for short periods, the same overcrowding.\\n\",\"This was obviated by the frequent sessions of the Central Criminal Court, and the utilization of the two subsidiary prisons in Giltspur Street and Southwark.\\n\",\"The prison population of Newgate was still subject to great fluctuations, but it seldom rose above two hundred and fifty or three hundred\\n\",\"at the most crowded periods, or just before the sessional jail delivery; and at its lowest it fell sometimes to fifty or sixty.\\n\",\"These numbers would have still further decreased, and the jail would have been almost empty, but for the misdemeanants who were still sent to Newgate\\n\",\"at times on long terms of imprisonment, and for the transports, whom the Home Office were often, as of old, slow to remove.\\n\",\"The old wards, day rooms and sleeping rooms combined, of which the reader has already heard so much,\\n\",\"now seldom contained more than ten or a dozen each. Some sort of decorum was maintained among the occupants in the day-time.\\n\",\"Drinking and gaming,\\n\",\"the indiscriminate visitation of friends, and the almost unlimited admission of extra food, these more glaring defects had disappeared.\\n\",\"But reformation was only skin deep. Below the surface many of the old evils still rankled.\\n\",\"There was as yet no control over the prisoners after locking-up time;\\n\",\"this occurred in summer at eight, but in the winter months it took place at dusk, and was often as early as four or five.\\n\",\"The prisoners were still left to themselves till next morning's unlocking,\\n\",\"and they spent some fourteen or fifteen hours in total darkness, and almost without check or control.\\n\",\"Captain Williams, who was the inspector of prisons for the home district in succession to Messrs. Crawford and Russell,\\n\",\"stated in evidence that he was visiting Newgate one night, when he heard a great disturbance in one of the day and sleeping rooms,\\n\",\"and on entering it found the prisoners engaged in kicking bundles of wood from one end of the ward to the other.\\n\",\"Some attempt at supervision was exercised by the night watchman stationed on the leads, who might hear what went on inside.\\n\",\"If any disturbance reached his ears, he reported the case to the governor, who next morning visited the ward in fault, and asked for the culprit.\\n\",\"The enforcement of discipline depended upon the want of honor among thieves.\\n\",\"Unless the guilty prisoner was given up, the whole ward was punished, either by the exclusion of visitors or the deprivation of fire,\\n\",\"sharp tests which generally broke down the fidelity of the inmates of the ward to one another.\\n\",\"Later on a more efficacious but still imperfect method of supervision was introduced. Iron cages, which are still to be seen in Newgate,\\n\",\"were constructed on the landings, ensconced in which warders spent the night, on duty, and alert to watch the sleepers below,\\n\",\"and check by remonstrance or threat of punishment all who broke the peace of the prison.\\n\",\"These disciplinary improvements were, however, only slowly and gradually introduced.\\n\",\"Other changes affecting the condition and proper treatment of prisoners were not made until the inspector had urged and recommended them.\\n\",\"Thus the wards, which, as I have said, were left in complete darkness, were now to be lighted with gas; and after this most salutary addition,\\n\",\"the personal superintendence of night officers, as already described, became possible.\\n\",\"The rule became general as regards the prison dress; hitherto clothing had been issued only to such as were destitute or in rags, and all classes of prisoners,\\n\",\"those for trial, and those sentenced for short terms or long\\n\",\"wore no distinguishing costume, although its use was admitted, not only for cleanliness, but as a badge of condition, and a security against escape.\\n\",\"Renewed recommendations to provide employment resulted in the provision of a certain amount of oakum for picking,\\n\",\"and one or two men were allowed to mend clothes and make shoes. The rules made by the Secretary of State were hung up in conspicuous parts of the prison;\\n\",\"more officers were appointed, as the time of so many of those already on the staff was monopolized by attendance at the Central Criminal Court.\\n\",\"Another custom which had led to disorder was abolished;\\n\",\"prisoners who had been acquitted were not permitted to return to the prison to show their joy and receive the congratulations of their unfortunate fellows.\\n\",\"The Corporation seems to have introduced these salutary changes without hesitation.\\n\",\"It was less prompt apparently in dealing with structural alterations and improvements.\\n\",\"Well-founded complaints had been made of the want of heating appliances in the jail.\\n\",\"The wards had open fires, but the separate cells were not warmed at all.\\n\",\"A scheme for heating the whole prison with hot-water pipes, after the system now generally adopted elsewhere, was considered,\\n\",\"and abandoned because of the expense. As to the entire reconstruction of Newgate, nothing had been done as yet.\\n\",\"This, with a scheme for limiting the jail to untried prisoners, had been urgently recommended by Lord John Russell in eighteen thirty.\\n\",\"His letter to the Corporation, under date fourth June,\\n\",\"is an interesting document, and shows that even at that date the Government contemplated the erection of a model prison.\\n\",\"Lord John Russell, commenting upon the offer of the Corporation to improve Newgate,\\n\",\"provided it was henceforth used only for untried prisoners, suggested that Newgate should be entirely reconstructed, and the new building adopted as a model.\\n\",\"The Corporation had agreed to spend twenty thousand pounds on alterations, but sixty thousand pounds would suffice to reconstruct.\\n\",\"Lord John, with great fairness, admitted that the whole of this burthen could not be imposed upon the city\\n\",\"seeing that since the establishment of the Central Criminal Court, Newgate received prisoners for trial from several counties,\\n\",\"and he was therefore prepared to submit to Parliament a proposal that half the cost of reconstruction should be borne by public funds.\\n\",\"He forwarded plans prepared by the inspectors of prisons, not for blind adoption, but as a guide.\\n\",\"This plan was on the principle of cellular separation, a system, according to Lord John Russell, desirable in all prisons,\\n\",\"\\\"but in a metropolitan prison absolutely essential.\\\" The Corporation in reply demurred rather to accepting strict separation as a rule,\\n\",\"feeling that it approached too nearly to solitary confinement.\\n\",\"The court was, however, prepared to consider Lord John Russell's proposal with regard to the cost of rebuilding;\\n\",\"but as the plan was \\\"confessedly experimental, for the benefit of the country generally, the amount for which the city should be responsible should be distinctly limited\\n\",\"not to exceed a certain sum to be agreed upon.\\n\",\"A proviso was also made that the magistrates should continue to exercise full control over the new jail,\\n\",\"free from any other interference than that of the inspectors on the part of Government.\\n\",\"No doubt wiser counsels prevailed with Lord John Russell,\\n\",\"and on a more mature consideration he realized that the limited area of the existing Newgate site,\\n\",\"and the costliness of enlarging it, forbade all idea of entirely reconstructing the jail so as to constitute it a model prison.\\n\",\"It would be far better to begin at the beginning,\\n\",\"to select a sufficiently spacious piece of ground, and erect a prison which from foundations to roofs should be in conformity with the newest ideas.\\n\",\"The preference given to the Pentonville system destroyed all hopes of a complete reformation of Newgate.\\n\",\"But the condition of the great city jail was evidently considered a reproach by the city authorities, and a year after the opening of the new \\\"model\\\" at Pentonville,\\n\",\"a serious effort was made to reconstruct Newgate.\\n\",\"In eighteen forty-five the Jail Committee brought forward a definite proposal to purchase ground in the immediate vicinity for the erection of a new jail.\\n\",\"This jail was nominally to replace the Giltspur Street Compter,\\n\",\"The site of which was to be sold to Christ's Hospital, but the intention was of course to embody and absorb old Newgate in the new construction.\\n\",\"The proposal made was to purchase some fifty thousand square feet between Newgate, Warwick Lane, and the Sessions House,\\n\",\"the situation having been proved by long experience to be salubrious.\\n\",\"But when this suggestion was brought before the court of aldermen, various amendments were proposed.\\n\",\"It was urged that the area selected for purchase must be excessively costly to acquire, and still quite inadequate for the city needs.\\n\",\"The Home Secretary had laid it down that at least five acres would be indispensable, and such an area it was impossible to obtain within the limits of the city.\\n\",\"Now for the first time the Tuffnell estate in Holloway was mentioned.\\n\",\"The Corporation owned lands there covering from nineteen to twenty acres.\\n\",\"Why not move the city prison bodily into this more rural spot, with its purer air and greater breathing space?\\n\",\"Eventually Holloway was decided upon as a site for the new city prison.\\n\",\"The necessary preliminaries took some time, but the contracts for the new building were completed in eighteen forty-nine, when the works were commenced.\\n\",\"The prison was to contain four hundred and four prisoners, and the estimated expenditure was seventy-nine thousand pounds.\\n\",\"It was to accommodate only the convicted prisoners sentenced to terms short of penal servitude, and after its completion\\n\",\"the uses of Newgate were narrowed almost entirely to those of a prison of detention.\\n\",\"It was intended as far as possible that, except awaiting trial, no prisoner should find himself relegated to Newgate.\\n\",\"This principle became more and more generally the rule, although it has never been punctiliously observed. Now and again\\n\",\"misdemeanants have found their way into Newgate, and within the last few years one offender against the privileges of the House of Commons.\\n\",\"With the reduction of numbers to be accommodated, there was ample space in Newgate for its reconstruction on the most approved modern lines.\\n\",\"In eighteen fifty-seven\\n\",\"the erection of a wing or large block of cells was commenced within the original walls of the prison, and upon the north or male side.\\n\",\"This block contained one hundred and thirty cells, embracing every modern improvement;\\n\",\"it also contained eleven reception cells, six punishment cells, and a couple of cells for condemned criminals.\\n\",\"This block was completed in eighteen fifty-nine, after which the hitherto unavoidable and long-continued promiscuous association of prisoners\\n\",\"In eighteen sixty-one a similar work was undertaken to provide separate cellular accommodation for the female inmates of Newgate,\\n\",\"and by the following year forty-seven new cells had been built on the most approved plan.\\n\",\"During this reconstruction the female prisoners were lodged in Holloway,\\n\",\"and when it was completed, both sides of the prison were brought into harmony with modern ideas.\\n\",\"The old buildings were entirely disused, and the whole of the inmates of Newgate were kept constantly in separate confinement.\\n\",\"With the last re-edification of Newgate, a work executed some seven centuries after the first stone of the old jail was laid,\\n\",\"the architectural records of the prison end. Nothing much was done at Newgate in the way of building, outside or in, after eighteen sixty-two.\\n\",\"The Act for private executions led to the erection of the gallows shed in the exercising yard, and at the flank of the passage from the condemned cells.\\n\",\"The first \\\"glass house,\\\" or room in which prisoners could talk in private with their attorneys, but yet be seen by the warder on the watch, had been constructed\\n\",\"and others were subsequently added.\\n\",\"But no structural alterations were made from the date first quoted until the time of closing the prison in eighteen eighty-one.\\n\",\"But in the interval very comprehensive and, I think it must be admitted, salutary changes were successively introduced into the management of prisons.\\n\",\"Newgate naturally shared in any advantages due to these reforms. I propose, therefore, to refer to them in the concluding pages of this work,\\n\",\"and thus bring the history of prison discipline down to our own times.\\n\",\"The last inquiry into the condition and management of our jails and houses of correction was that made by the Lords' Committee in eighteen sixty-three.\\n\",\"The inquiry was most searching and complete, and the committee spoke plainly in its report.\\n\",\"It animadverted strongly on \\\"the many and wide differences as regards construction, labor, diet, and general discipline\\\"\\n\",\"which existed in the various prisons,\\n\",\"leading to an inequality, uncertainty, and inefficiency of punishment productive of the most prejudicial results.\\n\",\"The varieties in construction were still very marked.\\n\",\"In many prisons the prisoners were still associated, and, from the want of a sufficient number of cells, the principle of separation was still greatly neglected.\\n\",\"Yet this principle, as the committee pointed out, \\\"must now be accepted as the foundation of prison discipline,\\\"\\n\",\"while its rigid maintenance was in its opinion vital to the efficiency of the jails.\\n\",\"Even where cells had been built\\n\",\"they were frequently below the standard size, and were therefore not certified for occupation as was required by law.\\n\",\"Great numbers were not lighted at night, and were without means by which their inmates could communicate, in case of urgent necessity, with their keepers.\\n\",\"Still greater were the differences with regard to employment. The various authorities held widely different opinions as to what constituted hard labor.\\n\",\"Here the tread-wheel was in use, there cellular cranks, or hard-labor machines.\\n\",\"Both, however, varied greatly in mechanism and in the amount of energy they called forth,\\n\",\"while the former was intended for the congregate labor of a number, and the latter, as its name implies, imposed continuous solitary toil.\\n\",\"At other prisons \\\"shot-drill,\\\" the lifting and carrying of heavy round shot, was the favorite method of inflicting penal labor.\\n\",\"With these differences were others as opposed concerning industrial occupation.\\n\",\"The jail authorities often gave the highest, possibly undue, importance to the value of remunerative employment,\\n\",\"and sought to make profitable returns from prisoners' labor the test of prison efficiency. In this view the committee could not coincide,\\n\",\"and it was decidedly of opinion that in all short sentences the hard labor of the tread-wheel, crank, and so forth should be the invariable rule.\\n\",\"In dietaries, again, the same wide diversity of practice obtained.\\n\",\"The efforts made by Sir James Graham years before to introduce uniformity in this particular had failed of effect.\\n\",\"The Secretary of State's suggested scale of diet had seldom been closely followed.\\n\",\"In some places the dietary was too full, in others too meager. Its constituents were not of the most suitable character.\\n\",\"More animal food was given than was necessary.\\n\",\"Vegetables, especially the potato, that most valuable anti-scorbutic, was too often omitted.\\n\",\"In a word, the value of diet as a part of penal discipline was still insufficiently recognized.\\n\",\"The prisons were still far from inflicting the three punishments, hard labor, hard fare, and a hard bed\\n\",\"which Sir Joshua Jebb told the committee he considered the proper elements of penal discipline.\\n\",\"It is interesting to note here\\n\",\"that the committee of eighteen sixty-three fully endorsed Sir Joshua's recommendations as regards a \\\"hard bed,\\\" and recommended that\\n\",\"during short sentences, or the earlier stages of a long confinement,\\n\",\"the prisoners should be made to dispense with the use of a mattress, and should sleep on planks.\\n\",\"This suggestion was adopted in the Act of eighteen sixty-five, which followed the committee's report, and of which more directly.\\n\",\"Clause ninety-two, Schedule one of that act authorized the use of plank beds, which were adopted in many prisons.\\n\",\"They are now the universal rule,\\n\",\"introduced, as was erroneously supposed, by the prison commissioners appointed under the Prison Act of eighteen seventy-seven.\\n\",\"Their origin it will be seen dates back much further than that.\\n\",\"Beds might well be made hard and their use strictly limited.\\n\",\"According to this committee of eighteen sixty-three, beds in the smaller and most carelessly conducted prisons formed a large element in the life of a prisoner.\\n\",\"In one jail fifteen hours were spent in bed out of the twenty-four. This was in keeping with other grave defects and omissions.\\n\",\"The minor borough prisons were the worst blot on the still dark and imperfect system.\\n\",\"They were very numerous, very imperfect in construction and management, and they were very little required.\\n\",\"In them, according to the committee, the old objectionable practices were still in full force.\\n\",\"There was unrestrained association of untried and convicted, juvenile with adult prisoners, vagrants, misdemeanants, felons.\\n\",\"There were dormitorie |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As the Bokeh chart doesn't render in the online gist, here's a screenshot of it.
The tooltips give details (as shown) for all points and with the local server running, clicking on a point opens the file to play in your browser.
Thanks to the use of a low(ish) alpha for the markers, we can distinguish the cases where multiple markers are plotted in the same spot (ie where they all share that combination of audio and text syllable counts).