{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "application/json": { "Software versions": [ { "module": "Python", "version": "3.7.1 64bit [Clang 4.0.1 (tags/RELEASE_401/final)]" }, { "module": "IPython", "version": "7.2.0" }, { "module": "OS", "version": "Darwin 18.2.0 x86_64 i386 64bit" }, { "module": "pandas", "version": "0.23.4" } ] }, "text/html": [ "
SoftwareVersion
Python3.7.1 64bit [Clang 4.0.1 (tags/RELEASE_401/final)]
IPython7.2.0
OSDarwin 18.2.0 x86_64 i386 64bit
pandas0.23.4
Sun Mar 03 17:32:48 2019 PST
" ], "text/latex": [ "\\begin{tabular}{|l|l|}\\hline\n", "{\\bf Software} & {\\bf Version} \\\\ \\hline\\hline\n", "Python & 3.7.1 64bit [Clang 4.0.1 (tags/RELEASE\\_401/final)] \\\\ \\hline\n", "IPython & 7.2.0 \\\\ \\hline\n", "OS & Darwin 18.2.0 x86\\_64 i386 64bit \\\\ \\hline\n", "pandas & 0.23.4 \\\\ \\hline\n", "\\hline \\multicolumn{2}{|l|}{Sun Mar 03 17:32:48 2019 PST} \\\\ \\hline\n", "\\end{tabular}\n" ], "text/plain": [ "Software versions\n", "Python 3.7.1 64bit [Clang 4.0.1 (tags/RELEASE_401/final)]\n", "IPython 7.2.0\n", "OS Darwin 18.2.0 x86_64 i386 64bit\n", "pandas 0.23.4\n", "Sun Mar 03 17:32:48 2019 PST" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.display import HTML\n", "HTML('')\n", "%load_ext version_information\n", "%version_information pandas" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Goalie Pull Bayes Optimize\n", "\n", " - Save raw HTML from nhl.com" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Get Training Data" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np\n", "import requests\n", "from bs4 import BeautifulSoup\n", "import os\n", "import re\n", "import datetime\n", "import time\n", "from collections import OrderedDict\n", "import glob\n", "from tqdm import tqdm_notebook\n", "from colorama import Fore, Style" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Download HTML" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def random_wait(mu) -> float:\n", " ''' Positive stochastic var with average of mu '''\n", " return np.random.beta(3, 3) * mu * 2\n", "\n", "def init_sess(sess=None):\n", " if sess is not None:\n", " sess.close()\n", " _sess = requests.Session()\n", " return _sess\n", "\n", "def get_page(sess, url, tries=0) -> str:\n", " try:\n", " if tries > 3:\n", " print(f'Scrape failed at URL = {url}')\n", " return None\n", "\n", " print(f'Requesting HTML for URL = {url}')\n", " page = sess.get(url)\n", " print(f'Got {page.status_code} status code')\n", " \n", " if page.status_code == 404:\n", " print('Bad status code, returning no page')\n", " return None\n", "\n", " if page.status_code not in (200, 404):\n", " print('Bad status code, waiting 10 seconds and trying again')\n", " time.sleep(10)\n", " sess = init_sess(sess)\n", " return get_page(sess, url, tries+1)\n", "\n", " return page.text\n", "\n", " except Exception as e:\n", " print(f'Exception: {str(e)}')\n", " print('Sleeping, then trying again...')\n", " time.sleep(10)\n", " sess = init_sess(sess)\n", " return get_page(sess, url, tries+1)\n", " \n", " \n", "def download_game_range(\n", " url_template,\n", " seasons,\n", " games,\n", " no_break=False\n", " ) -> None:\n", " \n", " root_data_path = '../../data/raw/html'\n", " if not os.path.exists(root_data_path):\n", " os.makedirs(root_data_path)\n", " print(f'Making dirs {root_data_path}')\n", " \n", " request_delay = 3\n", "\n", " print(f'Starting data pull at {datetime.datetime.now()}')\n", "\n", " sess = init_sess()\n", " for season in seasons:\n", " data_path = os.path.join(root_data_path, season)\n", " if not os.path.exists(data_path):\n", " print(f'Making dirs {data_path}')\n", " os.makedirs(data_path)\n", " \n", " for game_num in games: \n", " time.sleep(random_wait(request_delay))\n", "\n", " page_text = get_page(\n", " sess,\n", " url_template.format(season, game_num)\n", " )\n", " if page_text is None:\n", " if no_break:\n", " print('Bad response, trying next page')\n", " continue\n", " print(f'Season = {season}')\n", " print(f'Max game = {game_num - 1}')\n", " break\n", "\n", " f_name = os.path.join(data_path, f'{game_num}.html')\n", " print(f'Writing HTML to file {f_name}')\n", " with open(f_name, 'w') as f:\n", " f.write(page_text)\n", " \n", " print(f'Done season {season}')\n", " if season != seasons[-1]:\n", " print('Waiting 10 minutes...')\n", " time.sleep(10*60)\n", "\n", " print(f'Ending data pull at {datetime.datetime.now()}')" ] }, { "cell_type": "code", "execution_count": 34, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Making dirs ../data/html\n", "Starting data pull at 2019-02-03 12:14:32.934214\n", "Making dirs ../data/html/20032004\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020001.HTM\n", "Writing HTML to file ../data/html/20032004/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020002.HTM\n", "Writing HTML to file ../data/html/20032004/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020003.HTM\n", "Writing HTML to file ../data/html/20032004/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020004.HTM\n", "Writing HTML to file ../data/html/20032004/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020005.HTM\n", "Writing HTML to file ../data/html/20032004/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020006.HTM\n", "Writing HTML to file ../data/html/20032004/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020007.HTM\n", "Writing HTML to file ../data/html/20032004/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020008.HTM\n", "Writing HTML to file ../data/html/20032004/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020009.HTM\n", "Writing HTML to file ../data/html/20032004/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020010.HTM\n", "Writing HTML to file ../data/html/20032004/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020011.HTM\n", "Writing HTML to file ../data/html/20032004/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020012.HTM\n", "Writing HTML to file ../data/html/20032004/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020013.HTM\n", "Writing HTML to file ../data/html/20032004/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020014.HTM\n", "Writing HTML to file ../data/html/20032004/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020015.HTM\n", "Writing HTML to file ../data/html/20032004/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020016.HTM\n", "Writing HTML to file ../data/html/20032004/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020017.HTM\n", "Writing HTML to file ../data/html/20032004/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020018.HTM\n", "Writing HTML to file ../data/html/20032004/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020019.HTM\n", "Writing HTML to file ../data/html/20032004/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020020.HTM\n", "Writing HTML to file ../data/html/20032004/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020021.HTM\n", "Writing HTML to file ../data/html/20032004/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020022.HTM\n", "Writing HTML to file ../data/html/20032004/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020023.HTM\n", "Writing HTML to file ../data/html/20032004/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020024.HTM\n", "Writing HTML to file ../data/html/20032004/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020025.HTM\n", "Writing HTML to file ../data/html/20032004/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020026.HTM\n", "Writing HTML to file ../data/html/20032004/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020027.HTM\n", "Writing HTML to file ../data/html/20032004/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020028.HTM\n", "Writing HTML to file ../data/html/20032004/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020029.HTM\n", "Writing HTML to file ../data/html/20032004/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020030.HTM\n", "Writing HTML to file ../data/html/20032004/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020031.HTM\n", "Writing HTML to file ../data/html/20032004/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020032.HTM\n", "Writing HTML to file ../data/html/20032004/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020033.HTM\n", "Writing HTML to file ../data/html/20032004/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020034.HTM\n", "Writing HTML to file ../data/html/20032004/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020035.HTM\n", "Writing HTML to file ../data/html/20032004/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020036.HTM\n", "Writing HTML to file ../data/html/20032004/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020037.HTM\n", "Writing HTML to file ../data/html/20032004/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020038.HTM\n", "Writing HTML to file ../data/html/20032004/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020039.HTM\n", "Writing HTML to file ../data/html/20032004/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020040.HTM\n", "Writing HTML to file ../data/html/20032004/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020041.HTM\n", "Writing HTML to file ../data/html/20032004/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020042.HTM\n", "Writing HTML to file ../data/html/20032004/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020043.HTM\n", "Writing HTML to file ../data/html/20032004/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020044.HTM\n", "Writing HTML to file ../data/html/20032004/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020045.HTM\n", "Writing HTML to file ../data/html/20032004/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020046.HTM\n", "Writing HTML to file ../data/html/20032004/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020047.HTM\n", "Writing HTML to file ../data/html/20032004/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020048.HTM\n", "Writing HTML to file ../data/html/20032004/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020049.HTM\n", "Writing HTML to file ../data/html/20032004/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020050.HTM\n", "Writing HTML to file ../data/html/20032004/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020051.HTM\n", "Writing HTML to file ../data/html/20032004/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020052.HTM\n", "Writing HTML to file ../data/html/20032004/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020053.HTM\n", "Writing HTML to file ../data/html/20032004/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020054.HTM\n", "Writing HTML to file ../data/html/20032004/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020055.HTM\n", "Writing HTML to file ../data/html/20032004/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020056.HTM\n", "Writing HTML to file ../data/html/20032004/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020057.HTM\n", "Writing HTML to file ../data/html/20032004/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020058.HTM\n", "Writing HTML to file ../data/html/20032004/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020059.HTM\n", "Writing HTML to file ../data/html/20032004/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020060.HTM\n", "Writing HTML to file ../data/html/20032004/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020061.HTM\n", "Writing HTML to file ../data/html/20032004/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020062.HTM\n", "Writing HTML to file ../data/html/20032004/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020063.HTM\n", "Writing HTML to file ../data/html/20032004/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020064.HTM\n", "Writing HTML to file ../data/html/20032004/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020065.HTM\n", "Writing HTML to file ../data/html/20032004/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020066.HTM\n", "Writing HTML to file ../data/html/20032004/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020067.HTM\n", "Writing HTML to file ../data/html/20032004/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020068.HTM\n", "Writing HTML to file ../data/html/20032004/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020069.HTM\n", "Writing HTML to file ../data/html/20032004/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020070.HTM\n", "Writing HTML to file ../data/html/20032004/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020071.HTM\n", "Writing HTML to file ../data/html/20032004/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020072.HTM\n", "Writing HTML to file ../data/html/20032004/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020073.HTM\n", "Writing HTML to file ../data/html/20032004/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020074.HTM\n", "Writing HTML to file ../data/html/20032004/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020075.HTM\n", "Writing HTML to file ../data/html/20032004/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020076.HTM\n", "Writing HTML to file ../data/html/20032004/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020077.HTM\n", "Writing HTML to file ../data/html/20032004/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020078.HTM\n", "Writing HTML to file ../data/html/20032004/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020079.HTM\n", "Writing HTML to file ../data/html/20032004/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020080.HTM\n", "Writing HTML to file ../data/html/20032004/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020081.HTM\n", "Writing HTML to file ../data/html/20032004/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020082.HTM\n", "Writing HTML to file ../data/html/20032004/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020083.HTM\n", "Writing HTML to file ../data/html/20032004/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020084.HTM\n", "Writing HTML to file ../data/html/20032004/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020085.HTM\n", "Writing HTML to file ../data/html/20032004/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020086.HTM\n", "Writing HTML to file ../data/html/20032004/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020087.HTM\n", "Writing HTML to file ../data/html/20032004/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020088.HTM\n", "Writing HTML to file ../data/html/20032004/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020089.HTM\n", "Writing HTML to file ../data/html/20032004/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020090.HTM\n", "Writing HTML to file ../data/html/20032004/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020091.HTM\n", "Writing HTML to file ../data/html/20032004/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020092.HTM\n", "Writing HTML to file ../data/html/20032004/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020093.HTM\n", "Writing HTML to file ../data/html/20032004/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020094.HTM\n", "Writing HTML to file ../data/html/20032004/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020095.HTM\n", "Writing HTML to file ../data/html/20032004/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020096.HTM\n", "Writing HTML to file ../data/html/20032004/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020097.HTM\n", "Writing HTML to file ../data/html/20032004/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020098.HTM\n", "Writing HTML to file ../data/html/20032004/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020099.HTM\n", "Writing HTML to file ../data/html/20032004/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020100.HTM\n", "Writing HTML to file ../data/html/20032004/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020101.HTM\n", "Writing HTML to file ../data/html/20032004/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020102.HTM\n", "Writing HTML to file ../data/html/20032004/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020103.HTM\n", "Writing HTML to file ../data/html/20032004/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020104.HTM\n", "Writing HTML to file ../data/html/20032004/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020105.HTM\n", "Writing HTML to file ../data/html/20032004/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020106.HTM\n", "Writing HTML to file ../data/html/20032004/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020107.HTM\n", "Writing HTML to file ../data/html/20032004/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020108.HTM\n", "Writing HTML to file ../data/html/20032004/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020109.HTM\n", "Writing HTML to file ../data/html/20032004/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020110.HTM\n", "Writing HTML to file ../data/html/20032004/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020111.HTM\n", "Writing HTML to file ../data/html/20032004/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020112.HTM\n", "Writing HTML to file ../data/html/20032004/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020113.HTM\n", "Writing HTML to file ../data/html/20032004/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020114.HTM\n", "Writing HTML to file ../data/html/20032004/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020115.HTM\n", "Writing HTML to file ../data/html/20032004/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020116.HTM\n", "Writing HTML to file ../data/html/20032004/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020117.HTM\n", "Writing HTML to file ../data/html/20032004/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020118.HTM\n", "Writing HTML to file ../data/html/20032004/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020119.HTM\n", "Writing HTML to file ../data/html/20032004/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020120.HTM\n", "Writing HTML to file ../data/html/20032004/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020121.HTM\n", "Writing HTML to file ../data/html/20032004/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020122.HTM\n", "Writing HTML to file ../data/html/20032004/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020123.HTM\n", "Writing HTML to file ../data/html/20032004/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020124.HTM\n", "Writing HTML to file ../data/html/20032004/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020125.HTM\n", "Writing HTML to file ../data/html/20032004/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020126.HTM\n", "Writing HTML to file ../data/html/20032004/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020127.HTM\n", "Writing HTML to file ../data/html/20032004/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020128.HTM\n", "Writing HTML to file ../data/html/20032004/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020129.HTM\n", "Writing HTML to file ../data/html/20032004/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020130.HTM\n", "Writing HTML to file ../data/html/20032004/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020131.HTM\n", "Writing HTML to file ../data/html/20032004/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020132.HTM\n", "Writing HTML to file ../data/html/20032004/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020133.HTM\n", "Writing HTML to file ../data/html/20032004/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020134.HTM\n", "Writing HTML to file ../data/html/20032004/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020135.HTM\n", "Writing HTML to file ../data/html/20032004/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020136.HTM\n", "Writing HTML to file ../data/html/20032004/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020137.HTM\n", "Writing HTML to file ../data/html/20032004/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020138.HTM\n", "Writing HTML to file ../data/html/20032004/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020139.HTM\n", "Writing HTML to file ../data/html/20032004/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020140.HTM\n", "Writing HTML to file ../data/html/20032004/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020141.HTM\n", "Writing HTML to file ../data/html/20032004/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020142.HTM\n", "Writing HTML to file ../data/html/20032004/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020143.HTM\n", "Writing HTML to file ../data/html/20032004/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020144.HTM\n", "Writing HTML to file ../data/html/20032004/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020145.HTM\n", "Writing HTML to file ../data/html/20032004/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020146.HTM\n", "Writing HTML to file ../data/html/20032004/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020147.HTM\n", "Writing HTML to file ../data/html/20032004/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020148.HTM\n", "Writing HTML to file ../data/html/20032004/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020149.HTM\n", "Writing HTML to file ../data/html/20032004/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020150.HTM\n", "Writing HTML to file ../data/html/20032004/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020151.HTM\n", "Writing HTML to file ../data/html/20032004/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020152.HTM\n", "Writing HTML to file ../data/html/20032004/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020153.HTM\n", "Writing HTML to file ../data/html/20032004/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020154.HTM\n", "Writing HTML to file ../data/html/20032004/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020155.HTM\n", "Writing HTML to file ../data/html/20032004/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020156.HTM\n", "Writing HTML to file ../data/html/20032004/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020157.HTM\n", "Writing HTML to file ../data/html/20032004/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020158.HTM\n", "Writing HTML to file ../data/html/20032004/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020159.HTM\n", "Writing HTML to file ../data/html/20032004/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020160.HTM\n", "Writing HTML to file ../data/html/20032004/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020161.HTM\n", "Writing HTML to file ../data/html/20032004/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020162.HTM\n", "Writing HTML to file ../data/html/20032004/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020163.HTM\n", "Writing HTML to file ../data/html/20032004/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020164.HTM\n", "Writing HTML to file ../data/html/20032004/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020165.HTM\n", "Writing HTML to file ../data/html/20032004/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020166.HTM\n", "Writing HTML to file ../data/html/20032004/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020167.HTM\n", "Writing HTML to file ../data/html/20032004/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020168.HTM\n", "Writing HTML to file ../data/html/20032004/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020169.HTM\n", "Writing HTML to file ../data/html/20032004/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020170.HTM\n", "Writing HTML to file ../data/html/20032004/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020171.HTM\n", "Writing HTML to file ../data/html/20032004/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020172.HTM\n", "Writing HTML to file ../data/html/20032004/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020173.HTM\n", "Writing HTML to file ../data/html/20032004/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020174.HTM\n", "Writing HTML to file ../data/html/20032004/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020175.HTM\n", "Writing HTML to file ../data/html/20032004/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020176.HTM\n", "Writing HTML to file ../data/html/20032004/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020177.HTM\n", "Writing HTML to file ../data/html/20032004/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020178.HTM\n", "Writing HTML to file ../data/html/20032004/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020179.HTM\n", "Writing HTML to file ../data/html/20032004/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020180.HTM\n", "Writing HTML to file ../data/html/20032004/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020181.HTM\n", "Writing HTML to file ../data/html/20032004/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020182.HTM\n", "Writing HTML to file ../data/html/20032004/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020183.HTM\n", "Writing HTML to file ../data/html/20032004/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020184.HTM\n", "Writing HTML to file ../data/html/20032004/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020185.HTM\n", "Writing HTML to file ../data/html/20032004/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020186.HTM\n", "Writing HTML to file ../data/html/20032004/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020187.HTM\n", "Writing HTML to file ../data/html/20032004/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020188.HTM\n", "Writing HTML to file ../data/html/20032004/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020189.HTM\n", "Writing HTML to file ../data/html/20032004/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020190.HTM\n", "Writing HTML to file ../data/html/20032004/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020191.HTM\n", "Writing HTML to file ../data/html/20032004/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020192.HTM\n", "Writing HTML to file ../data/html/20032004/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020193.HTM\n", "Writing HTML to file ../data/html/20032004/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020194.HTM\n", "Writing HTML to file ../data/html/20032004/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020195.HTM\n", "Writing HTML to file ../data/html/20032004/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020196.HTM\n", "Writing HTML to file ../data/html/20032004/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020197.HTM\n", "Writing HTML to file ../data/html/20032004/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020198.HTM\n", "Writing HTML to file ../data/html/20032004/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020199.HTM\n", "Writing HTML to file ../data/html/20032004/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020200.HTM\n", "Writing HTML to file ../data/html/20032004/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020201.HTM\n", "Writing HTML to file ../data/html/20032004/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020202.HTM\n", "Writing HTML to file ../data/html/20032004/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020203.HTM\n", "Writing HTML to file ../data/html/20032004/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020204.HTM\n", "Writing HTML to file ../data/html/20032004/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020205.HTM\n", "Writing HTML to file ../data/html/20032004/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020206.HTM\n", "Writing HTML to file ../data/html/20032004/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020207.HTM\n", "Writing HTML to file ../data/html/20032004/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020208.HTM\n", "Writing HTML to file ../data/html/20032004/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020209.HTM\n", "Writing HTML to file ../data/html/20032004/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020210.HTM\n", "Writing HTML to file ../data/html/20032004/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020211.HTM\n", "Writing HTML to file ../data/html/20032004/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020212.HTM\n", "Writing HTML to file ../data/html/20032004/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020213.HTM\n", "Writing HTML to file ../data/html/20032004/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020214.HTM\n", "Writing HTML to file ../data/html/20032004/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020215.HTM\n", "Writing HTML to file ../data/html/20032004/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020216.HTM\n", "Writing HTML to file ../data/html/20032004/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020217.HTM\n", "Writing HTML to file ../data/html/20032004/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020218.HTM\n", "Writing HTML to file ../data/html/20032004/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020219.HTM\n", "Writing HTML to file ../data/html/20032004/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020220.HTM\n", "Writing HTML to file ../data/html/20032004/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020221.HTM\n", "Writing HTML to file ../data/html/20032004/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020222.HTM\n", "Writing HTML to file ../data/html/20032004/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020223.HTM\n", "Writing HTML to file ../data/html/20032004/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020224.HTM\n", "Writing HTML to file ../data/html/20032004/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020225.HTM\n", "Writing HTML to file ../data/html/20032004/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020226.HTM\n", "Writing HTML to file ../data/html/20032004/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020227.HTM\n", "Writing HTML to file ../data/html/20032004/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020228.HTM\n", "Writing HTML to file ../data/html/20032004/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020229.HTM\n", "Writing HTML to file ../data/html/20032004/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020230.HTM\n", "Writing HTML to file ../data/html/20032004/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020231.HTM\n", "Writing HTML to file ../data/html/20032004/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020232.HTM\n", "Writing HTML to file ../data/html/20032004/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020233.HTM\n", "Writing HTML to file ../data/html/20032004/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020234.HTM\n", "Writing HTML to file ../data/html/20032004/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020235.HTM\n", "Writing HTML to file ../data/html/20032004/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020236.HTM\n", "Writing HTML to file ../data/html/20032004/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020237.HTM\n", "Writing HTML to file ../data/html/20032004/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020238.HTM\n", "Writing HTML to file ../data/html/20032004/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020239.HTM\n", "Writing HTML to file ../data/html/20032004/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020240.HTM\n", "Writing HTML to file ../data/html/20032004/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020241.HTM\n", "Writing HTML to file ../data/html/20032004/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020242.HTM\n", "Writing HTML to file ../data/html/20032004/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020243.HTM\n", "Writing HTML to file ../data/html/20032004/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020244.HTM\n", "Writing HTML to file ../data/html/20032004/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020245.HTM\n", "Writing HTML to file ../data/html/20032004/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020246.HTM\n", "Writing HTML to file ../data/html/20032004/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020247.HTM\n", "Writing HTML to file ../data/html/20032004/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020248.HTM\n", "Writing HTML to file ../data/html/20032004/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020249.HTM\n", "Writing HTML to file ../data/html/20032004/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020250.HTM\n", "Writing HTML to file ../data/html/20032004/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020251.HTM\n", "Writing HTML to file ../data/html/20032004/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020252.HTM\n", "Writing HTML to file ../data/html/20032004/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020253.HTM\n", "Writing HTML to file ../data/html/20032004/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020254.HTM\n", "Writing HTML to file ../data/html/20032004/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020255.HTM\n", "Writing HTML to file ../data/html/20032004/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020256.HTM\n", "Writing HTML to file ../data/html/20032004/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020257.HTM\n", "Writing HTML to file ../data/html/20032004/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020258.HTM\n", "Writing HTML to file ../data/html/20032004/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020259.HTM\n", "Writing HTML to file ../data/html/20032004/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020260.HTM\n", "Writing HTML to file ../data/html/20032004/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020261.HTM\n", "Writing HTML to file ../data/html/20032004/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020262.HTM\n", "Writing HTML to file ../data/html/20032004/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020263.HTM\n", "Writing HTML to file ../data/html/20032004/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020264.HTM\n", "Writing HTML to file ../data/html/20032004/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020265.HTM\n", "Writing HTML to file ../data/html/20032004/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020266.HTM\n", "Writing HTML to file ../data/html/20032004/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020267.HTM\n", "Writing HTML to file ../data/html/20032004/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020268.HTM\n", "Writing HTML to file ../data/html/20032004/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020269.HTM\n", "Writing HTML to file ../data/html/20032004/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020270.HTM\n", "Writing HTML to file ../data/html/20032004/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020271.HTM\n", "Writing HTML to file ../data/html/20032004/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020272.HTM\n", "Writing HTML to file ../data/html/20032004/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020273.HTM\n", "Writing HTML to file ../data/html/20032004/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020274.HTM\n", "Writing HTML to file ../data/html/20032004/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020275.HTM\n", "Writing HTML to file ../data/html/20032004/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020276.HTM\n", "Writing HTML to file ../data/html/20032004/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020277.HTM\n", "Writing HTML to file ../data/html/20032004/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020278.HTM\n", "Writing HTML to file ../data/html/20032004/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020279.HTM\n", "Writing HTML to file ../data/html/20032004/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020280.HTM\n", "Writing HTML to file ../data/html/20032004/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020281.HTM\n", "Writing HTML to file ../data/html/20032004/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020282.HTM\n", "Writing HTML to file ../data/html/20032004/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020283.HTM\n", "Writing HTML to file ../data/html/20032004/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020284.HTM\n", "Writing HTML to file ../data/html/20032004/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020285.HTM\n", "Writing HTML to file ../data/html/20032004/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020286.HTM\n", "Writing HTML to file ../data/html/20032004/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020287.HTM\n", "Writing HTML to file ../data/html/20032004/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020288.HTM\n", "Writing HTML to file ../data/html/20032004/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020289.HTM\n", "Writing HTML to file ../data/html/20032004/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020290.HTM\n", "Writing HTML to file ../data/html/20032004/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020291.HTM\n", "Writing HTML to file ../data/html/20032004/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020292.HTM\n", "Writing HTML to file ../data/html/20032004/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020293.HTM\n", "Writing HTML to file ../data/html/20032004/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020294.HTM\n", "Writing HTML to file ../data/html/20032004/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020295.HTM\n", "Writing HTML to file ../data/html/20032004/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020296.HTM\n", "Writing HTML to file ../data/html/20032004/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020297.HTM\n", "Writing HTML to file ../data/html/20032004/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020298.HTM\n", "Writing HTML to file ../data/html/20032004/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020299.HTM\n", "Writing HTML to file ../data/html/20032004/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020300.HTM\n", "Writing HTML to file ../data/html/20032004/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020301.HTM\n", "Writing HTML to file ../data/html/20032004/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020302.HTM\n", "Writing HTML to file ../data/html/20032004/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020303.HTM\n", "Writing HTML to file ../data/html/20032004/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020304.HTM\n", "Writing HTML to file ../data/html/20032004/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020305.HTM\n", "Writing HTML to file ../data/html/20032004/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020306.HTM\n", "Writing HTML to file ../data/html/20032004/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020307.HTM\n", "Writing HTML to file ../data/html/20032004/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020308.HTM\n", "Writing HTML to file ../data/html/20032004/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020309.HTM\n", "Writing HTML to file ../data/html/20032004/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020310.HTM\n", "Writing HTML to file ../data/html/20032004/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020311.HTM\n", "Writing HTML to file ../data/html/20032004/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020312.HTM\n", "Writing HTML to file ../data/html/20032004/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020313.HTM\n", "Writing HTML to file ../data/html/20032004/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020314.HTM\n", "Writing HTML to file ../data/html/20032004/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020315.HTM\n", "Writing HTML to file ../data/html/20032004/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020316.HTM\n", "Writing HTML to file ../data/html/20032004/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020317.HTM\n", "Writing HTML to file ../data/html/20032004/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020318.HTM\n", "Writing HTML to file ../data/html/20032004/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020319.HTM\n", "Writing HTML to file ../data/html/20032004/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020320.HTM\n", "Writing HTML to file ../data/html/20032004/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020321.HTM\n", "Writing HTML to file ../data/html/20032004/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020322.HTM\n", "Writing HTML to file ../data/html/20032004/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020323.HTM\n", "Writing HTML to file ../data/html/20032004/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020324.HTM\n", "Writing HTML to file ../data/html/20032004/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020325.HTM\n", "Writing HTML to file ../data/html/20032004/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020326.HTM\n", "Writing HTML to file ../data/html/20032004/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020327.HTM\n", "Writing HTML to file ../data/html/20032004/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020328.HTM\n", "Writing HTML to file ../data/html/20032004/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020329.HTM\n", "Writing HTML to file ../data/html/20032004/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020330.HTM\n", "Writing HTML to file ../data/html/20032004/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020331.HTM\n", "Writing HTML to file ../data/html/20032004/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020332.HTM\n", "Writing HTML to file ../data/html/20032004/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020333.HTM\n", "Writing HTML to file ../data/html/20032004/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020334.HTM\n", "Writing HTML to file ../data/html/20032004/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020335.HTM\n", "Writing HTML to file ../data/html/20032004/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020336.HTM\n", "Writing HTML to file ../data/html/20032004/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020337.HTM\n", "Writing HTML to file ../data/html/20032004/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020338.HTM\n", "Writing HTML to file ../data/html/20032004/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020339.HTM\n", "Writing HTML to file ../data/html/20032004/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020340.HTM\n", "Writing HTML to file ../data/html/20032004/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020341.HTM\n", "Writing HTML to file ../data/html/20032004/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020342.HTM\n", "Writing HTML to file ../data/html/20032004/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020343.HTM\n", "Writing HTML to file ../data/html/20032004/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020344.HTM\n", "Writing HTML to file ../data/html/20032004/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020345.HTM\n", "Writing HTML to file ../data/html/20032004/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020346.HTM\n", "Writing HTML to file ../data/html/20032004/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020347.HTM\n", "Writing HTML to file ../data/html/20032004/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020348.HTM\n", "Writing HTML to file ../data/html/20032004/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020349.HTM\n", "Writing HTML to file ../data/html/20032004/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020350.HTM\n", "Writing HTML to file ../data/html/20032004/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020351.HTM\n", "Writing HTML to file ../data/html/20032004/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020352.HTM\n", "Writing HTML to file ../data/html/20032004/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020353.HTM\n", "Writing HTML to file ../data/html/20032004/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020354.HTM\n", "Writing HTML to file ../data/html/20032004/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020355.HTM\n", "Writing HTML to file ../data/html/20032004/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020356.HTM\n", "Writing HTML to file ../data/html/20032004/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020357.HTM\n", "Writing HTML to file ../data/html/20032004/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020358.HTM\n", "Writing HTML to file ../data/html/20032004/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020359.HTM\n", "Writing HTML to file ../data/html/20032004/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020360.HTM\n", "Writing HTML to file ../data/html/20032004/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020361.HTM\n", "Writing HTML to file ../data/html/20032004/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020362.HTM\n", "Writing HTML to file ../data/html/20032004/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020363.HTM\n", "Writing HTML to file ../data/html/20032004/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020364.HTM\n", "Writing HTML to file ../data/html/20032004/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020365.HTM\n", "Writing HTML to file ../data/html/20032004/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020366.HTM\n", "Writing HTML to file ../data/html/20032004/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020367.HTM\n", "Writing HTML to file ../data/html/20032004/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020368.HTM\n", "Writing HTML to file ../data/html/20032004/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020369.HTM\n", "Writing HTML to file ../data/html/20032004/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020370.HTM\n", "Writing HTML to file ../data/html/20032004/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020371.HTM\n", "Writing HTML to file ../data/html/20032004/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020372.HTM\n", "Writing HTML to file ../data/html/20032004/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020373.HTM\n", "Writing HTML to file ../data/html/20032004/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020374.HTM\n", "Writing HTML to file ../data/html/20032004/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020375.HTM\n", "Writing HTML to file ../data/html/20032004/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020376.HTM\n", "Writing HTML to file ../data/html/20032004/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020377.HTM\n", "Writing HTML to file ../data/html/20032004/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020378.HTM\n", "Writing HTML to file ../data/html/20032004/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020379.HTM\n", "Writing HTML to file ../data/html/20032004/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020380.HTM\n", "Writing HTML to file ../data/html/20032004/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020381.HTM\n", "Writing HTML to file ../data/html/20032004/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020382.HTM\n", "Writing HTML to file ../data/html/20032004/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020383.HTM\n", "Writing HTML to file ../data/html/20032004/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020384.HTM\n", "Writing HTML to file ../data/html/20032004/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020385.HTM\n", "Writing HTML to file ../data/html/20032004/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020386.HTM\n", "Writing HTML to file ../data/html/20032004/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020387.HTM\n", "Writing HTML to file ../data/html/20032004/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020388.HTM\n", "Writing HTML to file ../data/html/20032004/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020389.HTM\n", "Writing HTML to file ../data/html/20032004/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020390.HTM\n", "Writing HTML to file ../data/html/20032004/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020391.HTM\n", "Writing HTML to file ../data/html/20032004/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020392.HTM\n", "Writing HTML to file ../data/html/20032004/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020393.HTM\n", "Writing HTML to file ../data/html/20032004/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020394.HTM\n", "Writing HTML to file ../data/html/20032004/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020395.HTM\n", "Writing HTML to file ../data/html/20032004/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020396.HTM\n", "Writing HTML to file ../data/html/20032004/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020397.HTM\n", "Writing HTML to file ../data/html/20032004/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020398.HTM\n", "Writing HTML to file ../data/html/20032004/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020399.HTM\n", "Writing HTML to file ../data/html/20032004/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020400.HTM\n", "Writing HTML to file ../data/html/20032004/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020401.HTM\n", "Writing HTML to file ../data/html/20032004/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020402.HTM\n", "Writing HTML to file ../data/html/20032004/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020403.HTM\n", "Writing HTML to file ../data/html/20032004/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020404.HTM\n", "Writing HTML to file ../data/html/20032004/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020405.HTM\n", "Writing HTML to file ../data/html/20032004/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020406.HTM\n", "Writing HTML to file ../data/html/20032004/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020407.HTM\n", "Writing HTML to file ../data/html/20032004/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020408.HTM\n", "Writing HTML to file ../data/html/20032004/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020409.HTM\n", "Writing HTML to file ../data/html/20032004/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020410.HTM\n", "Writing HTML to file ../data/html/20032004/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020411.HTM\n", "Writing HTML to file ../data/html/20032004/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020412.HTM\n", "Writing HTML to file ../data/html/20032004/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020413.HTM\n", "Writing HTML to file ../data/html/20032004/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020414.HTM\n", "Writing HTML to file ../data/html/20032004/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020415.HTM\n", "Writing HTML to file ../data/html/20032004/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020416.HTM\n", "Writing HTML to file ../data/html/20032004/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020417.HTM\n", "Writing HTML to file ../data/html/20032004/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020418.HTM\n", "Writing HTML to file ../data/html/20032004/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020419.HTM\n", "Writing HTML to file ../data/html/20032004/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020420.HTM\n", "Writing HTML to file ../data/html/20032004/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020421.HTM\n", "Writing HTML to file ../data/html/20032004/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020422.HTM\n", "Writing HTML to file ../data/html/20032004/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020423.HTM\n", "Writing HTML to file ../data/html/20032004/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020424.HTM\n", "Writing HTML to file ../data/html/20032004/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020425.HTM\n", "Writing HTML to file ../data/html/20032004/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020426.HTM\n", "Writing HTML to file ../data/html/20032004/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020427.HTM\n", "Writing HTML to file ../data/html/20032004/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020428.HTM\n", "Writing HTML to file ../data/html/20032004/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020429.HTM\n", "Writing HTML to file ../data/html/20032004/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020430.HTM\n", "Writing HTML to file ../data/html/20032004/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020431.HTM\n", "Writing HTML to file ../data/html/20032004/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020432.HTM\n", "Writing HTML to file ../data/html/20032004/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020433.HTM\n", "Writing HTML to file ../data/html/20032004/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020434.HTM\n", "Writing HTML to file ../data/html/20032004/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020435.HTM\n", "Writing HTML to file ../data/html/20032004/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020436.HTM\n", "Writing HTML to file ../data/html/20032004/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020437.HTM\n", "Writing HTML to file ../data/html/20032004/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020438.HTM\n", "Writing HTML to file ../data/html/20032004/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020439.HTM\n", "Writing HTML to file ../data/html/20032004/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020440.HTM\n", "Writing HTML to file ../data/html/20032004/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020441.HTM\n", "Writing HTML to file ../data/html/20032004/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020442.HTM\n", "Writing HTML to file ../data/html/20032004/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020443.HTM\n", "Writing HTML to file ../data/html/20032004/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020444.HTM\n", "Writing HTML to file ../data/html/20032004/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020445.HTM\n", "Writing HTML to file ../data/html/20032004/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020446.HTM\n", "Writing HTML to file ../data/html/20032004/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020447.HTM\n", "Writing HTML to file ../data/html/20032004/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020448.HTM\n", "Writing HTML to file ../data/html/20032004/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020449.HTM\n", "Writing HTML to file ../data/html/20032004/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020450.HTM\n", "Writing HTML to file ../data/html/20032004/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020451.HTM\n", "Writing HTML to file ../data/html/20032004/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020452.HTM\n", "Writing HTML to file ../data/html/20032004/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020453.HTM\n", "Writing HTML to file ../data/html/20032004/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020454.HTM\n", "Writing HTML to file ../data/html/20032004/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020455.HTM\n", "Writing HTML to file ../data/html/20032004/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020456.HTM\n", "Writing HTML to file ../data/html/20032004/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020457.HTM\n", "Writing HTML to file ../data/html/20032004/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020458.HTM\n", "Writing HTML to file ../data/html/20032004/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020459.HTM\n", "Writing HTML to file ../data/html/20032004/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020460.HTM\n", "Writing HTML to file ../data/html/20032004/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020461.HTM\n", "Writing HTML to file ../data/html/20032004/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020462.HTM\n", "Writing HTML to file ../data/html/20032004/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020463.HTM\n", "Writing HTML to file ../data/html/20032004/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020464.HTM\n", "Writing HTML to file ../data/html/20032004/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020465.HTM\n", "Writing HTML to file ../data/html/20032004/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020466.HTM\n", "Writing HTML to file ../data/html/20032004/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020467.HTM\n", "Writing HTML to file ../data/html/20032004/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020468.HTM\n", "Writing HTML to file ../data/html/20032004/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020469.HTM\n", "Writing HTML to file ../data/html/20032004/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020470.HTM\n", "Writing HTML to file ../data/html/20032004/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020471.HTM\n", "Writing HTML to file ../data/html/20032004/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020472.HTM\n", "Writing HTML to file ../data/html/20032004/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020473.HTM\n", "Writing HTML to file ../data/html/20032004/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020474.HTM\n", "Writing HTML to file ../data/html/20032004/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020475.HTM\n", "Writing HTML to file ../data/html/20032004/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020476.HTM\n", "Writing HTML to file ../data/html/20032004/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020477.HTM\n", "Writing HTML to file ../data/html/20032004/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020478.HTM\n", "Writing HTML to file ../data/html/20032004/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020479.HTM\n", "Writing HTML to file ../data/html/20032004/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020480.HTM\n", "Writing HTML to file ../data/html/20032004/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020481.HTM\n", "Writing HTML to file ../data/html/20032004/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020482.HTM\n", "Writing HTML to file ../data/html/20032004/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020483.HTM\n", "Writing HTML to file ../data/html/20032004/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020484.HTM\n", "Writing HTML to file ../data/html/20032004/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020485.HTM\n", "Writing HTML to file ../data/html/20032004/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020486.HTM\n", "Writing HTML to file ../data/html/20032004/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020487.HTM\n", "Writing HTML to file ../data/html/20032004/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020488.HTM\n", "Writing HTML to file ../data/html/20032004/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020489.HTM\n", "Writing HTML to file ../data/html/20032004/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020490.HTM\n", "Writing HTML to file ../data/html/20032004/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020491.HTM\n", "Writing HTML to file ../data/html/20032004/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020492.HTM\n", "Writing HTML to file ../data/html/20032004/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020493.HTM\n", "Writing HTML to file ../data/html/20032004/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020494.HTM\n", "Writing HTML to file ../data/html/20032004/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020495.HTM\n", "Writing HTML to file ../data/html/20032004/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020496.HTM\n", "Writing HTML to file ../data/html/20032004/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020497.HTM\n", "Writing HTML to file ../data/html/20032004/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020498.HTM\n", "Writing HTML to file ../data/html/20032004/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020499.HTM\n", "Writing HTML to file ../data/html/20032004/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020500.HTM\n", "Writing HTML to file ../data/html/20032004/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020501.HTM\n", "Writing HTML to file ../data/html/20032004/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020502.HTM\n", "Writing HTML to file ../data/html/20032004/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020503.HTM\n", "Writing HTML to file ../data/html/20032004/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020504.HTM\n", "Writing HTML to file ../data/html/20032004/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020505.HTM\n", "Writing HTML to file ../data/html/20032004/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020506.HTM\n", "Writing HTML to file ../data/html/20032004/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020507.HTM\n", "Writing HTML to file ../data/html/20032004/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020508.HTM\n", "Writing HTML to file ../data/html/20032004/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020509.HTM\n", "Writing HTML to file ../data/html/20032004/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020510.HTM\n", "Writing HTML to file ../data/html/20032004/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020511.HTM\n", "Writing HTML to file ../data/html/20032004/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020512.HTM\n", "Writing HTML to file ../data/html/20032004/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020513.HTM\n", "Writing HTML to file ../data/html/20032004/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020514.HTM\n", "Writing HTML to file ../data/html/20032004/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020515.HTM\n", "Writing HTML to file ../data/html/20032004/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020516.HTM\n", "Writing HTML to file ../data/html/20032004/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020517.HTM\n", "Writing HTML to file ../data/html/20032004/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020518.HTM\n", "Writing HTML to file ../data/html/20032004/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020519.HTM\n", "Writing HTML to file ../data/html/20032004/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020520.HTM\n", "Writing HTML to file ../data/html/20032004/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020521.HTM\n", "Writing HTML to file ../data/html/20032004/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020522.HTM\n", "Writing HTML to file ../data/html/20032004/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020523.HTM\n", "Writing HTML to file ../data/html/20032004/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020524.HTM\n", "Writing HTML to file ../data/html/20032004/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020525.HTM\n", "Writing HTML to file ../data/html/20032004/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020526.HTM\n", "Writing HTML to file ../data/html/20032004/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020527.HTM\n", "Writing HTML to file ../data/html/20032004/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020528.HTM\n", "Writing HTML to file ../data/html/20032004/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020529.HTM\n", "Writing HTML to file ../data/html/20032004/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020530.HTM\n", "Writing HTML to file ../data/html/20032004/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020531.HTM\n", "Writing HTML to file ../data/html/20032004/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020532.HTM\n", "Writing HTML to file ../data/html/20032004/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020533.HTM\n", "Writing HTML to file ../data/html/20032004/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020534.HTM\n", "Writing HTML to file ../data/html/20032004/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020535.HTM\n", "Writing HTML to file ../data/html/20032004/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020536.HTM\n", "Writing HTML to file ../data/html/20032004/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020537.HTM\n", "Writing HTML to file ../data/html/20032004/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020538.HTM\n", "Writing HTML to file ../data/html/20032004/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020539.HTM\n", "Writing HTML to file ../data/html/20032004/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020540.HTM\n", "Writing HTML to file ../data/html/20032004/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020541.HTM\n", "Writing HTML to file ../data/html/20032004/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020542.HTM\n", "Writing HTML to file ../data/html/20032004/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020543.HTM\n", "Writing HTML to file ../data/html/20032004/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020544.HTM\n", "Writing HTML to file ../data/html/20032004/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020545.HTM\n", "Writing HTML to file ../data/html/20032004/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020546.HTM\n", "Writing HTML to file ../data/html/20032004/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020547.HTM\n", "Writing HTML to file ../data/html/20032004/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020548.HTM\n", "Writing HTML to file ../data/html/20032004/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020549.HTM\n", "Writing HTML to file ../data/html/20032004/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020550.HTM\n", "Writing HTML to file ../data/html/20032004/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020551.HTM\n", "Writing HTML to file ../data/html/20032004/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020552.HTM\n", "Writing HTML to file ../data/html/20032004/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020553.HTM\n", "Writing HTML to file ../data/html/20032004/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020554.HTM\n", "Writing HTML to file ../data/html/20032004/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020555.HTM\n", "Writing HTML to file ../data/html/20032004/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020556.HTM\n", "Writing HTML to file ../data/html/20032004/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020557.HTM\n", "Writing HTML to file ../data/html/20032004/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020558.HTM\n", "Writing HTML to file ../data/html/20032004/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020559.HTM\n", "Writing HTML to file ../data/html/20032004/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020560.HTM\n", "Writing HTML to file ../data/html/20032004/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020561.HTM\n", "Writing HTML to file ../data/html/20032004/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020562.HTM\n", "Writing HTML to file ../data/html/20032004/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020563.HTM\n", "Writing HTML to file ../data/html/20032004/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020564.HTM\n", "Writing HTML to file ../data/html/20032004/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020565.HTM\n", "Writing HTML to file ../data/html/20032004/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020566.HTM\n", "Writing HTML to file ../data/html/20032004/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020567.HTM\n", "Writing HTML to file ../data/html/20032004/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020568.HTM\n", "Writing HTML to file ../data/html/20032004/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020569.HTM\n", "Writing HTML to file ../data/html/20032004/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020570.HTM\n", "Writing HTML to file ../data/html/20032004/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020571.HTM\n", "Writing HTML to file ../data/html/20032004/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020572.HTM\n", "Writing HTML to file ../data/html/20032004/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020573.HTM\n", "Writing HTML to file ../data/html/20032004/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020574.HTM\n", "Writing HTML to file ../data/html/20032004/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020575.HTM\n", "Writing HTML to file ../data/html/20032004/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020576.HTM\n", "Writing HTML to file ../data/html/20032004/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020577.HTM\n", "Writing HTML to file ../data/html/20032004/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020578.HTM\n", "Writing HTML to file ../data/html/20032004/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020579.HTM\n", "Writing HTML to file ../data/html/20032004/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020580.HTM\n", "Writing HTML to file ../data/html/20032004/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020581.HTM\n", "Writing HTML to file ../data/html/20032004/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020582.HTM\n", "Writing HTML to file ../data/html/20032004/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020583.HTM\n", "Writing HTML to file ../data/html/20032004/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020584.HTM\n", "Writing HTML to file ../data/html/20032004/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020585.HTM\n", "Writing HTML to file ../data/html/20032004/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020586.HTM\n", "Writing HTML to file ../data/html/20032004/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020587.HTM\n", "Writing HTML to file ../data/html/20032004/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020588.HTM\n", "Writing HTML to file ../data/html/20032004/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020589.HTM\n", "Writing HTML to file ../data/html/20032004/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020590.HTM\n", "Writing HTML to file ../data/html/20032004/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020591.HTM\n", "Writing HTML to file ../data/html/20032004/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020592.HTM\n", "Writing HTML to file ../data/html/20032004/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020593.HTM\n", "Writing HTML to file ../data/html/20032004/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020594.HTM\n", "Writing HTML to file ../data/html/20032004/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020595.HTM\n", "Writing HTML to file ../data/html/20032004/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020596.HTM\n", "Writing HTML to file ../data/html/20032004/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020597.HTM\n", "Writing HTML to file ../data/html/20032004/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020598.HTM\n", "Writing HTML to file ../data/html/20032004/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020599.HTM\n", "Writing HTML to file ../data/html/20032004/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020600.HTM\n", "Writing HTML to file ../data/html/20032004/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020601.HTM\n", "Writing HTML to file ../data/html/20032004/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020602.HTM\n", "Writing HTML to file ../data/html/20032004/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020603.HTM\n", "Writing HTML to file ../data/html/20032004/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020604.HTM\n", "Writing HTML to file ../data/html/20032004/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020605.HTM\n", "Writing HTML to file ../data/html/20032004/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020606.HTM\n", "Writing HTML to file ../data/html/20032004/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020607.HTM\n", "Writing HTML to file ../data/html/20032004/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020608.HTM\n", "Writing HTML to file ../data/html/20032004/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020609.HTM\n", "Writing HTML to file ../data/html/20032004/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020610.HTM\n", "Writing HTML to file ../data/html/20032004/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020611.HTM\n", "Writing HTML to file ../data/html/20032004/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020612.HTM\n", "Writing HTML to file ../data/html/20032004/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020613.HTM\n", "Writing HTML to file ../data/html/20032004/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020614.HTM\n", "Writing HTML to file ../data/html/20032004/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020615.HTM\n", "Writing HTML to file ../data/html/20032004/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020616.HTM\n", "Writing HTML to file ../data/html/20032004/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020617.HTM\n", "Writing HTML to file ../data/html/20032004/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020618.HTM\n", "Writing HTML to file ../data/html/20032004/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020619.HTM\n", "Writing HTML to file ../data/html/20032004/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020620.HTM\n", "Writing HTML to file ../data/html/20032004/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020621.HTM\n", "Writing HTML to file ../data/html/20032004/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020622.HTM\n", "Writing HTML to file ../data/html/20032004/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020623.HTM\n", "Writing HTML to file ../data/html/20032004/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020624.HTM\n", "Writing HTML to file ../data/html/20032004/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020625.HTM\n", "Writing HTML to file ../data/html/20032004/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020626.HTM\n", "Writing HTML to file ../data/html/20032004/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020627.HTM\n", "Writing HTML to file ../data/html/20032004/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020628.HTM\n", "Writing HTML to file ../data/html/20032004/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020629.HTM\n", "Writing HTML to file ../data/html/20032004/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020630.HTM\n", "Writing HTML to file ../data/html/20032004/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020631.HTM\n", "Writing HTML to file ../data/html/20032004/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020632.HTM\n", "Writing HTML to file ../data/html/20032004/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020633.HTM\n", "Writing HTML to file ../data/html/20032004/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020634.HTM\n", "Writing HTML to file ../data/html/20032004/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020635.HTM\n", "Writing HTML to file ../data/html/20032004/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020636.HTM\n", "Writing HTML to file ../data/html/20032004/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020637.HTM\n", "Writing HTML to file ../data/html/20032004/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020638.HTM\n", "Writing HTML to file ../data/html/20032004/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020639.HTM\n", "Writing HTML to file ../data/html/20032004/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020640.HTM\n", "Writing HTML to file ../data/html/20032004/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020641.HTM\n", "Writing HTML to file ../data/html/20032004/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020642.HTM\n", "Writing HTML to file ../data/html/20032004/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020643.HTM\n", "Writing HTML to file ../data/html/20032004/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020644.HTM\n", "Writing HTML to file ../data/html/20032004/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020645.HTM\n", "Writing HTML to file ../data/html/20032004/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020646.HTM\n", "Writing HTML to file ../data/html/20032004/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020647.HTM\n", "Writing HTML to file ../data/html/20032004/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020648.HTM\n", "Writing HTML to file ../data/html/20032004/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020649.HTM\n", "Writing HTML to file ../data/html/20032004/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020650.HTM\n", "Writing HTML to file ../data/html/20032004/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020651.HTM\n", "Writing HTML to file ../data/html/20032004/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020652.HTM\n", "Writing HTML to file ../data/html/20032004/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020653.HTM\n", "Writing HTML to file ../data/html/20032004/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020654.HTM\n", "Writing HTML to file ../data/html/20032004/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020655.HTM\n", "Writing HTML to file ../data/html/20032004/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020656.HTM\n", "Writing HTML to file ../data/html/20032004/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020657.HTM\n", "Writing HTML to file ../data/html/20032004/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020658.HTM\n", "Writing HTML to file ../data/html/20032004/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020659.HTM\n", "Writing HTML to file ../data/html/20032004/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020660.HTM\n", "Writing HTML to file ../data/html/20032004/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020661.HTM\n", "Writing HTML to file ../data/html/20032004/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020662.HTM\n", "Writing HTML to file ../data/html/20032004/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020663.HTM\n", "Writing HTML to file ../data/html/20032004/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020664.HTM\n", "Writing HTML to file ../data/html/20032004/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020665.HTM\n", "Writing HTML to file ../data/html/20032004/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020666.HTM\n", "Writing HTML to file ../data/html/20032004/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020667.HTM\n", "Writing HTML to file ../data/html/20032004/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020668.HTM\n", "Writing HTML to file ../data/html/20032004/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020669.HTM\n", "Writing HTML to file ../data/html/20032004/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020670.HTM\n", "Writing HTML to file ../data/html/20032004/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020671.HTM\n", "Writing HTML to file ../data/html/20032004/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020672.HTM\n", "Writing HTML to file ../data/html/20032004/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020673.HTM\n", "Writing HTML to file ../data/html/20032004/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020674.HTM\n", "Writing HTML to file ../data/html/20032004/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020675.HTM\n", "Writing HTML to file ../data/html/20032004/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020676.HTM\n", "Writing HTML to file ../data/html/20032004/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020677.HTM\n", "Writing HTML to file ../data/html/20032004/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020678.HTM\n", "Writing HTML to file ../data/html/20032004/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020679.HTM\n", "Writing HTML to file ../data/html/20032004/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020680.HTM\n", "Writing HTML to file ../data/html/20032004/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020681.HTM\n", "Writing HTML to file ../data/html/20032004/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020682.HTM\n", "Writing HTML to file ../data/html/20032004/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020683.HTM\n", "Writing HTML to file ../data/html/20032004/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020684.HTM\n", "Writing HTML to file ../data/html/20032004/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020685.HTM\n", "Writing HTML to file ../data/html/20032004/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020686.HTM\n", "Writing HTML to file ../data/html/20032004/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020687.HTM\n", "Writing HTML to file ../data/html/20032004/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020688.HTM\n", "Writing HTML to file ../data/html/20032004/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020689.HTM\n", "Writing HTML to file ../data/html/20032004/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020690.HTM\n", "Writing HTML to file ../data/html/20032004/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020691.HTM\n", "Writing HTML to file ../data/html/20032004/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020692.HTM\n", "Writing HTML to file ../data/html/20032004/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020693.HTM\n", "Writing HTML to file ../data/html/20032004/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020694.HTM\n", "Writing HTML to file ../data/html/20032004/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020695.HTM\n", "Writing HTML to file ../data/html/20032004/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020696.HTM\n", "Writing HTML to file ../data/html/20032004/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020697.HTM\n", "Writing HTML to file ../data/html/20032004/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020698.HTM\n", "Writing HTML to file ../data/html/20032004/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020699.HTM\n", "Writing HTML to file ../data/html/20032004/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020700.HTM\n", "Writing HTML to file ../data/html/20032004/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020701.HTM\n", "Writing HTML to file ../data/html/20032004/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020702.HTM\n", "Writing HTML to file ../data/html/20032004/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020703.HTM\n", "Writing HTML to file ../data/html/20032004/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020704.HTM\n", "Writing HTML to file ../data/html/20032004/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020705.HTM\n", "Writing HTML to file ../data/html/20032004/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020706.HTM\n", "Writing HTML to file ../data/html/20032004/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020707.HTM\n", "Writing HTML to file ../data/html/20032004/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020708.HTM\n", "Writing HTML to file ../data/html/20032004/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020709.HTM\n", "Writing HTML to file ../data/html/20032004/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020710.HTM\n", "Writing HTML to file ../data/html/20032004/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020711.HTM\n", "Writing HTML to file ../data/html/20032004/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020712.HTM\n", "Writing HTML to file ../data/html/20032004/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020713.HTM\n", "Writing HTML to file ../data/html/20032004/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020714.HTM\n", "Writing HTML to file ../data/html/20032004/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020715.HTM\n", "Writing HTML to file ../data/html/20032004/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020716.HTM\n", "Writing HTML to file ../data/html/20032004/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020717.HTM\n", "Writing HTML to file ../data/html/20032004/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020718.HTM\n", "Writing HTML to file ../data/html/20032004/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020719.HTM\n", "Writing HTML to file ../data/html/20032004/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020720.HTM\n", "Writing HTML to file ../data/html/20032004/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020721.HTM\n", "Writing HTML to file ../data/html/20032004/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020722.HTM\n", "Writing HTML to file ../data/html/20032004/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020723.HTM\n", "Writing HTML to file ../data/html/20032004/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020724.HTM\n", "Writing HTML to file ../data/html/20032004/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020725.HTM\n", "Writing HTML to file ../data/html/20032004/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020726.HTM\n", "Writing HTML to file ../data/html/20032004/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020727.HTM\n", "Writing HTML to file ../data/html/20032004/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020728.HTM\n", "Writing HTML to file ../data/html/20032004/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020729.HTM\n", "Writing HTML to file ../data/html/20032004/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020730.HTM\n", "Writing HTML to file ../data/html/20032004/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020731.HTM\n", "Writing HTML to file ../data/html/20032004/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020732.HTM\n", "Writing HTML to file ../data/html/20032004/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020733.HTM\n", "Writing HTML to file ../data/html/20032004/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020734.HTM\n", "Writing HTML to file ../data/html/20032004/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020735.HTM\n", "Writing HTML to file ../data/html/20032004/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020736.HTM\n", "Writing HTML to file ../data/html/20032004/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020737.HTM\n", "Writing HTML to file ../data/html/20032004/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020738.HTM\n", "Writing HTML to file ../data/html/20032004/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020739.HTM\n", "Writing HTML to file ../data/html/20032004/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020740.HTM\n", "Writing HTML to file ../data/html/20032004/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020741.HTM\n", "Writing HTML to file ../data/html/20032004/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020742.HTM\n", "Writing HTML to file ../data/html/20032004/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020743.HTM\n", "Writing HTML to file ../data/html/20032004/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020744.HTM\n", "Writing HTML to file ../data/html/20032004/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020745.HTM\n", "Writing HTML to file ../data/html/20032004/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020746.HTM\n", "Writing HTML to file ../data/html/20032004/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020747.HTM\n", "Writing HTML to file ../data/html/20032004/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020748.HTM\n", "Writing HTML to file ../data/html/20032004/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020749.HTM\n", "Writing HTML to file ../data/html/20032004/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020750.HTM\n", "Writing HTML to file ../data/html/20032004/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020751.HTM\n", "Writing HTML to file ../data/html/20032004/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020752.HTM\n", "Writing HTML to file ../data/html/20032004/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020753.HTM\n", "Writing HTML to file ../data/html/20032004/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020754.HTM\n", "Writing HTML to file ../data/html/20032004/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020755.HTM\n", "Writing HTML to file ../data/html/20032004/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020756.HTM\n", "Writing HTML to file ../data/html/20032004/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020757.HTM\n", "Writing HTML to file ../data/html/20032004/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020758.HTM\n", "Writing HTML to file ../data/html/20032004/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020759.HTM\n", "Writing HTML to file ../data/html/20032004/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020760.HTM\n", "Writing HTML to file ../data/html/20032004/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020761.HTM\n", "Writing HTML to file ../data/html/20032004/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020762.HTM\n", "Writing HTML to file ../data/html/20032004/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020763.HTM\n", "Writing HTML to file ../data/html/20032004/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020764.HTM\n", "Writing HTML to file ../data/html/20032004/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020765.HTM\n", "Writing HTML to file ../data/html/20032004/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020766.HTM\n", "Writing HTML to file ../data/html/20032004/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020767.HTM\n", "Writing HTML to file ../data/html/20032004/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020768.HTM\n", "Writing HTML to file ../data/html/20032004/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020769.HTM\n", "Writing HTML to file ../data/html/20032004/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020770.HTM\n", "Writing HTML to file ../data/html/20032004/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020771.HTM\n", "Writing HTML to file ../data/html/20032004/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020772.HTM\n", "Writing HTML to file ../data/html/20032004/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020773.HTM\n", "Writing HTML to file ../data/html/20032004/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020774.HTM\n", "Writing HTML to file ../data/html/20032004/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020775.HTM\n", "Writing HTML to file ../data/html/20032004/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020776.HTM\n", "Writing HTML to file ../data/html/20032004/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020777.HTM\n", "Writing HTML to file ../data/html/20032004/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020778.HTM\n", "Writing HTML to file ../data/html/20032004/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020779.HTM\n", "Writing HTML to file ../data/html/20032004/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020780.HTM\n", "Writing HTML to file ../data/html/20032004/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020781.HTM\n", "Writing HTML to file ../data/html/20032004/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020782.HTM\n", "Writing HTML to file ../data/html/20032004/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020783.HTM\n", "Writing HTML to file ../data/html/20032004/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020784.HTM\n", "Writing HTML to file ../data/html/20032004/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020785.HTM\n", "Writing HTML to file ../data/html/20032004/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020786.HTM\n", "Writing HTML to file ../data/html/20032004/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020787.HTM\n", "Writing HTML to file ../data/html/20032004/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020788.HTM\n", "Writing HTML to file ../data/html/20032004/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020789.HTM\n", "Writing HTML to file ../data/html/20032004/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020790.HTM\n", "Writing HTML to file ../data/html/20032004/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020791.HTM\n", "Writing HTML to file ../data/html/20032004/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020792.HTM\n", "Writing HTML to file ../data/html/20032004/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020793.HTM\n", "Writing HTML to file ../data/html/20032004/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020794.HTM\n", "Writing HTML to file ../data/html/20032004/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020795.HTM\n", "Writing HTML to file ../data/html/20032004/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020796.HTM\n", "Writing HTML to file ../data/html/20032004/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020797.HTM\n", "Writing HTML to file ../data/html/20032004/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020798.HTM\n", "Writing HTML to file ../data/html/20032004/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020799.HTM\n", "Writing HTML to file ../data/html/20032004/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020800.HTM\n", "Writing HTML to file ../data/html/20032004/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020801.HTM\n", "Writing HTML to file ../data/html/20032004/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020802.HTM\n", "Writing HTML to file ../data/html/20032004/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020803.HTM\n", "Writing HTML to file ../data/html/20032004/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020804.HTM\n", "Writing HTML to file ../data/html/20032004/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020805.HTM\n", "Writing HTML to file ../data/html/20032004/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020806.HTM\n", "Writing HTML to file ../data/html/20032004/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020807.HTM\n", "Writing HTML to file ../data/html/20032004/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020808.HTM\n", "Writing HTML to file ../data/html/20032004/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020809.HTM\n", "Writing HTML to file ../data/html/20032004/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020810.HTM\n", "Writing HTML to file ../data/html/20032004/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020811.HTM\n", "Writing HTML to file ../data/html/20032004/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020812.HTM\n", "Writing HTML to file ../data/html/20032004/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020813.HTM\n", "Writing HTML to file ../data/html/20032004/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020814.HTM\n", "Writing HTML to file ../data/html/20032004/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020815.HTM\n", "Writing HTML to file ../data/html/20032004/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020816.HTM\n", "Writing HTML to file ../data/html/20032004/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020817.HTM\n", "Writing HTML to file ../data/html/20032004/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020818.HTM\n", "Writing HTML to file ../data/html/20032004/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020819.HTM\n", "Writing HTML to file ../data/html/20032004/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020820.HTM\n", "Writing HTML to file ../data/html/20032004/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020821.HTM\n", "Writing HTML to file ../data/html/20032004/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020822.HTM\n", "Writing HTML to file ../data/html/20032004/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020823.HTM\n", "Writing HTML to file ../data/html/20032004/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020824.HTM\n", "Writing HTML to file ../data/html/20032004/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020825.HTM\n", "Writing HTML to file ../data/html/20032004/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020826.HTM\n", "Writing HTML to file ../data/html/20032004/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020827.HTM\n", "Writing HTML to file ../data/html/20032004/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020828.HTM\n", "Writing HTML to file ../data/html/20032004/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020829.HTM\n", "Writing HTML to file ../data/html/20032004/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020830.HTM\n", "Writing HTML to file ../data/html/20032004/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020831.HTM\n", "Writing HTML to file ../data/html/20032004/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020832.HTM\n", "Writing HTML to file ../data/html/20032004/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020833.HTM\n", "Writing HTML to file ../data/html/20032004/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020834.HTM\n", "Writing HTML to file ../data/html/20032004/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020835.HTM\n", "Writing HTML to file ../data/html/20032004/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020836.HTM\n", "Writing HTML to file ../data/html/20032004/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020837.HTM\n", "Writing HTML to file ../data/html/20032004/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020838.HTM\n", "Writing HTML to file ../data/html/20032004/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020839.HTM\n", "Writing HTML to file ../data/html/20032004/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020840.HTM\n", "Writing HTML to file ../data/html/20032004/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020841.HTM\n", "Writing HTML to file ../data/html/20032004/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020842.HTM\n", "Writing HTML to file ../data/html/20032004/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020843.HTM\n", "Writing HTML to file ../data/html/20032004/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020844.HTM\n", "Writing HTML to file ../data/html/20032004/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020845.HTM\n", "Writing HTML to file ../data/html/20032004/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020846.HTM\n", "Writing HTML to file ../data/html/20032004/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020847.HTM\n", "Writing HTML to file ../data/html/20032004/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020848.HTM\n", "Writing HTML to file ../data/html/20032004/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020849.HTM\n", "Writing HTML to file ../data/html/20032004/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020850.HTM\n", "Writing HTML to file ../data/html/20032004/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020851.HTM\n", "Writing HTML to file ../data/html/20032004/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020852.HTM\n", "Writing HTML to file ../data/html/20032004/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020853.HTM\n", "Writing HTML to file ../data/html/20032004/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020854.HTM\n", "Writing HTML to file ../data/html/20032004/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020855.HTM\n", "Writing HTML to file ../data/html/20032004/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020856.HTM\n", "Writing HTML to file ../data/html/20032004/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020857.HTM\n", "Writing HTML to file ../data/html/20032004/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020858.HTM\n", "Writing HTML to file ../data/html/20032004/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020859.HTM\n", "Writing HTML to file ../data/html/20032004/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020860.HTM\n", "Writing HTML to file ../data/html/20032004/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020861.HTM\n", "Writing HTML to file ../data/html/20032004/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020862.HTM\n", "Writing HTML to file ../data/html/20032004/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020863.HTM\n", "Writing HTML to file ../data/html/20032004/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020864.HTM\n", "Writing HTML to file ../data/html/20032004/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020865.HTM\n", "Writing HTML to file ../data/html/20032004/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020866.HTM\n", "Writing HTML to file ../data/html/20032004/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020867.HTM\n", "Writing HTML to file ../data/html/20032004/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020868.HTM\n", "Writing HTML to file ../data/html/20032004/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020869.HTM\n", "Writing HTML to file ../data/html/20032004/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020870.HTM\n", "Writing HTML to file ../data/html/20032004/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020871.HTM\n", "Writing HTML to file ../data/html/20032004/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020872.HTM\n", "Writing HTML to file ../data/html/20032004/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020873.HTM\n", "Writing HTML to file ../data/html/20032004/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020874.HTM\n", "Writing HTML to file ../data/html/20032004/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020875.HTM\n", "Writing HTML to file ../data/html/20032004/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020876.HTM\n", "Writing HTML to file ../data/html/20032004/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020877.HTM\n", "Writing HTML to file ../data/html/20032004/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020878.HTM\n", "Writing HTML to file ../data/html/20032004/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020879.HTM\n", "Writing HTML to file ../data/html/20032004/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020880.HTM\n", "Writing HTML to file ../data/html/20032004/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020881.HTM\n", "Writing HTML to file ../data/html/20032004/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020882.HTM\n", "Writing HTML to file ../data/html/20032004/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020883.HTM\n", "Writing HTML to file ../data/html/20032004/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020884.HTM\n", "Writing HTML to file ../data/html/20032004/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020885.HTM\n", "Writing HTML to file ../data/html/20032004/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020886.HTM\n", "Writing HTML to file ../data/html/20032004/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020887.HTM\n", "Writing HTML to file ../data/html/20032004/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020888.HTM\n", "Writing HTML to file ../data/html/20032004/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020889.HTM\n", "Writing HTML to file ../data/html/20032004/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020890.HTM\n", "Writing HTML to file ../data/html/20032004/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020891.HTM\n", "Writing HTML to file ../data/html/20032004/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020892.HTM\n", "Writing HTML to file ../data/html/20032004/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020893.HTM\n", "Writing HTML to file ../data/html/20032004/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020894.HTM\n", "Writing HTML to file ../data/html/20032004/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020895.HTM\n", "Writing HTML to file ../data/html/20032004/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020896.HTM\n", "Writing HTML to file ../data/html/20032004/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020897.HTM\n", "Writing HTML to file ../data/html/20032004/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020898.HTM\n", "Writing HTML to file ../data/html/20032004/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020899.HTM\n", "Writing HTML to file ../data/html/20032004/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020900.HTM\n", "Writing HTML to file ../data/html/20032004/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020901.HTM\n", "Writing HTML to file ../data/html/20032004/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020902.HTM\n", "Writing HTML to file ../data/html/20032004/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020903.HTM\n", "Writing HTML to file ../data/html/20032004/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020904.HTM\n", "Writing HTML to file ../data/html/20032004/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020905.HTM\n", "Writing HTML to file ../data/html/20032004/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020906.HTM\n", "Writing HTML to file ../data/html/20032004/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020907.HTM\n", "Writing HTML to file ../data/html/20032004/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020908.HTM\n", "Writing HTML to file ../data/html/20032004/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020909.HTM\n", "Writing HTML to file ../data/html/20032004/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020910.HTM\n", "Writing HTML to file ../data/html/20032004/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020911.HTM\n", "Writing HTML to file ../data/html/20032004/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020912.HTM\n", "Writing HTML to file ../data/html/20032004/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020913.HTM\n", "Writing HTML to file ../data/html/20032004/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020914.HTM\n", "Writing HTML to file ../data/html/20032004/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020915.HTM\n", "Writing HTML to file ../data/html/20032004/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020916.HTM\n", "Writing HTML to file ../data/html/20032004/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020917.HTM\n", "Writing HTML to file ../data/html/20032004/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020918.HTM\n", "Writing HTML to file ../data/html/20032004/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020919.HTM\n", "Writing HTML to file ../data/html/20032004/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020920.HTM\n", "Writing HTML to file ../data/html/20032004/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020921.HTM\n", "Writing HTML to file ../data/html/20032004/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020922.HTM\n", "Writing HTML to file ../data/html/20032004/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020923.HTM\n", "Writing HTML to file ../data/html/20032004/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020924.HTM\n", "Writing HTML to file ../data/html/20032004/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020925.HTM\n", "Writing HTML to file ../data/html/20032004/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020926.HTM\n", "Writing HTML to file ../data/html/20032004/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020927.HTM\n", "Writing HTML to file ../data/html/20032004/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020928.HTM\n", "Writing HTML to file ../data/html/20032004/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020929.HTM\n", "Writing HTML to file ../data/html/20032004/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020930.HTM\n", "Writing HTML to file ../data/html/20032004/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020931.HTM\n", "Writing HTML to file ../data/html/20032004/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020932.HTM\n", "Writing HTML to file ../data/html/20032004/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020933.HTM\n", "Writing HTML to file ../data/html/20032004/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020934.HTM\n", "Writing HTML to file ../data/html/20032004/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020935.HTM\n", "Writing HTML to file ../data/html/20032004/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020936.HTM\n", "Writing HTML to file ../data/html/20032004/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020937.HTM\n", "Writing HTML to file ../data/html/20032004/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020938.HTM\n", "Writing HTML to file ../data/html/20032004/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020939.HTM\n", "Writing HTML to file ../data/html/20032004/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020940.HTM\n", "Writing HTML to file ../data/html/20032004/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020941.HTM\n", "Writing HTML to file ../data/html/20032004/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020942.HTM\n", "Writing HTML to file ../data/html/20032004/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020943.HTM\n", "Writing HTML to file ../data/html/20032004/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020944.HTM\n", "Writing HTML to file ../data/html/20032004/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020945.HTM\n", "Writing HTML to file ../data/html/20032004/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020946.HTM\n", "Writing HTML to file ../data/html/20032004/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020947.HTM\n", "Writing HTML to file ../data/html/20032004/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020948.HTM\n", "Writing HTML to file ../data/html/20032004/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020949.HTM\n", "Writing HTML to file ../data/html/20032004/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020950.HTM\n", "Writing HTML to file ../data/html/20032004/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020951.HTM\n", "Writing HTML to file ../data/html/20032004/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020952.HTM\n", "Writing HTML to file ../data/html/20032004/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020953.HTM\n", "Writing HTML to file ../data/html/20032004/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020954.HTM\n", "Writing HTML to file ../data/html/20032004/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020955.HTM\n", "Writing HTML to file ../data/html/20032004/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020956.HTM\n", "Writing HTML to file ../data/html/20032004/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020957.HTM\n", "Writing HTML to file ../data/html/20032004/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020958.HTM\n", "Writing HTML to file ../data/html/20032004/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020959.HTM\n", "Writing HTML to file ../data/html/20032004/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020960.HTM\n", "Writing HTML to file ../data/html/20032004/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020961.HTM\n", "Writing HTML to file ../data/html/20032004/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020962.HTM\n", "Writing HTML to file ../data/html/20032004/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020963.HTM\n", "Writing HTML to file ../data/html/20032004/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020964.HTM\n", "Writing HTML to file ../data/html/20032004/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020965.HTM\n", "Writing HTML to file ../data/html/20032004/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020966.HTM\n", "Writing HTML to file ../data/html/20032004/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020967.HTM\n", "Writing HTML to file ../data/html/20032004/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020968.HTM\n", "Writing HTML to file ../data/html/20032004/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020969.HTM\n", "Writing HTML to file ../data/html/20032004/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020970.HTM\n", "Writing HTML to file ../data/html/20032004/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020971.HTM\n", "Writing HTML to file ../data/html/20032004/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020972.HTM\n", "Writing HTML to file ../data/html/20032004/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020973.HTM\n", "Writing HTML to file ../data/html/20032004/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020974.HTM\n", "Writing HTML to file ../data/html/20032004/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020975.HTM\n", "Writing HTML to file ../data/html/20032004/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020976.HTM\n", "Writing HTML to file ../data/html/20032004/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020977.HTM\n", "Writing HTML to file ../data/html/20032004/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020978.HTM\n", "Writing HTML to file ../data/html/20032004/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020979.HTM\n", "Writing HTML to file ../data/html/20032004/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020980.HTM\n", "Writing HTML to file ../data/html/20032004/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020981.HTM\n", "Writing HTML to file ../data/html/20032004/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020982.HTM\n", "Writing HTML to file ../data/html/20032004/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020983.HTM\n", "Writing HTML to file ../data/html/20032004/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020984.HTM\n", "Writing HTML to file ../data/html/20032004/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020985.HTM\n", "Writing HTML to file ../data/html/20032004/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020986.HTM\n", "Writing HTML to file ../data/html/20032004/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020987.HTM\n", "Writing HTML to file ../data/html/20032004/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020988.HTM\n", "Writing HTML to file ../data/html/20032004/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020989.HTM\n", "Writing HTML to file ../data/html/20032004/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020990.HTM\n", "Writing HTML to file ../data/html/20032004/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020991.HTM\n", "Writing HTML to file ../data/html/20032004/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020992.HTM\n", "Writing HTML to file ../data/html/20032004/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020993.HTM\n", "Writing HTML to file ../data/html/20032004/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020994.HTM\n", "Writing HTML to file ../data/html/20032004/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020995.HTM\n", "Writing HTML to file ../data/html/20032004/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020996.HTM\n", "Writing HTML to file ../data/html/20032004/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020997.HTM\n", "Writing HTML to file ../data/html/20032004/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020998.HTM\n", "Writing HTML to file ../data/html/20032004/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020999.HTM\n", "Writing HTML to file ../data/html/20032004/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021000.HTM\n", "Writing HTML to file ../data/html/20032004/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021001.HTM\n", "Writing HTML to file ../data/html/20032004/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021002.HTM\n", "Writing HTML to file ../data/html/20032004/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021003.HTM\n", "Writing HTML to file ../data/html/20032004/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021004.HTM\n", "Writing HTML to file ../data/html/20032004/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021005.HTM\n", "Writing HTML to file ../data/html/20032004/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021006.HTM\n", "Writing HTML to file ../data/html/20032004/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021007.HTM\n", "Writing HTML to file ../data/html/20032004/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021008.HTM\n", "Writing HTML to file ../data/html/20032004/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021009.HTM\n", "Writing HTML to file ../data/html/20032004/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021010.HTM\n", "Writing HTML to file ../data/html/20032004/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021011.HTM\n", "Writing HTML to file ../data/html/20032004/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021012.HTM\n", "Writing HTML to file ../data/html/20032004/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021013.HTM\n", "Writing HTML to file ../data/html/20032004/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021014.HTM\n", "Writing HTML to file ../data/html/20032004/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021015.HTM\n", "Writing HTML to file ../data/html/20032004/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021016.HTM\n", "Writing HTML to file ../data/html/20032004/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021017.HTM\n", "Writing HTML to file ../data/html/20032004/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021018.HTM\n", "Writing HTML to file ../data/html/20032004/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021019.HTM\n", "Writing HTML to file ../data/html/20032004/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021020.HTM\n", "Writing HTML to file ../data/html/20032004/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021021.HTM\n", "Writing HTML to file ../data/html/20032004/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021022.HTM\n", "Writing HTML to file ../data/html/20032004/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021023.HTM\n", "Writing HTML to file ../data/html/20032004/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021024.HTM\n", "Writing HTML to file ../data/html/20032004/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021025.HTM\n", "Writing HTML to file ../data/html/20032004/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021026.HTM\n", "Writing HTML to file ../data/html/20032004/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021027.HTM\n", "Writing HTML to file ../data/html/20032004/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021028.HTM\n", "Writing HTML to file ../data/html/20032004/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021029.HTM\n", "Writing HTML to file ../data/html/20032004/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021030.HTM\n", "Writing HTML to file ../data/html/20032004/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021031.HTM\n", "Writing HTML to file ../data/html/20032004/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021032.HTM\n", "Writing HTML to file ../data/html/20032004/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021033.HTM\n", "Writing HTML to file ../data/html/20032004/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021034.HTM\n", "Writing HTML to file ../data/html/20032004/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021035.HTM\n", "Writing HTML to file ../data/html/20032004/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021036.HTM\n", "Writing HTML to file ../data/html/20032004/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021037.HTM\n", "Writing HTML to file ../data/html/20032004/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021038.HTM\n", "Writing HTML to file ../data/html/20032004/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021039.HTM\n", "Writing HTML to file ../data/html/20032004/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021040.HTM\n", "Writing HTML to file ../data/html/20032004/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021041.HTM\n", "Writing HTML to file ../data/html/20032004/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021042.HTM\n", "Writing HTML to file ../data/html/20032004/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021043.HTM\n", "Writing HTML to file ../data/html/20032004/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021044.HTM\n", "Writing HTML to file ../data/html/20032004/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021045.HTM\n", "Writing HTML to file ../data/html/20032004/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021046.HTM\n", "Writing HTML to file ../data/html/20032004/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021047.HTM\n", "Writing HTML to file ../data/html/20032004/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021048.HTM\n", "Writing HTML to file ../data/html/20032004/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021049.HTM\n", "Writing HTML to file ../data/html/20032004/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021050.HTM\n", "Writing HTML to file ../data/html/20032004/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021051.HTM\n", "Writing HTML to file ../data/html/20032004/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021052.HTM\n", "Writing HTML to file ../data/html/20032004/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021053.HTM\n", "Writing HTML to file ../data/html/20032004/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021054.HTM\n", "Writing HTML to file ../data/html/20032004/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021055.HTM\n", "Writing HTML to file ../data/html/20032004/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021056.HTM\n", "Writing HTML to file ../data/html/20032004/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021057.HTM\n", "Writing HTML to file ../data/html/20032004/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021058.HTM\n", "Writing HTML to file ../data/html/20032004/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021059.HTM\n", "Writing HTML to file ../data/html/20032004/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021060.HTM\n", "Writing HTML to file ../data/html/20032004/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021061.HTM\n", "Writing HTML to file ../data/html/20032004/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021062.HTM\n", "Writing HTML to file ../data/html/20032004/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021063.HTM\n", "Writing HTML to file ../data/html/20032004/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021064.HTM\n", "Writing HTML to file ../data/html/20032004/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021065.HTM\n", "Writing HTML to file ../data/html/20032004/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021066.HTM\n", "Writing HTML to file ../data/html/20032004/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021067.HTM\n", "Writing HTML to file ../data/html/20032004/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021068.HTM\n", "Writing HTML to file ../data/html/20032004/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021069.HTM\n", "Writing HTML to file ../data/html/20032004/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021070.HTM\n", "Writing HTML to file ../data/html/20032004/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021071.HTM\n", "Writing HTML to file ../data/html/20032004/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021072.HTM\n", "Writing HTML to file ../data/html/20032004/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021073.HTM\n", "Writing HTML to file ../data/html/20032004/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021074.HTM\n", "Writing HTML to file ../data/html/20032004/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021075.HTM\n", "Writing HTML to file ../data/html/20032004/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021076.HTM\n", "Writing HTML to file ../data/html/20032004/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021077.HTM\n", "Writing HTML to file ../data/html/20032004/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021078.HTM\n", "Writing HTML to file ../data/html/20032004/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021079.HTM\n", "Writing HTML to file ../data/html/20032004/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021080.HTM\n", "Writing HTML to file ../data/html/20032004/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021081.HTM\n", "Writing HTML to file ../data/html/20032004/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021082.HTM\n", "Writing HTML to file ../data/html/20032004/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021083.HTM\n", "Writing HTML to file ../data/html/20032004/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021084.HTM\n", "Writing HTML to file ../data/html/20032004/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021085.HTM\n", "Writing HTML to file ../data/html/20032004/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021086.HTM\n", "Writing HTML to file ../data/html/20032004/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021087.HTM\n", "Writing HTML to file ../data/html/20032004/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021088.HTM\n", "Writing HTML to file ../data/html/20032004/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021089.HTM\n", "Writing HTML to file ../data/html/20032004/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021090.HTM\n", "Writing HTML to file ../data/html/20032004/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021091.HTM\n", "Writing HTML to file ../data/html/20032004/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021092.HTM\n", "Writing HTML to file ../data/html/20032004/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021093.HTM\n", "Writing HTML to file ../data/html/20032004/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021094.HTM\n", "Writing HTML to file ../data/html/20032004/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021095.HTM\n", "Writing HTML to file ../data/html/20032004/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021096.HTM\n", "Writing HTML to file ../data/html/20032004/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021097.HTM\n", "Writing HTML to file ../data/html/20032004/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021098.HTM\n", "Writing HTML to file ../data/html/20032004/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021099.HTM\n", "Writing HTML to file ../data/html/20032004/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021100.HTM\n", "Writing HTML to file ../data/html/20032004/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021101.HTM\n", "Writing HTML to file ../data/html/20032004/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021102.HTM\n", "Writing HTML to file ../data/html/20032004/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021103.HTM\n", "Writing HTML to file ../data/html/20032004/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021104.HTM\n", "Writing HTML to file ../data/html/20032004/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021105.HTM\n", "Writing HTML to file ../data/html/20032004/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021106.HTM\n", "Writing HTML to file ../data/html/20032004/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021107.HTM\n", "Writing HTML to file ../data/html/20032004/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021108.HTM\n", "Writing HTML to file ../data/html/20032004/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021109.HTM\n", "Writing HTML to file ../data/html/20032004/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021110.HTM\n", "Writing HTML to file ../data/html/20032004/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021111.HTM\n", "Writing HTML to file ../data/html/20032004/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021112.HTM\n", "Writing HTML to file ../data/html/20032004/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021113.HTM\n", "Writing HTML to file ../data/html/20032004/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021114.HTM\n", "Writing HTML to file ../data/html/20032004/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021115.HTM\n", "Writing HTML to file ../data/html/20032004/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021116.HTM\n", "Writing HTML to file ../data/html/20032004/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021117.HTM\n", "Writing HTML to file ../data/html/20032004/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021118.HTM\n", "Writing HTML to file ../data/html/20032004/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021119.HTM\n", "Writing HTML to file ../data/html/20032004/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021120.HTM\n", "Writing HTML to file ../data/html/20032004/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021121.HTM\n", "Writing HTML to file ../data/html/20032004/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021122.HTM\n", "Writing HTML to file ../data/html/20032004/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021123.HTM\n", "Writing HTML to file ../data/html/20032004/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021124.HTM\n", "Writing HTML to file ../data/html/20032004/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021125.HTM\n", "Writing HTML to file ../data/html/20032004/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021126.HTM\n", "Writing HTML to file ../data/html/20032004/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021127.HTM\n", "Writing HTML to file ../data/html/20032004/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021128.HTM\n", "Writing HTML to file ../data/html/20032004/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021129.HTM\n", "Writing HTML to file ../data/html/20032004/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021130.HTM\n", "Writing HTML to file ../data/html/20032004/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021131.HTM\n", "Writing HTML to file ../data/html/20032004/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021132.HTM\n", "Writing HTML to file ../data/html/20032004/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021133.HTM\n", "Writing HTML to file ../data/html/20032004/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021134.HTM\n", "Writing HTML to file ../data/html/20032004/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021135.HTM\n", "Writing HTML to file ../data/html/20032004/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021136.HTM\n", "Writing HTML to file ../data/html/20032004/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021137.HTM\n", "Writing HTML to file ../data/html/20032004/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021138.HTM\n", "Writing HTML to file ../data/html/20032004/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021139.HTM\n", "Writing HTML to file ../data/html/20032004/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021140.HTM\n", "Writing HTML to file ../data/html/20032004/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021141.HTM\n", "Writing HTML to file ../data/html/20032004/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021142.HTM\n", "Writing HTML to file ../data/html/20032004/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021143.HTM\n", "Writing HTML to file ../data/html/20032004/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021144.HTM\n", "Writing HTML to file ../data/html/20032004/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021145.HTM\n", "Writing HTML to file ../data/html/20032004/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021146.HTM\n", "Writing HTML to file ../data/html/20032004/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021147.HTM\n", "Writing HTML to file ../data/html/20032004/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021148.HTM\n", "Writing HTML to file ../data/html/20032004/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021149.HTM\n", "Writing HTML to file ../data/html/20032004/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021150.HTM\n", "Writing HTML to file ../data/html/20032004/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021151.HTM\n", "Writing HTML to file ../data/html/20032004/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021152.HTM\n", "Writing HTML to file ../data/html/20032004/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021153.HTM\n", "Writing HTML to file ../data/html/20032004/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021154.HTM\n", "Writing HTML to file ../data/html/20032004/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021155.HTM\n", "Writing HTML to file ../data/html/20032004/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021156.HTM\n", "Writing HTML to file ../data/html/20032004/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021157.HTM\n", "Writing HTML to file ../data/html/20032004/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021158.HTM\n", "Writing HTML to file ../data/html/20032004/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021159.HTM\n", "Writing HTML to file ../data/html/20032004/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021160.HTM\n", "Writing HTML to file ../data/html/20032004/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021161.HTM\n", "Writing HTML to file ../data/html/20032004/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021162.HTM\n", "Writing HTML to file ../data/html/20032004/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021163.HTM\n", "Writing HTML to file ../data/html/20032004/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021164.HTM\n", "Writing HTML to file ../data/html/20032004/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021165.HTM\n", "Writing HTML to file ../data/html/20032004/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021166.HTM\n", "Writing HTML to file ../data/html/20032004/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021167.HTM\n", "Writing HTML to file ../data/html/20032004/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021168.HTM\n", "Writing HTML to file ../data/html/20032004/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021169.HTM\n", "Writing HTML to file ../data/html/20032004/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021170.HTM\n", "Writing HTML to file ../data/html/20032004/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021171.HTM\n", "Writing HTML to file ../data/html/20032004/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021172.HTM\n", "Writing HTML to file ../data/html/20032004/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021173.HTM\n", "Writing HTML to file ../data/html/20032004/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021174.HTM\n", "Writing HTML to file ../data/html/20032004/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021175.HTM\n", "Writing HTML to file ../data/html/20032004/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021176.HTM\n", "Writing HTML to file ../data/html/20032004/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021177.HTM\n", "Writing HTML to file ../data/html/20032004/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021178.HTM\n", "Writing HTML to file ../data/html/20032004/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021179.HTM\n", "Writing HTML to file ../data/html/20032004/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021180.HTM\n", "Writing HTML to file ../data/html/20032004/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021181.HTM\n", "Writing HTML to file ../data/html/20032004/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021182.HTM\n", "Writing HTML to file ../data/html/20032004/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021183.HTM\n", "Writing HTML to file ../data/html/20032004/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021184.HTM\n", "Writing HTML to file ../data/html/20032004/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021185.HTM\n", "Writing HTML to file ../data/html/20032004/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021186.HTM\n", "Writing HTML to file ../data/html/20032004/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021187.HTM\n", "Writing HTML to file ../data/html/20032004/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021188.HTM\n", "Writing HTML to file ../data/html/20032004/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021189.HTM\n", "Writing HTML to file ../data/html/20032004/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021190.HTM\n", "Writing HTML to file ../data/html/20032004/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021191.HTM\n", "Writing HTML to file ../data/html/20032004/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021192.HTM\n", "Writing HTML to file ../data/html/20032004/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021193.HTM\n", "Writing HTML to file ../data/html/20032004/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021194.HTM\n", "Writing HTML to file ../data/html/20032004/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021195.HTM\n", "Writing HTML to file ../data/html/20032004/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021196.HTM\n", "Writing HTML to file ../data/html/20032004/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021197.HTM\n", "Writing HTML to file ../data/html/20032004/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021198.HTM\n", "Writing HTML to file ../data/html/20032004/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021199.HTM\n", "Writing HTML to file ../data/html/20032004/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021200.HTM\n", "Writing HTML to file ../data/html/20032004/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021201.HTM\n", "Writing HTML to file ../data/html/20032004/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021202.HTM\n", "Writing HTML to file ../data/html/20032004/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021203.HTM\n", "Writing HTML to file ../data/html/20032004/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021204.HTM\n", "Writing HTML to file ../data/html/20032004/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021205.HTM\n", "Writing HTML to file ../data/html/20032004/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021206.HTM\n", "Writing HTML to file ../data/html/20032004/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021207.HTM\n", "Writing HTML to file ../data/html/20032004/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021208.HTM\n", "Writing HTML to file ../data/html/20032004/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021209.HTM\n", "Writing HTML to file ../data/html/20032004/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021210.HTM\n", "Writing HTML to file ../data/html/20032004/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021211.HTM\n", "Writing HTML to file ../data/html/20032004/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021212.HTM\n", "Writing HTML to file ../data/html/20032004/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021213.HTM\n", "Writing HTML to file ../data/html/20032004/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021214.HTM\n", "Writing HTML to file ../data/html/20032004/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021215.HTM\n", "Writing HTML to file ../data/html/20032004/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021216.HTM\n", "Writing HTML to file ../data/html/20032004/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021217.HTM\n", "Writing HTML to file ../data/html/20032004/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021218.HTM\n", "Writing HTML to file ../data/html/20032004/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021219.HTM\n", "Writing HTML to file ../data/html/20032004/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021220.HTM\n", "Writing HTML to file ../data/html/20032004/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021221.HTM\n", "Writing HTML to file ../data/html/20032004/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021222.HTM\n", "Writing HTML to file ../data/html/20032004/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021223.HTM\n", "Writing HTML to file ../data/html/20032004/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021224.HTM\n", "Writing HTML to file ../data/html/20032004/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021225.HTM\n", "Writing HTML to file ../data/html/20032004/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021226.HTM\n", "Writing HTML to file ../data/html/20032004/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021227.HTM\n", "Writing HTML to file ../data/html/20032004/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021228.HTM\n", "Writing HTML to file ../data/html/20032004/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021229.HTM\n", "Writing HTML to file ../data/html/20032004/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021230.HTM\n", "Writing HTML to file ../data/html/20032004/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021231.HTM\n" ] }, { "ename": "NameError", "evalue": "name 'download_page' is not defined", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mgames\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m5000\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mdownload_game_range\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl_tempalte\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseasons\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgames\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;32m\u001b[0m in \u001b[0;36mdownload_game_range\u001b[0;34m(url_template, seasons, games)\u001b[0m\n\u001b[1;32m 45\u001b[0m page_text = get_page(\n\u001b[1;32m 46\u001b[0m \u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 47\u001b[0;31m \u001b[0murl_template\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mseason\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgame_num\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 48\u001b[0m )\n\u001b[1;32m 49\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mpage_text\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_page\u001b[0;34m(sess, url, tries)\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0msess\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0minit_sess\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 21\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mdownload_page\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtries\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 22\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 23\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mNameError\u001b[0m: name 'download_page' is not defined" ] } ], "source": [ "# url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "# seasons = ['20032004']\n", "# games = list(range(1, 5000))\n", "\n", "# download_game_range(url_tempalte, seasons, games)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " - For 2003/2004 we got up to http://www.nhl.com/scores/htmlreports/20032004/PL021231.HTM" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 08:25:27.403023\n", "Making dirs ../data/html/20052006\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020001.HTM\n", "Writing HTML to file ../data/html/20052006/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020002.HTM\n", "Writing HTML to file ../data/html/20052006/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020003.HTM\n", "Writing HTML to file ../data/html/20052006/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020004.HTM\n", "Writing HTML to file ../data/html/20052006/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020005.HTM\n", "Writing HTML to file ../data/html/20052006/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020006.HTM\n", "Writing HTML to file ../data/html/20052006/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020007.HTM\n", "Writing HTML to file ../data/html/20052006/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020008.HTM\n", "Writing HTML to file ../data/html/20052006/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020009.HTM\n", "Writing HTML to file ../data/html/20052006/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020010.HTM\n", "Writing HTML to file ../data/html/20052006/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020011.HTM\n", "Writing HTML to file ../data/html/20052006/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020012.HTM\n", "Writing HTML to file ../data/html/20052006/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020013.HTM\n", "Writing HTML to file ../data/html/20052006/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020014.HTM\n", "Writing HTML to file ../data/html/20052006/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020015.HTM\n", "Writing HTML to file ../data/html/20052006/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020016.HTM\n", "Writing HTML to file ../data/html/20052006/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020017.HTM\n", "Writing HTML to file ../data/html/20052006/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020018.HTM\n", "Writing HTML to file ../data/html/20052006/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020019.HTM\n", "Writing HTML to file ../data/html/20052006/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020020.HTM\n", "Writing HTML to file ../data/html/20052006/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020021.HTM\n", "Writing HTML to file ../data/html/20052006/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020022.HTM\n", "Writing HTML to file ../data/html/20052006/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020023.HTM\n", "Writing HTML to file ../data/html/20052006/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020024.HTM\n", "Writing HTML to file ../data/html/20052006/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020025.HTM\n", "Writing HTML to file ../data/html/20052006/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020026.HTM\n", "Writing HTML to file ../data/html/20052006/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020027.HTM\n", "Writing HTML to file ../data/html/20052006/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020028.HTM\n", "Writing HTML to file ../data/html/20052006/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020029.HTM\n", "Writing HTML to file ../data/html/20052006/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020030.HTM\n", "Writing HTML to file ../data/html/20052006/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020031.HTM\n", "Writing HTML to file ../data/html/20052006/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020032.HTM\n", "Writing HTML to file ../data/html/20052006/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020033.HTM\n", "Writing HTML to file ../data/html/20052006/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020034.HTM\n", "Writing HTML to file ../data/html/20052006/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020035.HTM\n", "Writing HTML to file ../data/html/20052006/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020036.HTM\n", "Writing HTML to file ../data/html/20052006/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020037.HTM\n", "Writing HTML to file ../data/html/20052006/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020038.HTM\n", "Writing HTML to file ../data/html/20052006/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020039.HTM\n", "Writing HTML to file ../data/html/20052006/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020040.HTM\n", "Writing HTML to file ../data/html/20052006/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020041.HTM\n", "Writing HTML to file ../data/html/20052006/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020042.HTM\n", "Writing HTML to file ../data/html/20052006/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020043.HTM\n", "Writing HTML to file ../data/html/20052006/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020044.HTM\n", "Writing HTML to file ../data/html/20052006/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020045.HTM\n", "Writing HTML to file ../data/html/20052006/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020046.HTM\n", "Writing HTML to file ../data/html/20052006/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020047.HTM\n", "Writing HTML to file ../data/html/20052006/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020048.HTM\n", "Writing HTML to file ../data/html/20052006/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020049.HTM\n", "Writing HTML to file ../data/html/20052006/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020050.HTM\n", "Writing HTML to file ../data/html/20052006/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020051.HTM\n", "Writing HTML to file ../data/html/20052006/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020052.HTM\n", "Writing HTML to file ../data/html/20052006/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020053.HTM\n", "Writing HTML to file ../data/html/20052006/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020054.HTM\n", "Writing HTML to file ../data/html/20052006/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020055.HTM\n", "Writing HTML to file ../data/html/20052006/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020056.HTM\n", "Writing HTML to file ../data/html/20052006/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020057.HTM\n", "Writing HTML to file ../data/html/20052006/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020058.HTM\n", "Writing HTML to file ../data/html/20052006/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020059.HTM\n", "Writing HTML to file ../data/html/20052006/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020060.HTM\n", "Writing HTML to file ../data/html/20052006/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020061.HTM\n", "Writing HTML to file ../data/html/20052006/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020062.HTM\n", "Writing HTML to file ../data/html/20052006/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020063.HTM\n", "Writing HTML to file ../data/html/20052006/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020064.HTM\n", "Writing HTML to file ../data/html/20052006/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020065.HTM\n", "Writing HTML to file ../data/html/20052006/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020066.HTM\n", "Writing HTML to file ../data/html/20052006/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020067.HTM\n", "Writing HTML to file ../data/html/20052006/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020068.HTM\n", "Writing HTML to file ../data/html/20052006/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020069.HTM\n", "Writing HTML to file ../data/html/20052006/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020070.HTM\n", "Writing HTML to file ../data/html/20052006/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020071.HTM\n", "Writing HTML to file ../data/html/20052006/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020072.HTM\n", "Writing HTML to file ../data/html/20052006/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020073.HTM\n", "Writing HTML to file ../data/html/20052006/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020074.HTM\n", "Writing HTML to file ../data/html/20052006/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020075.HTM\n", "Writing HTML to file ../data/html/20052006/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020076.HTM\n", "Writing HTML to file ../data/html/20052006/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020077.HTM\n", "Writing HTML to file ../data/html/20052006/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020078.HTM\n", "Writing HTML to file ../data/html/20052006/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020079.HTM\n", "Writing HTML to file ../data/html/20052006/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020080.HTM\n", "Writing HTML to file ../data/html/20052006/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020081.HTM\n", "Writing HTML to file ../data/html/20052006/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020082.HTM\n", "Writing HTML to file ../data/html/20052006/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020083.HTM\n", "Writing HTML to file ../data/html/20052006/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020084.HTM\n", "Writing HTML to file ../data/html/20052006/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020085.HTM\n", "Writing HTML to file ../data/html/20052006/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020086.HTM\n", "Writing HTML to file ../data/html/20052006/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020087.HTM\n", "Writing HTML to file ../data/html/20052006/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020088.HTM\n", "Writing HTML to file ../data/html/20052006/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020089.HTM\n", "Writing HTML to file ../data/html/20052006/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020090.HTM\n", "Writing HTML to file ../data/html/20052006/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020091.HTM\n", "Writing HTML to file ../data/html/20052006/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020092.HTM\n", "Writing HTML to file ../data/html/20052006/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020093.HTM\n", "Writing HTML to file ../data/html/20052006/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020094.HTM\n", "Writing HTML to file ../data/html/20052006/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020095.HTM\n", "Writing HTML to file ../data/html/20052006/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020096.HTM\n", "Writing HTML to file ../data/html/20052006/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020097.HTM\n", "Writing HTML to file ../data/html/20052006/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020098.HTM\n", "Writing HTML to file ../data/html/20052006/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020099.HTM\n", "Writing HTML to file ../data/html/20052006/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020100.HTM\n", "Writing HTML to file ../data/html/20052006/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020101.HTM\n", "Writing HTML to file ../data/html/20052006/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020102.HTM\n", "Writing HTML to file ../data/html/20052006/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020103.HTM\n", "Writing HTML to file ../data/html/20052006/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020104.HTM\n", "Writing HTML to file ../data/html/20052006/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020105.HTM\n", "Writing HTML to file ../data/html/20052006/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020106.HTM\n", "Writing HTML to file ../data/html/20052006/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020107.HTM\n", "Writing HTML to file ../data/html/20052006/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020108.HTM\n", "Writing HTML to file ../data/html/20052006/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020109.HTM\n", "Writing HTML to file ../data/html/20052006/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020110.HTM\n", "Writing HTML to file ../data/html/20052006/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020111.HTM\n", "Writing HTML to file ../data/html/20052006/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020112.HTM\n", "Writing HTML to file ../data/html/20052006/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020113.HTM\n", "Writing HTML to file ../data/html/20052006/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020114.HTM\n", "Writing HTML to file ../data/html/20052006/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020115.HTM\n", "Writing HTML to file ../data/html/20052006/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020116.HTM\n", "Writing HTML to file ../data/html/20052006/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020117.HTM\n", "Writing HTML to file ../data/html/20052006/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020118.HTM\n", "Writing HTML to file ../data/html/20052006/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020119.HTM\n", "Writing HTML to file ../data/html/20052006/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020120.HTM\n", "Writing HTML to file ../data/html/20052006/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020121.HTM\n", "Writing HTML to file ../data/html/20052006/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020122.HTM\n", "Writing HTML to file ../data/html/20052006/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020123.HTM\n", "Writing HTML to file ../data/html/20052006/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020124.HTM\n", "Writing HTML to file ../data/html/20052006/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020125.HTM\n", "Writing HTML to file ../data/html/20052006/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020126.HTM\n", "Writing HTML to file ../data/html/20052006/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Scrape failed at URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Season = 20052006\n", "Max game = 126\n", "Making dirs ../data/html/20062007\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020001.HTM\n", "Writing HTML to file ../data/html/20062007/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020002.HTM\n", "Writing HTML to file ../data/html/20062007/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020003.HTM\n", "Writing HTML to file ../data/html/20062007/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020004.HTM\n", "Writing HTML to file ../data/html/20062007/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020005.HTM\n", "Writing HTML to file ../data/html/20062007/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020006.HTM\n", "Writing HTML to file ../data/html/20062007/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020007.HTM\n", "Writing HTML to file ../data/html/20062007/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020008.HTM\n", "Writing HTML to file ../data/html/20062007/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020009.HTM\n", "Writing HTML to file ../data/html/20062007/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020010.HTM\n", "Writing HTML to file ../data/html/20062007/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020011.HTM\n", "Writing HTML to file ../data/html/20062007/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020012.HTM\n", "Writing HTML to file ../data/html/20062007/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020013.HTM\n", "Writing HTML to file ../data/html/20062007/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020014.HTM\n", "Writing HTML to file ../data/html/20062007/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020015.HTM\n", "Writing HTML to file ../data/html/20062007/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020016.HTM\n", "Writing HTML to file ../data/html/20062007/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020017.HTM\n", "Writing HTML to file ../data/html/20062007/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020018.HTM\n", "Writing HTML to file ../data/html/20062007/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020019.HTM\n", "Writing HTML to file ../data/html/20062007/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020020.HTM\n", "Writing HTML to file ../data/html/20062007/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020021.HTM\n", "Writing HTML to file ../data/html/20062007/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020022.HTM\n", "Writing HTML to file ../data/html/20062007/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020023.HTM\n", "Writing HTML to file ../data/html/20062007/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020024.HTM\n", "Writing HTML to file ../data/html/20062007/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020025.HTM\n", "Writing HTML to file ../data/html/20062007/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020026.HTM\n", "Writing HTML to file ../data/html/20062007/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020027.HTM\n", "Writing HTML to file ../data/html/20062007/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020028.HTM\n", "Writing HTML to file ../data/html/20062007/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020029.HTM\n", "Writing HTML to file ../data/html/20062007/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020030.HTM\n", "Writing HTML to file ../data/html/20062007/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020031.HTM\n", "Writing HTML to file ../data/html/20062007/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020032.HTM\n", "Writing HTML to file ../data/html/20062007/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020033.HTM\n", "Writing HTML to file ../data/html/20062007/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020034.HTM\n", "Writing HTML to file ../data/html/20062007/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020035.HTM\n", "Writing HTML to file ../data/html/20062007/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020036.HTM\n", "Writing HTML to file ../data/html/20062007/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020037.HTM\n", "Writing HTML to file ../data/html/20062007/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020038.HTM\n", "Writing HTML to file ../data/html/20062007/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020039.HTM\n", "Writing HTML to file ../data/html/20062007/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020040.HTM\n", "Writing HTML to file ../data/html/20062007/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020041.HTM\n", "Writing HTML to file ../data/html/20062007/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020042.HTM\n", "Writing HTML to file ../data/html/20062007/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020043.HTM\n", "Writing HTML to file ../data/html/20062007/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020044.HTM\n", "Writing HTML to file ../data/html/20062007/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020045.HTM\n", "Writing HTML to file ../data/html/20062007/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020046.HTM\n", "Writing HTML to file ../data/html/20062007/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020047.HTM\n", "Writing HTML to file ../data/html/20062007/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020048.HTM\n", "Writing HTML to file ../data/html/20062007/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020049.HTM\n", "Writing HTML to file ../data/html/20062007/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020050.HTM\n", "Writing HTML to file ../data/html/20062007/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020051.HTM\n", "Writing HTML to file ../data/html/20062007/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020052.HTM\n", "Writing HTML to file ../data/html/20062007/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020053.HTM\n", "Writing HTML to file ../data/html/20062007/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020054.HTM\n", "Writing HTML to file ../data/html/20062007/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020055.HTM\n", "Writing HTML to file ../data/html/20062007/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020056.HTM\n", "Writing HTML to file ../data/html/20062007/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020057.HTM\n", "Writing HTML to file ../data/html/20062007/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020058.HTM\n", "Writing HTML to file ../data/html/20062007/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020059.HTM\n", "Writing HTML to file ../data/html/20062007/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020060.HTM\n", "Writing HTML to file ../data/html/20062007/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020061.HTM\n", "Writing HTML to file ../data/html/20062007/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020062.HTM\n", "Writing HTML to file ../data/html/20062007/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020063.HTM\n", "Writing HTML to file ../data/html/20062007/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020064.HTM\n", "Writing HTML to file ../data/html/20062007/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020065.HTM\n", "Writing HTML to file ../data/html/20062007/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020066.HTM\n", "Writing HTML to file ../data/html/20062007/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020067.HTM\n", "Writing HTML to file ../data/html/20062007/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020068.HTM\n", "Writing HTML to file ../data/html/20062007/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020069.HTM\n", "Writing HTML to file ../data/html/20062007/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020070.HTM\n", "Writing HTML to file ../data/html/20062007/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020071.HTM\n", "Writing HTML to file ../data/html/20062007/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020072.HTM\n", "Writing HTML to file ../data/html/20062007/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020073.HTM\n", "Writing HTML to file ../data/html/20062007/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020074.HTM\n", "Writing HTML to file ../data/html/20062007/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020075.HTM\n", "Writing HTML to file ../data/html/20062007/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020076.HTM\n", "Writing HTML to file ../data/html/20062007/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020077.HTM\n", "Writing HTML to file ../data/html/20062007/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020078.HTM\n", "Writing HTML to file ../data/html/20062007/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020079.HTM\n", "Writing HTML to file ../data/html/20062007/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020080.HTM\n", "Writing HTML to file ../data/html/20062007/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020081.HTM\n", "Writing HTML to file ../data/html/20062007/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020082.HTM\n", "Writing HTML to file ../data/html/20062007/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020083.HTM\n", "Writing HTML to file ../data/html/20062007/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020084.HTM\n", "Writing HTML to file ../data/html/20062007/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020085.HTM\n", "Writing HTML to file ../data/html/20062007/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020086.HTM\n", "Writing HTML to file ../data/html/20062007/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020087.HTM\n", "Writing HTML to file ../data/html/20062007/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020088.HTM\n", "Writing HTML to file ../data/html/20062007/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020089.HTM\n", "Writing HTML to file ../data/html/20062007/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020090.HTM\n", "Writing HTML to file ../data/html/20062007/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020091.HTM\n", "Writing HTML to file ../data/html/20062007/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020092.HTM\n", "Writing HTML to file ../data/html/20062007/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020093.HTM\n", "Writing HTML to file ../data/html/20062007/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020094.HTM\n", "Writing HTML to file ../data/html/20062007/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020095.HTM\n", "Writing HTML to file ../data/html/20062007/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020096.HTM\n", "Writing HTML to file ../data/html/20062007/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020097.HTM\n", "Writing HTML to file ../data/html/20062007/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020098.HTM\n", "Writing HTML to file ../data/html/20062007/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020099.HTM\n", "Writing HTML to file ../data/html/20062007/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020100.HTM\n", "Writing HTML to file ../data/html/20062007/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020101.HTM\n", "Writing HTML to file ../data/html/20062007/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020102.HTM\n", "Writing HTML to file ../data/html/20062007/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020103.HTM\n", "Writing HTML to file ../data/html/20062007/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020104.HTM\n", "Writing HTML to file ../data/html/20062007/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020105.HTM\n", "Writing HTML to file ../data/html/20062007/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020106.HTM\n", "Writing HTML to file ../data/html/20062007/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020107.HTM\n", "Writing HTML to file ../data/html/20062007/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020108.HTM\n", "Writing HTML to file ../data/html/20062007/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020109.HTM\n", "Writing HTML to file ../data/html/20062007/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020110.HTM\n", "Writing HTML to file ../data/html/20062007/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020111.HTM\n", "Writing HTML to file ../data/html/20062007/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020112.HTM\n", "Writing HTML to file ../data/html/20062007/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020113.HTM\n", "Writing HTML to file ../data/html/20062007/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020114.HTM\n", "Writing HTML to file ../data/html/20062007/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020115.HTM\n", "Writing HTML to file ../data/html/20062007/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020116.HTM\n", "Writing HTML to file ../data/html/20062007/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020117.HTM\n", "Writing HTML to file ../data/html/20062007/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020118.HTM\n", "Writing HTML to file ../data/html/20062007/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020119.HTM\n", "Writing HTML to file ../data/html/20062007/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020120.HTM\n", "Writing HTML to file ../data/html/20062007/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020121.HTM\n", "Writing HTML to file ../data/html/20062007/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020122.HTM\n", "Writing HTML to file ../data/html/20062007/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020123.HTM\n", "Writing HTML to file ../data/html/20062007/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020124.HTM\n", "Writing HTML to file ../data/html/20062007/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020125.HTM\n", "Writing HTML to file ../data/html/20062007/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020126.HTM\n", "Writing HTML to file ../data/html/20062007/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020127.HTM\n", "Writing HTML to file ../data/html/20062007/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020128.HTM\n", "Writing HTML to file ../data/html/20062007/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020129.HTM\n", "Writing HTML to file ../data/html/20062007/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020130.HTM\n", "Writing HTML to file ../data/html/20062007/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020131.HTM\n", "Writing HTML to file ../data/html/20062007/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020132.HTM\n", "Writing HTML to file ../data/html/20062007/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020133.HTM\n", "Writing HTML to file ../data/html/20062007/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020134.HTM\n", "Writing HTML to file ../data/html/20062007/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020135.HTM\n", "Writing HTML to file ../data/html/20062007/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020136.HTM\n", "Writing HTML to file ../data/html/20062007/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020137.HTM\n", "Writing HTML to file ../data/html/20062007/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020138.HTM\n", "Writing HTML to file ../data/html/20062007/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020139.HTM\n", "Writing HTML to file ../data/html/20062007/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020140.HTM\n", "Writing HTML to file ../data/html/20062007/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020141.HTM\n", "Writing HTML to file ../data/html/20062007/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020142.HTM\n", "Writing HTML to file ../data/html/20062007/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020143.HTM\n", "Writing HTML to file ../data/html/20062007/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020144.HTM\n", "Writing HTML to file ../data/html/20062007/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020145.HTM\n", "Writing HTML to file ../data/html/20062007/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020146.HTM\n", "Writing HTML to file ../data/html/20062007/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020147.HTM\n", "Writing HTML to file ../data/html/20062007/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020148.HTM\n", "Writing HTML to file ../data/html/20062007/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020149.HTM\n", "Writing HTML to file ../data/html/20062007/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020150.HTM\n", "Writing HTML to file ../data/html/20062007/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020151.HTM\n", "Writing HTML to file ../data/html/20062007/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020152.HTM\n", "Writing HTML to file ../data/html/20062007/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020153.HTM\n", "Writing HTML to file ../data/html/20062007/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020154.HTM\n", "Writing HTML to file ../data/html/20062007/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020155.HTM\n", "Writing HTML to file ../data/html/20062007/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020156.HTM\n", "Writing HTML to file ../data/html/20062007/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020157.HTM\n", "Writing HTML to file ../data/html/20062007/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020158.HTM\n", "Writing HTML to file ../data/html/20062007/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020159.HTM\n", "Writing HTML to file ../data/html/20062007/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020160.HTM\n", "Writing HTML to file ../data/html/20062007/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020161.HTM\n", "Writing HTML to file ../data/html/20062007/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020162.HTM\n", "Writing HTML to file ../data/html/20062007/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020163.HTM\n", "Writing HTML to file ../data/html/20062007/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020164.HTM\n", "Writing HTML to file ../data/html/20062007/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020165.HTM\n", "Writing HTML to file ../data/html/20062007/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020166.HTM\n", "Writing HTML to file ../data/html/20062007/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020167.HTM\n", "Writing HTML to file ../data/html/20062007/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020168.HTM\n", "Writing HTML to file ../data/html/20062007/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020169.HTM\n", "Writing HTML to file ../data/html/20062007/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020170.HTM\n", "Writing HTML to file ../data/html/20062007/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020171.HTM\n", "Writing HTML to file ../data/html/20062007/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020172.HTM\n", "Writing HTML to file ../data/html/20062007/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020173.HTM\n", "Writing HTML to file ../data/html/20062007/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020174.HTM\n", "Writing HTML to file ../data/html/20062007/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020175.HTM\n", "Writing HTML to file ../data/html/20062007/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020176.HTM\n", "Writing HTML to file ../data/html/20062007/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020177.HTM\n", "Writing HTML to file ../data/html/20062007/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020178.HTM\n", "Writing HTML to file ../data/html/20062007/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020179.HTM\n", "Writing HTML to file ../data/html/20062007/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020180.HTM\n", "Writing HTML to file ../data/html/20062007/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020181.HTM\n", "Writing HTML to file ../data/html/20062007/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020182.HTM\n", "Writing HTML to file ../data/html/20062007/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020183.HTM\n", "Writing HTML to file ../data/html/20062007/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020184.HTM\n", "Writing HTML to file ../data/html/20062007/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020185.HTM\n", "Writing HTML to file ../data/html/20062007/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020186.HTM\n", "Writing HTML to file ../data/html/20062007/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020187.HTM\n", "Writing HTML to file ../data/html/20062007/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020188.HTM\n", "Writing HTML to file ../data/html/20062007/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020189.HTM\n", "Writing HTML to file ../data/html/20062007/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020190.HTM\n", "Writing HTML to file ../data/html/20062007/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020191.HTM\n", "Writing HTML to file ../data/html/20062007/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020192.HTM\n", "Writing HTML to file ../data/html/20062007/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020193.HTM\n", "Writing HTML to file ../data/html/20062007/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020194.HTM\n", "Writing HTML to file ../data/html/20062007/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020195.HTM\n", "Writing HTML to file ../data/html/20062007/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020196.HTM\n", "Writing HTML to file ../data/html/20062007/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020197.HTM\n", "Writing HTML to file ../data/html/20062007/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020198.HTM\n", "Writing HTML to file ../data/html/20062007/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020199.HTM\n", "Writing HTML to file ../data/html/20062007/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020200.HTM\n", "Writing HTML to file ../data/html/20062007/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020201.HTM\n", "Writing HTML to file ../data/html/20062007/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020202.HTM\n", "Writing HTML to file ../data/html/20062007/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020203.HTM\n", "Writing HTML to file ../data/html/20062007/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020204.HTM\n", "Writing HTML to file ../data/html/20062007/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020205.HTM\n", "Writing HTML to file ../data/html/20062007/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020206.HTM\n", "Writing HTML to file ../data/html/20062007/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020207.HTM\n", "Writing HTML to file ../data/html/20062007/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020208.HTM\n", "Writing HTML to file ../data/html/20062007/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020209.HTM\n", "Writing HTML to file ../data/html/20062007/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020210.HTM\n", "Writing HTML to file ../data/html/20062007/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020211.HTM\n", "Writing HTML to file ../data/html/20062007/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020212.HTM\n", "Writing HTML to file ../data/html/20062007/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020213.HTM\n", "Writing HTML to file ../data/html/20062007/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020214.HTM\n", "Writing HTML to file ../data/html/20062007/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020215.HTM\n", "Writing HTML to file ../data/html/20062007/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020216.HTM\n", "Writing HTML to file ../data/html/20062007/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020217.HTM\n", "Writing HTML to file ../data/html/20062007/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020218.HTM\n", "Writing HTML to file ../data/html/20062007/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020219.HTM\n", "Writing HTML to file ../data/html/20062007/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020220.HTM\n", "Writing HTML to file ../data/html/20062007/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020221.HTM\n", "Writing HTML to file ../data/html/20062007/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020222.HTM\n", "Writing HTML to file ../data/html/20062007/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020223.HTM\n", "Writing HTML to file ../data/html/20062007/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020224.HTM\n", "Writing HTML to file ../data/html/20062007/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020225.HTM\n", "Writing HTML to file ../data/html/20062007/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020226.HTM\n", "Writing HTML to file ../data/html/20062007/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020227.HTM\n", "Writing HTML to file ../data/html/20062007/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020228.HTM\n", "Writing HTML to file ../data/html/20062007/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020229.HTM\n", "Writing HTML to file ../data/html/20062007/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020230.HTM\n", "Writing HTML to file ../data/html/20062007/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020231.HTM\n", "Writing HTML to file ../data/html/20062007/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020232.HTM\n", "Writing HTML to file ../data/html/20062007/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020233.HTM\n", "Writing HTML to file ../data/html/20062007/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020234.HTM\n", "Writing HTML to file ../data/html/20062007/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020235.HTM\n", "Writing HTML to file ../data/html/20062007/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020236.HTM\n", "Writing HTML to file ../data/html/20062007/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020237.HTM\n", "Writing HTML to file ../data/html/20062007/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020238.HTM\n", "Writing HTML to file ../data/html/20062007/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020239.HTM\n", "Writing HTML to file ../data/html/20062007/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020240.HTM\n", "Writing HTML to file ../data/html/20062007/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020241.HTM\n", "Writing HTML to file ../data/html/20062007/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020242.HTM\n", "Writing HTML to file ../data/html/20062007/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020243.HTM\n", "Writing HTML to file ../data/html/20062007/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020244.HTM\n", "Writing HTML to file ../data/html/20062007/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020245.HTM\n", "Writing HTML to file ../data/html/20062007/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020246.HTM\n", "Writing HTML to file ../data/html/20062007/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020247.HTM\n", "Writing HTML to file ../data/html/20062007/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020248.HTM\n", "Writing HTML to file ../data/html/20062007/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020249.HTM\n", "Writing HTML to file ../data/html/20062007/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020250.HTM\n", "Writing HTML to file ../data/html/20062007/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020251.HTM\n", "Writing HTML to file ../data/html/20062007/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020252.HTM\n", "Writing HTML to file ../data/html/20062007/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020253.HTM\n", "Writing HTML to file ../data/html/20062007/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020254.HTM\n", "Writing HTML to file ../data/html/20062007/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020255.HTM\n", "Writing HTML to file ../data/html/20062007/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020256.HTM\n", "Writing HTML to file ../data/html/20062007/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020257.HTM\n", "Writing HTML to file ../data/html/20062007/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020258.HTM\n", "Writing HTML to file ../data/html/20062007/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020259.HTM\n" ] }, { "ename": "ConnectionError", "evalue": "('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mConnectionResetError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 599\u001b[0m \u001b[0mbody\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mbody\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mheaders\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 600\u001b[0;31m chunked=chunked)\n\u001b[0m\u001b[1;32m 601\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;31m# otherwise it looks like a programming error was the cause.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mraise_from\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mSocketTimeout\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mBaseSSLError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mraise_from\u001b[0;34m(value, from_value)\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 379\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 380\u001b[0;31m \u001b[0mhttplib_response\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mconn\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 381\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1320\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1321\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1322\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 295\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 296\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 297\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 257\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 258\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 588\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 589\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 590\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mConnectionResetError\u001b[0m: [Errno 54] Connection reset by peer", "\nDuring handling of the above exception, another exception occurred:\n", "\u001b[0;31mProtocolError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/requests/adapters.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 448\u001b[0m \u001b[0mretries\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmax_retries\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 449\u001b[0;31m \u001b[0mtimeout\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 450\u001b[0m )\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 637\u001b[0m retries = retries.increment(method, url, error=e, _pool=self,\n\u001b[0;32m--> 638\u001b[0;31m _stacktrace=sys.exc_info()[2])\n\u001b[0m\u001b[1;32m 639\u001b[0m \u001b[0mretries\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/util/retry.py\u001b[0m in \u001b[0;36mincrement\u001b[0;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[1;32m 366\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mread\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mFalse\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_is_method_retryable\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 367\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merror\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0merror\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0m_stacktrace\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 368\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mread\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mreraise\u001b[0;34m(tp, value, tb)\u001b[0m\n\u001b[1;32m 684\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__traceback__\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mtb\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 685\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwith_traceback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 686\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[1;32m 599\u001b[0m \u001b[0mbody\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mbody\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mheaders\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 600\u001b[0;31m chunked=chunked)\n\u001b[0m\u001b[1;32m 601\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;31m# otherwise it looks like a programming error was the cause.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0msix\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mraise_from\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mSocketTimeout\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mBaseSSLError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mSocketError\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/packages/six.py\u001b[0m in \u001b[0;36mraise_from\u001b[0;34m(value, from_value)\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/urllib3/connectionpool.py\u001b[0m in \u001b[0;36m_make_request\u001b[0;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[1;32m 379\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 380\u001b[0;31m \u001b[0mhttplib_response\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mconn\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 381\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1320\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1321\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1322\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 295\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 296\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 297\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 257\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 258\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 588\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 589\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 590\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mProtocolError\u001b[0m: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))", "\nDuring handling of the above exception, another exception occurred:\n", "\u001b[0;31mConnectionError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mgames\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m5000\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mdownload_game_range\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl_tempalte\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseasons\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgames\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;32m\u001b[0m in \u001b[0;36mdownload_game_range\u001b[0;34m(url_template, seasons, games)\u001b[0m\n\u001b[1;32m 45\u001b[0m page_text = get_page(\n\u001b[1;32m 46\u001b[0m \u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 47\u001b[0;31m \u001b[0murl_template\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mseason\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgame_num\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 48\u001b[0m )\n\u001b[1;32m 49\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mpage_text\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_page\u001b[0;34m(sess, url, tries)\u001b[0m\n\u001b[1;32m 15\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mf'Requesting HTML for URL = {url}'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 17\u001b[0;31m \u001b[0mpage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msess\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 18\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstatus_code\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0;36m200\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, url, **kwargs)\u001b[0m\n\u001b[1;32m 544\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 545\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msetdefault\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'allow_redirects'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 546\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'GET'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 547\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 548\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0moptions\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36mrequest\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 531\u001b[0m }\n\u001b[1;32m 532\u001b[0m \u001b[0msend_kwargs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupdate\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msettings\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 533\u001b[0;31m \u001b[0mresp\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mprep\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0msend_kwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 534\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 535\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/requests/sessions.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, **kwargs)\u001b[0m\n\u001b[1;32m 644\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 645\u001b[0m \u001b[0;31m# Send the request\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 646\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0madapter\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 647\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 648\u001b[0m \u001b[0;31m# Total elapsed time of the request (approximately)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/anaconda3/lib/python3.7/site-packages/requests/adapters.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 496\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 497\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mProtocolError\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msocket\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0merror\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0merr\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 498\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrequest\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 499\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 500\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mMaxRetryError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mConnectionError\u001b[0m: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))" ] } ], "source": [ "# url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "# seasons = ['20052006']\n", "# games = list(range(1, 5000))\n", "\n", "# download_game_range(url_tempalte, seasons, games)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 10:45:25.962775\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020001.HTM\n", "Writing HTML to file ../data/html/20062007/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020002.HTM\n", "Writing HTML to file ../data/html/20062007/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020003.HTM\n", "Writing HTML to file ../data/html/20062007/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020004.HTM\n", "Writing HTML to file ../data/html/20062007/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020005.HTM\n", "Writing HTML to file ../data/html/20062007/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020006.HTM\n", "Writing HTML to file ../data/html/20062007/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020007.HTM\n", "Writing HTML to file ../data/html/20062007/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020008.HTM\n", "Writing HTML to file ../data/html/20062007/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020009.HTM\n", "Writing HTML to file ../data/html/20062007/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020010.HTM\n", "Writing HTML to file ../data/html/20062007/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020011.HTM\n", "Writing HTML to file ../data/html/20062007/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020012.HTM\n", "Writing HTML to file ../data/html/20062007/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020013.HTM\n", "Writing HTML to file ../data/html/20062007/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020014.HTM\n", "Writing HTML to file ../data/html/20062007/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020015.HTM\n", "Writing HTML to file ../data/html/20062007/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020016.HTM\n", "Writing HTML to file ../data/html/20062007/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020017.HTM\n", "Writing HTML to file ../data/html/20062007/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020018.HTM\n", "Writing HTML to file ../data/html/20062007/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020019.HTM\n", "Writing HTML to file ../data/html/20062007/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020020.HTM\n", "Writing HTML to file ../data/html/20062007/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020021.HTM\n", "Writing HTML to file ../data/html/20062007/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020022.HTM\n", "Writing HTML to file ../data/html/20062007/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020023.HTM\n", "Writing HTML to file ../data/html/20062007/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020024.HTM\n", "Writing HTML to file ../data/html/20062007/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020025.HTM\n", "Writing HTML to file ../data/html/20062007/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020026.HTM\n", "Writing HTML to file ../data/html/20062007/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020027.HTM\n", "Writing HTML to file ../data/html/20062007/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020028.HTM\n", "Writing HTML to file ../data/html/20062007/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020029.HTM\n", "Writing HTML to file ../data/html/20062007/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020030.HTM\n", "Writing HTML to file ../data/html/20062007/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020031.HTM\n", "Writing HTML to file ../data/html/20062007/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020032.HTM\n", "Writing HTML to file ../data/html/20062007/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020033.HTM\n", "Writing HTML to file ../data/html/20062007/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020034.HTM\n", "Writing HTML to file ../data/html/20062007/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020035.HTM\n", "Writing HTML to file ../data/html/20062007/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020036.HTM\n", "Writing HTML to file ../data/html/20062007/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020037.HTM\n", "Writing HTML to file ../data/html/20062007/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020038.HTM\n", "Writing HTML to file ../data/html/20062007/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020039.HTM\n", "Writing HTML to file ../data/html/20062007/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020040.HTM\n", "Writing HTML to file ../data/html/20062007/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020041.HTM\n", "Writing HTML to file ../data/html/20062007/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020042.HTM\n", "Writing HTML to file ../data/html/20062007/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020043.HTM\n", "Writing HTML to file ../data/html/20062007/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020044.HTM\n", "Writing HTML to file ../data/html/20062007/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020045.HTM\n", "Writing HTML to file ../data/html/20062007/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020046.HTM\n", "Writing HTML to file ../data/html/20062007/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020047.HTM\n", "Writing HTML to file ../data/html/20062007/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020048.HTM\n", "Writing HTML to file ../data/html/20062007/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020049.HTM\n", "Writing HTML to file ../data/html/20062007/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020050.HTM\n", "Writing HTML to file ../data/html/20062007/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020051.HTM\n", "Writing HTML to file ../data/html/20062007/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020052.HTM\n", "Writing HTML to file ../data/html/20062007/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020053.HTM\n", "Writing HTML to file ../data/html/20062007/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020054.HTM\n", "Writing HTML to file ../data/html/20062007/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020055.HTM\n", "Writing HTML to file ../data/html/20062007/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020056.HTM\n", "Writing HTML to file ../data/html/20062007/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020057.HTM\n", "Writing HTML to file ../data/html/20062007/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020058.HTM\n", "Writing HTML to file ../data/html/20062007/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020059.HTM\n", "Writing HTML to file ../data/html/20062007/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020060.HTM\n", "Writing HTML to file ../data/html/20062007/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020061.HTM\n", "Writing HTML to file ../data/html/20062007/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020062.HTM\n", "Writing HTML to file ../data/html/20062007/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020063.HTM\n", "Writing HTML to file ../data/html/20062007/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020064.HTM\n", "Writing HTML to file ../data/html/20062007/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020065.HTM\n", "Writing HTML to file ../data/html/20062007/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020066.HTM\n", "Writing HTML to file ../data/html/20062007/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020067.HTM\n", "Writing HTML to file ../data/html/20062007/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020068.HTM\n", "Writing HTML to file ../data/html/20062007/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020069.HTM\n", "Writing HTML to file ../data/html/20062007/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020070.HTM\n", "Writing HTML to file ../data/html/20062007/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020071.HTM\n", "Writing HTML to file ../data/html/20062007/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020072.HTM\n", "Writing HTML to file ../data/html/20062007/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020073.HTM\n", "Writing HTML to file ../data/html/20062007/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020074.HTM\n", "Writing HTML to file ../data/html/20062007/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020075.HTM\n", "Writing HTML to file ../data/html/20062007/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020076.HTM\n", "Writing HTML to file ../data/html/20062007/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020077.HTM\n", "Writing HTML to file ../data/html/20062007/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020078.HTM\n", "Writing HTML to file ../data/html/20062007/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020079.HTM\n", "Writing HTML to file ../data/html/20062007/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020080.HTM\n", "Writing HTML to file ../data/html/20062007/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020081.HTM\n", "Writing HTML to file ../data/html/20062007/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020082.HTM\n", "Writing HTML to file ../data/html/20062007/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020083.HTM\n", "Writing HTML to file ../data/html/20062007/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020084.HTM\n", "Writing HTML to file ../data/html/20062007/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020085.HTM\n", "Writing HTML to file ../data/html/20062007/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020086.HTM\n", "Writing HTML to file ../data/html/20062007/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020087.HTM\n", "Writing HTML to file ../data/html/20062007/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020088.HTM\n", "Writing HTML to file ../data/html/20062007/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020089.HTM\n", "Writing HTML to file ../data/html/20062007/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020090.HTM\n", "Writing HTML to file ../data/html/20062007/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020091.HTM\n", "Writing HTML to file ../data/html/20062007/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020092.HTM\n", "Writing HTML to file ../data/html/20062007/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020093.HTM\n", "Writing HTML to file ../data/html/20062007/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020094.HTM\n", "Writing HTML to file ../data/html/20062007/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020095.HTM\n", "Writing HTML to file ../data/html/20062007/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020096.HTM\n", "Writing HTML to file ../data/html/20062007/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020097.HTM\n", "Writing HTML to file ../data/html/20062007/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020098.HTM\n", "Writing HTML to file ../data/html/20062007/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020099.HTM\n", "Writing HTML to file ../data/html/20062007/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020100.HTM\n", "Writing HTML to file ../data/html/20062007/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020101.HTM\n", "Writing HTML to file ../data/html/20062007/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020102.HTM\n", "Writing HTML to file ../data/html/20062007/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020103.HTM\n", "Writing HTML to file ../data/html/20062007/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020104.HTM\n", "Writing HTML to file ../data/html/20062007/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020105.HTM\n", "Writing HTML to file ../data/html/20062007/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020106.HTM\n", "Writing HTML to file ../data/html/20062007/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020107.HTM\n", "Writing HTML to file ../data/html/20062007/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020108.HTM\n", "Writing HTML to file ../data/html/20062007/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020109.HTM\n", "Writing HTML to file ../data/html/20062007/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020110.HTM\n", "Writing HTML to file ../data/html/20062007/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020111.HTM\n", "Writing HTML to file ../data/html/20062007/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020112.HTM\n", "Writing HTML to file ../data/html/20062007/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020113.HTM\n", "Writing HTML to file ../data/html/20062007/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020114.HTM\n", "Writing HTML to file ../data/html/20062007/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020115.HTM\n", "Writing HTML to file ../data/html/20062007/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020116.HTM\n", "Writing HTML to file ../data/html/20062007/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020117.HTM\n", "Writing HTML to file ../data/html/20062007/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020118.HTM\n", "Writing HTML to file ../data/html/20062007/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020119.HTM\n", "Writing HTML to file ../data/html/20062007/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020120.HTM\n", "Writing HTML to file ../data/html/20062007/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020121.HTM\n", "Writing HTML to file ../data/html/20062007/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020122.HTM\n", "Writing HTML to file ../data/html/20062007/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020123.HTM\n", "Writing HTML to file ../data/html/20062007/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020124.HTM\n", "Writing HTML to file ../data/html/20062007/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020125.HTM\n", "Writing HTML to file ../data/html/20062007/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020126.HTM\n", "Writing HTML to file ../data/html/20062007/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020127.HTM\n", "Writing HTML to file ../data/html/20062007/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020128.HTM\n", "Writing HTML to file ../data/html/20062007/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020129.HTM\n", "Writing HTML to file ../data/html/20062007/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020130.HTM\n", "Writing HTML to file ../data/html/20062007/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020131.HTM\n", "Writing HTML to file ../data/html/20062007/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020132.HTM\n", "Writing HTML to file ../data/html/20062007/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020133.HTM\n", "Writing HTML to file ../data/html/20062007/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020134.HTM\n", "Writing HTML to file ../data/html/20062007/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020135.HTM\n", "Writing HTML to file ../data/html/20062007/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020136.HTM\n", "Writing HTML to file ../data/html/20062007/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020137.HTM\n", "Writing HTML to file ../data/html/20062007/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020138.HTM\n", "Writing HTML to file ../data/html/20062007/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020139.HTM\n", "Writing HTML to file ../data/html/20062007/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020140.HTM\n", "Writing HTML to file ../data/html/20062007/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020141.HTM\n", "Writing HTML to file ../data/html/20062007/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020142.HTM\n", "Writing HTML to file ../data/html/20062007/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020143.HTM\n", "Writing HTML to file ../data/html/20062007/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020144.HTM\n", "Writing HTML to file ../data/html/20062007/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020145.HTM\n", "Writing HTML to file ../data/html/20062007/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020146.HTM\n", "Writing HTML to file ../data/html/20062007/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020147.HTM\n", "Writing HTML to file ../data/html/20062007/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020148.HTM\n", "Writing HTML to file ../data/html/20062007/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020149.HTM\n", "Writing HTML to file ../data/html/20062007/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020150.HTM\n", "Writing HTML to file ../data/html/20062007/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020151.HTM\n", "Writing HTML to file ../data/html/20062007/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020152.HTM\n", "Writing HTML to file ../data/html/20062007/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020153.HTM\n", "Writing HTML to file ../data/html/20062007/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020154.HTM\n", "Writing HTML to file ../data/html/20062007/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020155.HTM\n", "Writing HTML to file ../data/html/20062007/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020156.HTM\n", "Writing HTML to file ../data/html/20062007/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020157.HTM\n", "Writing HTML to file ../data/html/20062007/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020158.HTM\n", "Writing HTML to file ../data/html/20062007/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020159.HTM\n", "Writing HTML to file ../data/html/20062007/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020160.HTM\n", "Writing HTML to file ../data/html/20062007/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020161.HTM\n", "Writing HTML to file ../data/html/20062007/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020162.HTM\n", "Writing HTML to file ../data/html/20062007/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020163.HTM\n", "Writing HTML to file ../data/html/20062007/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020164.HTM\n", "Writing HTML to file ../data/html/20062007/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020165.HTM\n", "Writing HTML to file ../data/html/20062007/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020166.HTM\n", "Writing HTML to file ../data/html/20062007/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020167.HTM\n", "Writing HTML to file ../data/html/20062007/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020168.HTM\n", "Writing HTML to file ../data/html/20062007/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020169.HTM\n", "Writing HTML to file ../data/html/20062007/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020170.HTM\n", "Writing HTML to file ../data/html/20062007/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020171.HTM\n", "Writing HTML to file ../data/html/20062007/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020172.HTM\n", "Writing HTML to file ../data/html/20062007/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020173.HTM\n", "Writing HTML to file ../data/html/20062007/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020174.HTM\n", "Writing HTML to file ../data/html/20062007/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020175.HTM\n", "Writing HTML to file ../data/html/20062007/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020176.HTM\n", "Writing HTML to file ../data/html/20062007/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020177.HTM\n", "Writing HTML to file ../data/html/20062007/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020178.HTM\n", "Writing HTML to file ../data/html/20062007/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020179.HTM\n", "Writing HTML to file ../data/html/20062007/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020180.HTM\n", "Writing HTML to file ../data/html/20062007/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020181.HTM\n", "Writing HTML to file ../data/html/20062007/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020182.HTM\n", "Writing HTML to file ../data/html/20062007/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020183.HTM\n", "Writing HTML to file ../data/html/20062007/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020184.HTM\n", "Writing HTML to file ../data/html/20062007/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020185.HTM\n", "Writing HTML to file ../data/html/20062007/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020186.HTM\n", "Writing HTML to file ../data/html/20062007/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020187.HTM\n", "Writing HTML to file ../data/html/20062007/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020188.HTM\n", "Writing HTML to file ../data/html/20062007/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020189.HTM\n", "Writing HTML to file ../data/html/20062007/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020190.HTM\n", "Writing HTML to file ../data/html/20062007/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020191.HTM\n", "Writing HTML to file ../data/html/20062007/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020192.HTM\n", "Writing HTML to file ../data/html/20062007/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020193.HTM\n", "Writing HTML to file ../data/html/20062007/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020194.HTM\n", "Writing HTML to file ../data/html/20062007/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020195.HTM\n", "Writing HTML to file ../data/html/20062007/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020196.HTM\n", "Writing HTML to file ../data/html/20062007/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020197.HTM\n", "Writing HTML to file ../data/html/20062007/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020198.HTM\n", "Writing HTML to file ../data/html/20062007/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020199.HTM\n", "Writing HTML to file ../data/html/20062007/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020200.HTM\n", "Writing HTML to file ../data/html/20062007/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020201.HTM\n", "Writing HTML to file ../data/html/20062007/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020202.HTM\n", "Writing HTML to file ../data/html/20062007/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020203.HTM\n", "Writing HTML to file ../data/html/20062007/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020204.HTM\n", "Writing HTML to file ../data/html/20062007/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020205.HTM\n", "Writing HTML to file ../data/html/20062007/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020206.HTM\n", "Writing HTML to file ../data/html/20062007/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020207.HTM\n", "Writing HTML to file ../data/html/20062007/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020208.HTM\n", "Writing HTML to file ../data/html/20062007/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020209.HTM\n", "Writing HTML to file ../data/html/20062007/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020210.HTM\n", "Writing HTML to file ../data/html/20062007/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020211.HTM\n", "Writing HTML to file ../data/html/20062007/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020212.HTM\n", "Writing HTML to file ../data/html/20062007/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020213.HTM\n", "Writing HTML to file ../data/html/20062007/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020214.HTM\n", "Writing HTML to file ../data/html/20062007/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020215.HTM\n", "Writing HTML to file ../data/html/20062007/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020216.HTM\n", "Writing HTML to file ../data/html/20062007/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020217.HTM\n", "Writing HTML to file ../data/html/20062007/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020218.HTM\n", "Writing HTML to file ../data/html/20062007/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020219.HTM\n", "Writing HTML to file ../data/html/20062007/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020220.HTM\n", "Writing HTML to file ../data/html/20062007/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020221.HTM\n", "Writing HTML to file ../data/html/20062007/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020222.HTM\n", "Writing HTML to file ../data/html/20062007/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020223.HTM\n", "Writing HTML to file ../data/html/20062007/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020224.HTM\n", "Writing HTML to file ../data/html/20062007/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020225.HTM\n", "Writing HTML to file ../data/html/20062007/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020226.HTM\n", "Writing HTML to file ../data/html/20062007/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020227.HTM\n", "Writing HTML to file ../data/html/20062007/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020228.HTM\n", "Writing HTML to file ../data/html/20062007/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020229.HTM\n", "Writing HTML to file ../data/html/20062007/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020230.HTM\n", "Writing HTML to file ../data/html/20062007/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020231.HTM\n", "Writing HTML to file ../data/html/20062007/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020232.HTM\n", "Writing HTML to file ../data/html/20062007/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020233.HTM\n", "Writing HTML to file ../data/html/20062007/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020234.HTM\n", "Writing HTML to file ../data/html/20062007/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020235.HTM\n", "Writing HTML to file ../data/html/20062007/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020236.HTM\n", "Writing HTML to file ../data/html/20062007/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020237.HTM\n", "Writing HTML to file ../data/html/20062007/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020238.HTM\n", "Writing HTML to file ../data/html/20062007/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020239.HTM\n", "Writing HTML to file ../data/html/20062007/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020240.HTM\n", "Writing HTML to file ../data/html/20062007/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020241.HTM\n", "Writing HTML to file ../data/html/20062007/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020242.HTM\n", "Writing HTML to file ../data/html/20062007/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020243.HTM\n", "Writing HTML to file ../data/html/20062007/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020244.HTM\n", "Writing HTML to file ../data/html/20062007/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020245.HTM\n", "Writing HTML to file ../data/html/20062007/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020246.HTM\n", "Writing HTML to file ../data/html/20062007/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020247.HTM\n", "Writing HTML to file ../data/html/20062007/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020248.HTM\n", "Writing HTML to file ../data/html/20062007/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020249.HTM\n", "Writing HTML to file ../data/html/20062007/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020250.HTM\n", "Writing HTML to file ../data/html/20062007/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020251.HTM\n", "Writing HTML to file ../data/html/20062007/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020252.HTM\n", "Writing HTML to file ../data/html/20062007/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020253.HTM\n", "Writing HTML to file ../data/html/20062007/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020254.HTM\n", "Writing HTML to file ../data/html/20062007/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020255.HTM\n", "Writing HTML to file ../data/html/20062007/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020256.HTM\n", "Writing HTML to file ../data/html/20062007/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020257.HTM\n", "Writing HTML to file ../data/html/20062007/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020258.HTM\n", "Writing HTML to file ../data/html/20062007/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020259.HTM\n", "Writing HTML to file ../data/html/20062007/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020260.HTM\n", "Writing HTML to file ../data/html/20062007/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020261.HTM\n", "Writing HTML to file ../data/html/20062007/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020262.HTM\n", "Writing HTML to file ../data/html/20062007/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020263.HTM\n", "Writing HTML to file ../data/html/20062007/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020264.HTM\n", "Writing HTML to file ../data/html/20062007/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020265.HTM\n", "Writing HTML to file ../data/html/20062007/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020266.HTM\n", "Writing HTML to file ../data/html/20062007/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020267.HTM\n", "Writing HTML to file ../data/html/20062007/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020268.HTM\n", "Writing HTML to file ../data/html/20062007/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020269.HTM\n", "Writing HTML to file ../data/html/20062007/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020270.HTM\n", "Writing HTML to file ../data/html/20062007/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020271.HTM\n", "Writing HTML to file ../data/html/20062007/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020272.HTM\n", "Writing HTML to file ../data/html/20062007/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020273.HTM\n", "Writing HTML to file ../data/html/20062007/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020274.HTM\n", "Writing HTML to file ../data/html/20062007/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020275.HTM\n", "Writing HTML to file ../data/html/20062007/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020276.HTM\n", "Writing HTML to file ../data/html/20062007/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020277.HTM\n", "Writing HTML to file ../data/html/20062007/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020278.HTM\n", "Writing HTML to file ../data/html/20062007/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020279.HTM\n", "Writing HTML to file ../data/html/20062007/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020280.HTM\n", "Writing HTML to file ../data/html/20062007/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020281.HTM\n", "Writing HTML to file ../data/html/20062007/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020282.HTM\n", "Writing HTML to file ../data/html/20062007/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020283.HTM\n", "Writing HTML to file ../data/html/20062007/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020284.HTM\n", "Writing HTML to file ../data/html/20062007/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020285.HTM\n", "Writing HTML to file ../data/html/20062007/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020286.HTM\n", "Writing HTML to file ../data/html/20062007/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020287.HTM\n", "Writing HTML to file ../data/html/20062007/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020288.HTM\n", "Writing HTML to file ../data/html/20062007/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020289.HTM\n", "Writing HTML to file ../data/html/20062007/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020290.HTM\n", "Writing HTML to file ../data/html/20062007/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020291.HTM\n", "Writing HTML to file ../data/html/20062007/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020292.HTM\n", "Writing HTML to file ../data/html/20062007/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020293.HTM\n", "Writing HTML to file ../data/html/20062007/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020294.HTM\n", "Writing HTML to file ../data/html/20062007/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020295.HTM\n", "Writing HTML to file ../data/html/20062007/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020296.HTM\n", "Writing HTML to file ../data/html/20062007/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020297.HTM\n", "Writing HTML to file ../data/html/20062007/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020298.HTM\n", "Writing HTML to file ../data/html/20062007/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020299.HTM\n", "Writing HTML to file ../data/html/20062007/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020300.HTM\n", "Writing HTML to file ../data/html/20062007/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020301.HTM\n", "Writing HTML to file ../data/html/20062007/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020302.HTM\n", "Writing HTML to file ../data/html/20062007/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020303.HTM\n", "Writing HTML to file ../data/html/20062007/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020304.HTM\n", "Writing HTML to file ../data/html/20062007/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020305.HTM\n", "Writing HTML to file ../data/html/20062007/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020306.HTM\n", "Writing HTML to file ../data/html/20062007/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020307.HTM\n", "Writing HTML to file ../data/html/20062007/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020308.HTM\n", "Writing HTML to file ../data/html/20062007/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020309.HTM\n", "Writing HTML to file ../data/html/20062007/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020310.HTM\n", "Writing HTML to file ../data/html/20062007/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020311.HTM\n", "Writing HTML to file ../data/html/20062007/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020312.HTM\n", "Writing HTML to file ../data/html/20062007/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020313.HTM\n", "Writing HTML to file ../data/html/20062007/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020314.HTM\n", "Writing HTML to file ../data/html/20062007/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020315.HTM\n", "Writing HTML to file ../data/html/20062007/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020316.HTM\n", "Writing HTML to file ../data/html/20062007/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020317.HTM\n", "Writing HTML to file ../data/html/20062007/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020318.HTM\n", "Writing HTML to file ../data/html/20062007/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020319.HTM\n", "Writing HTML to file ../data/html/20062007/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020320.HTM\n", "Writing HTML to file ../data/html/20062007/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020321.HTM\n", "Writing HTML to file ../data/html/20062007/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020322.HTM\n", "Writing HTML to file ../data/html/20062007/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020323.HTM\n", "Writing HTML to file ../data/html/20062007/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020324.HTM\n", "Writing HTML to file ../data/html/20062007/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020325.HTM\n", "Writing HTML to file ../data/html/20062007/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020326.HTM\n", "Writing HTML to file ../data/html/20062007/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020327.HTM\n", "Writing HTML to file ../data/html/20062007/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020328.HTM\n", "Writing HTML to file ../data/html/20062007/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020329.HTM\n", "Writing HTML to file ../data/html/20062007/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020330.HTM\n", "Writing HTML to file ../data/html/20062007/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020331.HTM\n", "Writing HTML to file ../data/html/20062007/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020332.HTM\n", "Writing HTML to file ../data/html/20062007/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020333.HTM\n", "Writing HTML to file ../data/html/20062007/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020334.HTM\n", "Writing HTML to file ../data/html/20062007/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020335.HTM\n", "Writing HTML to file ../data/html/20062007/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020336.HTM\n", "Writing HTML to file ../data/html/20062007/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020337.HTM\n", "Writing HTML to file ../data/html/20062007/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020338.HTM\n", "Writing HTML to file ../data/html/20062007/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020339.HTM\n", "Writing HTML to file ../data/html/20062007/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020340.HTM\n", "Writing HTML to file ../data/html/20062007/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020341.HTM\n", "Writing HTML to file ../data/html/20062007/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020342.HTM\n", "Writing HTML to file ../data/html/20062007/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020343.HTM\n", "Writing HTML to file ../data/html/20062007/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020344.HTM\n", "Writing HTML to file ../data/html/20062007/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020345.HTM\n", "Writing HTML to file ../data/html/20062007/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020346.HTM\n", "Writing HTML to file ../data/html/20062007/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020347.HTM\n", "Writing HTML to file ../data/html/20062007/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020348.HTM\n", "Writing HTML to file ../data/html/20062007/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020349.HTM\n", "Writing HTML to file ../data/html/20062007/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020350.HTM\n", "Writing HTML to file ../data/html/20062007/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020351.HTM\n", "Writing HTML to file ../data/html/20062007/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020352.HTM\n", "Writing HTML to file ../data/html/20062007/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020353.HTM\n", "Writing HTML to file ../data/html/20062007/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020354.HTM\n", "Writing HTML to file ../data/html/20062007/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020355.HTM\n", "Writing HTML to file ../data/html/20062007/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020356.HTM\n", "Writing HTML to file ../data/html/20062007/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020357.HTM\n", "Writing HTML to file ../data/html/20062007/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020358.HTM\n", "Writing HTML to file ../data/html/20062007/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020359.HTM\n", "Writing HTML to file ../data/html/20062007/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020360.HTM\n", "Writing HTML to file ../data/html/20062007/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020361.HTM\n", "Writing HTML to file ../data/html/20062007/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020362.HTM\n", "Writing HTML to file ../data/html/20062007/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020363.HTM\n", "Writing HTML to file ../data/html/20062007/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020364.HTM\n", "Writing HTML to file ../data/html/20062007/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020365.HTM\n", "Writing HTML to file ../data/html/20062007/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020366.HTM\n", "Writing HTML to file ../data/html/20062007/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020367.HTM\n", "Writing HTML to file ../data/html/20062007/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020368.HTM\n", "Writing HTML to file ../data/html/20062007/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020369.HTM\n", "Writing HTML to file ../data/html/20062007/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020370.HTM\n", "Writing HTML to file ../data/html/20062007/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020371.HTM\n", "Writing HTML to file ../data/html/20062007/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020372.HTM\n", "Writing HTML to file ../data/html/20062007/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020373.HTM\n", "Writing HTML to file ../data/html/20062007/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020374.HTM\n", "Writing HTML to file ../data/html/20062007/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020375.HTM\n", "Writing HTML to file ../data/html/20062007/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020376.HTM\n", "Writing HTML to file ../data/html/20062007/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020377.HTM\n", "Writing HTML to file ../data/html/20062007/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020378.HTM\n", "Writing HTML to file ../data/html/20062007/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020379.HTM\n", "Writing HTML to file ../data/html/20062007/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020380.HTM\n", "Writing HTML to file ../data/html/20062007/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020381.HTM\n", "Writing HTML to file ../data/html/20062007/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020382.HTM\n", "Writing HTML to file ../data/html/20062007/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020383.HTM\n", "Writing HTML to file ../data/html/20062007/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020384.HTM\n", "Writing HTML to file ../data/html/20062007/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020385.HTM\n", "Writing HTML to file ../data/html/20062007/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020386.HTM\n", "Writing HTML to file ../data/html/20062007/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020387.HTM\n", "Writing HTML to file ../data/html/20062007/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020388.HTM\n", "Writing HTML to file ../data/html/20062007/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020389.HTM\n", "Writing HTML to file ../data/html/20062007/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020390.HTM\n", "Writing HTML to file ../data/html/20062007/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020391.HTM\n", "Writing HTML to file ../data/html/20062007/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020392.HTM\n", "Writing HTML to file ../data/html/20062007/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020393.HTM\n", "Writing HTML to file ../data/html/20062007/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020394.HTM\n", "Writing HTML to file ../data/html/20062007/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020395.HTM\n", "Writing HTML to file ../data/html/20062007/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020396.HTM\n", "Writing HTML to file ../data/html/20062007/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020397.HTM\n", "Writing HTML to file ../data/html/20062007/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020398.HTM\n", "Writing HTML to file ../data/html/20062007/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020399.HTM\n", "Writing HTML to file ../data/html/20062007/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020400.HTM\n", "Writing HTML to file ../data/html/20062007/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020401.HTM\n", "Writing HTML to file ../data/html/20062007/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020402.HTM\n", "Writing HTML to file ../data/html/20062007/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020403.HTM\n", "Writing HTML to file ../data/html/20062007/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020404.HTM\n", "Writing HTML to file ../data/html/20062007/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020405.HTM\n", "Writing HTML to file ../data/html/20062007/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020406.HTM\n", "Writing HTML to file ../data/html/20062007/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020407.HTM\n", "Writing HTML to file ../data/html/20062007/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020408.HTM\n", "Writing HTML to file ../data/html/20062007/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020409.HTM\n", "Writing HTML to file ../data/html/20062007/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020410.HTM\n", "Writing HTML to file ../data/html/20062007/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020411.HTM\n", "Writing HTML to file ../data/html/20062007/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020412.HTM\n", "Writing HTML to file ../data/html/20062007/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020413.HTM\n", "Writing HTML to file ../data/html/20062007/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020414.HTM\n", "Writing HTML to file ../data/html/20062007/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020415.HTM\n", "Writing HTML to file ../data/html/20062007/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020416.HTM\n", "Writing HTML to file ../data/html/20062007/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020417.HTM\n", "Writing HTML to file ../data/html/20062007/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020418.HTM\n", "Writing HTML to file ../data/html/20062007/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020419.HTM\n", "Writing HTML to file ../data/html/20062007/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020420.HTM\n", "Writing HTML to file ../data/html/20062007/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020421.HTM\n", "Writing HTML to file ../data/html/20062007/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020422.HTM\n", "Writing HTML to file ../data/html/20062007/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020423.HTM\n", "Writing HTML to file ../data/html/20062007/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020424.HTM\n", "Writing HTML to file ../data/html/20062007/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020425.HTM\n", "Writing HTML to file ../data/html/20062007/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020426.HTM\n", "Writing HTML to file ../data/html/20062007/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020427.HTM\n", "Writing HTML to file ../data/html/20062007/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020428.HTM\n", "Writing HTML to file ../data/html/20062007/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020429.HTM\n", "Writing HTML to file ../data/html/20062007/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020430.HTM\n", "Writing HTML to file ../data/html/20062007/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020431.HTM\n", "Writing HTML to file ../data/html/20062007/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020432.HTM\n", "Writing HTML to file ../data/html/20062007/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020433.HTM\n", "Writing HTML to file ../data/html/20062007/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020434.HTM\n", "Writing HTML to file ../data/html/20062007/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020435.HTM\n", "Writing HTML to file ../data/html/20062007/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020436.HTM\n", "Writing HTML to file ../data/html/20062007/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020437.HTM\n", "Writing HTML to file ../data/html/20062007/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020438.HTM\n", "Writing HTML to file ../data/html/20062007/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020439.HTM\n", "Writing HTML to file ../data/html/20062007/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020440.HTM\n", "Writing HTML to file ../data/html/20062007/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020441.HTM\n", "Writing HTML to file ../data/html/20062007/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020442.HTM\n", "Writing HTML to file ../data/html/20062007/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020443.HTM\n", "Writing HTML to file ../data/html/20062007/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020444.HTM\n", "Writing HTML to file ../data/html/20062007/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020445.HTM\n", "Writing HTML to file ../data/html/20062007/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020446.HTM\n", "Writing HTML to file ../data/html/20062007/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020447.HTM\n", "Writing HTML to file ../data/html/20062007/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020448.HTM\n", "Writing HTML to file ../data/html/20062007/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020449.HTM\n", "Writing HTML to file ../data/html/20062007/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020450.HTM\n", "Writing HTML to file ../data/html/20062007/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020451.HTM\n", "Writing HTML to file ../data/html/20062007/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020452.HTM\n", "Writing HTML to file ../data/html/20062007/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020453.HTM\n", "Writing HTML to file ../data/html/20062007/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020454.HTM\n", "Writing HTML to file ../data/html/20062007/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020455.HTM\n", "Writing HTML to file ../data/html/20062007/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020456.HTM\n", "Writing HTML to file ../data/html/20062007/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020457.HTM\n", "Writing HTML to file ../data/html/20062007/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020458.HTM\n", "Writing HTML to file ../data/html/20062007/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020459.HTM\n", "Writing HTML to file ../data/html/20062007/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020460.HTM\n", "Writing HTML to file ../data/html/20062007/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020461.HTM\n", "Writing HTML to file ../data/html/20062007/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020462.HTM\n", "Writing HTML to file ../data/html/20062007/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020463.HTM\n", "Writing HTML to file ../data/html/20062007/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020464.HTM\n", "Writing HTML to file ../data/html/20062007/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020465.HTM\n", "Writing HTML to file ../data/html/20062007/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020466.HTM\n", "Writing HTML to file ../data/html/20062007/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020467.HTM\n", "Writing HTML to file ../data/html/20062007/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020468.HTM\n", "Writing HTML to file ../data/html/20062007/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020469.HTM\n", "Writing HTML to file ../data/html/20062007/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020470.HTM\n", "Writing HTML to file ../data/html/20062007/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020471.HTM\n", "Writing HTML to file ../data/html/20062007/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020472.HTM\n", "Writing HTML to file ../data/html/20062007/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020473.HTM\n", "Writing HTML to file ../data/html/20062007/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020474.HTM\n", "Writing HTML to file ../data/html/20062007/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020475.HTM\n", "Writing HTML to file ../data/html/20062007/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020476.HTM\n", "Writing HTML to file ../data/html/20062007/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020477.HTM\n", "Writing HTML to file ../data/html/20062007/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020478.HTM\n", "Writing HTML to file ../data/html/20062007/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020479.HTM\n", "Writing HTML to file ../data/html/20062007/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020480.HTM\n", "Writing HTML to file ../data/html/20062007/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020481.HTM\n", "Writing HTML to file ../data/html/20062007/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020482.HTM\n", "Writing HTML to file ../data/html/20062007/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020483.HTM\n", "Writing HTML to file ../data/html/20062007/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020484.HTM\n", "Writing HTML to file ../data/html/20062007/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020485.HTM\n", "Writing HTML to file ../data/html/20062007/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020486.HTM\n", "Writing HTML to file ../data/html/20062007/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020487.HTM\n", "Writing HTML to file ../data/html/20062007/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020488.HTM\n", "Writing HTML to file ../data/html/20062007/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020489.HTM\n", "Writing HTML to file ../data/html/20062007/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020490.HTM\n", "Writing HTML to file ../data/html/20062007/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020491.HTM\n", "Writing HTML to file ../data/html/20062007/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020492.HTM\n", "Writing HTML to file ../data/html/20062007/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020493.HTM\n", "Writing HTML to file ../data/html/20062007/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020494.HTM\n", "Writing HTML to file ../data/html/20062007/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020495.HTM\n", "Writing HTML to file ../data/html/20062007/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020496.HTM\n", "Writing HTML to file ../data/html/20062007/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020497.HTM\n", "Writing HTML to file ../data/html/20062007/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020498.HTM\n", "Writing HTML to file ../data/html/20062007/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020499.HTM\n", "Writing HTML to file ../data/html/20062007/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020500.HTM\n", "Writing HTML to file ../data/html/20062007/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020501.HTM\n", "Writing HTML to file ../data/html/20062007/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020502.HTM\n", "Writing HTML to file ../data/html/20062007/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020503.HTM\n", "Writing HTML to file ../data/html/20062007/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020504.HTM\n", "Writing HTML to file ../data/html/20062007/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020505.HTM\n", "Writing HTML to file ../data/html/20062007/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020506.HTM\n", "Writing HTML to file ../data/html/20062007/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020507.HTM\n", "Writing HTML to file ../data/html/20062007/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020508.HTM\n", "Writing HTML to file ../data/html/20062007/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020509.HTM\n", "Writing HTML to file ../data/html/20062007/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020510.HTM\n", "Writing HTML to file ../data/html/20062007/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020511.HTM\n", "Writing HTML to file ../data/html/20062007/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020512.HTM\n", "Writing HTML to file ../data/html/20062007/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020513.HTM\n", "Writing HTML to file ../data/html/20062007/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020514.HTM\n", "Writing HTML to file ../data/html/20062007/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020515.HTM\n", "Writing HTML to file ../data/html/20062007/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020516.HTM\n", "Writing HTML to file ../data/html/20062007/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020517.HTM\n", "Writing HTML to file ../data/html/20062007/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020518.HTM\n", "Writing HTML to file ../data/html/20062007/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020519.HTM\n", "Writing HTML to file ../data/html/20062007/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020520.HTM\n", "Writing HTML to file ../data/html/20062007/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020521.HTM\n", "Writing HTML to file ../data/html/20062007/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020522.HTM\n", "Writing HTML to file ../data/html/20062007/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020523.HTM\n", "Writing HTML to file ../data/html/20062007/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020524.HTM\n", "Writing HTML to file ../data/html/20062007/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020525.HTM\n", "Writing HTML to file ../data/html/20062007/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020526.HTM\n", "Writing HTML to file ../data/html/20062007/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020527.HTM\n", "Writing HTML to file ../data/html/20062007/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020528.HTM\n", "Writing HTML to file ../data/html/20062007/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020529.HTM\n", "Writing HTML to file ../data/html/20062007/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020530.HTM\n", "Writing HTML to file ../data/html/20062007/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020531.HTM\n", "Writing HTML to file ../data/html/20062007/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020532.HTM\n", "Writing HTML to file ../data/html/20062007/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020533.HTM\n", "Writing HTML to file ../data/html/20062007/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020534.HTM\n", "Writing HTML to file ../data/html/20062007/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020535.HTM\n", "Writing HTML to file ../data/html/20062007/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020536.HTM\n", "Writing HTML to file ../data/html/20062007/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020537.HTM\n", "Writing HTML to file ../data/html/20062007/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020538.HTM\n", "Writing HTML to file ../data/html/20062007/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020539.HTM\n", "Writing HTML to file ../data/html/20062007/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020540.HTM\n", "Writing HTML to file ../data/html/20062007/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020541.HTM\n", "Writing HTML to file ../data/html/20062007/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020542.HTM\n", "Writing HTML to file ../data/html/20062007/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020543.HTM\n", "Writing HTML to file ../data/html/20062007/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020544.HTM\n", "Writing HTML to file ../data/html/20062007/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020545.HTM\n", "Writing HTML to file ../data/html/20062007/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020546.HTM\n", "Writing HTML to file ../data/html/20062007/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020547.HTM\n", "Writing HTML to file ../data/html/20062007/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020548.HTM\n", "Writing HTML to file ../data/html/20062007/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020549.HTM\n", "Writing HTML to file ../data/html/20062007/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020550.HTM\n", "Writing HTML to file ../data/html/20062007/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020551.HTM\n", "Writing HTML to file ../data/html/20062007/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020552.HTM\n", "Writing HTML to file ../data/html/20062007/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020553.HTM\n", "Writing HTML to file ../data/html/20062007/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020554.HTM\n", "Writing HTML to file ../data/html/20062007/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020555.HTM\n", "Writing HTML to file ../data/html/20062007/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020556.HTM\n", "Writing HTML to file ../data/html/20062007/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020557.HTM\n", "Writing HTML to file ../data/html/20062007/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020558.HTM\n", "Writing HTML to file ../data/html/20062007/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020559.HTM\n", "Writing HTML to file ../data/html/20062007/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020560.HTM\n", "Writing HTML to file ../data/html/20062007/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020561.HTM\n", "Writing HTML to file ../data/html/20062007/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020562.HTM\n", "Writing HTML to file ../data/html/20062007/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020563.HTM\n", "Writing HTML to file ../data/html/20062007/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020564.HTM\n", "Writing HTML to file ../data/html/20062007/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020565.HTM\n", "Writing HTML to file ../data/html/20062007/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020566.HTM\n", "Writing HTML to file ../data/html/20062007/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020567.HTM\n", "Writing HTML to file ../data/html/20062007/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020568.HTM\n", "Writing HTML to file ../data/html/20062007/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020569.HTM\n", "Writing HTML to file ../data/html/20062007/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020570.HTM\n", "Writing HTML to file ../data/html/20062007/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020571.HTM\n", "Writing HTML to file ../data/html/20062007/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020572.HTM\n", "Writing HTML to file ../data/html/20062007/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020573.HTM\n", "Writing HTML to file ../data/html/20062007/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020574.HTM\n", "Writing HTML to file ../data/html/20062007/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020575.HTM\n", "Writing HTML to file ../data/html/20062007/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020576.HTM\n", "Writing HTML to file ../data/html/20062007/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020577.HTM\n", "Writing HTML to file ../data/html/20062007/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020578.HTM\n", "Writing HTML to file ../data/html/20062007/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020579.HTM\n", "Writing HTML to file ../data/html/20062007/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020580.HTM\n", "Writing HTML to file ../data/html/20062007/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020581.HTM\n", "Writing HTML to file ../data/html/20062007/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020582.HTM\n", "Writing HTML to file ../data/html/20062007/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020583.HTM\n", "Writing HTML to file ../data/html/20062007/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020584.HTM\n", "Writing HTML to file ../data/html/20062007/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020585.HTM\n", "Writing HTML to file ../data/html/20062007/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020586.HTM\n", "Writing HTML to file ../data/html/20062007/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020587.HTM\n", "Writing HTML to file ../data/html/20062007/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020588.HTM\n", "Writing HTML to file ../data/html/20062007/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020589.HTM\n", "Writing HTML to file ../data/html/20062007/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020590.HTM\n", "Writing HTML to file ../data/html/20062007/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020591.HTM\n", "Writing HTML to file ../data/html/20062007/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020592.HTM\n", "Writing HTML to file ../data/html/20062007/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020593.HTM\n", "Writing HTML to file ../data/html/20062007/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020594.HTM\n", "Writing HTML to file ../data/html/20062007/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020595.HTM\n", "Writing HTML to file ../data/html/20062007/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020596.HTM\n", "Writing HTML to file ../data/html/20062007/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020597.HTM\n", "Writing HTML to file ../data/html/20062007/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020598.HTM\n", "Writing HTML to file ../data/html/20062007/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020599.HTM\n", "Writing HTML to file ../data/html/20062007/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020600.HTM\n", "Writing HTML to file ../data/html/20062007/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020601.HTM\n", "Writing HTML to file ../data/html/20062007/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020602.HTM\n", "Writing HTML to file ../data/html/20062007/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020603.HTM\n", "Writing HTML to file ../data/html/20062007/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020604.HTM\n", "Writing HTML to file ../data/html/20062007/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020605.HTM\n", "Writing HTML to file ../data/html/20062007/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020606.HTM\n", "Writing HTML to file ../data/html/20062007/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020607.HTM\n", "Writing HTML to file ../data/html/20062007/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020608.HTM\n", "Writing HTML to file ../data/html/20062007/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020609.HTM\n", "Writing HTML to file ../data/html/20062007/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020610.HTM\n", "Writing HTML to file ../data/html/20062007/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020611.HTM\n", "Writing HTML to file ../data/html/20062007/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020612.HTM\n", "Writing HTML to file ../data/html/20062007/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020613.HTM\n", "Writing HTML to file ../data/html/20062007/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020614.HTM\n", "Writing HTML to file ../data/html/20062007/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020615.HTM\n", "Writing HTML to file ../data/html/20062007/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020616.HTM\n", "Writing HTML to file ../data/html/20062007/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020617.HTM\n", "Writing HTML to file ../data/html/20062007/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020618.HTM\n", "Writing HTML to file ../data/html/20062007/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020619.HTM\n", "Writing HTML to file ../data/html/20062007/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020620.HTM\n", "Writing HTML to file ../data/html/20062007/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020621.HTM\n", "Writing HTML to file ../data/html/20062007/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020622.HTM\n", "Writing HTML to file ../data/html/20062007/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020623.HTM\n", "Writing HTML to file ../data/html/20062007/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020624.HTM\n", "Writing HTML to file ../data/html/20062007/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020625.HTM\n", "Writing HTML to file ../data/html/20062007/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020626.HTM\n", "Writing HTML to file ../data/html/20062007/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020627.HTM\n", "Writing HTML to file ../data/html/20062007/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020628.HTM\n", "Writing HTML to file ../data/html/20062007/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020629.HTM\n", "Writing HTML to file ../data/html/20062007/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020630.HTM\n", "Writing HTML to file ../data/html/20062007/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020631.HTM\n", "Writing HTML to file ../data/html/20062007/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020632.HTM\n", "Writing HTML to file ../data/html/20062007/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020633.HTM\n", "Writing HTML to file ../data/html/20062007/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020634.HTM\n", "Writing HTML to file ../data/html/20062007/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020635.HTM\n", "Writing HTML to file ../data/html/20062007/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020636.HTM\n", "Writing HTML to file ../data/html/20062007/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020637.HTM\n", "Writing HTML to file ../data/html/20062007/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020638.HTM\n", "Writing HTML to file ../data/html/20062007/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020639.HTM\n", "Writing HTML to file ../data/html/20062007/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020640.HTM\n", "Writing HTML to file ../data/html/20062007/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020641.HTM\n", "Writing HTML to file ../data/html/20062007/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020642.HTM\n", "Writing HTML to file ../data/html/20062007/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020643.HTM\n", "Writing HTML to file ../data/html/20062007/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020644.HTM\n", "Writing HTML to file ../data/html/20062007/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020645.HTM\n", "Writing HTML to file ../data/html/20062007/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020646.HTM\n", "Writing HTML to file ../data/html/20062007/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020647.HTM\n", "Writing HTML to file ../data/html/20062007/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020648.HTM\n", "Writing HTML to file ../data/html/20062007/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020649.HTM\n", "Writing HTML to file ../data/html/20062007/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020650.HTM\n", "Writing HTML to file ../data/html/20062007/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020651.HTM\n", "Writing HTML to file ../data/html/20062007/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020652.HTM\n", "Writing HTML to file ../data/html/20062007/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020653.HTM\n", "Writing HTML to file ../data/html/20062007/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020654.HTM\n", "Writing HTML to file ../data/html/20062007/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020655.HTM\n", "Writing HTML to file ../data/html/20062007/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020656.HTM\n", "Writing HTML to file ../data/html/20062007/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020657.HTM\n", "Writing HTML to file ../data/html/20062007/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020658.HTM\n", "Writing HTML to file ../data/html/20062007/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020659.HTM\n", "Writing HTML to file ../data/html/20062007/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020660.HTM\n", "Writing HTML to file ../data/html/20062007/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020661.HTM\n", "Writing HTML to file ../data/html/20062007/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020662.HTM\n", "Writing HTML to file ../data/html/20062007/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020663.HTM\n", "Writing HTML to file ../data/html/20062007/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020664.HTM\n", "Writing HTML to file ../data/html/20062007/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020665.HTM\n", "Writing HTML to file ../data/html/20062007/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020666.HTM\n", "Writing HTML to file ../data/html/20062007/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020667.HTM\n", "Writing HTML to file ../data/html/20062007/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020668.HTM\n", "Writing HTML to file ../data/html/20062007/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020669.HTM\n", "Writing HTML to file ../data/html/20062007/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020670.HTM\n", "Writing HTML to file ../data/html/20062007/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020671.HTM\n", "Writing HTML to file ../data/html/20062007/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020672.HTM\n", "Writing HTML to file ../data/html/20062007/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020673.HTM\n", "Writing HTML to file ../data/html/20062007/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020674.HTM\n", "Writing HTML to file ../data/html/20062007/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020675.HTM\n", "Writing HTML to file ../data/html/20062007/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020676.HTM\n", "Writing HTML to file ../data/html/20062007/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020677.HTM\n", "Writing HTML to file ../data/html/20062007/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020678.HTM\n", "Writing HTML to file ../data/html/20062007/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020679.HTM\n", "Writing HTML to file ../data/html/20062007/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020680.HTM\n", "Writing HTML to file ../data/html/20062007/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020681.HTM\n", "Writing HTML to file ../data/html/20062007/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020682.HTM\n", "Writing HTML to file ../data/html/20062007/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020683.HTM\n", "Writing HTML to file ../data/html/20062007/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020684.HTM\n", "Writing HTML to file ../data/html/20062007/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020685.HTM\n", "Writing HTML to file ../data/html/20062007/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020686.HTM\n", "Writing HTML to file ../data/html/20062007/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020687.HTM\n", "Writing HTML to file ../data/html/20062007/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020688.HTM\n", "Writing HTML to file ../data/html/20062007/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020689.HTM\n", "Writing HTML to file ../data/html/20062007/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020690.HTM\n", "Writing HTML to file ../data/html/20062007/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020691.HTM\n", "Writing HTML to file ../data/html/20062007/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020692.HTM\n", "Writing HTML to file ../data/html/20062007/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020693.HTM\n", "Writing HTML to file ../data/html/20062007/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020694.HTM\n", "Writing HTML to file ../data/html/20062007/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020695.HTM\n", "Writing HTML to file ../data/html/20062007/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020696.HTM\n", "Writing HTML to file ../data/html/20062007/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020697.HTM\n", "Writing HTML to file ../data/html/20062007/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020698.HTM\n", "Writing HTML to file ../data/html/20062007/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020699.HTM\n", "Writing HTML to file ../data/html/20062007/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020700.HTM\n", "Writing HTML to file ../data/html/20062007/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020701.HTM\n", "Writing HTML to file ../data/html/20062007/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020702.HTM\n", "Writing HTML to file ../data/html/20062007/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020703.HTM\n", "Writing HTML to file ../data/html/20062007/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020704.HTM\n", "Writing HTML to file ../data/html/20062007/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020705.HTM\n", "Writing HTML to file ../data/html/20062007/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020706.HTM\n", "Writing HTML to file ../data/html/20062007/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020707.HTM\n", "Writing HTML to file ../data/html/20062007/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020708.HTM\n", "Writing HTML to file ../data/html/20062007/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020709.HTM\n", "Writing HTML to file ../data/html/20062007/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020710.HTM\n", "Writing HTML to file ../data/html/20062007/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020711.HTM\n", "Writing HTML to file ../data/html/20062007/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020712.HTM\n", "Writing HTML to file ../data/html/20062007/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020713.HTM\n", "Writing HTML to file ../data/html/20062007/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020714.HTM\n", "Writing HTML to file ../data/html/20062007/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020715.HTM\n", "Writing HTML to file ../data/html/20062007/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020716.HTM\n", "Writing HTML to file ../data/html/20062007/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020717.HTM\n", "Writing HTML to file ../data/html/20062007/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020718.HTM\n", "Writing HTML to file ../data/html/20062007/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020719.HTM\n", "Writing HTML to file ../data/html/20062007/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020720.HTM\n", "Writing HTML to file ../data/html/20062007/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020721.HTM\n", "Writing HTML to file ../data/html/20062007/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020722.HTM\n", "Writing HTML to file ../data/html/20062007/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020723.HTM\n", "Writing HTML to file ../data/html/20062007/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020724.HTM\n", "Writing HTML to file ../data/html/20062007/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020725.HTM\n", "Writing HTML to file ../data/html/20062007/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020726.HTM\n", "Writing HTML to file ../data/html/20062007/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020727.HTM\n", "Writing HTML to file ../data/html/20062007/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020728.HTM\n", "Writing HTML to file ../data/html/20062007/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020729.HTM\n", "Writing HTML to file ../data/html/20062007/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020730.HTM\n", "Writing HTML to file ../data/html/20062007/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020731.HTM\n", "Writing HTML to file ../data/html/20062007/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020732.HTM\n", "Writing HTML to file ../data/html/20062007/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020733.HTM\n", "Writing HTML to file ../data/html/20062007/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020734.HTM\n", "Writing HTML to file ../data/html/20062007/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020735.HTM\n", "Writing HTML to file ../data/html/20062007/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020736.HTM\n", "Writing HTML to file ../data/html/20062007/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020737.HTM\n", "Writing HTML to file ../data/html/20062007/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020738.HTM\n", "Writing HTML to file ../data/html/20062007/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020739.HTM\n", "Writing HTML to file ../data/html/20062007/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020740.HTM\n", "Writing HTML to file ../data/html/20062007/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020741.HTM\n", "Writing HTML to file ../data/html/20062007/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020742.HTM\n", "Writing HTML to file ../data/html/20062007/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020743.HTM\n", "Writing HTML to file ../data/html/20062007/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020744.HTM\n", "Writing HTML to file ../data/html/20062007/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020745.HTM\n", "Writing HTML to file ../data/html/20062007/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020746.HTM\n", "Writing HTML to file ../data/html/20062007/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020747.HTM\n", "Writing HTML to file ../data/html/20062007/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020748.HTM\n", "Writing HTML to file ../data/html/20062007/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020749.HTM\n", "Writing HTML to file ../data/html/20062007/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020750.HTM\n", "Writing HTML to file ../data/html/20062007/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020751.HTM\n", "Writing HTML to file ../data/html/20062007/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020752.HTM\n", "Writing HTML to file ../data/html/20062007/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020753.HTM\n", "Writing HTML to file ../data/html/20062007/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020754.HTM\n", "Writing HTML to file ../data/html/20062007/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020755.HTM\n", "Writing HTML to file ../data/html/20062007/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020756.HTM\n", "Writing HTML to file ../data/html/20062007/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020757.HTM\n", "Writing HTML to file ../data/html/20062007/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020758.HTM\n", "Writing HTML to file ../data/html/20062007/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020759.HTM\n", "Writing HTML to file ../data/html/20062007/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020760.HTM\n", "Writing HTML to file ../data/html/20062007/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020761.HTM\n", "Writing HTML to file ../data/html/20062007/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020762.HTM\n", "Writing HTML to file ../data/html/20062007/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020763.HTM\n", "Writing HTML to file ../data/html/20062007/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020764.HTM\n", "Writing HTML to file ../data/html/20062007/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020765.HTM\n", "Writing HTML to file ../data/html/20062007/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020766.HTM\n", "Writing HTML to file ../data/html/20062007/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020767.HTM\n", "Writing HTML to file ../data/html/20062007/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020768.HTM\n", "Writing HTML to file ../data/html/20062007/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020769.HTM\n", "Writing HTML to file ../data/html/20062007/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020770.HTM\n", "Writing HTML to file ../data/html/20062007/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020771.HTM\n", "Writing HTML to file ../data/html/20062007/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020772.HTM\n", "Writing HTML to file ../data/html/20062007/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020773.HTM\n", "Writing HTML to file ../data/html/20062007/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020774.HTM\n", "Writing HTML to file ../data/html/20062007/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020775.HTM\n", "Writing HTML to file ../data/html/20062007/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020776.HTM\n", "Writing HTML to file ../data/html/20062007/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020777.HTM\n", "Writing HTML to file ../data/html/20062007/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020778.HTM\n", "Writing HTML to file ../data/html/20062007/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020779.HTM\n", "Writing HTML to file ../data/html/20062007/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020780.HTM\n", "Writing HTML to file ../data/html/20062007/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020781.HTM\n", "Writing HTML to file ../data/html/20062007/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020782.HTM\n", "Writing HTML to file ../data/html/20062007/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020783.HTM\n", "Writing HTML to file ../data/html/20062007/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020784.HTM\n", "Writing HTML to file ../data/html/20062007/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020785.HTM\n", "Writing HTML to file ../data/html/20062007/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020786.HTM\n", "Writing HTML to file ../data/html/20062007/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020787.HTM\n", "Writing HTML to file ../data/html/20062007/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020788.HTM\n", "Writing HTML to file ../data/html/20062007/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020789.HTM\n", "Writing HTML to file ../data/html/20062007/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020790.HTM\n", "Writing HTML to file ../data/html/20062007/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020791.HTM\n", "Writing HTML to file ../data/html/20062007/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020792.HTM\n", "Writing HTML to file ../data/html/20062007/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020793.HTM\n", "Writing HTML to file ../data/html/20062007/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020794.HTM\n", "Writing HTML to file ../data/html/20062007/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020795.HTM\n", "Writing HTML to file ../data/html/20062007/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020796.HTM\n", "Writing HTML to file ../data/html/20062007/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020797.HTM\n", "Writing HTML to file ../data/html/20062007/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020798.HTM\n", "Writing HTML to file ../data/html/20062007/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020799.HTM\n", "Writing HTML to file ../data/html/20062007/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020800.HTM\n", "Writing HTML to file ../data/html/20062007/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020801.HTM\n", "Writing HTML to file ../data/html/20062007/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020802.HTM\n", "Writing HTML to file ../data/html/20062007/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020803.HTM\n", "Writing HTML to file ../data/html/20062007/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020804.HTM\n", "Writing HTML to file ../data/html/20062007/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020805.HTM\n", "Writing HTML to file ../data/html/20062007/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020806.HTM\n", "Writing HTML to file ../data/html/20062007/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020807.HTM\n", "Writing HTML to file ../data/html/20062007/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020808.HTM\n", "Writing HTML to file ../data/html/20062007/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020809.HTM\n", "Writing HTML to file ../data/html/20062007/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020810.HTM\n", "Writing HTML to file ../data/html/20062007/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020811.HTM\n", "Writing HTML to file ../data/html/20062007/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020812.HTM\n", "Writing HTML to file ../data/html/20062007/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020813.HTM\n", "Writing HTML to file ../data/html/20062007/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020814.HTM\n", "Writing HTML to file ../data/html/20062007/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020815.HTM\n", "Writing HTML to file ../data/html/20062007/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020816.HTM\n", "Writing HTML to file ../data/html/20062007/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020817.HTM\n", "Writing HTML to file ../data/html/20062007/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020818.HTM\n", "Writing HTML to file ../data/html/20062007/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020819.HTM\n", "Writing HTML to file ../data/html/20062007/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020820.HTM\n", "Writing HTML to file ../data/html/20062007/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020821.HTM\n", "Writing HTML to file ../data/html/20062007/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020822.HTM\n", "Writing HTML to file ../data/html/20062007/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020823.HTM\n", "Writing HTML to file ../data/html/20062007/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020824.HTM\n", "Writing HTML to file ../data/html/20062007/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020825.HTM\n", "Writing HTML to file ../data/html/20062007/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020826.HTM\n", "Writing HTML to file ../data/html/20062007/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020827.HTM\n", "Writing HTML to file ../data/html/20062007/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020828.HTM\n", "Writing HTML to file ../data/html/20062007/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020829.HTM\n", "Writing HTML to file ../data/html/20062007/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020830.HTM\n", "Writing HTML to file ../data/html/20062007/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020831.HTM\n", "Writing HTML to file ../data/html/20062007/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020832.HTM\n", "Writing HTML to file ../data/html/20062007/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020833.HTM\n", "Writing HTML to file ../data/html/20062007/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020834.HTM\n", "Writing HTML to file ../data/html/20062007/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020835.HTM\n", "Writing HTML to file ../data/html/20062007/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020836.HTM\n", "Writing HTML to file ../data/html/20062007/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020837.HTM\n", "Writing HTML to file ../data/html/20062007/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020838.HTM\n", "Writing HTML to file ../data/html/20062007/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020839.HTM\n", "Writing HTML to file ../data/html/20062007/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020840.HTM\n", "Writing HTML to file ../data/html/20062007/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020841.HTM\n", "Writing HTML to file ../data/html/20062007/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020842.HTM\n", "Writing HTML to file ../data/html/20062007/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020843.HTM\n", "Writing HTML to file ../data/html/20062007/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020844.HTM\n", "Writing HTML to file ../data/html/20062007/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020845.HTM\n", "Writing HTML to file ../data/html/20062007/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020846.HTM\n", "Writing HTML to file ../data/html/20062007/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020847.HTM\n", "Writing HTML to file ../data/html/20062007/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020848.HTM\n", "Writing HTML to file ../data/html/20062007/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020849.HTM\n", "Writing HTML to file ../data/html/20062007/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020850.HTM\n", "Writing HTML to file ../data/html/20062007/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020851.HTM\n", "Writing HTML to file ../data/html/20062007/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020852.HTM\n", "Writing HTML to file ../data/html/20062007/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020853.HTM\n", "Writing HTML to file ../data/html/20062007/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020854.HTM\n", "Writing HTML to file ../data/html/20062007/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020855.HTM\n", "Writing HTML to file ../data/html/20062007/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020856.HTM\n", "Writing HTML to file ../data/html/20062007/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020857.HTM\n", "Writing HTML to file ../data/html/20062007/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020858.HTM\n", "Writing HTML to file ../data/html/20062007/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020859.HTM\n", "Writing HTML to file ../data/html/20062007/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020860.HTM\n", "Writing HTML to file ../data/html/20062007/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020861.HTM\n", "Writing HTML to file ../data/html/20062007/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020862.HTM\n", "Writing HTML to file ../data/html/20062007/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020863.HTM\n", "Writing HTML to file ../data/html/20062007/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020864.HTM\n", "Writing HTML to file ../data/html/20062007/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020865.HTM\n", "Writing HTML to file ../data/html/20062007/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020866.HTM\n", "Writing HTML to file ../data/html/20062007/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020867.HTM\n", "Writing HTML to file ../data/html/20062007/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020868.HTM\n", "Writing HTML to file ../data/html/20062007/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020869.HTM\n", "Writing HTML to file ../data/html/20062007/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020870.HTM\n", "Writing HTML to file ../data/html/20062007/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020871.HTM\n", "Writing HTML to file ../data/html/20062007/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020872.HTM\n", "Writing HTML to file ../data/html/20062007/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020873.HTM\n", "Writing HTML to file ../data/html/20062007/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020874.HTM\n", "Writing HTML to file ../data/html/20062007/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020875.HTM\n", "Writing HTML to file ../data/html/20062007/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020876.HTM\n", "Writing HTML to file ../data/html/20062007/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020877.HTM\n", "Writing HTML to file ../data/html/20062007/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020878.HTM\n", "Writing HTML to file ../data/html/20062007/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020879.HTM\n", "Writing HTML to file ../data/html/20062007/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020880.HTM\n", "Writing HTML to file ../data/html/20062007/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020881.HTM\n", "Writing HTML to file ../data/html/20062007/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020882.HTM\n", "Writing HTML to file ../data/html/20062007/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020883.HTM\n", "Writing HTML to file ../data/html/20062007/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020884.HTM\n", "Writing HTML to file ../data/html/20062007/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020885.HTM\n", "Writing HTML to file ../data/html/20062007/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020886.HTM\n", "Writing HTML to file ../data/html/20062007/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020887.HTM\n", "Writing HTML to file ../data/html/20062007/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020888.HTM\n", "Writing HTML to file ../data/html/20062007/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020889.HTM\n", "Writing HTML to file ../data/html/20062007/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020890.HTM\n", "Writing HTML to file ../data/html/20062007/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020891.HTM\n", "Writing HTML to file ../data/html/20062007/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020892.HTM\n", "Writing HTML to file ../data/html/20062007/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020893.HTM\n", "Writing HTML to file ../data/html/20062007/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020894.HTM\n", "Writing HTML to file ../data/html/20062007/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020895.HTM\n", "Writing HTML to file ../data/html/20062007/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020896.HTM\n", "Writing HTML to file ../data/html/20062007/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020897.HTM\n", "Writing HTML to file ../data/html/20062007/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020898.HTM\n", "Writing HTML to file ../data/html/20062007/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020899.HTM\n", "Writing HTML to file ../data/html/20062007/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020900.HTM\n", "Writing HTML to file ../data/html/20062007/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020901.HTM\n", "Writing HTML to file ../data/html/20062007/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020902.HTM\n", "Writing HTML to file ../data/html/20062007/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020903.HTM\n", "Writing HTML to file ../data/html/20062007/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020904.HTM\n", "Writing HTML to file ../data/html/20062007/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020905.HTM\n", "Writing HTML to file ../data/html/20062007/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020906.HTM\n", "Writing HTML to file ../data/html/20062007/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020907.HTM\n", "Writing HTML to file ../data/html/20062007/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020908.HTM\n", "Writing HTML to file ../data/html/20062007/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020909.HTM\n", "Writing HTML to file ../data/html/20062007/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020910.HTM\n", "Writing HTML to file ../data/html/20062007/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020911.HTM\n", "Writing HTML to file ../data/html/20062007/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020912.HTM\n", "Writing HTML to file ../data/html/20062007/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020913.HTM\n", "Writing HTML to file ../data/html/20062007/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020914.HTM\n", "Writing HTML to file ../data/html/20062007/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020915.HTM\n", "Writing HTML to file ../data/html/20062007/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020916.HTM\n", "Writing HTML to file ../data/html/20062007/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020917.HTM\n", "Writing HTML to file ../data/html/20062007/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020918.HTM\n", "Writing HTML to file ../data/html/20062007/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020919.HTM\n", "Writing HTML to file ../data/html/20062007/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020920.HTM\n", "Writing HTML to file ../data/html/20062007/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020921.HTM\n", "Writing HTML to file ../data/html/20062007/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020922.HTM\n", "Writing HTML to file ../data/html/20062007/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020923.HTM\n", "Writing HTML to file ../data/html/20062007/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020924.HTM\n", "Writing HTML to file ../data/html/20062007/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020925.HTM\n", "Writing HTML to file ../data/html/20062007/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020926.HTM\n", "Writing HTML to file ../data/html/20062007/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020927.HTM\n", "Writing HTML to file ../data/html/20062007/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020928.HTM\n", "Writing HTML to file ../data/html/20062007/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020929.HTM\n", "Writing HTML to file ../data/html/20062007/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020930.HTM\n", "Writing HTML to file ../data/html/20062007/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020931.HTM\n", "Writing HTML to file ../data/html/20062007/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020932.HTM\n", "Writing HTML to file ../data/html/20062007/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020933.HTM\n", "Writing HTML to file ../data/html/20062007/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020934.HTM\n", "Writing HTML to file ../data/html/20062007/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020935.HTM\n", "Writing HTML to file ../data/html/20062007/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020936.HTM\n", "Writing HTML to file ../data/html/20062007/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020937.HTM\n", "Writing HTML to file ../data/html/20062007/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020938.HTM\n", "Writing HTML to file ../data/html/20062007/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020939.HTM\n", "Writing HTML to file ../data/html/20062007/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020940.HTM\n", "Writing HTML to file ../data/html/20062007/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020941.HTM\n", "Writing HTML to file ../data/html/20062007/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020942.HTM\n", "Writing HTML to file ../data/html/20062007/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020943.HTM\n", "Writing HTML to file ../data/html/20062007/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020944.HTM\n", "Writing HTML to file ../data/html/20062007/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020945.HTM\n", "Writing HTML to file ../data/html/20062007/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020946.HTM\n", "Writing HTML to file ../data/html/20062007/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020947.HTM\n", "Writing HTML to file ../data/html/20062007/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020948.HTM\n", "Writing HTML to file ../data/html/20062007/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020949.HTM\n", "Writing HTML to file ../data/html/20062007/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020950.HTM\n", "Writing HTML to file ../data/html/20062007/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020951.HTM\n", "Writing HTML to file ../data/html/20062007/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020952.HTM\n", "Writing HTML to file ../data/html/20062007/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020953.HTM\n", "Writing HTML to file ../data/html/20062007/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020954.HTM\n", "Writing HTML to file ../data/html/20062007/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020955.HTM\n", "Writing HTML to file ../data/html/20062007/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020956.HTM\n", "Writing HTML to file ../data/html/20062007/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020957.HTM\n", "Writing HTML to file ../data/html/20062007/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020958.HTM\n", "Writing HTML to file ../data/html/20062007/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020959.HTM\n", "Writing HTML to file ../data/html/20062007/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020960.HTM\n", "Writing HTML to file ../data/html/20062007/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020961.HTM\n", "Writing HTML to file ../data/html/20062007/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020962.HTM\n", "Writing HTML to file ../data/html/20062007/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020963.HTM\n", "Writing HTML to file ../data/html/20062007/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020964.HTM\n", "Writing HTML to file ../data/html/20062007/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020965.HTM\n", "Writing HTML to file ../data/html/20062007/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020966.HTM\n", "Writing HTML to file ../data/html/20062007/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020967.HTM\n", "Writing HTML to file ../data/html/20062007/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020968.HTM\n", "Writing HTML to file ../data/html/20062007/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020969.HTM\n", "Writing HTML to file ../data/html/20062007/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020970.HTM\n", "Writing HTML to file ../data/html/20062007/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020971.HTM\n", "Writing HTML to file ../data/html/20062007/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020972.HTM\n", "Writing HTML to file ../data/html/20062007/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020973.HTM\n", "Writing HTML to file ../data/html/20062007/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020974.HTM\n", "Writing HTML to file ../data/html/20062007/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020975.HTM\n", "Writing HTML to file ../data/html/20062007/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020976.HTM\n", "Writing HTML to file ../data/html/20062007/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020977.HTM\n", "Writing HTML to file ../data/html/20062007/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020978.HTM\n", "Writing HTML to file ../data/html/20062007/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020979.HTM\n", "Writing HTML to file ../data/html/20062007/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020980.HTM\n", "Writing HTML to file ../data/html/20062007/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020981.HTM\n", "Writing HTML to file ../data/html/20062007/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020982.HTM\n", "Writing HTML to file ../data/html/20062007/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020983.HTM\n", "Writing HTML to file ../data/html/20062007/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020984.HTM\n", "Writing HTML to file ../data/html/20062007/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020985.HTM\n", "Writing HTML to file ../data/html/20062007/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020986.HTM\n", "Writing HTML to file ../data/html/20062007/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020987.HTM\n", "Writing HTML to file ../data/html/20062007/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020988.HTM\n", "Writing HTML to file ../data/html/20062007/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020989.HTM\n", "Writing HTML to file ../data/html/20062007/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020990.HTM\n", "Writing HTML to file ../data/html/20062007/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020991.HTM\n", "Writing HTML to file ../data/html/20062007/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020992.HTM\n", "Writing HTML to file ../data/html/20062007/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020993.HTM\n", "Writing HTML to file ../data/html/20062007/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020994.HTM\n", "Writing HTML to file ../data/html/20062007/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020995.HTM\n", "Writing HTML to file ../data/html/20062007/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020996.HTM\n", "Writing HTML to file ../data/html/20062007/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020997.HTM\n", "Writing HTML to file ../data/html/20062007/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020998.HTM\n", "Writing HTML to file ../data/html/20062007/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020999.HTM\n", "Writing HTML to file ../data/html/20062007/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021000.HTM\n", "Writing HTML to file ../data/html/20062007/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021001.HTM\n", "Writing HTML to file ../data/html/20062007/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021002.HTM\n", "Writing HTML to file ../data/html/20062007/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021003.HTM\n", "Writing HTML to file ../data/html/20062007/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021004.HTM\n", "Writing HTML to file ../data/html/20062007/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021005.HTM\n", "Writing HTML to file ../data/html/20062007/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021006.HTM\n", "Writing HTML to file ../data/html/20062007/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021007.HTM\n", "Writing HTML to file ../data/html/20062007/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021008.HTM\n", "Writing HTML to file ../data/html/20062007/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021009.HTM\n", "Writing HTML to file ../data/html/20062007/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021010.HTM\n", "Writing HTML to file ../data/html/20062007/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021011.HTM\n", "Writing HTML to file ../data/html/20062007/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021012.HTM\n", "Writing HTML to file ../data/html/20062007/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021013.HTM\n", "Writing HTML to file ../data/html/20062007/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021014.HTM\n", "Writing HTML to file ../data/html/20062007/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021015.HTM\n", "Writing HTML to file ../data/html/20062007/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021016.HTM\n", "Writing HTML to file ../data/html/20062007/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021017.HTM\n", "Writing HTML to file ../data/html/20062007/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021018.HTM\n", "Writing HTML to file ../data/html/20062007/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021019.HTM\n", "Writing HTML to file ../data/html/20062007/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021020.HTM\n", "Writing HTML to file ../data/html/20062007/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021021.HTM\n", "Writing HTML to file ../data/html/20062007/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021022.HTM\n", "Writing HTML to file ../data/html/20062007/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021023.HTM\n", "Writing HTML to file ../data/html/20062007/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021024.HTM\n", "Writing HTML to file ../data/html/20062007/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021025.HTM\n", "Writing HTML to file ../data/html/20062007/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021026.HTM\n", "Writing HTML to file ../data/html/20062007/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021027.HTM\n", "Writing HTML to file ../data/html/20062007/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021028.HTM\n", "Writing HTML to file ../data/html/20062007/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021029.HTM\n", "Writing HTML to file ../data/html/20062007/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021030.HTM\n", "Writing HTML to file ../data/html/20062007/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021031.HTM\n", "Writing HTML to file ../data/html/20062007/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021032.HTM\n", "Writing HTML to file ../data/html/20062007/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021033.HTM\n", "Writing HTML to file ../data/html/20062007/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021034.HTM\n", "Writing HTML to file ../data/html/20062007/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021035.HTM\n", "Writing HTML to file ../data/html/20062007/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021036.HTM\n", "Writing HTML to file ../data/html/20062007/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021037.HTM\n", "Writing HTML to file ../data/html/20062007/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021038.HTM\n", "Writing HTML to file ../data/html/20062007/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021039.HTM\n", "Writing HTML to file ../data/html/20062007/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021040.HTM\n", "Writing HTML to file ../data/html/20062007/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021041.HTM\n", "Writing HTML to file ../data/html/20062007/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021042.HTM\n", "Writing HTML to file ../data/html/20062007/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021043.HTM\n", "Writing HTML to file ../data/html/20062007/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021044.HTM\n", "Writing HTML to file ../data/html/20062007/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021045.HTM\n", "Writing HTML to file ../data/html/20062007/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021046.HTM\n", "Writing HTML to file ../data/html/20062007/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021047.HTM\n", "Writing HTML to file ../data/html/20062007/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021048.HTM\n", "Writing HTML to file ../data/html/20062007/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021049.HTM\n", "Writing HTML to file ../data/html/20062007/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021050.HTM\n", "Writing HTML to file ../data/html/20062007/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021051.HTM\n", "Writing HTML to file ../data/html/20062007/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021052.HTM\n", "Writing HTML to file ../data/html/20062007/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021053.HTM\n", "Writing HTML to file ../data/html/20062007/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021054.HTM\n", "Writing HTML to file ../data/html/20062007/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021055.HTM\n", "Writing HTML to file ../data/html/20062007/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021056.HTM\n", "Writing HTML to file ../data/html/20062007/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021057.HTM\n", "Writing HTML to file ../data/html/20062007/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021058.HTM\n", "Writing HTML to file ../data/html/20062007/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021059.HTM\n", "Writing HTML to file ../data/html/20062007/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021060.HTM\n", "Writing HTML to file ../data/html/20062007/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021061.HTM\n", "Writing HTML to file ../data/html/20062007/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021062.HTM\n", "Writing HTML to file ../data/html/20062007/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021063.HTM\n", "Writing HTML to file ../data/html/20062007/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021064.HTM\n", "Writing HTML to file ../data/html/20062007/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021065.HTM\n", "Writing HTML to file ../data/html/20062007/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021066.HTM\n", "Writing HTML to file ../data/html/20062007/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021067.HTM\n", "Writing HTML to file ../data/html/20062007/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021068.HTM\n", "Writing HTML to file ../data/html/20062007/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021069.HTM\n", "Writing HTML to file ../data/html/20062007/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021070.HTM\n", "Writing HTML to file ../data/html/20062007/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021071.HTM\n", "Writing HTML to file ../data/html/20062007/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021072.HTM\n", "Writing HTML to file ../data/html/20062007/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021073.HTM\n", "Writing HTML to file ../data/html/20062007/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021074.HTM\n", "Writing HTML to file ../data/html/20062007/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021075.HTM\n", "Writing HTML to file ../data/html/20062007/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021076.HTM\n", "Writing HTML to file ../data/html/20062007/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021077.HTM\n", "Writing HTML to file ../data/html/20062007/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021078.HTM\n", "Writing HTML to file ../data/html/20062007/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021079.HTM\n", "Writing HTML to file ../data/html/20062007/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021080.HTM\n", "Writing HTML to file ../data/html/20062007/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021081.HTM\n", "Writing HTML to file ../data/html/20062007/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021082.HTM\n", "Writing HTML to file ../data/html/20062007/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021083.HTM\n", "Writing HTML to file ../data/html/20062007/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021084.HTM\n", "Writing HTML to file ../data/html/20062007/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021085.HTM\n", "Writing HTML to file ../data/html/20062007/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021086.HTM\n", "Writing HTML to file ../data/html/20062007/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021087.HTM\n", "Writing HTML to file ../data/html/20062007/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021088.HTM\n", "Writing HTML to file ../data/html/20062007/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021089.HTM\n", "Writing HTML to file ../data/html/20062007/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021090.HTM\n", "Writing HTML to file ../data/html/20062007/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021091.HTM\n", "Writing HTML to file ../data/html/20062007/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021092.HTM\n", "Writing HTML to file ../data/html/20062007/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021093.HTM\n", "Writing HTML to file ../data/html/20062007/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021094.HTM\n", "Writing HTML to file ../data/html/20062007/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021095.HTM\n", "Writing HTML to file ../data/html/20062007/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021096.HTM\n", "Writing HTML to file ../data/html/20062007/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021097.HTM\n", "Writing HTML to file ../data/html/20062007/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021098.HTM\n", "Writing HTML to file ../data/html/20062007/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021099.HTM\n", "Writing HTML to file ../data/html/20062007/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021100.HTM\n", "Writing HTML to file ../data/html/20062007/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021101.HTM\n", "Writing HTML to file ../data/html/20062007/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021102.HTM\n", "Writing HTML to file ../data/html/20062007/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021103.HTM\n", "Writing HTML to file ../data/html/20062007/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021104.HTM\n", "Writing HTML to file ../data/html/20062007/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021105.HTM\n", "Writing HTML to file ../data/html/20062007/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021106.HTM\n", "Writing HTML to file ../data/html/20062007/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021107.HTM\n", "Writing HTML to file ../data/html/20062007/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021108.HTM\n", "Writing HTML to file ../data/html/20062007/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021109.HTM\n", "Writing HTML to file ../data/html/20062007/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021110.HTM\n", "Writing HTML to file ../data/html/20062007/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021111.HTM\n", "Writing HTML to file ../data/html/20062007/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021112.HTM\n", "Writing HTML to file ../data/html/20062007/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021113.HTM\n", "Writing HTML to file ../data/html/20062007/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021114.HTM\n", "Writing HTML to file ../data/html/20062007/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021115.HTM\n", "Writing HTML to file ../data/html/20062007/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021116.HTM\n", "Writing HTML to file ../data/html/20062007/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021117.HTM\n", "Writing HTML to file ../data/html/20062007/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021118.HTM\n", "Writing HTML to file ../data/html/20062007/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021119.HTM\n", "Writing HTML to file ../data/html/20062007/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021120.HTM\n", "Writing HTML to file ../data/html/20062007/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021121.HTM\n", "Writing HTML to file ../data/html/20062007/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021122.HTM\n", "Writing HTML to file ../data/html/20062007/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021123.HTM\n", "Writing HTML to file ../data/html/20062007/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021124.HTM\n", "Writing HTML to file ../data/html/20062007/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021125.HTM\n", "Writing HTML to file ../data/html/20062007/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021126.HTM\n", "Writing HTML to file ../data/html/20062007/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021127.HTM\n", "Writing HTML to file ../data/html/20062007/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021128.HTM\n", "Writing HTML to file ../data/html/20062007/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021129.HTM\n", "Writing HTML to file ../data/html/20062007/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021130.HTM\n", "Writing HTML to file ../data/html/20062007/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021131.HTM\n", "Writing HTML to file ../data/html/20062007/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021132.HTM\n", "Writing HTML to file ../data/html/20062007/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021133.HTM\n", "Writing HTML to file ../data/html/20062007/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021134.HTM\n", "Writing HTML to file ../data/html/20062007/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021135.HTM\n", "Writing HTML to file ../data/html/20062007/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021136.HTM\n", "Writing HTML to file ../data/html/20062007/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021137.HTM\n", "Writing HTML to file ../data/html/20062007/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021138.HTM\n", "Writing HTML to file ../data/html/20062007/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021139.HTM\n", "Writing HTML to file ../data/html/20062007/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021140.HTM\n", "Writing HTML to file ../data/html/20062007/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021141.HTM\n", "Writing HTML to file ../data/html/20062007/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021142.HTM\n", "Writing HTML to file ../data/html/20062007/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021143.HTM\n", "Writing HTML to file ../data/html/20062007/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021144.HTM\n", "Writing HTML to file ../data/html/20062007/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021145.HTM\n", "Writing HTML to file ../data/html/20062007/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021146.HTM\n", "Writing HTML to file ../data/html/20062007/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021147.HTM\n", "Writing HTML to file ../data/html/20062007/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021148.HTM\n", "Writing HTML to file ../data/html/20062007/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021149.HTM\n", "Writing HTML to file ../data/html/20062007/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021150.HTM\n", "Writing HTML to file ../data/html/20062007/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021151.HTM\n", "Writing HTML to file ../data/html/20062007/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021152.HTM\n", "Writing HTML to file ../data/html/20062007/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021153.HTM\n", "Writing HTML to file ../data/html/20062007/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021154.HTM\n", "Writing HTML to file ../data/html/20062007/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021155.HTM\n", "Writing HTML to file ../data/html/20062007/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021156.HTM\n", "Writing HTML to file ../data/html/20062007/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021157.HTM\n", "Writing HTML to file ../data/html/20062007/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021158.HTM\n", "Writing HTML to file ../data/html/20062007/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021159.HTM\n", "Writing HTML to file ../data/html/20062007/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021160.HTM\n", "Writing HTML to file ../data/html/20062007/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021161.HTM\n", "Writing HTML to file ../data/html/20062007/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021162.HTM\n", "Writing HTML to file ../data/html/20062007/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021163.HTM\n", "Writing HTML to file ../data/html/20062007/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021164.HTM\n", "Writing HTML to file ../data/html/20062007/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021165.HTM\n", "Writing HTML to file ../data/html/20062007/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021166.HTM\n", "Writing HTML to file ../data/html/20062007/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021167.HTM\n", "Writing HTML to file ../data/html/20062007/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021168.HTM\n", "Writing HTML to file ../data/html/20062007/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021169.HTM\n", "Writing HTML to file ../data/html/20062007/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021170.HTM\n", "Writing HTML to file ../data/html/20062007/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021171.HTM\n", "Writing HTML to file ../data/html/20062007/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021172.HTM\n", "Writing HTML to file ../data/html/20062007/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021173.HTM\n", "Writing HTML to file ../data/html/20062007/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021174.HTM\n", "Writing HTML to file ../data/html/20062007/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021175.HTM\n", "Writing HTML to file ../data/html/20062007/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021176.HTM\n", "Writing HTML to file ../data/html/20062007/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021177.HTM\n", "Writing HTML to file ../data/html/20062007/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021178.HTM\n", "Writing HTML to file ../data/html/20062007/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021179.HTM\n", "Writing HTML to file ../data/html/20062007/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021180.HTM\n", "Writing HTML to file ../data/html/20062007/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021181.HTM\n", "Writing HTML to file ../data/html/20062007/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021182.HTM\n", "Writing HTML to file ../data/html/20062007/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021183.HTM\n", "Writing HTML to file ../data/html/20062007/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021184.HTM\n", "Writing HTML to file ../data/html/20062007/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021185.HTM\n", "Writing HTML to file ../data/html/20062007/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021186.HTM\n", "Writing HTML to file ../data/html/20062007/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021187.HTM\n", "Writing HTML to file ../data/html/20062007/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021188.HTM\n", "Writing HTML to file ../data/html/20062007/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021189.HTM\n", "Writing HTML to file ../data/html/20062007/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021190.HTM\n", "Writing HTML to file ../data/html/20062007/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021191.HTM\n", "Writing HTML to file ../data/html/20062007/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021192.HTM\n", "Writing HTML to file ../data/html/20062007/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021193.HTM\n", "Writing HTML to file ../data/html/20062007/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021194.HTM\n", "Writing HTML to file ../data/html/20062007/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021195.HTM\n", "Writing HTML to file ../data/html/20062007/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021196.HTM\n", "Writing HTML to file ../data/html/20062007/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021197.HTM\n", "Writing HTML to file ../data/html/20062007/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021198.HTM\n", "Writing HTML to file ../data/html/20062007/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021199.HTM\n", "Writing HTML to file ../data/html/20062007/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021200.HTM\n", "Writing HTML to file ../data/html/20062007/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021201.HTM\n", "Writing HTML to file ../data/html/20062007/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021202.HTM\n", "Writing HTML to file ../data/html/20062007/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021203.HTM\n", "Writing HTML to file ../data/html/20062007/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021204.HTM\n", "Writing HTML to file ../data/html/20062007/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021205.HTM\n", "Writing HTML to file ../data/html/20062007/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021206.HTM\n", "Writing HTML to file ../data/html/20062007/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021207.HTM\n", "Writing HTML to file ../data/html/20062007/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021208.HTM\n", "Writing HTML to file ../data/html/20062007/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021209.HTM\n", "Writing HTML to file ../data/html/20062007/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021210.HTM\n", "Writing HTML to file ../data/html/20062007/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021211.HTM\n", "Writing HTML to file ../data/html/20062007/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021212.HTM\n", "Writing HTML to file ../data/html/20062007/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021213.HTM\n", "Writing HTML to file ../data/html/20062007/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021214.HTM\n", "Writing HTML to file ../data/html/20062007/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021215.HTM\n", "Writing HTML to file ../data/html/20062007/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021216.HTM\n", "Writing HTML to file ../data/html/20062007/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021217.HTM\n", "Writing HTML to file ../data/html/20062007/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021218.HTM\n", "Writing HTML to file ../data/html/20062007/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021219.HTM\n", "Writing HTML to file ../data/html/20062007/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021220.HTM\n", "Writing HTML to file ../data/html/20062007/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021221.HTM\n", "Writing HTML to file ../data/html/20062007/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021222.HTM\n", "Writing HTML to file ../data/html/20062007/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021223.HTM\n", "Writing HTML to file ../data/html/20062007/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021224.HTM\n", "Writing HTML to file ../data/html/20062007/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021225.HTM\n", "Writing HTML to file ../data/html/20062007/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021226.HTM\n", "Writing HTML to file ../data/html/20062007/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021227.HTM\n", "Writing HTML to file ../data/html/20062007/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021228.HTM\n", "Writing HTML to file ../data/html/20062007/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021229.HTM\n", "Writing HTML to file ../data/html/20062007/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021230.HTM\n", "Writing HTML to file ../data/html/20062007/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Scrape failed at URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Season = 20062007\n", "Max game = 1230\n", "Ending data pull at 2019-02-17 11:50:51.386370\n" ] } ], "source": [ "# url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "# seasons = ['20062007']\n", "# games = list(range(1, 5000))\n", "\n", "# download_game_range(url_tempalte, seasons, games)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 18:12:07.706123\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020231.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020232.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020233.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020234.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020235.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020236.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020237.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020238.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020239.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020240.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020241.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020242.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020243.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020244.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020245.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020246.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020247.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020248.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020249.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020250.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020251.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020252.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020253.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020254.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020255.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020256.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020257.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020258.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020259.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020260.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020261.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020262.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020263.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020264.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020265.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020266.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020267.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020268.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020269.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020270.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020271.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020272.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020273.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020274.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020275.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020276.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020277.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020278.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020279.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020280.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020281.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020282.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020283.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020284.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020285.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020286.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020287.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020288.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020289.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020290.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020291.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020292.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020293.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020294.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020295.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020296.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020297.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020298.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020299.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020300.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020301.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020302.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020303.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020304.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020305.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020306.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020307.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020308.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020309.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020310.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020311.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020312.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020313.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020314.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020315.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020316.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020317.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020318.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020319.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020320.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020321.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020322.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020323.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020324.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020325.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020326.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020327.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020328.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020329.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020330.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020331.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020332.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020333.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020334.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020335.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020336.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020337.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020338.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020339.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020340.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020341.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020342.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020343.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020344.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020345.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020346.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020347.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020348.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020349.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020350.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020351.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020352.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020353.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020354.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020355.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020356.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020357.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020358.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020359.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020360.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020361.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020362.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020363.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020364.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020365.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020366.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020367.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020368.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020369.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020370.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020371.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020372.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020373.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020374.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020375.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020376.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020377.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020378.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020379.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020380.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020381.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020382.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020383.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020384.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020385.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020386.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020387.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020388.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020389.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020390.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020391.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020392.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020393.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020394.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020395.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020396.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020397.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020398.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020399.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020400.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020401.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020402.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020403.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020404.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020405.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020406.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020407.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020408.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020409.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020410.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020411.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020412.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020413.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020414.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020415.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020416.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020417.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020418.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020419.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020420.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020421.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020422.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020423.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020424.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020425.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020426.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020427.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020428.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020429.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020430.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020431.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020432.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020433.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020434.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020435.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020436.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020437.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020438.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020439.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020440.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020441.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020442.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020443.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020444.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020445.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020446.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020447.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020448.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020449.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020450.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020451.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020452.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020453.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020454.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020455.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020456.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020457.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020458.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020459.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020460.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020461.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020462.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020463.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020464.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020465.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020466.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020467.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020468.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020469.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020470.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020471.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020472.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020473.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020474.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020475.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020476.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020477.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020478.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020479.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020480.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020481.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020482.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020483.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020484.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020485.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020486.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020487.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020488.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020489.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020490.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020491.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020492.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020493.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020494.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020495.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020496.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020497.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020498.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020499.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020500.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020501.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020502.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020503.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020504.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020505.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020506.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020507.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020508.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020509.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020510.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020511.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020512.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020513.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020514.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020515.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020516.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020517.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020518.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020519.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020520.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020521.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020522.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020523.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020524.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020525.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020526.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020527.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020528.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020529.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020530.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020531.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020532.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020533.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020534.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020535.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020536.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020537.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020538.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020539.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020540.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020541.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020542.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020543.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020544.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020545.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020546.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020547.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020548.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020549.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020550.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020551.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020552.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020553.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020554.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020555.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020556.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020557.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020558.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020559.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020560.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020561.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020562.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020563.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020564.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020565.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020566.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020567.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020568.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020569.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020570.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020571.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020572.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020573.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020574.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020575.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020576.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020577.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020578.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020579.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020580.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020581.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020582.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020583.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020584.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020585.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020586.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020587.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020588.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020589.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020590.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020591.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020592.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020593.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020594.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020595.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020596.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020597.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020598.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020599.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020600.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020601.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020602.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020603.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020604.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020605.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020606.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020607.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020608.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020609.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020610.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020611.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020612.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020613.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020614.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020615.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020616.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020617.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020618.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020619.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020620.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020621.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020622.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020623.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020624.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020625.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020626.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020627.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020628.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020629.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020630.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020631.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020632.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020633.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020634.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020635.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020636.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020637.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020638.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020639.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020640.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020641.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020642.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020643.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020644.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020645.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020646.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020647.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020648.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020649.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020650.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020651.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020652.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020653.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020654.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020655.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020656.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020657.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020658.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020659.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020660.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020661.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020662.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020663.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020664.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020665.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020666.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020667.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020668.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020669.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020670.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020671.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020672.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020673.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020674.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020675.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020676.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020677.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020678.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020679.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020680.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020681.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020682.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020683.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020684.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020685.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020686.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020687.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020688.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020689.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020690.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020691.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020692.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020693.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020694.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020695.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020696.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020697.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020698.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020699.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020700.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020701.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020702.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020703.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020704.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020705.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020706.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020707.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020708.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020709.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020710.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020711.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020712.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020713.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020714.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020715.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020716.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020717.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020718.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020719.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020720.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020721.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020722.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020723.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020724.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020725.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020726.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020727.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020728.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020729.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020730.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020731.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020732.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020733.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020734.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020735.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020736.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020737.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020738.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020739.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020740.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020741.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020742.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020743.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020744.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020745.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020746.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020747.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020748.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020749.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020750.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020751.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020752.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020753.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020754.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020755.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020756.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020757.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020758.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020759.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020760.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020761.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020762.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020763.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020764.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020765.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020766.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020767.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020768.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020769.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020770.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020771.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020772.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020773.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020774.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020775.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020776.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020777.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020778.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020779.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020780.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020781.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020782.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020783.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020784.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020785.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020786.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020787.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020788.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020789.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020790.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020791.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020792.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020793.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020794.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020795.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020796.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020797.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020798.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020799.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020800.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020801.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020802.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020803.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020804.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020805.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020806.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020807.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020808.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020809.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020810.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020811.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020812.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020813.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020814.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020815.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020816.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020817.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020818.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020819.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020820.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020821.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020822.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020823.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020824.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020825.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020826.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020827.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020828.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020829.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020830.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020831.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020832.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020833.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020834.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020835.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020836.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020837.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020838.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020839.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020840.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020841.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020842.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020843.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020844.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020845.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020846.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020847.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020848.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020849.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020850.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020851.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020852.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020853.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020854.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020855.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020856.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020857.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020858.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020859.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020860.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020861.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020862.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020863.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020864.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020865.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020866.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020867.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020868.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020869.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020870.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020871.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020872.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020873.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020874.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020875.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020876.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020877.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020878.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020879.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020880.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020881.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020882.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020883.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020884.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020885.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020886.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020887.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020888.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020889.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020890.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020891.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020892.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020893.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020894.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020895.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020896.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020897.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020898.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020899.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020900.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020901.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020902.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020903.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020904.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020905.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020906.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020907.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020908.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020909.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020910.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020911.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020912.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020913.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020914.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020915.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020916.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020917.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020918.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020919.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020920.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020921.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020922.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020923.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020924.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020925.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020926.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020927.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020928.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020929.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020930.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020931.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020932.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020933.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020934.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020935.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020936.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020937.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020938.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020939.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020940.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020941.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020942.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020943.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020944.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020945.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020946.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020947.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020948.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020949.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020950.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020951.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020952.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020953.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020954.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020955.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020956.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020957.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020958.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020959.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020960.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020961.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020962.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020963.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020964.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020965.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020966.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020967.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020968.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020969.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020970.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020971.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020972.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020973.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020974.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020975.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020976.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020977.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020978.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020979.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020980.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020981.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020982.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020983.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020984.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020985.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020986.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020987.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020988.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020989.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020990.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020991.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020992.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020993.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020994.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020995.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020996.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020997.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020998.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020999.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021000.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2428.html\n" ] }, { "ename": "KeyboardInterrupt", "evalue": "", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mgames\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m3000\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mdownload_game_range\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl_tempalte\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseasons\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgames\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mno_break\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;32m\u001b[0m in \u001b[0;36mdownload_game_range\u001b[0;34m(url_template, seasons, games, no_break)\u001b[0m\n\u001b[1;32m 58\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 59\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mgame_num\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mgames\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 60\u001b[0;31m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_wait\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest_delay\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 61\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 62\u001b[0m page_text = get_page(\n", "\u001b[0;31mKeyboardInterrupt\u001b[0m: " ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20032004']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games, no_break=True)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Legacy format\n", "Pull the old format games. " ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 20:34:58.883878\n", "Making dirs ../data/html/20032004\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020231.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020232.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020233.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020234.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020235.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020236.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020237.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020238.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020239.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020240.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020241.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020242.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020243.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020244.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020245.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020246.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020247.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020248.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020249.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020250.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020251.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020252.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020253.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020254.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020255.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020256.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020257.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020258.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020259.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020260.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020261.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020262.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020263.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020264.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020265.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020266.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020267.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020268.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020269.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020270.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020271.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020272.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020273.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020274.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020275.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020276.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020277.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020278.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020279.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020280.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020281.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020282.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020283.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020284.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020285.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020286.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020287.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020288.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020289.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020290.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020291.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020292.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020293.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020294.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020295.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020296.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020297.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020298.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020299.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020300.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020301.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020302.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020303.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020304.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020305.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020306.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020307.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020308.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020309.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020310.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020311.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020312.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020313.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020314.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020315.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020316.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020317.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020318.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020319.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020320.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020321.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020322.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020323.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020324.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020325.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020326.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020327.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020328.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020329.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020330.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020331.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020332.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020333.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020334.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020335.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020336.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020337.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020338.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020339.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020340.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020341.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020342.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020343.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020344.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020345.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020346.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020347.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020348.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020349.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020350.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020351.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020352.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020353.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020354.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020355.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020356.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020357.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020358.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020359.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020360.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020361.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020362.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020363.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020364.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020365.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020366.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020367.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020368.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020369.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020370.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020371.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020372.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020373.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020374.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020375.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020376.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020377.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020378.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020379.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020380.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020381.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020382.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020383.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020384.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020385.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020386.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020387.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020388.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020389.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020390.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020391.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020392.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020393.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020394.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020395.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020396.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020397.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020398.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020399.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020400.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020401.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020402.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020403.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020404.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020405.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020406.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020407.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020408.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020409.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020410.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020411.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020412.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020413.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020414.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020415.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020416.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020417.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020418.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020419.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020420.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020421.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020422.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020423.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020424.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020425.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020426.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020427.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020428.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020429.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020430.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020431.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020432.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020433.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020434.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020435.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020436.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020437.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020438.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020439.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020440.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020441.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020442.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020443.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020444.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020445.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020446.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020447.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020448.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020449.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020450.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020451.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020452.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020453.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020454.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020455.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020456.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020457.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020458.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020459.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020460.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020461.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020462.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020463.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020464.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020465.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020466.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020467.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020468.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020469.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020470.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020471.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020472.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020473.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020474.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020475.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020476.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020477.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020478.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020479.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020480.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020481.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020482.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020483.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020484.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020485.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020486.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020487.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020488.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020489.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020490.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020491.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020492.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020493.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020494.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020495.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020496.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020497.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020498.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020499.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020500.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020501.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020502.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020503.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020504.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020505.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020506.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020507.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020508.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020509.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020510.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020511.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020512.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020513.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020514.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020515.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020516.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020517.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020518.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020519.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020520.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020521.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020522.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020523.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020524.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020525.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020526.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020527.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020528.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020529.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020530.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020531.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020532.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020533.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020534.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020535.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020536.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020537.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020538.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020539.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020540.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020541.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020542.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020543.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020544.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020545.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020546.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020547.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020548.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020549.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020550.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020551.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020552.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020553.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020554.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020555.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020556.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020557.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020558.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020559.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020560.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020561.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020562.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020563.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020564.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020565.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020566.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020567.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020568.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020569.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020570.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020571.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020572.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020573.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020574.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020575.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020576.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020577.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020578.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020579.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020580.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020581.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020582.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020583.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020584.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020585.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020586.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020587.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020588.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020589.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020590.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020591.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020592.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020593.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020594.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020595.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020596.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020597.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020598.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020599.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020600.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020601.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020602.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020603.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020604.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020605.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020606.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020607.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020608.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020609.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020610.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020611.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020612.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020613.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020614.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020615.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020616.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020617.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020618.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020619.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020620.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020621.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020622.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020623.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020624.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020625.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020626.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020627.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020628.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020629.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020630.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020631.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020632.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020633.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020634.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020635.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020636.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020637.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020638.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020639.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020640.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020641.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020642.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020643.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020644.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020645.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020646.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020647.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020648.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020649.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020650.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020651.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020652.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020653.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020654.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020655.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020656.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020657.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020658.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020659.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020660.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020661.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020662.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020663.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020664.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020665.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020666.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020667.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020668.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020669.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020670.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020671.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020672.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020673.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020674.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020675.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020676.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020677.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020678.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020679.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020680.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020681.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020682.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020683.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020684.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020685.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020686.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020687.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020688.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020689.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020690.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020691.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020692.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020693.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020694.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020695.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020696.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020697.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020698.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020699.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020700.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020701.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020702.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020703.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020704.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020705.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020706.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020707.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020708.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020709.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020710.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020711.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020712.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020713.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020714.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020715.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020716.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020717.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020718.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020719.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020720.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020721.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020722.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020723.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020724.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020725.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020726.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020727.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020728.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020729.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020730.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020731.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020732.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020733.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020734.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020735.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020736.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020737.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020738.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020739.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020740.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020741.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020742.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020743.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020744.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020745.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020746.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020747.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020748.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020749.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020750.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020751.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020752.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020753.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020754.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020755.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020756.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020757.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020758.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020759.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020760.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020761.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020762.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020763.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020764.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020765.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020766.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020767.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020768.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020769.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020770.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020771.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020772.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020773.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020774.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020775.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020776.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020777.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020778.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020779.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020780.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020781.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020782.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020783.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020784.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020785.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020786.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020787.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020788.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020789.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020790.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020791.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020792.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020793.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020794.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020795.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020796.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020797.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020798.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020799.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020800.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020801.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020802.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020803.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020804.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020805.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020806.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020807.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020808.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020809.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020810.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020811.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020812.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020813.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020814.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020815.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020816.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020817.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020818.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020819.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020820.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020821.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020822.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020823.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020824.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020825.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020826.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020827.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020828.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020829.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020830.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020831.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020832.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020833.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020834.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020835.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020836.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020837.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020838.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020839.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020840.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020841.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020842.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020843.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020844.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020845.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020846.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020847.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020848.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020849.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020850.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020851.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020852.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020853.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020854.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020855.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020856.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020857.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020858.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020859.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020860.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020861.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020862.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020863.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020864.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020865.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020866.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020867.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020868.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020869.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020870.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020871.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020872.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020873.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020874.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020875.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020876.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020877.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020878.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020879.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020880.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020881.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020882.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020883.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020884.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020885.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020886.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020887.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020888.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020889.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020890.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020891.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020892.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020893.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020894.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020895.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020896.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020897.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020898.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020899.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020900.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020901.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020902.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020903.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020904.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020905.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020906.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020907.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020908.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020909.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020910.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020911.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020912.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020913.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020914.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020915.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020916.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020917.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020918.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020919.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020920.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020921.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020922.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020923.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020924.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020925.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020926.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020927.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020928.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020929.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020930.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020931.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020932.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020933.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020934.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020935.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020936.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020937.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020938.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020939.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020940.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020941.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020942.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020943.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020944.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020945.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020946.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020947.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020948.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020949.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020950.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020951.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020952.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020953.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020954.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020955.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020956.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020957.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020958.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020959.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020960.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020961.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020962.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020963.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020964.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020965.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020966.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020967.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020968.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020969.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020970.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020971.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020972.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020973.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020974.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020975.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020976.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020977.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020978.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020979.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020980.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020981.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020982.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020983.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020984.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020985.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020986.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020987.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020988.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020989.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020990.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020991.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020992.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020993.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020994.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020995.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020996.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020997.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020998.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL020999.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021000.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20032004/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL021999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/1999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20032004/PL022999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20032004/2999.html\n", "Done season 20032004\n", "Ending data pull at 2019-02-17 23:14:16.598491\n" ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20032004']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games, no_break=True)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 23:31:05.848611\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL020999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL021999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/1999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20042005/PL022999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20042005/2999.html\n", "Done season 20042005\n", "Ending data pull at 2019-02-18 02:07:58.679523\n" ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20042005']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games, no_break=True)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-18 02:07:58.687829\n", "Making dirs ../data/html/20052006\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020231.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020232.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020233.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020235.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020236.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020237.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020238.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020239.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020240.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020241.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020242.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020243.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020244.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020245.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020246.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020247.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020248.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020249.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020250.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020251.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020252.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020253.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020254.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020255.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020256.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020257.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020258.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020259.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020260.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020261.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020262.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020263.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020264.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020265.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020266.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020267.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020268.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020269.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020270.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020271.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020272.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020273.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020274.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020275.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020276.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020277.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020278.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020279.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020280.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020281.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020282.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020283.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020284.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020285.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020286.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020287.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020288.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020289.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020290.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020291.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020292.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020293.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020294.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020295.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020296.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020297.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020298.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020299.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020300.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020301.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020302.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020303.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020304.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020305.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020306.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020307.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020308.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020309.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020310.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020311.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020312.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020313.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020314.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020315.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020316.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020317.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020318.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020319.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020320.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020321.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020322.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020323.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020324.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020325.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020326.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020327.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020328.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020329.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020330.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020331.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020332.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020333.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020334.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020335.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020336.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020337.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020338.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020339.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020340.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020341.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020342.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020343.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020344.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020345.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020346.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020347.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020348.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020349.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020350.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020351.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020352.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020353.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020354.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020355.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020356.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020357.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020358.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020359.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020360.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020361.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020362.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020363.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020364.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020365.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020366.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020367.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020368.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020369.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020370.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020371.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020372.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020373.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020374.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020375.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020376.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020377.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020378.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020379.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020380.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020381.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020382.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020383.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020384.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020385.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020386.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020387.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020388.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020389.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020390.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020391.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020392.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020393.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020394.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020395.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020396.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020397.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020398.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020399.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020400.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020401.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020402.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020403.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020404.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020405.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020406.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020407.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020408.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020409.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020410.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020411.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020412.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020413.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020414.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020415.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020416.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020417.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020418.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020419.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020420.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020421.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020422.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020423.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020424.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020425.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020426.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020427.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020428.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020429.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020430.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020431.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020432.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020433.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020434.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020435.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020436.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020437.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020438.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020439.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020440.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020441.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020442.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020443.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020444.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020445.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020446.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020447.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020448.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020449.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020450.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020451.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020452.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020453.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020454.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020455.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020456.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020457.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020458.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020459.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020460.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020461.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020462.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020463.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020464.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020465.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020466.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020467.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020468.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020469.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020470.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020471.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020472.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020473.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020474.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020475.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020476.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020477.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020478.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020479.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020480.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020481.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020482.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020483.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020484.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020485.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020486.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020487.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020488.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020489.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020490.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020491.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020492.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020493.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020494.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020495.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020496.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020497.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020498.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020499.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020500.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020501.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020502.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020503.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020504.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020505.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020506.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020507.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020508.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020509.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020510.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020511.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020512.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020513.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020514.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020515.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020516.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020517.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020518.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020519.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020520.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020521.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020522.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020523.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020524.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020525.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020526.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020527.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020528.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020529.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020530.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020531.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020532.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020533.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020534.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020535.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020536.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020537.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020538.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020539.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020540.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020541.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020542.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020543.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020544.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020545.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020546.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020547.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020548.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020549.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020550.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020551.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020552.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020553.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020554.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020555.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020556.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020557.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020558.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020559.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020560.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020561.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020562.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020563.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020564.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020565.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020566.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020567.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020568.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020569.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020570.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020571.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020572.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020573.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020574.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020575.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020576.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020577.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020578.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020579.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020580.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020581.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020582.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020583.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020584.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020585.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020586.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020587.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020588.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020589.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020590.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020591.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020592.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020593.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020594.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020595.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020596.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020597.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020598.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020599.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020600.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020601.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020602.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020603.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020604.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020605.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020606.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020607.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020608.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020609.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020610.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020611.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020612.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020613.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020614.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020615.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020616.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020617.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020618.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020619.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020620.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020621.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020622.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020623.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020624.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020625.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020626.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020627.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020628.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020629.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020630.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020631.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020632.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020633.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020634.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020635.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020636.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020637.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020638.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020639.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020640.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020641.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020642.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020643.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020644.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020645.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020646.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020647.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020648.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020649.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020650.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020651.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020652.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020653.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020654.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020655.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020656.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020657.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020658.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020659.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020660.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020661.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020662.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020663.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020664.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020665.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020666.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020667.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020668.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020669.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020670.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020671.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020672.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020673.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020674.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020675.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020676.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020677.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020678.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020679.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020680.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020681.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020682.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020683.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020684.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020685.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020686.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020687.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020688.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020689.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020690.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020691.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020692.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020693.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020694.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020695.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020696.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020697.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020698.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020699.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020700.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020701.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020702.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020703.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020704.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020705.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020706.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020707.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020708.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020709.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020710.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020711.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020712.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020713.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020714.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020715.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020716.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020717.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020718.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020719.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020720.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020721.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020722.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020723.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020724.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020725.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020726.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020727.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020728.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020729.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020730.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020731.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020732.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020733.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020734.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020735.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020736.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020737.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020738.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020739.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020740.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020741.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020742.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020743.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020744.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020745.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020746.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020747.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020748.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020749.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020750.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020751.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020752.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020753.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020754.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020755.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020756.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020757.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020758.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020759.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020760.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020761.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020762.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020763.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020764.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020765.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020766.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020767.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020768.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020769.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020770.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020771.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020772.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020773.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020774.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020775.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020776.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020777.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020778.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020779.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020780.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020781.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020782.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020783.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020784.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020785.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020786.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020787.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020788.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020789.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020790.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020791.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020792.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020793.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020794.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020795.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020796.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020797.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020798.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020799.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020800.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020801.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020802.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020803.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020804.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020805.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020806.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020807.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020808.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020809.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020810.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020811.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020812.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020813.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020814.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020815.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020816.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020817.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020818.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020819.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020820.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020821.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020822.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020823.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020824.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020825.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020826.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020827.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020828.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020829.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020830.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020831.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020832.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020833.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020834.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020835.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020836.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020837.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020838.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020839.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020840.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020841.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020842.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020843.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020844.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020845.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020846.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020847.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020848.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020849.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020850.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020851.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020852.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020853.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020854.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020855.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020856.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020857.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020858.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020859.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020860.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020861.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020862.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020863.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020864.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020865.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020866.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020867.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020868.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020869.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020870.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020871.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020872.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020873.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020874.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020875.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020876.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020877.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020878.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020879.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020880.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020881.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020882.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020883.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020884.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020885.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020886.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020887.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020888.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020889.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020890.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020891.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020892.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020893.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020894.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020895.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020896.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020897.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020898.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020899.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020900.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020901.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020902.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020903.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020904.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020905.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020906.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020907.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020908.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020909.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020910.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020911.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020912.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020913.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020914.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020915.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020916.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020917.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020918.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020919.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020920.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020921.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020922.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020923.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020924.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020925.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020926.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020927.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020928.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020929.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020930.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020931.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020932.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020933.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020934.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020935.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020936.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020937.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020938.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020939.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020940.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020941.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020942.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020943.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020944.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020945.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020946.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020947.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020948.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020949.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020950.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020951.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020952.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020953.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020954.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020955.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020956.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020957.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020958.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020959.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020960.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020961.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020962.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020963.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020964.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020965.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020966.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020967.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020968.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020969.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020970.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020971.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020972.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020973.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020974.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020975.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020976.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020977.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020978.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020979.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020980.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020981.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020982.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020983.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020984.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020985.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020986.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020987.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020988.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020989.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020990.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020991.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020992.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020993.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020994.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020995.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020996.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020997.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020998.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL020999.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021000.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20052006/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL021999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/1999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022710.HTM\n", "Exception: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))\n", "Sleeping, then trying again...\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20052006/PL022999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20052006/2999.html\n", "Done season 20052006\n", "Ending data pull at 2019-02-18 04:45:45.273024\n" ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20052006']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games, no_break=True)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-18 04:45:45.279465\n", "Making dirs ../data/html/20062007\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/2.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/3.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/4.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/5.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/6.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/7.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/8.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/9.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/10.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/11.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/12.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/13.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/14.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/15.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/16.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/17.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/18.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/19.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/20.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/21.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/22.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/23.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/24.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/25.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/26.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/27.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/28.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/29.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/30.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/31.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/32.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/33.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/34.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/35.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/36.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/37.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/38.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/39.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/40.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/41.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/42.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/43.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/44.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/45.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/46.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/47.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/48.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/49.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/50.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/51.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/52.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/53.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/54.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/55.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/56.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/57.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/58.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/59.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/60.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/61.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/62.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/63.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/64.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/65.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/66.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/67.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/68.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/69.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/70.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/71.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/72.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/73.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/74.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/75.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/76.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/77.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/78.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/79.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/80.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/81.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/82.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/83.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/84.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/85.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/86.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/87.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/88.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/89.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/90.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/91.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/92.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/93.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/94.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/95.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/96.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/97.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/98.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/99.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020231.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020232.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020233.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020234.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020235.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020236.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020237.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020238.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020239.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020240.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020241.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020242.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020243.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020244.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020245.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020246.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020247.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020248.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020249.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020250.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020251.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020252.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020253.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020254.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020255.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020256.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020257.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020258.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020259.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020260.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020261.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020262.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020263.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020264.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020265.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020266.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020267.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020268.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020269.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020270.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020271.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020272.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020273.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020274.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020275.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020276.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020277.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020278.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020279.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020280.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020281.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020282.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020283.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020284.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020285.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020286.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020287.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020288.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020289.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020290.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020291.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020292.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020293.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020294.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020295.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020296.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020297.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020298.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020299.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020300.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020301.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020302.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020303.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020304.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020305.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020306.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020307.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020308.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020309.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020310.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020311.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020312.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020313.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020314.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020315.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020316.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020317.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020318.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020319.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020320.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020321.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020322.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020323.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020324.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020325.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020326.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020327.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020328.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020329.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020330.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020331.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020332.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020333.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020334.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020335.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020336.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020337.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020338.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020339.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020340.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020341.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020342.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020343.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020344.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020345.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020346.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020347.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020348.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020349.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020350.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020351.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020352.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020353.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020354.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020355.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020356.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020357.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020358.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020359.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020360.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020361.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020362.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020363.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020364.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020365.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020366.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020367.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020368.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020369.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020370.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020371.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020372.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020373.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020374.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020375.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020376.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020377.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020378.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020379.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020380.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020381.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020382.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020383.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020384.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020385.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020386.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020387.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020388.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020389.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020390.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020391.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020392.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020393.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020394.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020395.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020396.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020397.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020398.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020399.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020400.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020401.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020402.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020403.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020404.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020405.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020406.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020407.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020408.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020409.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020410.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020411.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020412.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020413.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020414.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020415.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020416.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020417.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020418.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020419.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020420.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020421.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020422.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020423.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020424.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020425.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020426.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020427.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020428.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020429.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020430.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020431.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020432.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020433.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020434.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020435.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020436.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020437.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020438.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020439.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020440.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020441.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020442.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020443.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020444.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020445.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020446.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020447.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020448.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020449.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020450.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020451.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020452.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020453.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020454.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020455.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020456.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020457.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020458.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020459.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020460.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020461.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020462.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020463.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020464.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020465.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020466.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020467.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020468.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020469.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020470.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020471.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020472.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020473.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020474.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020475.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020476.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020477.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020478.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020479.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020480.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020481.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020482.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020483.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020484.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020485.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020486.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020487.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020488.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020489.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020490.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020491.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020492.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020493.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020494.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020495.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020496.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020497.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020498.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020499.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020500.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020501.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020502.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020503.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020504.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020505.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020506.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020507.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020508.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020509.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020510.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020511.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020512.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020513.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020514.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020515.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020516.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020517.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020518.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020519.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020520.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020521.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020522.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020523.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020524.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020525.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020526.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020527.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020528.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020529.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020530.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020531.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020532.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020533.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020534.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020535.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020536.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020537.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020538.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020539.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020540.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020541.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020542.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020543.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020544.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020545.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020546.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020547.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020548.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020549.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020550.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020551.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020552.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020553.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020554.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020555.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020556.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020557.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020558.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020559.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020560.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020561.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020562.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020563.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020564.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020565.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020566.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020567.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020568.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020569.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020570.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020571.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020572.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020573.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020574.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020575.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020576.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020577.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020578.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020579.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020580.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020581.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020582.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020583.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020584.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020585.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020586.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020587.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020588.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020589.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020590.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020591.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020592.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020593.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020594.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020595.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020596.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020597.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020598.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020599.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020600.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020601.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020602.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020603.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020604.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020605.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020606.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020607.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020608.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020609.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020610.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020611.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020612.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020613.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020614.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020615.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020616.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020617.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020618.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020619.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020620.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020621.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020622.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020623.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020624.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020625.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020626.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020627.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020628.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020629.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020630.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020631.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020632.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020633.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020634.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020635.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020636.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020637.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020638.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020639.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020640.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020641.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020642.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020643.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020644.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020645.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020646.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020647.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020648.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020649.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020650.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020651.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020652.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020653.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020654.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020655.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020656.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020657.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020658.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020659.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020660.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020661.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020662.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020663.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020664.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020665.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020666.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020667.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020668.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020669.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020670.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020671.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020672.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020673.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020674.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020675.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020676.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020677.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020678.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020679.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020680.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020681.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020682.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020683.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020684.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020685.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020686.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020687.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020688.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020689.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020690.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020691.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020692.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020693.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020694.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020695.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020696.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020697.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020698.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020699.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020700.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020701.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020702.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020703.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020704.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020705.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020706.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020707.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020708.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020709.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020710.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020711.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020712.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020713.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020714.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020715.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020716.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020717.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020718.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020719.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020720.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020721.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020722.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020723.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020724.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020725.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020726.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020727.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020728.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020729.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020730.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020731.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020732.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020733.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020734.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020735.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020736.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020737.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020738.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020739.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020740.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020741.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020742.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020743.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020744.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020745.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020746.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020747.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020748.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020749.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020750.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020751.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020752.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020753.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020754.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020755.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020756.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020757.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020758.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020759.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020760.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020761.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020762.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020763.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020764.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020765.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020766.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020767.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020768.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020769.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020770.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020771.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020772.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020773.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020774.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020775.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020776.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020777.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020778.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020779.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020780.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020781.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020782.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020783.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020784.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020785.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020786.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020787.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020788.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020789.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020790.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020791.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020792.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020793.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020794.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020795.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020796.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020797.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020798.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020799.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020800.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020801.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020802.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020803.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020804.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020805.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020806.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020807.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020808.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020809.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020810.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020811.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020812.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020813.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020814.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020815.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020816.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020817.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020818.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020819.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020820.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020821.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020822.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020823.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020824.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020825.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020826.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020827.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020828.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020829.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020830.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020831.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020832.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020833.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020834.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020835.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020836.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020837.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020838.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020839.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020840.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020841.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020842.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020843.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020844.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020845.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020846.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020847.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020848.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020849.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020850.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020851.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020852.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020853.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020854.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020855.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020856.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020857.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020858.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020859.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020860.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020861.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020862.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020863.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020864.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020865.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020866.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020867.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020868.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020869.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020870.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020871.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020872.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020873.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020874.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020875.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020876.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020877.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020878.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020879.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020880.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020881.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020882.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020883.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020884.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020885.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020886.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020887.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020888.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020889.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020890.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020891.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020892.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020893.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020894.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020895.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020896.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020897.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020898.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020899.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020900.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020901.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020902.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020903.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020904.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020905.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020906.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020907.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020908.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020909.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020910.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020911.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020912.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020913.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020914.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020915.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020916.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020917.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020918.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020919.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020920.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020921.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020922.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020923.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020924.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020925.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020926.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020927.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020928.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020929.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020930.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020931.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020932.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020933.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020934.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020935.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020936.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020937.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020938.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020939.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020940.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020941.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020942.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020943.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020944.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020945.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020946.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020947.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020948.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020949.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020950.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020951.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020952.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020953.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020954.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020955.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020956.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020957.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020958.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020959.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020960.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020961.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020962.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020963.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020964.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020965.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020966.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020967.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020968.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020969.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020970.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020971.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020972.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020973.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020974.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020975.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020976.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020977.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020978.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020979.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020980.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020981.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020982.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020983.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020984.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020985.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020986.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020987.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020988.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020989.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020990.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020991.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020992.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020993.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020994.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020995.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020996.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020997.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020998.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL020999.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021000.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021001.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021002.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021003.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021004.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021005.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021006.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021007.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021008.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021009.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021010.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021011.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021012.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021013.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021014.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021015.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021016.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021017.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021018.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021019.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021020.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021021.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021022.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021023.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021024.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021025.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021026.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021027.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021028.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021029.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021030.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021031.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021032.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021033.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021034.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021035.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021036.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021037.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021038.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021039.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021040.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021041.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021042.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021043.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021044.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021045.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021046.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021047.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021048.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021049.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021050.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021051.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021052.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021053.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021054.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021055.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021056.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021057.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021058.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021059.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021060.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021061.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021062.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021063.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021064.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021065.HTM\n", "Exception: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))\n", "Sleeping, then trying again...\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021065.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021066.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021067.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021068.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021069.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021070.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021071.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021072.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021073.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021074.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021075.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021076.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021077.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021078.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021079.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021080.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021081.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021082.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021083.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021084.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021085.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021086.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021087.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021088.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021089.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021090.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021091.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021092.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021093.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021094.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021095.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021096.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021097.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021098.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021099.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021100.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021101.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021102.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021103.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021104.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021105.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021106.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021107.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021108.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021109.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021110.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021111.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021112.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021113.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021114.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021115.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021116.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021117.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021118.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021119.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021120.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021121.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021122.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021123.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021124.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021125.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021126.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021127.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021128.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021129.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021130.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021131.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021132.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021133.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021134.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021135.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021136.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021137.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021138.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021139.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021140.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021141.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021142.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021143.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021144.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021145.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021146.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021147.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021148.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021149.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021150.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021151.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021152.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021153.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021154.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021155.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021156.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021157.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021158.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021159.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021160.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021161.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021162.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021163.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021164.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021165.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021166.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021167.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021168.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021169.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021170.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021171.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021172.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021173.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021174.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021175.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021176.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021177.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021178.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021179.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021180.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021181.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021182.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021183.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021184.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021185.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021186.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021187.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021188.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021189.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021190.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021191.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021192.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021193.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021194.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021195.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021196.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021197.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021198.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021199.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021200.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021201.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021202.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021203.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021204.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021205.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021206.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021207.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021208.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021209.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021210.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021211.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021212.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021213.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021214.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021215.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021216.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021217.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021218.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021219.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021220.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021221.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021222.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021223.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021224.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021225.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021226.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021227.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021228.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021229.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021230.HTM\n", "Got 200 status code\n", "Writing HTML to file ../data/html/20062007/1230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL021999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/1999.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022000.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2000.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022001.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2001.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022002.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2002.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022003.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2003.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022004.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2004.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022005.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2005.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022006.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2006.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022007.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2007.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022008.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2008.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022009.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2009.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022010.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2010.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022011.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2011.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022012.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2012.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022013.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2013.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022014.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2014.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022015.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2015.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022016.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2016.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022017.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2017.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022018.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2018.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022019.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2019.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022020.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2020.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022021.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2021.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022022.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2022.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022023.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2023.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022024.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2024.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022025.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2025.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022026.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2026.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022027.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2027.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022028.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2028.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022029.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2029.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022030.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2030.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022031.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2031.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022032.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2032.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022033.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2033.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022034.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2034.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022035.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2035.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022036.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2036.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022037.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2037.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022038.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2038.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022039.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2039.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022040.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2040.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022041.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2041.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022042.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2042.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022043.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2043.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022044.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2044.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022045.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2045.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022046.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2046.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022047.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2047.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022048.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2048.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022049.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2049.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022050.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2050.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022051.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2051.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022052.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2052.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022053.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2053.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022054.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2054.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022055.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2055.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022056.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2056.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022057.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2057.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022058.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2058.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022059.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2059.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022060.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2060.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022061.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2061.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022062.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2062.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022063.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2063.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022064.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2064.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022065.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2065.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022066.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2066.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022067.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2067.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022068.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2068.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022069.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2069.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022070.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2070.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022071.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2071.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022072.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2072.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022073.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2073.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022074.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2074.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022075.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2075.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022076.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2076.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022077.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2077.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022078.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2078.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022079.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2079.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022080.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2080.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022081.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2081.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022082.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2082.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022083.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2083.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022084.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2084.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022085.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2085.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022086.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2086.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022087.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2087.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022088.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2088.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022089.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2089.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022090.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2090.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022091.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2091.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022092.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2092.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022093.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2093.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022094.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2094.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022095.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2095.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022096.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2096.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022097.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2097.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022098.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2098.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022099.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2099.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022100.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2100.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022101.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2101.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022102.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2102.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022103.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2103.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022104.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2104.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022105.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2105.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022106.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2106.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022107.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2107.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022108.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2108.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022109.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2109.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022110.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2110.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022111.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2111.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022112.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2112.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022113.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2113.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022114.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2114.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022115.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2115.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022116.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2116.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022117.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2117.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022118.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2118.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022119.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2119.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022120.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2120.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022121.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2121.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022122.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2122.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022123.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2123.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022124.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2124.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022125.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2125.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022126.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2126.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022127.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2127.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022128.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2128.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022129.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2129.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022130.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2130.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022131.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2131.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022132.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2132.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022133.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2133.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022134.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2134.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022135.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2135.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022136.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2136.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022137.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2137.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022138.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2138.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022139.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2139.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022140.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2140.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022141.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2141.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022142.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2142.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022143.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2143.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022144.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2144.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022145.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2145.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022146.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2146.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022147.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2147.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022148.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2148.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022149.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2149.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022150.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2150.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022151.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2151.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022152.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2152.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022153.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2153.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022154.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2154.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022155.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2155.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022156.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2156.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022157.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2157.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022158.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2158.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022159.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2159.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022160.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2160.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022161.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2161.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022162.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2162.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022163.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2163.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022164.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2164.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022165.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2165.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022166.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2166.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022167.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2167.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022168.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2168.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022169.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2169.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022170.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2170.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022171.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2171.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022172.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2172.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022173.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2173.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022174.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2174.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022175.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2175.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022176.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2176.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022177.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2177.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022178.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2178.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022179.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2179.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022180.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2180.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022181.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2181.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022182.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2182.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022183.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2183.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022184.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2184.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022185.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2185.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022186.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2186.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022187.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2187.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022188.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2188.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022189.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2189.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022190.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2190.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022191.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2191.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022192.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2192.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022193.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2193.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022194.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2194.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022195.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2195.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022196.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2196.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022197.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2197.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022198.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2198.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022199.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2199.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022200.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2200.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022201.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2201.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022202.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2202.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022203.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2203.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022204.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2204.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022205.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2205.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022206.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2206.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022207.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2207.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022208.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2208.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022209.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2209.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022210.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2210.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022211.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2211.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022212.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2212.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022213.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2213.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022214.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2214.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022215.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2215.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022216.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2216.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022217.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2217.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022218.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2218.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022219.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2219.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022220.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2220.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022221.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2221.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022222.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2222.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022223.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2223.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022224.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2224.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022225.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2225.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022226.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2226.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022227.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2227.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022228.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2228.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022229.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2229.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022230.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2230.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022231.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2231.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022232.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2232.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022233.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2233.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022234.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2234.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022235.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2235.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022236.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2236.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022237.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2237.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022238.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2238.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022239.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2239.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022240.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2240.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022241.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2241.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022242.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2242.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022243.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2243.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022244.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2244.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022245.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2245.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022246.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2246.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022247.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2247.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022248.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2248.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022249.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2249.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022250.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2250.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022251.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2251.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022252.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2252.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022253.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2253.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022254.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2254.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022255.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2255.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022256.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2256.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022257.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2257.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022258.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2258.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022259.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2259.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022260.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2260.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022261.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2261.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022262.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2262.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022263.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2263.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022264.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2264.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022265.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2265.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022266.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2266.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022267.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2267.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022268.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2268.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022269.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2269.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022270.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2270.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022271.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2271.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022272.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2272.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022273.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2273.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022274.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2274.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022275.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2275.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022276.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2276.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022277.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2277.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022278.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2278.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022279.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2279.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022280.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2280.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022281.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2281.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022282.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2282.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022283.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2283.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022284.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2284.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022285.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2285.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022286.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2286.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022287.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2287.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022288.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2288.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022289.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2289.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022290.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2290.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022291.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2291.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022292.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2292.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022293.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2293.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022294.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2294.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022295.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2295.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022296.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2296.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022297.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2297.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022298.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2298.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022299.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2299.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022300.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2300.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022301.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2301.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022302.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2302.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022303.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2303.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022304.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2304.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022305.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2305.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022306.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2306.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022307.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2307.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022308.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2308.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022309.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2309.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022310.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2310.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022311.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2311.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022312.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2312.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022313.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2313.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022314.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2314.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022315.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2315.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022316.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2316.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022317.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2317.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022318.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2318.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022319.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2319.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022320.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2320.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022321.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2321.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022322.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2322.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022323.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2323.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022324.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2324.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022325.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2325.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022326.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2326.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022327.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2327.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022328.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2328.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022329.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2329.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022330.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2330.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022331.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2331.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022332.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2332.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022333.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2333.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022334.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2334.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022335.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2335.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022336.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2336.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022337.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2337.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022338.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2338.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022339.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2339.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022340.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2340.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022341.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2341.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022342.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2342.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022343.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2343.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022344.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2344.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022345.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2345.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022346.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2346.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022347.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2347.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022348.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2348.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022349.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2349.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022350.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2350.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022351.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2351.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022352.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2352.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022353.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2353.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022354.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2354.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022355.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2355.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022356.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2356.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022357.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2357.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022358.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2358.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022359.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2359.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022360.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2360.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022361.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2361.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022362.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2362.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022363.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2363.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022364.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2364.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022365.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2365.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022366.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2366.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022367.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2367.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022368.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2368.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022369.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2369.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022370.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2370.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022371.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2371.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022372.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2372.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022373.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2373.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022374.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2374.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022375.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2375.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022376.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2376.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022377.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2377.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022378.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2378.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022379.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2379.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022380.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2380.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022381.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2381.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022382.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2382.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022383.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2383.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022384.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2384.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022385.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2385.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022386.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2386.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022387.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2387.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022388.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2388.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022389.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2389.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022390.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2390.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022391.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2391.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022392.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2392.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022393.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2393.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022394.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2394.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022395.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2395.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022396.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2396.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022397.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2397.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022398.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2398.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022399.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2399.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022400.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2400.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022401.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2401.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022402.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2402.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022403.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2403.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022404.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2404.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022405.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2405.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022406.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2406.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022407.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2407.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022408.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2408.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022409.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2409.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022410.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2410.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022411.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2411.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022412.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2412.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022413.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2413.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022414.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2414.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022415.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2415.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022416.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2416.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022417.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2417.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022418.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2418.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022419.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2419.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022420.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2420.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022421.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2421.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022422.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2422.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022423.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2423.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022424.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2424.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022425.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2425.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022426.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2426.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022427.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2427.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022428.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2428.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022429.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2429.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022430.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2430.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022431.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2431.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022432.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2432.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022433.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2433.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022434.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2434.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022435.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2435.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022436.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2436.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022437.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2437.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022438.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2438.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022439.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2439.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022440.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2440.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022441.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2441.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022442.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2442.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022443.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2443.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022444.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2444.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022445.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2445.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022446.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2446.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022447.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2447.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022448.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2448.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022449.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2449.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022450.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2450.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022451.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2451.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022452.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2452.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022453.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2453.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022454.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2454.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022455.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2455.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022456.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2456.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022457.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2457.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022458.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2458.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022459.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2459.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022460.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2460.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022461.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2461.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022462.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2462.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022463.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2463.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022464.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2464.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022465.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2465.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022466.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2466.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022467.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2467.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022468.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2468.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022469.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2469.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022470.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2470.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022471.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2471.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022472.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2472.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022473.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2473.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022474.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2474.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022475.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2475.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022476.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2476.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022477.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2477.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022478.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2478.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022479.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2479.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022480.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2480.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022481.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2481.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022482.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2482.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022483.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2483.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022484.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2484.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022485.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2485.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022486.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2486.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022487.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2487.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022488.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2488.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022489.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2489.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022490.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2490.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022491.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2491.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022492.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2492.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022493.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2493.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022494.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2494.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022495.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2495.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022496.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2496.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022497.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2497.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022498.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2498.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022499.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2499.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022500.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2500.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022501.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2501.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022502.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2502.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022503.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2503.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022504.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2504.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022505.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2505.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022506.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2506.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022507.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2507.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022508.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2508.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022509.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2509.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022510.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2510.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022511.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2511.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022512.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2512.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022513.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2513.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022514.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2514.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022515.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2515.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022516.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2516.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022517.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2517.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022518.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2518.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022519.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2519.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022520.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2520.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022521.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2521.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022522.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2522.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022523.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2523.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022524.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2524.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022525.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2525.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022526.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2526.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022527.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2527.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022528.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2528.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022529.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2529.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022530.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2530.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022531.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2531.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022532.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2532.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022533.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2533.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022534.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2534.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022535.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2535.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022536.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2536.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022537.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2537.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022538.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2538.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022539.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2539.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022540.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2540.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022541.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2541.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022542.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2542.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022543.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2543.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022544.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2544.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022545.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2545.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022546.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2546.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022547.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2547.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022548.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2548.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022549.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2549.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022550.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2550.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022551.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2551.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022552.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2552.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022553.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2553.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022554.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2554.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022555.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2555.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022556.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2556.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022557.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2557.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022558.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2558.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022559.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2559.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022560.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2560.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022561.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2561.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022562.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2562.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022563.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2563.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022564.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2564.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022565.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2565.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022566.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2566.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022567.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2567.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022568.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2568.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022569.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2569.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022570.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2570.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022571.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2571.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022572.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2572.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022573.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2573.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022574.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2574.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022575.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2575.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022576.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2576.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022577.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2577.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022578.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2578.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022579.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2579.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022580.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2580.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022581.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2581.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022582.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2582.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022583.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2583.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022584.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2584.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022585.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2585.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022586.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2586.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022587.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2587.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022588.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2588.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022589.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2589.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022590.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2590.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022591.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2591.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022592.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2592.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022593.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2593.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022594.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2594.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022595.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2595.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022596.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2596.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022597.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2597.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022598.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2598.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022599.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2599.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022600.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2600.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022601.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2601.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022602.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2602.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022603.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2603.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022604.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2604.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022605.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2605.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022606.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2606.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022607.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2607.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022608.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2608.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022609.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2609.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022610.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2610.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022611.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2611.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022612.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2612.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022613.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2613.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022614.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2614.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022615.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2615.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022616.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2616.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022617.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2617.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022618.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2618.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022619.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2619.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022620.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2620.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022621.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2621.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022622.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2622.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022623.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2623.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022624.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2624.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022625.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2625.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022626.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2626.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022627.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2627.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022628.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2628.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022629.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2629.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022630.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2630.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022631.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2631.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022632.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2632.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022633.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2633.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022634.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2634.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022635.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2635.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022636.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2636.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022637.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2637.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022638.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2638.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022639.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2639.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022640.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2640.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022641.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2641.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022642.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2642.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022643.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2643.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022644.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2644.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022645.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2645.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022646.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2646.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022647.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2647.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022648.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2648.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022649.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2649.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022650.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2650.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022651.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2651.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022652.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2652.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022653.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2653.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022654.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2654.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022655.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2655.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022656.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2656.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022657.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2657.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022658.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2658.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022659.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2659.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022660.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2660.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022661.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2661.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022662.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2662.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022663.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2663.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022664.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2664.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022665.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2665.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022666.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2666.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022667.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2667.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022668.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2668.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022669.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2669.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022670.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2670.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022671.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2671.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022672.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2672.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022673.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2673.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022674.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2674.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022675.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2675.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022676.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2676.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022677.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2677.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022678.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2678.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022679.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2679.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022680.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2680.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022681.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2681.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022682.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2682.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022683.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2683.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022684.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2684.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022685.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2685.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022686.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2686.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022687.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2687.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022688.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2688.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022689.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2689.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022690.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2690.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022691.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2691.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022692.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2692.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022693.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2693.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022694.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2694.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022695.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2695.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022696.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2696.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022697.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2697.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022698.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2698.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022699.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2699.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022700.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2700.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022701.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2701.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022702.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2702.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022703.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2703.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022704.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2704.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022705.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2705.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022706.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2706.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022707.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2707.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022708.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2708.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022709.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2709.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022710.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2710.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022711.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2711.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022712.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2712.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022713.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2713.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022714.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2714.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022715.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2715.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022716.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2716.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022717.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2717.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022718.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2718.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022719.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2719.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022720.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2720.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022721.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2721.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022722.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2722.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022723.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2723.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022724.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2724.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022725.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2725.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022726.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2726.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022727.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2727.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022728.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2728.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022729.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2729.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022730.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2730.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022731.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2731.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022732.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2732.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022733.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2733.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022734.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2734.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022735.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2735.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022736.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2736.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022737.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2737.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022738.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2738.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022739.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2739.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022740.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2740.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022741.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2741.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022742.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2742.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022743.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2743.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022744.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2744.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022745.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2745.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022746.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2746.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022747.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2747.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022748.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2748.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022749.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2749.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022750.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2750.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022751.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2751.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022752.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2752.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022753.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2753.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022754.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2754.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022755.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2755.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022756.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2756.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022757.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2757.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022758.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2758.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022759.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2759.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022760.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2760.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022761.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2761.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022762.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2762.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022763.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2763.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022764.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2764.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022765.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2765.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022766.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2766.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022767.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2767.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022768.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2768.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022769.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2769.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022770.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2770.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022771.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2771.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022772.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2772.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022773.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2773.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022774.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2774.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022775.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2775.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022776.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2776.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022777.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2777.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022778.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2778.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022779.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2779.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022780.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2780.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022781.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2781.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022782.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2782.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022783.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2783.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022784.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2784.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022785.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2785.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022786.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2786.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022787.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2787.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022788.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2788.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022789.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2789.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022790.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2790.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022791.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2791.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022792.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2792.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022793.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2793.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022794.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2794.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022795.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2795.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022796.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2796.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022797.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2797.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022798.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2798.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022799.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2799.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022800.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2800.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022801.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2801.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022802.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2802.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022803.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2803.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022804.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2804.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022805.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2805.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022806.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2806.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022807.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2807.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022808.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2808.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022809.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2809.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022810.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2810.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022811.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2811.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022812.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2812.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022813.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2813.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022814.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2814.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022815.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2815.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022816.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2816.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022817.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2817.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022818.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2818.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022819.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2819.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022820.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2820.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022821.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2821.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022822.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2822.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022823.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2823.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022824.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2824.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022825.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2825.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022826.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2826.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022827.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2827.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022828.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2828.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022829.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2829.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022830.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2830.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022831.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2831.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022832.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2832.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022833.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2833.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022834.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2834.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022835.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2835.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022836.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2836.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022837.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2837.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022838.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2838.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022839.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2839.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022840.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2840.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022841.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2841.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022842.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2842.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022843.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2843.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022844.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2844.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022845.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2845.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022846.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2846.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022847.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2847.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022848.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2848.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022849.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2849.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022850.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2850.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022851.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2851.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022852.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2852.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022853.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2853.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022854.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2854.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022855.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2855.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022856.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2856.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022857.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2857.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022858.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2858.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022859.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2859.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022860.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2860.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022861.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2861.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022862.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2862.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022863.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2863.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022864.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2864.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022865.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2865.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022866.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2866.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022867.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2867.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022868.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2868.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022869.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2869.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022870.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2870.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022871.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2871.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022872.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2872.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022873.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2873.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022874.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2874.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022875.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2875.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022876.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2876.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022877.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2877.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022878.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2878.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022879.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2879.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022880.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2880.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022881.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2881.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022882.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2882.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022883.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2883.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022884.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2884.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022885.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2885.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022886.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2886.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022887.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2887.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022888.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2888.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022889.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2889.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022890.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2890.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022891.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2891.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022892.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2892.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022893.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2893.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022894.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2894.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022895.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2895.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022896.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2896.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022897.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2897.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022898.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2898.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022899.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2899.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022900.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2900.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022901.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2901.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022902.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2902.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022903.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2903.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022904.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2904.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022905.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2905.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022906.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2906.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022907.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2907.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022908.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2908.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022909.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2909.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022910.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2910.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022911.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2911.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022912.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2912.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022913.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2913.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022914.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2914.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022915.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2915.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022916.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2916.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022917.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2917.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022918.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2918.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022919.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2919.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022920.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2920.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022921.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2921.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022922.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2922.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022923.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2923.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022924.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2924.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022925.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2925.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022926.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2926.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022927.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2927.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022928.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2928.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022929.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2929.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022930.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2930.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022931.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2931.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022932.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2932.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022933.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2933.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022934.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2934.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022935.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2935.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022936.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2936.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022937.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2937.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022938.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2938.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022939.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2939.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022940.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2940.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022941.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2941.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022942.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2942.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022943.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2943.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022944.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2944.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022945.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2945.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022946.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2946.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022947.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2947.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022948.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2948.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022949.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2949.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022950.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2950.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022951.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2951.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022952.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2952.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022953.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2953.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022954.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2954.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022955.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2955.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022956.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2956.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022957.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2957.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022958.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2958.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022959.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2959.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022960.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2960.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022961.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2961.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022962.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2962.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022963.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2963.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022964.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2964.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022965.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2965.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022966.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2966.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022967.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2967.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022968.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2968.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022969.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2969.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022970.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2970.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022971.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2971.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022972.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2972.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022973.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2973.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022974.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2974.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022975.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2975.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022976.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2976.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022977.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2977.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022978.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2978.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022979.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2979.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022980.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2980.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022981.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2981.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022982.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2982.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022983.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2983.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022984.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2984.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022985.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2985.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022986.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2986.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022987.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2987.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022988.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2988.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022989.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2989.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022990.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2990.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022991.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2991.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022992.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2992.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022993.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2993.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022994.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2994.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022995.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2995.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022996.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2996.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022997.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2997.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022998.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2998.html\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20062007/PL022999.HTM\n", "Got 404 status code\n", "Writing HTML to file ../data/html/20062007/2999.html\n", "Done season 20062007\n", "Ending data pull at 2019-02-18 07:24:37.170990\n" ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20062007']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games, no_break=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We accidentaly saved all the 404 pages... not sure why as these should have been skipped. Let's clean them up" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Found 2999 files\n", "Deleting ../data/html/20032004/1231.html\n", "Deleting ../data/html/20032004/1232.html\n", "Deleting ../data/html/20032004/1233.html\n", "Deleting ../data/html/20032004/1234.html\n", "Deleting ../data/html/20032004/1235.html\n", "Deleting ../data/html/20032004/1236.html\n", "Deleting ../data/html/20032004/1237.html\n", "Deleting ../data/html/20032004/1238.html\n", "Deleting ../data/html/20032004/1239.html\n", "Deleting ../data/html/20032004/1240.html\n", "Deleting ../data/html/20032004/1241.html\n", "Deleting ../data/html/20032004/1242.html\n", "Deleting ../data/html/20032004/1243.html\n", "Deleting ../data/html/20032004/1244.html\n", "Deleting ../data/html/20032004/1245.html\n", "Deleting ../data/html/20032004/1246.html\n", "Deleting ../data/html/20032004/1247.html\n", "Deleting ../data/html/20032004/1248.html\n", "Deleting ../data/html/20032004/1249.html\n", "Deleting ../data/html/20032004/1250.html\n", "Deleting ../data/html/20032004/1251.html\n", "Deleting ../data/html/20032004/1252.html\n", "Deleting ../data/html/20032004/1253.html\n", "Deleting ../data/html/20032004/1254.html\n", "Deleting ../data/html/20032004/1255.html\n", "Deleting ../data/html/20032004/1256.html\n", "Deleting ../data/html/20032004/1257.html\n", "Deleting ../data/html/20032004/1258.html\n", "Deleting ../data/html/20032004/1259.html\n", "Deleting ../data/html/20032004/1260.html\n", "Deleting ../data/html/20032004/1261.html\n", "Deleting ../data/html/20032004/1262.html\n", "Deleting ../data/html/20032004/1263.html\n", "Deleting ../data/html/20032004/1264.html\n", "Deleting ../data/html/20032004/1265.html\n", "Deleting ../data/html/20032004/1266.html\n", "Deleting ../data/html/20032004/1267.html\n", "Deleting ../data/html/20032004/1268.html\n", "Deleting ../data/html/20032004/1269.html\n", "Deleting ../data/html/20032004/1270.html\n", "Deleting ../data/html/20032004/1271.html\n", "Deleting ../data/html/20032004/1272.html\n", "Deleting ../data/html/20032004/1273.html\n", "Deleting ../data/html/20032004/1274.html\n", "Deleting ../data/html/20032004/1275.html\n", "Deleting ../data/html/20032004/1276.html\n", "Deleting ../data/html/20032004/1277.html\n", "Deleting ../data/html/20032004/1278.html\n", "Deleting ../data/html/20032004/1279.html\n", "Deleting ../data/html/20032004/1280.html\n", "Deleting ../data/html/20032004/1281.html\n", "Deleting ../data/html/20032004/1282.html\n", "Deleting ../data/html/20032004/1283.html\n", "Deleting ../data/html/20032004/1284.html\n", "Deleting ../data/html/20032004/1285.html\n", "Deleting ../data/html/20032004/1286.html\n", "Deleting ../data/html/20032004/1287.html\n", "Deleting ../data/html/20032004/1288.html\n", "Deleting ../data/html/20032004/1289.html\n", "Deleting ../data/html/20032004/1290.html\n", "Deleting ../data/html/20032004/1291.html\n", "Deleting ../data/html/20032004/1292.html\n", "Deleting ../data/html/20032004/1293.html\n", "Deleting ../data/html/20032004/1294.html\n", "Deleting ../data/html/20032004/1295.html\n", "Deleting ../data/html/20032004/1296.html\n", "Deleting ../data/html/20032004/1297.html\n", "Deleting ../data/html/20032004/1298.html\n", "Deleting ../data/html/20032004/1299.html\n", "Deleting ../data/html/20032004/1300.html\n", "Deleting ../data/html/20032004/1301.html\n", "Deleting ../data/html/20032004/1302.html\n", "Deleting ../data/html/20032004/1303.html\n", "Deleting ../data/html/20032004/1304.html\n", "Deleting ../data/html/20032004/1305.html\n", "Deleting ../data/html/20032004/1306.html\n", "Deleting ../data/html/20032004/1307.html\n", "Deleting ../data/html/20032004/1308.html\n", "Deleting ../data/html/20032004/1309.html\n", "Deleting ../data/html/20032004/1310.html\n", "Deleting ../data/html/20032004/1311.html\n", "Deleting ../data/html/20032004/1312.html\n", "Deleting ../data/html/20032004/1313.html\n", "Deleting ../data/html/20032004/1314.html\n", "Deleting ../data/html/20032004/1315.html\n", "Deleting ../data/html/20032004/1316.html\n", "Deleting ../data/html/20032004/1317.html\n", "Deleting ../data/html/20032004/1318.html\n", "Deleting ../data/html/20032004/1319.html\n", "Deleting ../data/html/20032004/1320.html\n", "Deleting ../data/html/20032004/1321.html\n", "Deleting ../data/html/20032004/1322.html\n", "Deleting ../data/html/20032004/1323.html\n", "Deleting ../data/html/20032004/1324.html\n", "Deleting ../data/html/20032004/1325.html\n", "Deleting ../data/html/20032004/1326.html\n", "Deleting ../data/html/20032004/1327.html\n", "Deleting ../data/html/20032004/1328.html\n", "Deleting ../data/html/20032004/1329.html\n", "Deleting ../data/html/20032004/1330.html\n", "Deleting ../data/html/20032004/1331.html\n", "Deleting ../data/html/20032004/1332.html\n", "Deleting ../data/html/20032004/1333.html\n", "Deleting ../data/html/20032004/1334.html\n", "Deleting ../data/html/20032004/1335.html\n", "Deleting ../data/html/20032004/1336.html\n", "Deleting ../data/html/20032004/1337.html\n", "Deleting ../data/html/20032004/1338.html\n", "Deleting ../data/html/20032004/1339.html\n", "Deleting ../data/html/20032004/1340.html\n", "Deleting ../data/html/20032004/1341.html\n", "Deleting ../data/html/20032004/1342.html\n", "Deleting ../data/html/20032004/1343.html\n", "Deleting ../data/html/20032004/1344.html\n", "Deleting ../data/html/20032004/1345.html\n", "Deleting ../data/html/20032004/1346.html\n", "Deleting ../data/html/20032004/1347.html\n", "Deleting ../data/html/20032004/1348.html\n", "Deleting ../data/html/20032004/1349.html\n", "Deleting ../data/html/20032004/1350.html\n", "Deleting ../data/html/20032004/1351.html\n", "Deleting ../data/html/20032004/1352.html\n", "Deleting ../data/html/20032004/1353.html\n", "Deleting ../data/html/20032004/1354.html\n", "Deleting ../data/html/20032004/1355.html\n", "Deleting ../data/html/20032004/1356.html\n", "Deleting ../data/html/20032004/1357.html\n", "Deleting ../data/html/20032004/1358.html\n", "Deleting ../data/html/20032004/1359.html\n", "Deleting ../data/html/20032004/1360.html\n", "Deleting ../data/html/20032004/1361.html\n", "Deleting ../data/html/20032004/1362.html\n", "Deleting ../data/html/20032004/1363.html\n", "Deleting ../data/html/20032004/1364.html\n", "Deleting ../data/html/20032004/1365.html\n", "Deleting ../data/html/20032004/1366.html\n", "Deleting ../data/html/20032004/1367.html\n", "Deleting ../data/html/20032004/1368.html\n", "Deleting ../data/html/20032004/1369.html\n", "Deleting ../data/html/20032004/1370.html\n", "Deleting ../data/html/20032004/1371.html\n", "Deleting ../data/html/20032004/1372.html\n", "Deleting ../data/html/20032004/1373.html\n", "Deleting ../data/html/20032004/1374.html\n", "Deleting ../data/html/20032004/1375.html\n", "Deleting ../data/html/20032004/1376.html\n", "Deleting ../data/html/20032004/1377.html\n", "Deleting ../data/html/20032004/1378.html\n", "Deleting ../data/html/20032004/1379.html\n", "Deleting ../data/html/20032004/1380.html\n", "Deleting ../data/html/20032004/1381.html\n", "Deleting ../data/html/20032004/1382.html\n", "Deleting ../data/html/20032004/1383.html\n", "Deleting ../data/html/20032004/1384.html\n", "Deleting ../data/html/20032004/1385.html\n", "Deleting ../data/html/20032004/1386.html\n", "Deleting ../data/html/20032004/1387.html\n", "Deleting ../data/html/20032004/1388.html\n", "Deleting ../data/html/20032004/1389.html\n", "Deleting ../data/html/20032004/1390.html\n", "Deleting ../data/html/20032004/1391.html\n", "Deleting ../data/html/20032004/1392.html\n", "Deleting ../data/html/20032004/1393.html\n", "Deleting ../data/html/20032004/1394.html\n", "Deleting ../data/html/20032004/1395.html\n", "Deleting ../data/html/20032004/1396.html\n", "Deleting ../data/html/20032004/1397.html\n", "Deleting ../data/html/20032004/1398.html\n", "Deleting ../data/html/20032004/1399.html\n", "Deleting ../data/html/20032004/1400.html\n", "Deleting ../data/html/20032004/1401.html\n", "Deleting ../data/html/20032004/1402.html\n", "Deleting ../data/html/20032004/1403.html\n", "Deleting ../data/html/20032004/1404.html\n", "Deleting ../data/html/20032004/1405.html\n", "Deleting ../data/html/20032004/1406.html\n", "Deleting ../data/html/20032004/1407.html\n", "Deleting ../data/html/20032004/1408.html\n", "Deleting ../data/html/20032004/1409.html\n", "Deleting ../data/html/20032004/1410.html\n", "Deleting ../data/html/20032004/1411.html\n", "Deleting ../data/html/20032004/1412.html\n", "Deleting ../data/html/20032004/1413.html\n", "Deleting ../data/html/20032004/1414.html\n", "Deleting ../data/html/20032004/1415.html\n", "Deleting ../data/html/20032004/1416.html\n", "Deleting ../data/html/20032004/1417.html\n", "Deleting ../data/html/20032004/1418.html\n", "Deleting ../data/html/20032004/1419.html\n", "Deleting ../data/html/20032004/1420.html\n", "Deleting ../data/html/20032004/1421.html\n", "Deleting ../data/html/20032004/1422.html\n", "Deleting ../data/html/20032004/1423.html\n", "Deleting ../data/html/20032004/1424.html\n", "Deleting ../data/html/20032004/1425.html\n", "Deleting ../data/html/20032004/1426.html\n", "Deleting ../data/html/20032004/1427.html\n", "Deleting ../data/html/20032004/1428.html\n", "Deleting ../data/html/20032004/1429.html\n", "Deleting ../data/html/20032004/1430.html\n", "Deleting ../data/html/20032004/1431.html\n", "Deleting ../data/html/20032004/1432.html\n", "Deleting ../data/html/20032004/1433.html\n", "Deleting ../data/html/20032004/1434.html\n", "Deleting ../data/html/20032004/1435.html\n", "Deleting ../data/html/20032004/1436.html\n", "Deleting ../data/html/20032004/1437.html\n", "Deleting ../data/html/20032004/1438.html\n", "Deleting ../data/html/20032004/1439.html\n", "Deleting ../data/html/20032004/1440.html\n", "Deleting ../data/html/20032004/1441.html\n", "Deleting ../data/html/20032004/1442.html\n", "Deleting ../data/html/20032004/1443.html\n", "Deleting ../data/html/20032004/1444.html\n", "Deleting ../data/html/20032004/1445.html\n", "Deleting ../data/html/20032004/1446.html\n", "Deleting ../data/html/20032004/1447.html\n", "Deleting ../data/html/20032004/1448.html\n", "Deleting ../data/html/20032004/1449.html\n", "Deleting ../data/html/20032004/1450.html\n", "Deleting ../data/html/20032004/1451.html\n", "Deleting ../data/html/20032004/1452.html\n", "Deleting ../data/html/20032004/1453.html\n", "Deleting ../data/html/20032004/1454.html\n", "Deleting ../data/html/20032004/1455.html\n", "Deleting ../data/html/20032004/1456.html\n", "Deleting ../data/html/20032004/1457.html\n", "Deleting ../data/html/20032004/1458.html\n", "Deleting ../data/html/20032004/1459.html\n", "Deleting ../data/html/20032004/1460.html\n", "Deleting ../data/html/20032004/1461.html\n", "Deleting ../data/html/20032004/1462.html\n", "Deleting ../data/html/20032004/1463.html\n", "Deleting ../data/html/20032004/1464.html\n", "Deleting ../data/html/20032004/1465.html\n", "Deleting ../data/html/20032004/1466.html\n", "Deleting ../data/html/20032004/1467.html\n", "Deleting ../data/html/20032004/1468.html\n", "Deleting ../data/html/20032004/1469.html\n", "Deleting ../data/html/20032004/1470.html\n", "Deleting ../data/html/20032004/1471.html\n", "Deleting ../data/html/20032004/1472.html\n", "Deleting ../data/html/20032004/1473.html\n", "Deleting ../data/html/20032004/1474.html\n", "Deleting ../data/html/20032004/1475.html\n", "Deleting ../data/html/20032004/1476.html\n", "Deleting ../data/html/20032004/1477.html\n", "Deleting ../data/html/20032004/1478.html\n", "Deleting ../data/html/20032004/1479.html\n", "Deleting ../data/html/20032004/1480.html\n", "Deleting ../data/html/20032004/1481.html\n", "Deleting ../data/html/20032004/1482.html\n", "Deleting ../data/html/20032004/1483.html\n", "Deleting ../data/html/20032004/1484.html\n", "Deleting ../data/html/20032004/1485.html\n", "Deleting ../data/html/20032004/1486.html\n", "Deleting ../data/html/20032004/1487.html\n", "Deleting ../data/html/20032004/1488.html\n", "Deleting ../data/html/20032004/1489.html\n", "Deleting ../data/html/20032004/1490.html\n", "Deleting ../data/html/20032004/1491.html\n", "Deleting ../data/html/20032004/1492.html\n", "Deleting ../data/html/20032004/1493.html\n", "Deleting ../data/html/20032004/1494.html\n", "Deleting ../data/html/20032004/1495.html\n", "Deleting ../data/html/20032004/1496.html\n", "Deleting ../data/html/20032004/1497.html\n", "Deleting ../data/html/20032004/1498.html\n", "Deleting ../data/html/20032004/1499.html\n", "Deleting ../data/html/20032004/1500.html\n", "Deleting ../data/html/20032004/1501.html\n", "Deleting ../data/html/20032004/1502.html\n", "Deleting ../data/html/20032004/1503.html\n", "Deleting ../data/html/20032004/1504.html\n", "Deleting ../data/html/20032004/1505.html\n", "Deleting ../data/html/20032004/1506.html\n", "Deleting ../data/html/20032004/1507.html\n", "Deleting ../data/html/20032004/1508.html\n", "Deleting ../data/html/20032004/1509.html\n", "Deleting ../data/html/20032004/1510.html\n", "Deleting ../data/html/20032004/1511.html\n", "Deleting ../data/html/20032004/1512.html\n", "Deleting ../data/html/20032004/1513.html\n", "Deleting ../data/html/20032004/1514.html\n", "Deleting ../data/html/20032004/1515.html\n", "Deleting ../data/html/20032004/1516.html\n", "Deleting ../data/html/20032004/1517.html\n", "Deleting ../data/html/20032004/1518.html\n", "Deleting ../data/html/20032004/1519.html\n", "Deleting ../data/html/20032004/1520.html\n", "Deleting ../data/html/20032004/1521.html\n", "Deleting ../data/html/20032004/1522.html\n", "Deleting ../data/html/20032004/1523.html\n", "Deleting ../data/html/20032004/1524.html\n", "Deleting ../data/html/20032004/1525.html\n", "Deleting ../data/html/20032004/1526.html\n", "Deleting ../data/html/20032004/1527.html\n", "Deleting ../data/html/20032004/1528.html\n", "Deleting ../data/html/20032004/1529.html\n", "Deleting ../data/html/20032004/1530.html\n", "Deleting ../data/html/20032004/1531.html\n", "Deleting ../data/html/20032004/1532.html\n", "Deleting ../data/html/20032004/1533.html\n", "Deleting ../data/html/20032004/1534.html\n", "Deleting ../data/html/20032004/1535.html\n", "Deleting ../data/html/20032004/1536.html\n", "Deleting ../data/html/20032004/1537.html\n", "Deleting ../data/html/20032004/1538.html\n", "Deleting ../data/html/20032004/1539.html\n", "Deleting ../data/html/20032004/1540.html\n", "Deleting ../data/html/20032004/1541.html\n", "Deleting ../data/html/20032004/1542.html\n", "Deleting ../data/html/20032004/1543.html\n", "Deleting ../data/html/20032004/1544.html\n", "Deleting ../data/html/20032004/1545.html\n", "Deleting ../data/html/20032004/1546.html\n", "Deleting ../data/html/20032004/1547.html\n", "Deleting ../data/html/20032004/1548.html\n", "Deleting ../data/html/20032004/1549.html\n", "Deleting ../data/html/20032004/1550.html\n", "Deleting ../data/html/20032004/1551.html\n", "Deleting ../data/html/20032004/1552.html\n", "Deleting ../data/html/20032004/1553.html\n", "Deleting ../data/html/20032004/1554.html\n", "Deleting ../data/html/20032004/1555.html\n", "Deleting ../data/html/20032004/1556.html\n", "Deleting ../data/html/20032004/1557.html\n", "Deleting ../data/html/20032004/1558.html\n", "Deleting ../data/html/20032004/1559.html\n", "Deleting ../data/html/20032004/1560.html\n", "Deleting ../data/html/20032004/1561.html\n", "Deleting ../data/html/20032004/1562.html\n", "Deleting ../data/html/20032004/1563.html\n", "Deleting ../data/html/20032004/1564.html\n", "Deleting ../data/html/20032004/1565.html\n", "Deleting ../data/html/20032004/1566.html\n", "Deleting ../data/html/20032004/1567.html\n", "Deleting ../data/html/20032004/1568.html\n", "Deleting ../data/html/20032004/1569.html\n", "Deleting ../data/html/20032004/1570.html\n", "Deleting ../data/html/20032004/1571.html\n", "Deleting ../data/html/20032004/1572.html\n", "Deleting ../data/html/20032004/1573.html\n", "Deleting ../data/html/20032004/1574.html\n", "Deleting ../data/html/20032004/1575.html\n", "Deleting ../data/html/20032004/1576.html\n", "Deleting ../data/html/20032004/1577.html\n", "Deleting ../data/html/20032004/1578.html\n", "Deleting ../data/html/20032004/1579.html\n", "Deleting ../data/html/20032004/1580.html\n", "Deleting ../data/html/20032004/1581.html\n", "Deleting ../data/html/20032004/1582.html\n", "Deleting ../data/html/20032004/1583.html\n", "Deleting ../data/html/20032004/1584.html\n", "Deleting ../data/html/20032004/1585.html\n", "Deleting ../data/html/20032004/1586.html\n", "Deleting ../data/html/20032004/1587.html\n", "Deleting ../data/html/20032004/1588.html\n", "Deleting ../data/html/20032004/1589.html\n", "Deleting ../data/html/20032004/1590.html\n", "Deleting ../data/html/20032004/1591.html\n", "Deleting ../data/html/20032004/1592.html\n", "Deleting ../data/html/20032004/1593.html\n", "Deleting ../data/html/20032004/1594.html\n", "Deleting ../data/html/20032004/1595.html\n", "Deleting ../data/html/20032004/1596.html\n", "Deleting ../data/html/20032004/1597.html\n", "Deleting ../data/html/20032004/1598.html\n", "Deleting ../data/html/20032004/1599.html\n", "Deleting ../data/html/20032004/1600.html\n", "Deleting ../data/html/20032004/1601.html\n", "Deleting ../data/html/20032004/1602.html\n", "Deleting ../data/html/20032004/1603.html\n", "Deleting ../data/html/20032004/1604.html\n", "Deleting ../data/html/20032004/1605.html\n", "Deleting ../data/html/20032004/1606.html\n", "Deleting ../data/html/20032004/1607.html\n", "Deleting ../data/html/20032004/1608.html\n", "Deleting ../data/html/20032004/1609.html\n", "Deleting ../data/html/20032004/1610.html\n", "Deleting ../data/html/20032004/1611.html\n", "Deleting ../data/html/20032004/1612.html\n", "Deleting ../data/html/20032004/1613.html\n", "Deleting ../data/html/20032004/1614.html\n", "Deleting ../data/html/20032004/1615.html\n", "Deleting ../data/html/20032004/1616.html\n", "Deleting ../data/html/20032004/1617.html\n", "Deleting ../data/html/20032004/1618.html\n", "Deleting ../data/html/20032004/1619.html\n", "Deleting ../data/html/20032004/1620.html\n", "Deleting ../data/html/20032004/1621.html\n", "Deleting ../data/html/20032004/1622.html\n", "Deleting ../data/html/20032004/1623.html\n", "Deleting ../data/html/20032004/1624.html\n", "Deleting ../data/html/20032004/1625.html\n", "Deleting ../data/html/20032004/1626.html\n", "Deleting ../data/html/20032004/1627.html\n", "Deleting ../data/html/20032004/1628.html\n", "Deleting ../data/html/20032004/1629.html\n", "Deleting ../data/html/20032004/1630.html\n", "Deleting ../data/html/20032004/1631.html\n", "Deleting ../data/html/20032004/1632.html\n", "Deleting ../data/html/20032004/1633.html\n", "Deleting ../data/html/20032004/1634.html\n", "Deleting ../data/html/20032004/1635.html\n", "Deleting ../data/html/20032004/1636.html\n", "Deleting ../data/html/20032004/1637.html\n", "Deleting ../data/html/20032004/1638.html\n", "Deleting ../data/html/20032004/1639.html\n", "Deleting ../data/html/20032004/1640.html\n", "Deleting ../data/html/20032004/1641.html\n", "Deleting ../data/html/20032004/1642.html\n", "Deleting ../data/html/20032004/1643.html\n", "Deleting ../data/html/20032004/1644.html\n", "Deleting ../data/html/20032004/1645.html\n", "Deleting ../data/html/20032004/1646.html\n", "Deleting ../data/html/20032004/1647.html\n", "Deleting ../data/html/20032004/1648.html\n", "Deleting ../data/html/20032004/1649.html\n", "Deleting ../data/html/20032004/1650.html\n", "Deleting ../data/html/20032004/1651.html\n", "Deleting ../data/html/20032004/1652.html\n", "Deleting ../data/html/20032004/1653.html\n", "Deleting ../data/html/20032004/1654.html\n", "Deleting ../data/html/20032004/1655.html\n", "Deleting ../data/html/20032004/1656.html\n", "Deleting ../data/html/20032004/1657.html\n", "Deleting ../data/html/20032004/1658.html\n", "Deleting ../data/html/20032004/1659.html\n", "Deleting ../data/html/20032004/1660.html\n", "Deleting ../data/html/20032004/1661.html\n", "Deleting ../data/html/20032004/1662.html\n", "Deleting ../data/html/20032004/1663.html\n", "Deleting ../data/html/20032004/1664.html\n", "Deleting ../data/html/20032004/1665.html\n", "Deleting ../data/html/20032004/1666.html\n", "Deleting ../data/html/20032004/1667.html\n", "Deleting ../data/html/20032004/1668.html\n", "Deleting ../data/html/20032004/1669.html\n", "Deleting ../data/html/20032004/1670.html\n", "Deleting ../data/html/20032004/1671.html\n", "Deleting ../data/html/20032004/1672.html\n", "Deleting ../data/html/20032004/1673.html\n", "Deleting ../data/html/20032004/1674.html\n", "Deleting ../data/html/20032004/1675.html\n", "Deleting ../data/html/20032004/1676.html\n", "Deleting ../data/html/20032004/1677.html\n", "Deleting ../data/html/20032004/1678.html\n", "Deleting ../data/html/20032004/1679.html\n", "Deleting ../data/html/20032004/1680.html\n", "Deleting ../data/html/20032004/1681.html\n", "Deleting ../data/html/20032004/1682.html\n", "Deleting ../data/html/20032004/1683.html\n", "Deleting ../data/html/20032004/1684.html\n", "Deleting ../data/html/20032004/1685.html\n", "Deleting ../data/html/20032004/1686.html\n", "Deleting ../data/html/20032004/1687.html\n", "Deleting ../data/html/20032004/1688.html\n", "Deleting ../data/html/20032004/1689.html\n", "Deleting ../data/html/20032004/1690.html\n", "Deleting ../data/html/20032004/1691.html\n", "Deleting ../data/html/20032004/1692.html\n", "Deleting ../data/html/20032004/1693.html\n", "Deleting ../data/html/20032004/1694.html\n", "Deleting ../data/html/20032004/1695.html\n", "Deleting ../data/html/20032004/1696.html\n", "Deleting ../data/html/20032004/1697.html\n", "Deleting ../data/html/20032004/1698.html\n", "Deleting ../data/html/20032004/1699.html\n", "Deleting ../data/html/20032004/1700.html\n", "Deleting ../data/html/20032004/1701.html\n", "Deleting ../data/html/20032004/1702.html\n", "Deleting ../data/html/20032004/1703.html\n", "Deleting ../data/html/20032004/1704.html\n", "Deleting ../data/html/20032004/1705.html\n", "Deleting ../data/html/20032004/1706.html\n", "Deleting ../data/html/20032004/1707.html\n", "Deleting ../data/html/20032004/1708.html\n", "Deleting ../data/html/20032004/1709.html\n", "Deleting ../data/html/20032004/1710.html\n", "Deleting ../data/html/20032004/1711.html\n", "Deleting ../data/html/20032004/1712.html\n", "Deleting ../data/html/20032004/1713.html\n", "Deleting ../data/html/20032004/1714.html\n", "Deleting ../data/html/20032004/1715.html\n", "Deleting ../data/html/20032004/1716.html\n", "Deleting ../data/html/20032004/1717.html\n", "Deleting ../data/html/20032004/1718.html\n", "Deleting ../data/html/20032004/1719.html\n", "Deleting ../data/html/20032004/1720.html\n", "Deleting ../data/html/20032004/1721.html\n", "Deleting ../data/html/20032004/1722.html\n", "Deleting ../data/html/20032004/1723.html\n", "Deleting ../data/html/20032004/1724.html\n", "Deleting ../data/html/20032004/1725.html\n", "Deleting ../data/html/20032004/1726.html\n", "Deleting ../data/html/20032004/1727.html\n", "Deleting ../data/html/20032004/1728.html\n", "Deleting ../data/html/20032004/1729.html\n", "Deleting ../data/html/20032004/1730.html\n", "Deleting ../data/html/20032004/1731.html\n", "Deleting ../data/html/20032004/1732.html\n", "Deleting ../data/html/20032004/1733.html\n", "Deleting ../data/html/20032004/1734.html\n", "Deleting ../data/html/20032004/1735.html\n", "Deleting ../data/html/20032004/1736.html\n", "Deleting ../data/html/20032004/1737.html\n", "Deleting ../data/html/20032004/1738.html\n", "Deleting ../data/html/20032004/1739.html\n", "Deleting ../data/html/20032004/1740.html\n", "Deleting ../data/html/20032004/1741.html\n", "Deleting ../data/html/20032004/1742.html\n", "Deleting ../data/html/20032004/1743.html\n", "Deleting ../data/html/20032004/1744.html\n", "Deleting ../data/html/20032004/1745.html\n", "Deleting ../data/html/20032004/1746.html\n", "Deleting ../data/html/20032004/1747.html\n", "Deleting ../data/html/20032004/1748.html\n", "Deleting ../data/html/20032004/1749.html\n", "Deleting ../data/html/20032004/1750.html\n", "Deleting ../data/html/20032004/1751.html\n", "Deleting ../data/html/20032004/1752.html\n", "Deleting ../data/html/20032004/1753.html\n", "Deleting ../data/html/20032004/1754.html\n", "Deleting ../data/html/20032004/1755.html\n", "Deleting ../data/html/20032004/1756.html\n", "Deleting ../data/html/20032004/1757.html\n", "Deleting ../data/html/20032004/1758.html\n", "Deleting ../data/html/20032004/1759.html\n", "Deleting ../data/html/20032004/1760.html\n", "Deleting ../data/html/20032004/1761.html\n", "Deleting ../data/html/20032004/1762.html\n", "Deleting ../data/html/20032004/1763.html\n", "Deleting ../data/html/20032004/1764.html\n", "Deleting ../data/html/20032004/1765.html\n", "Deleting ../data/html/20032004/1766.html\n", "Deleting ../data/html/20032004/1767.html\n", "Deleting ../data/html/20032004/1768.html\n", "Deleting ../data/html/20032004/1769.html\n", "Deleting ../data/html/20032004/1770.html\n", "Deleting ../data/html/20032004/1771.html\n", "Deleting ../data/html/20032004/1772.html\n", "Deleting ../data/html/20032004/1773.html\n", "Deleting ../data/html/20032004/1774.html\n", "Deleting ../data/html/20032004/1775.html\n", "Deleting ../data/html/20032004/1776.html\n", "Deleting ../data/html/20032004/1777.html\n", "Deleting ../data/html/20032004/1778.html\n", "Deleting ../data/html/20032004/1779.html\n", "Deleting ../data/html/20032004/1780.html\n", "Deleting ../data/html/20032004/1781.html\n", "Deleting ../data/html/20032004/1782.html\n", "Deleting ../data/html/20032004/1783.html\n", "Deleting ../data/html/20032004/1784.html\n", "Deleting ../data/html/20032004/1785.html\n", "Deleting ../data/html/20032004/1786.html\n", "Deleting ../data/html/20032004/1787.html\n", "Deleting ../data/html/20032004/1788.html\n", "Deleting ../data/html/20032004/1789.html\n", "Deleting ../data/html/20032004/1790.html\n", "Deleting ../data/html/20032004/1791.html\n", "Deleting ../data/html/20032004/1792.html\n", "Deleting ../data/html/20032004/1793.html\n", "Deleting ../data/html/20032004/1794.html\n", "Deleting ../data/html/20032004/1795.html\n", "Deleting ../data/html/20032004/1796.html\n", "Deleting ../data/html/20032004/1797.html\n", "Deleting ../data/html/20032004/1798.html\n", "Deleting ../data/html/20032004/1799.html\n", "Deleting ../data/html/20032004/1800.html\n", "Deleting ../data/html/20032004/1801.html\n", "Deleting ../data/html/20032004/1802.html\n", "Deleting ../data/html/20032004/1803.html\n", "Deleting ../data/html/20032004/1804.html\n", "Deleting ../data/html/20032004/1805.html\n", "Deleting ../data/html/20032004/1806.html\n", "Deleting ../data/html/20032004/1807.html\n", "Deleting ../data/html/20032004/1808.html\n", "Deleting ../data/html/20032004/1809.html\n", "Deleting ../data/html/20032004/1810.html\n", "Deleting ../data/html/20032004/1811.html\n", "Deleting ../data/html/20032004/1812.html\n", "Deleting ../data/html/20032004/1813.html\n", "Deleting ../data/html/20032004/1814.html\n", "Deleting ../data/html/20032004/1815.html\n", "Deleting ../data/html/20032004/1816.html\n", "Deleting ../data/html/20032004/1817.html\n", "Deleting ../data/html/20032004/1818.html\n", "Deleting ../data/html/20032004/1819.html\n", "Deleting ../data/html/20032004/1820.html\n", "Deleting ../data/html/20032004/1821.html\n", "Deleting ../data/html/20032004/1822.html\n", "Deleting ../data/html/20032004/1823.html\n", "Deleting ../data/html/20032004/1824.html\n", "Deleting ../data/html/20032004/1825.html\n", "Deleting ../data/html/20032004/1826.html\n", "Deleting ../data/html/20032004/1827.html\n", "Deleting ../data/html/20032004/1828.html\n", "Deleting ../data/html/20032004/1829.html\n", "Deleting ../data/html/20032004/1830.html\n", "Deleting ../data/html/20032004/1831.html\n", "Deleting ../data/html/20032004/1832.html\n", "Deleting ../data/html/20032004/1833.html\n", "Deleting ../data/html/20032004/1834.html\n", "Deleting ../data/html/20032004/1835.html\n", "Deleting ../data/html/20032004/1836.html\n", "Deleting ../data/html/20032004/1837.html\n", "Deleting ../data/html/20032004/1838.html\n", "Deleting ../data/html/20032004/1839.html\n", "Deleting ../data/html/20032004/1840.html\n", "Deleting ../data/html/20032004/1841.html\n", "Deleting ../data/html/20032004/1842.html\n", "Deleting ../data/html/20032004/1843.html\n", "Deleting ../data/html/20032004/1844.html\n", "Deleting ../data/html/20032004/1845.html\n", "Deleting ../data/html/20032004/1846.html\n", "Deleting ../data/html/20032004/1847.html\n", "Deleting ../data/html/20032004/1848.html\n", "Deleting ../data/html/20032004/1849.html\n", "Deleting ../data/html/20032004/1850.html\n", "Deleting ../data/html/20032004/1851.html\n", "Deleting ../data/html/20032004/1852.html\n", "Deleting ../data/html/20032004/1853.html\n", "Deleting ../data/html/20032004/1854.html\n", "Deleting ../data/html/20032004/1855.html\n", "Deleting ../data/html/20032004/1856.html\n", "Deleting ../data/html/20032004/1857.html\n", "Deleting ../data/html/20032004/1858.html\n", "Deleting ../data/html/20032004/1859.html\n", "Deleting ../data/html/20032004/1860.html\n", "Deleting ../data/html/20032004/1861.html\n", "Deleting ../data/html/20032004/1862.html\n", "Deleting ../data/html/20032004/1863.html\n", "Deleting ../data/html/20032004/1864.html\n", "Deleting ../data/html/20032004/1865.html\n", "Deleting ../data/html/20032004/1866.html\n", "Deleting ../data/html/20032004/1867.html\n", "Deleting ../data/html/20032004/1868.html\n", "Deleting ../data/html/20032004/1869.html\n", "Deleting ../data/html/20032004/1870.html\n", "Deleting ../data/html/20032004/1871.html\n", "Deleting ../data/html/20032004/1872.html\n", "Deleting ../data/html/20032004/1873.html\n", "Deleting ../data/html/20032004/1874.html\n", "Deleting ../data/html/20032004/1875.html\n", "Deleting ../data/html/20032004/1876.html\n", "Deleting ../data/html/20032004/1877.html\n", "Deleting ../data/html/20032004/1878.html\n", "Deleting ../data/html/20032004/1879.html\n", "Deleting ../data/html/20032004/1880.html\n", "Deleting ../data/html/20032004/1881.html\n", "Deleting ../data/html/20032004/1882.html\n", "Deleting ../data/html/20032004/1883.html\n", "Deleting ../data/html/20032004/1884.html\n", "Deleting ../data/html/20032004/1885.html\n", "Deleting ../data/html/20032004/1886.html\n", "Deleting ../data/html/20032004/1887.html\n", "Deleting ../data/html/20032004/1888.html\n", "Deleting ../data/html/20032004/1889.html\n", "Deleting ../data/html/20032004/1890.html\n", "Deleting ../data/html/20032004/1891.html\n", "Deleting ../data/html/20032004/1892.html\n", "Deleting ../data/html/20032004/1893.html\n", "Deleting ../data/html/20032004/1894.html\n", "Deleting ../data/html/20032004/1895.html\n", "Deleting ../data/html/20032004/1896.html\n", "Deleting ../data/html/20032004/1897.html\n", "Deleting ../data/html/20032004/1898.html\n", "Deleting ../data/html/20032004/1899.html\n", "Deleting ../data/html/20032004/1900.html\n", "Deleting ../data/html/20032004/1901.html\n", "Deleting ../data/html/20032004/1902.html\n", "Deleting ../data/html/20032004/1903.html\n", "Deleting ../data/html/20032004/1904.html\n", "Deleting ../data/html/20032004/1905.html\n", "Deleting ../data/html/20032004/1906.html\n", "Deleting ../data/html/20032004/1907.html\n", "Deleting ../data/html/20032004/1908.html\n", "Deleting ../data/html/20032004/1909.html\n", "Deleting ../data/html/20032004/1910.html\n", "Deleting ../data/html/20032004/1911.html\n", "Deleting ../data/html/20032004/1912.html\n", "Deleting ../data/html/20032004/1913.html\n", "Deleting ../data/html/20032004/1914.html\n", "Deleting ../data/html/20032004/1915.html\n", "Deleting ../data/html/20032004/1916.html\n", "Deleting ../data/html/20032004/1917.html\n", "Deleting ../data/html/20032004/1918.html\n", "Deleting ../data/html/20032004/1919.html\n", "Deleting ../data/html/20032004/1920.html\n", "Deleting ../data/html/20032004/1921.html\n", "Deleting ../data/html/20032004/1922.html\n", "Deleting ../data/html/20032004/1923.html\n", "Deleting ../data/html/20032004/1924.html\n", "Deleting ../data/html/20032004/1925.html\n", "Deleting ../data/html/20032004/1926.html\n", "Deleting ../data/html/20032004/1927.html\n", "Deleting ../data/html/20032004/1928.html\n", "Deleting ../data/html/20032004/1929.html\n", "Deleting ../data/html/20032004/1930.html\n", "Deleting ../data/html/20032004/1931.html\n", "Deleting ../data/html/20032004/1932.html\n", "Deleting ../data/html/20032004/1933.html\n", "Deleting ../data/html/20032004/1934.html\n", "Deleting ../data/html/20032004/1935.html\n", "Deleting ../data/html/20032004/1936.html\n", "Deleting ../data/html/20032004/1937.html\n", "Deleting ../data/html/20032004/1938.html\n", "Deleting ../data/html/20032004/1939.html\n", "Deleting ../data/html/20032004/1940.html\n", "Deleting ../data/html/20032004/1941.html\n", "Deleting ../data/html/20032004/1942.html\n", "Deleting ../data/html/20032004/1943.html\n", "Deleting ../data/html/20032004/1944.html\n", "Deleting ../data/html/20032004/1945.html\n", "Deleting ../data/html/20032004/1946.html\n", "Deleting ../data/html/20032004/1947.html\n", "Deleting ../data/html/20032004/1948.html\n", "Deleting ../data/html/20032004/1949.html\n", "Deleting ../data/html/20032004/1950.html\n", "Deleting ../data/html/20032004/1951.html\n", "Deleting ../data/html/20032004/1952.html\n", "Deleting ../data/html/20032004/1953.html\n", "Deleting ../data/html/20032004/1954.html\n", "Deleting ../data/html/20032004/1955.html\n", "Deleting ../data/html/20032004/1956.html\n", "Deleting ../data/html/20032004/1957.html\n", "Deleting ../data/html/20032004/1958.html\n", "Deleting ../data/html/20032004/1959.html\n", "Deleting ../data/html/20032004/1960.html\n", "Deleting ../data/html/20032004/1961.html\n", "Deleting ../data/html/20032004/1962.html\n", "Deleting ../data/html/20032004/1963.html\n", "Deleting ../data/html/20032004/1964.html\n", "Deleting ../data/html/20032004/1965.html\n", "Deleting ../data/html/20032004/1966.html\n", "Deleting ../data/html/20032004/1967.html\n", "Deleting ../data/html/20032004/1968.html\n", "Deleting ../data/html/20032004/1969.html\n", "Deleting ../data/html/20032004/1970.html\n", "Deleting ../data/html/20032004/1971.html\n", "Deleting ../data/html/20032004/1972.html\n", "Deleting ../data/html/20032004/1973.html\n", "Deleting ../data/html/20032004/1974.html\n", "Deleting ../data/html/20032004/1975.html\n", "Deleting ../data/html/20032004/1976.html\n", "Deleting ../data/html/20032004/1977.html\n", "Deleting ../data/html/20032004/1978.html\n", "Deleting ../data/html/20032004/1979.html\n", "Deleting ../data/html/20032004/1980.html\n", "Deleting ../data/html/20032004/1981.html\n", "Deleting ../data/html/20032004/1982.html\n", "Deleting ../data/html/20032004/1983.html\n", "Deleting ../data/html/20032004/1984.html\n", "Deleting ../data/html/20032004/1985.html\n", "Deleting ../data/html/20032004/1986.html\n", "Deleting ../data/html/20032004/1987.html\n", "Deleting ../data/html/20032004/1988.html\n", "Deleting ../data/html/20032004/1989.html\n", "Deleting ../data/html/20032004/1990.html\n", "Deleting ../data/html/20032004/1991.html\n", "Deleting ../data/html/20032004/1992.html\n", "Deleting ../data/html/20032004/1993.html\n", "Deleting ../data/html/20032004/1994.html\n", "Deleting ../data/html/20032004/1995.html\n", "Deleting ../data/html/20032004/1996.html\n", "Deleting ../data/html/20032004/1997.html\n", "Deleting ../data/html/20032004/1998.html\n", "Deleting ../data/html/20032004/1999.html\n", "Deleting ../data/html/20032004/2000.html\n", "Deleting ../data/html/20032004/2001.html\n", "Deleting ../data/html/20032004/2002.html\n", "Deleting ../data/html/20032004/2003.html\n", "Deleting ../data/html/20032004/2004.html\n", "Deleting ../data/html/20032004/2005.html\n", "Deleting ../data/html/20032004/2006.html\n", "Deleting ../data/html/20032004/2007.html\n", "Deleting ../data/html/20032004/2008.html\n", "Deleting ../data/html/20032004/2009.html\n", "Deleting ../data/html/20032004/2010.html\n", "Deleting ../data/html/20032004/2011.html\n", "Deleting ../data/html/20032004/2012.html\n", "Deleting ../data/html/20032004/2013.html\n", "Deleting ../data/html/20032004/2014.html\n", "Deleting ../data/html/20032004/2015.html\n", "Deleting ../data/html/20032004/2016.html\n", "Deleting ../data/html/20032004/2017.html\n", "Deleting ../data/html/20032004/2018.html\n", "Deleting ../data/html/20032004/2019.html\n", "Deleting ../data/html/20032004/2020.html\n", "Deleting ../data/html/20032004/2021.html\n", "Deleting ../data/html/20032004/2022.html\n", "Deleting ../data/html/20032004/2023.html\n", "Deleting ../data/html/20032004/2024.html\n", "Deleting ../data/html/20032004/2025.html\n", "Deleting ../data/html/20032004/2026.html\n", "Deleting ../data/html/20032004/2027.html\n", "Deleting ../data/html/20032004/2028.html\n", "Deleting ../data/html/20032004/2029.html\n", "Deleting ../data/html/20032004/2030.html\n", "Deleting ../data/html/20032004/2031.html\n", "Deleting ../data/html/20032004/2032.html\n", "Deleting ../data/html/20032004/2033.html\n", "Deleting ../data/html/20032004/2034.html\n", "Deleting ../data/html/20032004/2035.html\n", "Deleting ../data/html/20032004/2036.html\n", "Deleting ../data/html/20032004/2037.html\n", "Deleting ../data/html/20032004/2038.html\n", "Deleting ../data/html/20032004/2039.html\n", "Deleting ../data/html/20032004/2040.html\n", "Deleting ../data/html/20032004/2041.html\n", "Deleting ../data/html/20032004/2042.html\n", "Deleting ../data/html/20032004/2043.html\n", "Deleting ../data/html/20032004/2044.html\n", "Deleting ../data/html/20032004/2045.html\n", "Deleting ../data/html/20032004/2046.html\n", "Deleting ../data/html/20032004/2047.html\n", "Deleting ../data/html/20032004/2048.html\n", "Deleting ../data/html/20032004/2049.html\n", "Deleting ../data/html/20032004/2050.html\n", "Deleting ../data/html/20032004/2051.html\n", "Deleting ../data/html/20032004/2052.html\n", "Deleting ../data/html/20032004/2053.html\n", "Deleting ../data/html/20032004/2054.html\n", "Deleting ../data/html/20032004/2055.html\n", "Deleting ../data/html/20032004/2056.html\n", "Deleting ../data/html/20032004/2057.html\n", "Deleting ../data/html/20032004/2058.html\n", "Deleting ../data/html/20032004/2059.html\n", "Deleting ../data/html/20032004/2060.html\n", "Deleting ../data/html/20032004/2061.html\n", "Deleting ../data/html/20032004/2062.html\n", "Deleting ../data/html/20032004/2063.html\n", "Deleting ../data/html/20032004/2064.html\n", "Deleting ../data/html/20032004/2065.html\n", "Deleting ../data/html/20032004/2066.html\n", "Deleting ../data/html/20032004/2067.html\n", "Deleting ../data/html/20032004/2068.html\n", "Deleting ../data/html/20032004/2069.html\n", "Deleting ../data/html/20032004/2070.html\n", "Deleting ../data/html/20032004/2071.html\n", "Deleting ../data/html/20032004/2072.html\n", "Deleting ../data/html/20032004/2073.html\n", "Deleting ../data/html/20032004/2074.html\n", "Deleting ../data/html/20032004/2075.html\n", "Deleting ../data/html/20032004/2076.html\n", "Deleting ../data/html/20032004/2077.html\n", "Deleting ../data/html/20032004/2078.html\n", "Deleting ../data/html/20032004/2079.html\n", "Deleting ../data/html/20032004/2080.html\n", "Deleting ../data/html/20032004/2081.html\n", "Deleting ../data/html/20032004/2082.html\n", "Deleting ../data/html/20032004/2083.html\n", "Deleting ../data/html/20032004/2084.html\n", "Deleting ../data/html/20032004/2085.html\n", "Deleting ../data/html/20032004/2086.html\n", "Deleting ../data/html/20032004/2087.html\n", "Deleting ../data/html/20032004/2088.html\n", "Deleting ../data/html/20032004/2089.html\n", "Deleting ../data/html/20032004/2090.html\n", "Deleting ../data/html/20032004/2091.html\n", "Deleting ../data/html/20032004/2092.html\n", "Deleting ../data/html/20032004/2093.html\n", "Deleting ../data/html/20032004/2094.html\n", "Deleting ../data/html/20032004/2095.html\n", "Deleting ../data/html/20032004/2096.html\n", "Deleting ../data/html/20032004/2097.html\n", "Deleting ../data/html/20032004/2098.html\n", "Deleting ../data/html/20032004/2099.html\n", "Deleting ../data/html/20032004/2100.html\n", "Deleting ../data/html/20032004/2101.html\n", "Deleting ../data/html/20032004/2102.html\n", "Deleting ../data/html/20032004/2103.html\n", "Deleting ../data/html/20032004/2104.html\n", "Deleting ../data/html/20032004/2105.html\n", "Deleting ../data/html/20032004/2106.html\n", "Deleting ../data/html/20032004/2107.html\n", "Deleting ../data/html/20032004/2108.html\n", "Deleting ../data/html/20032004/2109.html\n", "Deleting ../data/html/20032004/2110.html\n", "Deleting ../data/html/20032004/2111.html\n", "Deleting ../data/html/20032004/2112.html\n", "Deleting ../data/html/20032004/2113.html\n", "Deleting ../data/html/20032004/2114.html\n", "Deleting ../data/html/20032004/2115.html\n", "Deleting ../data/html/20032004/2116.html\n", "Deleting ../data/html/20032004/2117.html\n", "Deleting ../data/html/20032004/2118.html\n", "Deleting ../data/html/20032004/2119.html\n", "Deleting ../data/html/20032004/2120.html\n", "Deleting ../data/html/20032004/2121.html\n", "Deleting ../data/html/20032004/2122.html\n", "Deleting ../data/html/20032004/2123.html\n", "Deleting ../data/html/20032004/2124.html\n", "Deleting ../data/html/20032004/2125.html\n", "Deleting ../data/html/20032004/2126.html\n", "Deleting ../data/html/20032004/2127.html\n", "Deleting ../data/html/20032004/2128.html\n", "Deleting ../data/html/20032004/2129.html\n", "Deleting ../data/html/20032004/2130.html\n", "Deleting ../data/html/20032004/2131.html\n", "Deleting ../data/html/20032004/2132.html\n", "Deleting ../data/html/20032004/2133.html\n", "Deleting ../data/html/20032004/2134.html\n", "Deleting ../data/html/20032004/2135.html\n", "Deleting ../data/html/20032004/2136.html\n", "Deleting ../data/html/20032004/2137.html\n", "Deleting ../data/html/20032004/2138.html\n", "Deleting ../data/html/20032004/2139.html\n", "Deleting ../data/html/20032004/2140.html\n", "Deleting ../data/html/20032004/2141.html\n", "Deleting ../data/html/20032004/2142.html\n", "Deleting ../data/html/20032004/2143.html\n", "Deleting ../data/html/20032004/2144.html\n", "Deleting ../data/html/20032004/2145.html\n", "Deleting ../data/html/20032004/2146.html\n", "Deleting ../data/html/20032004/2147.html\n", "Deleting ../data/html/20032004/2148.html\n", "Deleting ../data/html/20032004/2149.html\n", "Deleting ../data/html/20032004/2150.html\n", "Deleting ../data/html/20032004/2151.html\n", "Deleting ../data/html/20032004/2152.html\n", "Deleting ../data/html/20032004/2153.html\n", "Deleting ../data/html/20032004/2154.html\n", "Deleting ../data/html/20032004/2155.html\n", "Deleting ../data/html/20032004/2156.html\n", "Deleting ../data/html/20032004/2157.html\n", "Deleting ../data/html/20032004/2158.html\n", "Deleting ../data/html/20032004/2159.html\n", "Deleting ../data/html/20032004/2160.html\n", "Deleting ../data/html/20032004/2161.html\n", "Deleting ../data/html/20032004/2162.html\n", "Deleting ../data/html/20032004/2163.html\n", "Deleting ../data/html/20032004/2164.html\n", "Deleting ../data/html/20032004/2165.html\n", "Deleting ../data/html/20032004/2166.html\n", "Deleting ../data/html/20032004/2167.html\n", "Deleting ../data/html/20032004/2168.html\n", "Deleting ../data/html/20032004/2169.html\n", "Deleting ../data/html/20032004/2170.html\n", "Deleting ../data/html/20032004/2171.html\n", "Deleting ../data/html/20032004/2172.html\n", "Deleting ../data/html/20032004/2173.html\n", "Deleting ../data/html/20032004/2174.html\n", "Deleting ../data/html/20032004/2175.html\n", "Deleting ../data/html/20032004/2176.html\n", "Deleting ../data/html/20032004/2177.html\n", "Deleting ../data/html/20032004/2178.html\n", "Deleting ../data/html/20032004/2179.html\n", "Deleting ../data/html/20032004/2180.html\n", "Deleting ../data/html/20032004/2181.html\n", "Deleting ../data/html/20032004/2182.html\n", "Deleting ../data/html/20032004/2183.html\n", "Deleting ../data/html/20032004/2184.html\n", "Deleting ../data/html/20032004/2185.html\n", "Deleting ../data/html/20032004/2186.html\n", "Deleting ../data/html/20032004/2187.html\n", "Deleting ../data/html/20032004/2188.html\n", "Deleting ../data/html/20032004/2189.html\n", "Deleting ../data/html/20032004/2190.html\n", "Deleting ../data/html/20032004/2191.html\n", "Deleting ../data/html/20032004/2192.html\n", "Deleting ../data/html/20032004/2193.html\n", "Deleting ../data/html/20032004/2194.html\n", "Deleting ../data/html/20032004/2195.html\n", "Deleting ../data/html/20032004/2196.html\n", "Deleting ../data/html/20032004/2197.html\n", "Deleting ../data/html/20032004/2198.html\n", "Deleting ../data/html/20032004/2199.html\n", "Deleting ../data/html/20032004/2200.html\n", "Deleting ../data/html/20032004/2201.html\n", "Deleting ../data/html/20032004/2202.html\n", "Deleting ../data/html/20032004/2203.html\n", "Deleting ../data/html/20032004/2204.html\n", "Deleting ../data/html/20032004/2205.html\n", "Deleting ../data/html/20032004/2206.html\n", "Deleting ../data/html/20032004/2207.html\n", "Deleting ../data/html/20032004/2208.html\n", "Deleting ../data/html/20032004/2209.html\n", "Deleting ../data/html/20032004/2210.html\n", "Deleting ../data/html/20032004/2211.html\n", "Deleting ../data/html/20032004/2212.html\n", "Deleting ../data/html/20032004/2213.html\n", "Deleting ../data/html/20032004/2214.html\n", "Deleting ../data/html/20032004/2215.html\n", "Deleting ../data/html/20032004/2216.html\n", "Deleting ../data/html/20032004/2217.html\n", "Deleting ../data/html/20032004/2218.html\n", "Deleting ../data/html/20032004/2219.html\n", "Deleting ../data/html/20032004/2220.html\n", "Deleting ../data/html/20032004/2221.html\n", "Deleting ../data/html/20032004/2222.html\n", "Deleting ../data/html/20032004/2223.html\n", "Deleting ../data/html/20032004/2224.html\n", "Deleting ../data/html/20032004/2225.html\n", "Deleting ../data/html/20032004/2226.html\n", "Deleting ../data/html/20032004/2227.html\n", "Deleting ../data/html/20032004/2228.html\n", "Deleting ../data/html/20032004/2229.html\n", "Deleting ../data/html/20032004/2230.html\n", "Deleting ../data/html/20032004/2231.html\n", "Deleting ../data/html/20032004/2232.html\n", "Deleting ../data/html/20032004/2233.html\n", "Deleting ../data/html/20032004/2234.html\n", "Deleting ../data/html/20032004/2235.html\n", "Deleting ../data/html/20032004/2236.html\n", "Deleting ../data/html/20032004/2237.html\n", "Deleting ../data/html/20032004/2238.html\n", "Deleting ../data/html/20032004/2239.html\n", "Deleting ../data/html/20032004/2240.html\n", "Deleting ../data/html/20032004/2241.html\n", "Deleting ../data/html/20032004/2242.html\n", "Deleting ../data/html/20032004/2243.html\n", "Deleting ../data/html/20032004/2244.html\n", "Deleting ../data/html/20032004/2245.html\n", "Deleting ../data/html/20032004/2246.html\n", "Deleting ../data/html/20032004/2247.html\n", "Deleting ../data/html/20032004/2248.html\n", "Deleting ../data/html/20032004/2249.html\n", "Deleting ../data/html/20032004/2250.html\n", "Deleting ../data/html/20032004/2251.html\n", "Deleting ../data/html/20032004/2252.html\n", "Deleting ../data/html/20032004/2253.html\n", "Deleting ../data/html/20032004/2254.html\n", "Deleting ../data/html/20032004/2255.html\n", "Deleting ../data/html/20032004/2256.html\n", "Deleting ../data/html/20032004/2257.html\n", "Deleting ../data/html/20032004/2258.html\n", "Deleting ../data/html/20032004/2259.html\n", "Deleting ../data/html/20032004/2260.html\n", "Deleting ../data/html/20032004/2261.html\n", "Deleting ../data/html/20032004/2262.html\n", "Deleting ../data/html/20032004/2263.html\n", "Deleting ../data/html/20032004/2264.html\n", "Deleting ../data/html/20032004/2265.html\n", "Deleting ../data/html/20032004/2266.html\n", "Deleting ../data/html/20032004/2267.html\n", "Deleting ../data/html/20032004/2268.html\n", "Deleting ../data/html/20032004/2269.html\n", "Deleting ../data/html/20032004/2270.html\n", "Deleting ../data/html/20032004/2271.html\n", "Deleting ../data/html/20032004/2272.html\n", "Deleting ../data/html/20032004/2273.html\n", "Deleting ../data/html/20032004/2274.html\n", "Deleting ../data/html/20032004/2275.html\n", "Deleting ../data/html/20032004/2276.html\n", "Deleting ../data/html/20032004/2277.html\n", "Deleting ../data/html/20032004/2278.html\n", "Deleting ../data/html/20032004/2279.html\n", "Deleting ../data/html/20032004/2280.html\n", "Deleting ../data/html/20032004/2281.html\n", "Deleting ../data/html/20032004/2282.html\n", "Deleting ../data/html/20032004/2283.html\n", "Deleting ../data/html/20032004/2284.html\n", "Deleting ../data/html/20032004/2285.html\n", "Deleting ../data/html/20032004/2286.html\n", "Deleting ../data/html/20032004/2287.html\n", "Deleting ../data/html/20032004/2288.html\n", "Deleting ../data/html/20032004/2289.html\n", "Deleting ../data/html/20032004/2290.html\n", "Deleting ../data/html/20032004/2291.html\n", "Deleting ../data/html/20032004/2292.html\n", "Deleting ../data/html/20032004/2293.html\n", "Deleting ../data/html/20032004/2294.html\n", "Deleting ../data/html/20032004/2295.html\n", "Deleting ../data/html/20032004/2296.html\n", "Deleting ../data/html/20032004/2297.html\n", "Deleting ../data/html/20032004/2298.html\n", "Deleting ../data/html/20032004/2299.html\n", "Deleting ../data/html/20032004/2300.html\n", "Deleting ../data/html/20032004/2301.html\n", "Deleting ../data/html/20032004/2302.html\n", "Deleting ../data/html/20032004/2303.html\n", "Deleting ../data/html/20032004/2304.html\n", "Deleting ../data/html/20032004/2305.html\n", "Deleting ../data/html/20032004/2306.html\n", "Deleting ../data/html/20032004/2307.html\n", "Deleting ../data/html/20032004/2308.html\n", "Deleting ../data/html/20032004/2309.html\n", "Deleting ../data/html/20032004/2310.html\n", "Deleting ../data/html/20032004/2311.html\n", "Deleting ../data/html/20032004/2312.html\n", "Deleting ../data/html/20032004/2313.html\n", "Deleting ../data/html/20032004/2314.html\n", "Deleting ../data/html/20032004/2315.html\n", "Deleting ../data/html/20032004/2316.html\n", "Deleting ../data/html/20032004/2317.html\n", "Deleting ../data/html/20032004/2318.html\n", "Deleting ../data/html/20032004/2319.html\n", "Deleting ../data/html/20032004/2320.html\n", "Deleting ../data/html/20032004/2321.html\n", "Deleting ../data/html/20032004/2322.html\n", "Deleting ../data/html/20032004/2323.html\n", "Deleting ../data/html/20032004/2324.html\n", "Deleting ../data/html/20032004/2325.html\n", "Deleting ../data/html/20032004/2326.html\n", "Deleting ../data/html/20032004/2327.html\n", "Deleting ../data/html/20032004/2328.html\n", "Deleting ../data/html/20032004/2329.html\n", "Deleting ../data/html/20032004/2330.html\n", "Deleting ../data/html/20032004/2331.html\n", "Deleting ../data/html/20032004/2332.html\n", "Deleting ../data/html/20032004/2333.html\n", "Deleting ../data/html/20032004/2334.html\n", "Deleting ../data/html/20032004/2335.html\n", "Deleting ../data/html/20032004/2336.html\n", "Deleting ../data/html/20032004/2337.html\n", "Deleting ../data/html/20032004/2338.html\n", "Deleting ../data/html/20032004/2339.html\n", "Deleting ../data/html/20032004/2340.html\n", "Deleting ../data/html/20032004/2341.html\n", "Deleting ../data/html/20032004/2342.html\n", "Deleting ../data/html/20032004/2343.html\n", "Deleting ../data/html/20032004/2344.html\n", "Deleting ../data/html/20032004/2345.html\n", "Deleting ../data/html/20032004/2346.html\n", "Deleting ../data/html/20032004/2347.html\n", "Deleting ../data/html/20032004/2348.html\n", "Deleting ../data/html/20032004/2349.html\n", "Deleting ../data/html/20032004/2350.html\n", "Deleting ../data/html/20032004/2351.html\n", "Deleting ../data/html/20032004/2352.html\n", "Deleting ../data/html/20032004/2353.html\n", "Deleting ../data/html/20032004/2354.html\n", "Deleting ../data/html/20032004/2355.html\n", "Deleting ../data/html/20032004/2356.html\n", "Deleting ../data/html/20032004/2357.html\n", "Deleting ../data/html/20032004/2358.html\n", "Deleting ../data/html/20032004/2359.html\n", "Deleting ../data/html/20032004/2360.html\n", "Deleting ../data/html/20032004/2361.html\n", "Deleting ../data/html/20032004/2362.html\n", "Deleting ../data/html/20032004/2363.html\n", "Deleting ../data/html/20032004/2364.html\n", "Deleting ../data/html/20032004/2365.html\n", "Deleting ../data/html/20032004/2366.html\n", "Deleting ../data/html/20032004/2367.html\n", "Deleting ../data/html/20032004/2368.html\n", "Deleting ../data/html/20032004/2369.html\n", "Deleting ../data/html/20032004/2370.html\n", "Deleting ../data/html/20032004/2371.html\n", "Deleting ../data/html/20032004/2372.html\n", "Deleting ../data/html/20032004/2373.html\n", "Deleting ../data/html/20032004/2374.html\n", "Deleting ../data/html/20032004/2375.html\n", "Deleting ../data/html/20032004/2376.html\n", "Deleting ../data/html/20032004/2377.html\n", "Deleting ../data/html/20032004/2378.html\n", "Deleting ../data/html/20032004/2379.html\n", "Deleting ../data/html/20032004/2380.html\n", "Deleting ../data/html/20032004/2381.html\n", "Deleting ../data/html/20032004/2382.html\n", "Deleting ../data/html/20032004/2383.html\n", "Deleting ../data/html/20032004/2384.html\n", "Deleting ../data/html/20032004/2385.html\n", "Deleting ../data/html/20032004/2386.html\n", "Deleting ../data/html/20032004/2387.html\n", "Deleting ../data/html/20032004/2388.html\n", "Deleting ../data/html/20032004/2389.html\n", "Deleting ../data/html/20032004/2390.html\n", "Deleting ../data/html/20032004/2391.html\n", "Deleting ../data/html/20032004/2392.html\n", "Deleting ../data/html/20032004/2393.html\n", "Deleting ../data/html/20032004/2394.html\n", "Deleting ../data/html/20032004/2395.html\n", "Deleting ../data/html/20032004/2396.html\n", "Deleting ../data/html/20032004/2397.html\n", "Deleting ../data/html/20032004/2398.html\n", "Deleting ../data/html/20032004/2399.html\n", "Deleting ../data/html/20032004/2400.html\n", "Deleting ../data/html/20032004/2401.html\n", "Deleting ../data/html/20032004/2402.html\n", "Deleting ../data/html/20032004/2403.html\n", "Deleting ../data/html/20032004/2404.html\n", "Deleting ../data/html/20032004/2405.html\n", "Deleting ../data/html/20032004/2406.html\n", "Deleting ../data/html/20032004/2407.html\n", "Deleting ../data/html/20032004/2408.html\n", "Deleting ../data/html/20032004/2409.html\n", "Deleting ../data/html/20032004/2410.html\n", "Deleting ../data/html/20032004/2411.html\n", "Deleting ../data/html/20032004/2412.html\n", "Deleting ../data/html/20032004/2413.html\n", "Deleting ../data/html/20032004/2414.html\n", "Deleting ../data/html/20032004/2415.html\n", "Deleting ../data/html/20032004/2416.html\n", "Deleting ../data/html/20032004/2417.html\n", "Deleting ../data/html/20032004/2418.html\n", "Deleting ../data/html/20032004/2419.html\n", "Deleting ../data/html/20032004/2420.html\n", "Deleting ../data/html/20032004/2421.html\n", "Deleting ../data/html/20032004/2422.html\n", "Deleting ../data/html/20032004/2423.html\n", "Deleting ../data/html/20032004/2424.html\n", "Deleting ../data/html/20032004/2425.html\n", "Deleting ../data/html/20032004/2426.html\n", "Deleting ../data/html/20032004/2427.html\n", "Deleting ../data/html/20032004/2428.html\n", "Deleting ../data/html/20032004/2429.html\n", "Deleting ../data/html/20032004/2430.html\n", "Deleting ../data/html/20032004/2431.html\n", "Deleting ../data/html/20032004/2432.html\n", "Deleting ../data/html/20032004/2433.html\n", "Deleting ../data/html/20032004/2434.html\n", "Deleting ../data/html/20032004/2435.html\n", "Deleting ../data/html/20032004/2436.html\n", "Deleting ../data/html/20032004/2437.html\n", "Deleting ../data/html/20032004/2438.html\n", "Deleting ../data/html/20032004/2439.html\n", "Deleting ../data/html/20032004/2440.html\n", "Deleting ../data/html/20032004/2441.html\n", "Deleting ../data/html/20032004/2442.html\n", "Deleting ../data/html/20032004/2443.html\n", "Deleting ../data/html/20032004/2444.html\n", "Deleting ../data/html/20032004/2445.html\n", "Deleting ../data/html/20032004/2446.html\n", "Deleting ../data/html/20032004/2447.html\n", "Deleting ../data/html/20032004/2448.html\n", "Deleting ../data/html/20032004/2449.html\n", "Deleting ../data/html/20032004/2450.html\n", "Deleting ../data/html/20032004/2451.html\n", "Deleting ../data/html/20032004/2452.html\n", "Deleting ../data/html/20032004/2453.html\n", "Deleting ../data/html/20032004/2454.html\n", "Deleting ../data/html/20032004/2455.html\n", "Deleting ../data/html/20032004/2456.html\n", "Deleting ../data/html/20032004/2457.html\n", "Deleting ../data/html/20032004/2458.html\n", "Deleting ../data/html/20032004/2459.html\n", "Deleting ../data/html/20032004/2460.html\n", "Deleting ../data/html/20032004/2461.html\n", "Deleting ../data/html/20032004/2462.html\n", "Deleting ../data/html/20032004/2463.html\n", "Deleting ../data/html/20032004/2464.html\n", "Deleting ../data/html/20032004/2465.html\n", "Deleting ../data/html/20032004/2466.html\n", "Deleting ../data/html/20032004/2467.html\n", "Deleting ../data/html/20032004/2468.html\n", "Deleting ../data/html/20032004/2469.html\n", "Deleting ../data/html/20032004/2470.html\n", "Deleting ../data/html/20032004/2471.html\n", "Deleting ../data/html/20032004/2472.html\n", "Deleting ../data/html/20032004/2473.html\n", "Deleting ../data/html/20032004/2474.html\n", "Deleting ../data/html/20032004/2475.html\n", "Deleting ../data/html/20032004/2476.html\n", "Deleting ../data/html/20032004/2477.html\n", "Deleting ../data/html/20032004/2478.html\n", "Deleting ../data/html/20032004/2479.html\n", "Deleting ../data/html/20032004/2480.html\n", "Deleting ../data/html/20032004/2481.html\n", "Deleting ../data/html/20032004/2482.html\n", "Deleting ../data/html/20032004/2483.html\n", "Deleting ../data/html/20032004/2484.html\n", "Deleting ../data/html/20032004/2485.html\n", "Deleting ../data/html/20032004/2486.html\n", "Deleting ../data/html/20032004/2487.html\n", "Deleting ../data/html/20032004/2488.html\n", "Deleting ../data/html/20032004/2489.html\n", "Deleting ../data/html/20032004/2490.html\n", "Deleting ../data/html/20032004/2491.html\n", "Deleting ../data/html/20032004/2492.html\n", "Deleting ../data/html/20032004/2493.html\n", "Deleting ../data/html/20032004/2494.html\n", "Deleting ../data/html/20032004/2495.html\n", "Deleting ../data/html/20032004/2496.html\n", "Deleting ../data/html/20032004/2497.html\n", "Deleting ../data/html/20032004/2498.html\n", "Deleting ../data/html/20032004/2499.html\n", "Deleting ../data/html/20032004/2500.html\n", "Deleting ../data/html/20032004/2501.html\n", "Deleting ../data/html/20032004/2502.html\n", "Deleting ../data/html/20032004/2503.html\n", "Deleting ../data/html/20032004/2504.html\n", "Deleting ../data/html/20032004/2505.html\n", "Deleting ../data/html/20032004/2506.html\n", "Deleting ../data/html/20032004/2507.html\n", "Deleting ../data/html/20032004/2508.html\n", "Deleting ../data/html/20032004/2509.html\n", "Deleting ../data/html/20032004/2510.html\n", "Deleting ../data/html/20032004/2511.html\n", "Deleting ../data/html/20032004/2512.html\n", "Deleting ../data/html/20032004/2513.html\n", "Deleting ../data/html/20032004/2514.html\n", "Deleting ../data/html/20032004/2515.html\n", "Deleting ../data/html/20032004/2516.html\n", "Deleting ../data/html/20032004/2517.html\n", "Deleting ../data/html/20032004/2518.html\n", "Deleting ../data/html/20032004/2519.html\n", "Deleting ../data/html/20032004/2520.html\n", "Deleting ../data/html/20032004/2521.html\n", "Deleting ../data/html/20032004/2522.html\n", "Deleting ../data/html/20032004/2523.html\n", "Deleting ../data/html/20032004/2524.html\n", "Deleting ../data/html/20032004/2525.html\n", "Deleting ../data/html/20032004/2526.html\n", "Deleting ../data/html/20032004/2527.html\n", "Deleting ../data/html/20032004/2528.html\n", "Deleting ../data/html/20032004/2529.html\n", "Deleting ../data/html/20032004/2530.html\n", "Deleting ../data/html/20032004/2531.html\n", "Deleting ../data/html/20032004/2532.html\n", "Deleting ../data/html/20032004/2533.html\n", "Deleting ../data/html/20032004/2534.html\n", "Deleting ../data/html/20032004/2535.html\n", "Deleting ../data/html/20032004/2536.html\n", "Deleting ../data/html/20032004/2537.html\n", "Deleting ../data/html/20032004/2538.html\n", "Deleting ../data/html/20032004/2539.html\n", "Deleting ../data/html/20032004/2540.html\n", "Deleting ../data/html/20032004/2541.html\n", "Deleting ../data/html/20032004/2542.html\n", "Deleting ../data/html/20032004/2543.html\n", "Deleting ../data/html/20032004/2544.html\n", "Deleting ../data/html/20032004/2545.html\n", "Deleting ../data/html/20032004/2546.html\n", "Deleting ../data/html/20032004/2547.html\n", "Deleting ../data/html/20032004/2548.html\n", "Deleting ../data/html/20032004/2549.html\n", "Deleting ../data/html/20032004/2550.html\n", "Deleting ../data/html/20032004/2551.html\n", "Deleting ../data/html/20032004/2552.html\n", "Deleting ../data/html/20032004/2553.html\n", "Deleting ../data/html/20032004/2554.html\n", "Deleting ../data/html/20032004/2555.html\n", "Deleting ../data/html/20032004/2556.html\n", "Deleting ../data/html/20032004/2557.html\n", "Deleting ../data/html/20032004/2558.html\n", "Deleting ../data/html/20032004/2559.html\n", "Deleting ../data/html/20032004/2560.html\n", "Deleting ../data/html/20032004/2561.html\n", "Deleting ../data/html/20032004/2562.html\n", "Deleting ../data/html/20032004/2563.html\n", "Deleting ../data/html/20032004/2564.html\n", "Deleting ../data/html/20032004/2565.html\n", "Deleting ../data/html/20032004/2566.html\n", "Deleting ../data/html/20032004/2567.html\n", "Deleting ../data/html/20032004/2568.html\n", "Deleting ../data/html/20032004/2569.html\n", "Deleting ../data/html/20032004/2570.html\n", "Deleting ../data/html/20032004/2571.html\n", "Deleting ../data/html/20032004/2572.html\n", "Deleting ../data/html/20032004/2573.html\n", "Deleting ../data/html/20032004/2574.html\n", "Deleting ../data/html/20032004/2575.html\n", "Deleting ../data/html/20032004/2576.html\n", "Deleting ../data/html/20032004/2577.html\n", "Deleting ../data/html/20032004/2578.html\n", "Deleting ../data/html/20032004/2579.html\n", "Deleting ../data/html/20032004/2580.html\n", "Deleting ../data/html/20032004/2581.html\n", "Deleting ../data/html/20032004/2582.html\n", "Deleting ../data/html/20032004/2583.html\n", "Deleting ../data/html/20032004/2584.html\n", "Deleting ../data/html/20032004/2585.html\n", "Deleting ../data/html/20032004/2586.html\n", "Deleting ../data/html/20032004/2587.html\n", "Deleting ../data/html/20032004/2588.html\n", "Deleting ../data/html/20032004/2589.html\n", "Deleting ../data/html/20032004/2590.html\n", "Deleting ../data/html/20032004/2591.html\n", "Deleting ../data/html/20032004/2592.html\n", "Deleting ../data/html/20032004/2593.html\n", "Deleting ../data/html/20032004/2594.html\n", "Deleting ../data/html/20032004/2595.html\n", "Deleting ../data/html/20032004/2596.html\n", "Deleting ../data/html/20032004/2597.html\n", "Deleting ../data/html/20032004/2598.html\n", "Deleting ../data/html/20032004/2599.html\n", "Deleting ../data/html/20032004/2600.html\n", "Deleting ../data/html/20032004/2601.html\n", "Deleting ../data/html/20032004/2602.html\n", "Deleting ../data/html/20032004/2603.html\n", "Deleting ../data/html/20032004/2604.html\n", "Deleting ../data/html/20032004/2605.html\n", "Deleting ../data/html/20032004/2606.html\n", "Deleting ../data/html/20032004/2607.html\n", "Deleting ../data/html/20032004/2608.html\n", "Deleting ../data/html/20032004/2609.html\n", "Deleting ../data/html/20032004/2610.html\n", "Deleting ../data/html/20032004/2611.html\n", "Deleting ../data/html/20032004/2612.html\n", "Deleting ../data/html/20032004/2613.html\n", "Deleting ../data/html/20032004/2614.html\n", "Deleting ../data/html/20032004/2615.html\n", "Deleting ../data/html/20032004/2616.html\n", "Deleting ../data/html/20032004/2617.html\n", "Deleting ../data/html/20032004/2618.html\n", "Deleting ../data/html/20032004/2619.html\n", "Deleting ../data/html/20032004/2620.html\n", "Deleting ../data/html/20032004/2621.html\n", "Deleting ../data/html/20032004/2622.html\n", "Deleting ../data/html/20032004/2623.html\n", "Deleting ../data/html/20032004/2624.html\n", "Deleting ../data/html/20032004/2625.html\n", "Deleting ../data/html/20032004/2626.html\n", "Deleting ../data/html/20032004/2627.html\n", "Deleting ../data/html/20032004/2628.html\n", "Deleting ../data/html/20032004/2629.html\n", "Deleting ../data/html/20032004/2630.html\n", "Deleting ../data/html/20032004/2631.html\n", "Deleting ../data/html/20032004/2632.html\n", "Deleting ../data/html/20032004/2633.html\n", "Deleting ../data/html/20032004/2634.html\n", "Deleting ../data/html/20032004/2635.html\n", "Deleting ../data/html/20032004/2636.html\n", "Deleting ../data/html/20032004/2637.html\n", "Deleting ../data/html/20032004/2638.html\n", "Deleting ../data/html/20032004/2639.html\n", "Deleting ../data/html/20032004/2640.html\n", "Deleting ../data/html/20032004/2641.html\n", "Deleting ../data/html/20032004/2642.html\n", "Deleting ../data/html/20032004/2643.html\n", "Deleting ../data/html/20032004/2644.html\n", "Deleting ../data/html/20032004/2645.html\n", "Deleting ../data/html/20032004/2646.html\n", "Deleting ../data/html/20032004/2647.html\n", "Deleting ../data/html/20032004/2648.html\n", "Deleting ../data/html/20032004/2649.html\n", "Deleting ../data/html/20032004/2650.html\n", "Deleting ../data/html/20032004/2651.html\n", "Deleting ../data/html/20032004/2652.html\n", "Deleting ../data/html/20032004/2653.html\n", "Deleting ../data/html/20032004/2654.html\n", "Deleting ../data/html/20032004/2655.html\n", "Deleting ../data/html/20032004/2656.html\n", "Deleting ../data/html/20032004/2657.html\n", "Deleting ../data/html/20032004/2658.html\n", "Deleting ../data/html/20032004/2659.html\n", "Deleting ../data/html/20032004/2660.html\n", "Deleting ../data/html/20032004/2661.html\n", "Deleting ../data/html/20032004/2662.html\n", "Deleting ../data/html/20032004/2663.html\n", "Deleting ../data/html/20032004/2664.html\n", "Deleting ../data/html/20032004/2665.html\n", "Deleting ../data/html/20032004/2666.html\n", "Deleting ../data/html/20032004/2667.html\n", "Deleting ../data/html/20032004/2668.html\n", "Deleting ../data/html/20032004/2669.html\n", "Deleting ../data/html/20032004/2670.html\n", "Deleting ../data/html/20032004/2671.html\n", "Deleting ../data/html/20032004/2672.html\n", "Deleting ../data/html/20032004/2673.html\n", "Deleting ../data/html/20032004/2674.html\n", "Deleting ../data/html/20032004/2675.html\n", "Deleting ../data/html/20032004/2676.html\n", "Deleting ../data/html/20032004/2677.html\n", "Deleting ../data/html/20032004/2678.html\n", "Deleting ../data/html/20032004/2679.html\n", "Deleting ../data/html/20032004/2680.html\n", "Deleting ../data/html/20032004/2681.html\n", "Deleting ../data/html/20032004/2682.html\n", "Deleting ../data/html/20032004/2683.html\n", "Deleting ../data/html/20032004/2684.html\n", "Deleting ../data/html/20032004/2685.html\n", "Deleting ../data/html/20032004/2686.html\n", "Deleting ../data/html/20032004/2687.html\n", "Deleting ../data/html/20032004/2688.html\n", "Deleting ../data/html/20032004/2689.html\n", "Deleting ../data/html/20032004/2690.html\n", "Deleting ../data/html/20032004/2691.html\n", "Deleting ../data/html/20032004/2692.html\n", "Deleting ../data/html/20032004/2693.html\n", "Deleting ../data/html/20032004/2694.html\n", "Deleting ../data/html/20032004/2695.html\n", "Deleting ../data/html/20032004/2696.html\n", "Deleting ../data/html/20032004/2697.html\n", "Deleting ../data/html/20032004/2698.html\n", "Deleting ../data/html/20032004/2699.html\n", "Deleting ../data/html/20032004/2700.html\n", "Deleting ../data/html/20032004/2701.html\n", "Deleting ../data/html/20032004/2702.html\n", "Deleting ../data/html/20032004/2703.html\n", "Deleting ../data/html/20032004/2704.html\n", "Deleting ../data/html/20032004/2705.html\n", "Deleting ../data/html/20032004/2706.html\n", "Deleting ../data/html/20032004/2707.html\n", "Deleting ../data/html/20032004/2708.html\n", "Deleting ../data/html/20032004/2709.html\n", "Deleting ../data/html/20032004/2710.html\n", "Deleting ../data/html/20032004/2711.html\n", "Deleting ../data/html/20032004/2712.html\n", "Deleting ../data/html/20032004/2713.html\n", "Deleting ../data/html/20032004/2714.html\n", "Deleting ../data/html/20032004/2715.html\n", "Deleting ../data/html/20032004/2716.html\n", "Deleting ../data/html/20032004/2717.html\n", "Deleting ../data/html/20032004/2718.html\n", "Deleting ../data/html/20032004/2719.html\n", "Deleting ../data/html/20032004/2720.html\n", "Deleting ../data/html/20032004/2721.html\n", "Deleting ../data/html/20032004/2722.html\n", "Deleting ../data/html/20032004/2723.html\n", "Deleting ../data/html/20032004/2724.html\n", "Deleting ../data/html/20032004/2725.html\n", "Deleting ../data/html/20032004/2726.html\n", "Deleting ../data/html/20032004/2727.html\n", "Deleting ../data/html/20032004/2728.html\n", "Deleting ../data/html/20032004/2729.html\n", "Deleting ../data/html/20032004/2730.html\n", "Deleting ../data/html/20032004/2731.html\n", "Deleting ../data/html/20032004/2732.html\n", "Deleting ../data/html/20032004/2733.html\n", "Deleting ../data/html/20032004/2734.html\n", "Deleting ../data/html/20032004/2735.html\n", "Deleting ../data/html/20032004/2736.html\n", "Deleting ../data/html/20032004/2737.html\n", "Deleting ../data/html/20032004/2738.html\n", "Deleting ../data/html/20032004/2739.html\n", "Deleting ../data/html/20032004/2740.html\n", "Deleting ../data/html/20032004/2741.html\n", "Deleting ../data/html/20032004/2742.html\n", "Deleting ../data/html/20032004/2743.html\n", "Deleting ../data/html/20032004/2744.html\n", "Deleting ../data/html/20032004/2745.html\n", "Deleting ../data/html/20032004/2746.html\n", "Deleting ../data/html/20032004/2747.html\n", "Deleting ../data/html/20032004/2748.html\n", "Deleting ../data/html/20032004/2749.html\n", "Deleting ../data/html/20032004/2750.html\n", "Deleting ../data/html/20032004/2751.html\n", "Deleting ../data/html/20032004/2752.html\n", "Deleting ../data/html/20032004/2753.html\n", "Deleting ../data/html/20032004/2754.html\n", "Deleting ../data/html/20032004/2755.html\n", "Deleting ../data/html/20032004/2756.html\n", "Deleting ../data/html/20032004/2757.html\n", "Deleting ../data/html/20032004/2758.html\n", "Deleting ../data/html/20032004/2759.html\n", "Deleting ../data/html/20032004/2760.html\n", "Deleting ../data/html/20032004/2761.html\n", "Deleting ../data/html/20032004/2762.html\n", "Deleting ../data/html/20032004/2763.html\n", "Deleting ../data/html/20032004/2764.html\n", "Deleting ../data/html/20032004/2765.html\n", "Deleting ../data/html/20032004/2766.html\n", "Deleting ../data/html/20032004/2767.html\n", "Deleting ../data/html/20032004/2768.html\n", "Deleting ../data/html/20032004/2769.html\n", "Deleting ../data/html/20032004/2770.html\n", "Deleting ../data/html/20032004/2771.html\n", "Deleting ../data/html/20032004/2772.html\n", "Deleting ../data/html/20032004/2773.html\n", "Deleting ../data/html/20032004/2774.html\n", "Deleting ../data/html/20032004/2775.html\n", "Deleting ../data/html/20032004/2776.html\n", "Deleting ../data/html/20032004/2777.html\n", "Deleting ../data/html/20032004/2778.html\n", "Deleting ../data/html/20032004/2779.html\n", "Deleting ../data/html/20032004/2780.html\n", "Deleting ../data/html/20032004/2781.html\n", "Deleting ../data/html/20032004/2782.html\n", "Deleting ../data/html/20032004/2783.html\n", "Deleting ../data/html/20032004/2784.html\n", "Deleting ../data/html/20032004/2785.html\n", "Deleting ../data/html/20032004/2786.html\n", "Deleting ../data/html/20032004/2787.html\n", "Deleting ../data/html/20032004/2788.html\n", "Deleting ../data/html/20032004/2789.html\n", "Deleting ../data/html/20032004/2790.html\n", "Deleting ../data/html/20032004/2791.html\n", "Deleting ../data/html/20032004/2792.html\n", "Deleting ../data/html/20032004/2793.html\n", "Deleting ../data/html/20032004/2794.html\n", "Deleting ../data/html/20032004/2795.html\n", "Deleting ../data/html/20032004/2796.html\n", "Deleting ../data/html/20032004/2797.html\n", "Deleting ../data/html/20032004/2798.html\n", "Deleting ../data/html/20032004/2799.html\n", "Deleting ../data/html/20032004/2800.html\n", "Deleting ../data/html/20032004/2801.html\n", "Deleting ../data/html/20032004/2802.html\n", "Deleting ../data/html/20032004/2803.html\n", "Deleting ../data/html/20032004/2804.html\n", "Deleting ../data/html/20032004/2805.html\n", "Deleting ../data/html/20032004/2806.html\n", "Deleting ../data/html/20032004/2807.html\n", "Deleting ../data/html/20032004/2808.html\n", "Deleting ../data/html/20032004/2809.html\n", "Deleting ../data/html/20032004/2810.html\n", "Deleting ../data/html/20032004/2811.html\n", "Deleting ../data/html/20032004/2812.html\n", "Deleting ../data/html/20032004/2813.html\n", "Deleting ../data/html/20032004/2814.html\n", "Deleting ../data/html/20032004/2815.html\n", "Deleting ../data/html/20032004/2816.html\n", "Deleting ../data/html/20032004/2817.html\n", "Deleting ../data/html/20032004/2818.html\n", "Deleting ../data/html/20032004/2819.html\n", "Deleting ../data/html/20032004/2820.html\n", "Deleting ../data/html/20032004/2821.html\n", "Deleting ../data/html/20032004/2822.html\n", "Deleting ../data/html/20032004/2823.html\n", "Deleting ../data/html/20032004/2824.html\n", "Deleting ../data/html/20032004/2825.html\n", "Deleting ../data/html/20032004/2826.html\n", "Deleting ../data/html/20032004/2827.html\n", "Deleting ../data/html/20032004/2828.html\n", "Deleting ../data/html/20032004/2829.html\n", "Deleting ../data/html/20032004/2830.html\n", "Deleting ../data/html/20032004/2831.html\n", "Deleting ../data/html/20032004/2832.html\n", "Deleting ../data/html/20032004/2833.html\n", "Deleting ../data/html/20032004/2834.html\n", "Deleting ../data/html/20032004/2835.html\n", "Deleting ../data/html/20032004/2836.html\n", "Deleting ../data/html/20032004/2837.html\n", "Deleting ../data/html/20032004/2838.html\n", "Deleting ../data/html/20032004/2839.html\n", "Deleting ../data/html/20032004/2840.html\n", "Deleting ../data/html/20032004/2841.html\n", "Deleting ../data/html/20032004/2842.html\n", "Deleting ../data/html/20032004/2843.html\n", "Deleting ../data/html/20032004/2844.html\n", "Deleting ../data/html/20032004/2845.html\n", "Deleting ../data/html/20032004/2846.html\n", "Deleting ../data/html/20032004/2847.html\n", "Deleting ../data/html/20032004/2848.html\n", "Deleting ../data/html/20032004/2849.html\n", "Deleting ../data/html/20032004/2850.html\n", "Deleting ../data/html/20032004/2851.html\n", "Deleting ../data/html/20032004/2852.html\n", "Deleting ../data/html/20032004/2853.html\n", "Deleting ../data/html/20032004/2854.html\n", "Deleting ../data/html/20032004/2855.html\n", "Deleting ../data/html/20032004/2856.html\n", "Deleting ../data/html/20032004/2857.html\n", "Deleting ../data/html/20032004/2858.html\n", "Deleting ../data/html/20032004/2859.html\n", "Deleting ../data/html/20032004/2860.html\n", "Deleting ../data/html/20032004/2861.html\n", "Deleting ../data/html/20032004/2862.html\n", "Deleting ../data/html/20032004/2863.html\n", "Deleting ../data/html/20032004/2864.html\n", "Deleting ../data/html/20032004/2865.html\n", "Deleting ../data/html/20032004/2866.html\n", "Deleting ../data/html/20032004/2867.html\n", "Deleting ../data/html/20032004/2868.html\n", "Deleting ../data/html/20032004/2869.html\n", "Deleting ../data/html/20032004/2870.html\n", "Deleting ../data/html/20032004/2871.html\n", "Deleting ../data/html/20032004/2872.html\n", "Deleting ../data/html/20032004/2873.html\n", "Deleting ../data/html/20032004/2874.html\n", "Deleting ../data/html/20032004/2875.html\n", "Deleting ../data/html/20032004/2876.html\n", "Deleting ../data/html/20032004/2877.html\n", "Deleting ../data/html/20032004/2878.html\n", "Deleting ../data/html/20032004/2879.html\n", "Deleting ../data/html/20032004/2880.html\n", "Deleting ../data/html/20032004/2881.html\n", "Deleting ../data/html/20032004/2882.html\n", "Deleting ../data/html/20032004/2883.html\n", "Deleting ../data/html/20032004/2884.html\n", "Deleting ../data/html/20032004/2885.html\n", "Deleting ../data/html/20032004/2886.html\n", "Deleting ../data/html/20032004/2887.html\n", "Deleting ../data/html/20032004/2888.html\n", "Deleting ../data/html/20032004/2889.html\n", "Deleting ../data/html/20032004/2890.html\n", "Deleting ../data/html/20032004/2891.html\n", "Deleting ../data/html/20032004/2892.html\n", "Deleting ../data/html/20032004/2893.html\n", "Deleting ../data/html/20032004/2894.html\n", "Deleting ../data/html/20032004/2895.html\n", "Deleting ../data/html/20032004/2896.html\n", "Deleting ../data/html/20032004/2897.html\n", "Deleting ../data/html/20032004/2898.html\n", "Deleting ../data/html/20032004/2899.html\n", "Deleting ../data/html/20032004/2900.html\n", "Deleting ../data/html/20032004/2901.html\n", "Deleting ../data/html/20032004/2902.html\n", "Deleting ../data/html/20032004/2903.html\n", "Deleting ../data/html/20032004/2904.html\n", "Deleting ../data/html/20032004/2905.html\n", "Deleting ../data/html/20032004/2906.html\n", "Deleting ../data/html/20032004/2907.html\n", "Deleting ../data/html/20032004/2908.html\n", "Deleting ../data/html/20032004/2909.html\n", "Deleting ../data/html/20032004/2910.html\n", "Deleting ../data/html/20032004/2911.html\n", "Deleting ../data/html/20032004/2912.html\n", "Deleting ../data/html/20032004/2913.html\n", "Deleting ../data/html/20032004/2914.html\n", "Deleting ../data/html/20032004/2915.html\n", "Deleting ../data/html/20032004/2916.html\n", "Deleting ../data/html/20032004/2917.html\n", "Deleting ../data/html/20032004/2918.html\n", "Deleting ../data/html/20032004/2919.html\n", "Deleting ../data/html/20032004/2920.html\n", "Deleting ../data/html/20032004/2921.html\n", "Deleting ../data/html/20032004/2922.html\n", "Deleting ../data/html/20032004/2923.html\n", "Deleting ../data/html/20032004/2924.html\n", "Deleting ../data/html/20032004/2925.html\n", "Deleting ../data/html/20032004/2926.html\n", "Deleting ../data/html/20032004/2927.html\n", "Deleting ../data/html/20032004/2928.html\n", "Deleting ../data/html/20032004/2929.html\n", "Deleting ../data/html/20032004/2930.html\n", "Deleting ../data/html/20032004/2931.html\n", "Deleting ../data/html/20032004/2932.html\n", "Deleting ../data/html/20032004/2933.html\n", "Deleting ../data/html/20032004/2934.html\n", "Deleting ../data/html/20032004/2935.html\n", "Deleting ../data/html/20032004/2936.html\n", "Deleting ../data/html/20032004/2937.html\n", "Deleting ../data/html/20032004/2938.html\n", "Deleting ../data/html/20032004/2939.html\n", "Deleting ../data/html/20032004/2940.html\n", "Deleting ../data/html/20032004/2941.html\n", "Deleting ../data/html/20032004/2942.html\n", "Deleting ../data/html/20032004/2943.html\n", "Deleting ../data/html/20032004/2944.html\n", "Deleting ../data/html/20032004/2945.html\n", "Deleting ../data/html/20032004/2946.html\n", "Deleting ../data/html/20032004/2947.html\n", "Deleting ../data/html/20032004/2948.html\n", "Deleting ../data/html/20032004/2949.html\n", "Deleting ../data/html/20032004/2950.html\n", "Deleting ../data/html/20032004/2951.html\n", "Deleting ../data/html/20032004/2952.html\n", "Deleting ../data/html/20032004/2953.html\n", "Deleting ../data/html/20032004/2954.html\n", "Deleting ../data/html/20032004/2955.html\n", "Deleting ../data/html/20032004/2956.html\n", "Deleting ../data/html/20032004/2957.html\n", "Deleting ../data/html/20032004/2958.html\n", "Deleting ../data/html/20032004/2959.html\n", "Deleting ../data/html/20032004/2960.html\n", "Deleting ../data/html/20032004/2961.html\n", "Deleting ../data/html/20032004/2962.html\n", "Deleting ../data/html/20032004/2963.html\n", "Deleting ../data/html/20032004/2964.html\n", "Deleting ../data/html/20032004/2965.html\n", "Deleting ../data/html/20032004/2966.html\n", "Deleting ../data/html/20032004/2967.html\n", "Deleting ../data/html/20032004/2968.html\n", "Deleting ../data/html/20032004/2969.html\n", "Deleting ../data/html/20032004/2970.html\n", "Deleting ../data/html/20032004/2971.html\n", "Deleting ../data/html/20032004/2972.html\n", "Deleting ../data/html/20032004/2973.html\n", "Deleting ../data/html/20032004/2974.html\n", "Deleting ../data/html/20032004/2975.html\n", "Deleting ../data/html/20032004/2976.html\n", "Deleting ../data/html/20032004/2977.html\n", "Deleting ../data/html/20032004/2978.html\n", "Deleting ../data/html/20032004/2979.html\n", "Deleting ../data/html/20032004/2980.html\n", "Deleting ../data/html/20032004/2981.html\n", "Deleting ../data/html/20032004/2982.html\n", "Deleting ../data/html/20032004/2983.html\n", "Deleting ../data/html/20032004/2984.html\n", "Deleting ../data/html/20032004/2985.html\n", "Deleting ../data/html/20032004/2986.html\n", "Deleting ../data/html/20032004/2987.html\n", "Deleting ../data/html/20032004/2988.html\n", "Deleting ../data/html/20032004/2989.html\n", "Deleting ../data/html/20032004/2990.html\n", "Deleting ../data/html/20032004/2991.html\n", "Deleting ../data/html/20032004/2992.html\n", "Deleting ../data/html/20032004/2993.html\n", "Deleting ../data/html/20032004/2994.html\n", "Deleting ../data/html/20032004/2995.html\n", "Deleting ../data/html/20032004/2996.html\n", "Deleting ../data/html/20032004/2997.html\n", "Deleting ../data/html/20032004/2998.html\n", "Deleting ../data/html/20032004/2999.html\n", "Found 2999 files\n", "Deleting ../data/html/20042005/1.html\n", "Deleting ../data/html/20042005/10.html\n", "Deleting ../data/html/20042005/100.html\n", "Deleting ../data/html/20042005/1000.html\n", "Deleting ../data/html/20042005/1001.html\n", "Deleting ../data/html/20042005/1002.html\n", "Deleting ../data/html/20042005/1003.html\n", "Deleting ../data/html/20042005/1004.html\n", "Deleting ../data/html/20042005/1005.html\n", "Deleting ../data/html/20042005/1006.html\n", "Deleting ../data/html/20042005/1007.html\n", "Deleting ../data/html/20042005/1008.html\n", "Deleting ../data/html/20042005/1009.html\n", "Deleting ../data/html/20042005/101.html\n", "Deleting ../data/html/20042005/1010.html\n", "Deleting ../data/html/20042005/1011.html\n", "Deleting ../data/html/20042005/1012.html\n", "Deleting ../data/html/20042005/1013.html\n", "Deleting ../data/html/20042005/1014.html\n", "Deleting ../data/html/20042005/1015.html\n", "Deleting ../data/html/20042005/1016.html\n", "Deleting ../data/html/20042005/1017.html\n", "Deleting ../data/html/20042005/1018.html\n", "Deleting ../data/html/20042005/1019.html\n", "Deleting ../data/html/20042005/102.html\n", "Deleting ../data/html/20042005/1020.html\n", "Deleting ../data/html/20042005/1021.html\n", "Deleting ../data/html/20042005/1022.html\n", "Deleting ../data/html/20042005/1023.html\n", "Deleting ../data/html/20042005/1024.html\n", "Deleting ../data/html/20042005/1025.html\n", "Deleting ../data/html/20042005/1026.html\n", "Deleting ../data/html/20042005/1027.html\n", "Deleting ../data/html/20042005/1028.html\n", "Deleting ../data/html/20042005/1029.html\n", "Deleting ../data/html/20042005/103.html\n", "Deleting ../data/html/20042005/1030.html\n", "Deleting ../data/html/20042005/1031.html\n", "Deleting ../data/html/20042005/1032.html\n", "Deleting ../data/html/20042005/1033.html\n", "Deleting ../data/html/20042005/1034.html\n", "Deleting ../data/html/20042005/1035.html\n", "Deleting ../data/html/20042005/1036.html\n", "Deleting ../data/html/20042005/1037.html\n", "Deleting ../data/html/20042005/1038.html\n", "Deleting ../data/html/20042005/1039.html\n", "Deleting ../data/html/20042005/104.html\n", "Deleting ../data/html/20042005/1040.html\n", "Deleting ../data/html/20042005/1041.html\n", "Deleting ../data/html/20042005/1042.html\n", "Deleting ../data/html/20042005/1043.html\n", "Deleting ../data/html/20042005/1044.html\n", "Deleting ../data/html/20042005/1045.html\n", "Deleting ../data/html/20042005/1046.html\n", "Deleting ../data/html/20042005/1047.html\n", "Deleting ../data/html/20042005/1048.html\n", "Deleting ../data/html/20042005/1049.html\n", "Deleting ../data/html/20042005/105.html\n", "Deleting ../data/html/20042005/1050.html\n", "Deleting ../data/html/20042005/1051.html\n", "Deleting ../data/html/20042005/1052.html\n", "Deleting ../data/html/20042005/1053.html\n", "Deleting ../data/html/20042005/1054.html\n", "Deleting ../data/html/20042005/1055.html\n", "Deleting ../data/html/20042005/1056.html\n", "Deleting ../data/html/20042005/1057.html\n", "Deleting ../data/html/20042005/1058.html\n", "Deleting ../data/html/20042005/1059.html\n", "Deleting ../data/html/20042005/106.html\n", "Deleting ../data/html/20042005/1060.html\n", "Deleting ../data/html/20042005/1061.html\n", "Deleting ../data/html/20042005/1062.html\n", "Deleting ../data/html/20042005/1063.html\n", "Deleting ../data/html/20042005/1064.html\n", "Deleting ../data/html/20042005/1065.html\n", "Deleting ../data/html/20042005/1066.html\n", "Deleting ../data/html/20042005/1067.html\n", "Deleting ../data/html/20042005/1068.html\n", "Deleting ../data/html/20042005/1069.html\n", "Deleting ../data/html/20042005/107.html\n", "Deleting ../data/html/20042005/1070.html\n", "Deleting ../data/html/20042005/1071.html\n", "Deleting ../data/html/20042005/1072.html\n", "Deleting ../data/html/20042005/1073.html\n", "Deleting ../data/html/20042005/1074.html\n", "Deleting ../data/html/20042005/1075.html\n", "Deleting ../data/html/20042005/1076.html\n", "Deleting ../data/html/20042005/1077.html\n", "Deleting ../data/html/20042005/1078.html\n", "Deleting ../data/html/20042005/1079.html\n", "Deleting ../data/html/20042005/108.html\n", "Deleting ../data/html/20042005/1080.html\n", "Deleting ../data/html/20042005/1081.html\n", "Deleting ../data/html/20042005/1082.html\n", "Deleting ../data/html/20042005/1083.html\n", "Deleting ../data/html/20042005/1084.html\n", "Deleting ../data/html/20042005/1085.html\n", "Deleting ../data/html/20042005/1086.html\n", "Deleting ../data/html/20042005/1087.html\n", "Deleting ../data/html/20042005/1088.html\n", "Deleting ../data/html/20042005/1089.html\n", "Deleting ../data/html/20042005/109.html\n", "Deleting ../data/html/20042005/1090.html\n", "Deleting ../data/html/20042005/1091.html\n", "Deleting ../data/html/20042005/1092.html\n", "Deleting ../data/html/20042005/1093.html\n", "Deleting ../data/html/20042005/1094.html\n", "Deleting ../data/html/20042005/1095.html\n", "Deleting ../data/html/20042005/1096.html\n", "Deleting ../data/html/20042005/1097.html\n", "Deleting ../data/html/20042005/1098.html\n", "Deleting ../data/html/20042005/1099.html\n", "Deleting ../data/html/20042005/11.html\n", "Deleting ../data/html/20042005/110.html\n", "Deleting ../data/html/20042005/1100.html\n", "Deleting ../data/html/20042005/1101.html\n", "Deleting ../data/html/20042005/1102.html\n", "Deleting ../data/html/20042005/1103.html\n", "Deleting ../data/html/20042005/1104.html\n", "Deleting ../data/html/20042005/1105.html\n", "Deleting ../data/html/20042005/1106.html\n", "Deleting ../data/html/20042005/1107.html\n", "Deleting ../data/html/20042005/1108.html\n", "Deleting ../data/html/20042005/1109.html\n", "Deleting ../data/html/20042005/111.html\n", "Deleting ../data/html/20042005/1110.html\n", "Deleting ../data/html/20042005/1111.html\n", "Deleting ../data/html/20042005/1112.html\n", "Deleting ../data/html/20042005/1113.html\n", "Deleting ../data/html/20042005/1114.html\n", "Deleting ../data/html/20042005/1115.html\n", "Deleting ../data/html/20042005/1116.html\n", "Deleting ../data/html/20042005/1117.html\n", "Deleting ../data/html/20042005/1118.html\n", "Deleting ../data/html/20042005/1119.html\n", "Deleting ../data/html/20042005/112.html\n", "Deleting ../data/html/20042005/1120.html\n", "Deleting ../data/html/20042005/1121.html\n", "Deleting ../data/html/20042005/1122.html\n", "Deleting ../data/html/20042005/1123.html\n", "Deleting ../data/html/20042005/1124.html\n", "Deleting ../data/html/20042005/1125.html\n", "Deleting ../data/html/20042005/1126.html\n", "Deleting ../data/html/20042005/1127.html\n", "Deleting ../data/html/20042005/1128.html\n", "Deleting ../data/html/20042005/1129.html\n", "Deleting ../data/html/20042005/113.html\n", "Deleting ../data/html/20042005/1130.html\n", "Deleting ../data/html/20042005/1131.html\n", "Deleting ../data/html/20042005/1132.html\n", "Deleting ../data/html/20042005/1133.html\n", "Deleting ../data/html/20042005/1134.html\n", "Deleting ../data/html/20042005/1135.html\n", "Deleting ../data/html/20042005/1136.html\n", "Deleting ../data/html/20042005/1137.html\n", "Deleting ../data/html/20042005/1138.html\n", "Deleting ../data/html/20042005/1139.html\n", "Deleting ../data/html/20042005/114.html\n", "Deleting ../data/html/20042005/1140.html\n", "Deleting ../data/html/20042005/1141.html\n", "Deleting ../data/html/20042005/1142.html\n", "Deleting ../data/html/20042005/1143.html\n", "Deleting ../data/html/20042005/1144.html\n", "Deleting ../data/html/20042005/1145.html\n", "Deleting ../data/html/20042005/1146.html\n", "Deleting ../data/html/20042005/1147.html\n", "Deleting ../data/html/20042005/1148.html\n", "Deleting ../data/html/20042005/1149.html\n", "Deleting ../data/html/20042005/115.html\n", "Deleting ../data/html/20042005/1150.html\n", "Deleting ../data/html/20042005/1151.html\n", "Deleting ../data/html/20042005/1152.html\n", "Deleting ../data/html/20042005/1153.html\n", "Deleting ../data/html/20042005/1154.html\n", "Deleting ../data/html/20042005/1155.html\n", "Deleting ../data/html/20042005/1156.html\n", "Deleting ../data/html/20042005/1157.html\n", "Deleting ../data/html/20042005/1158.html\n", "Deleting ../data/html/20042005/1159.html\n", "Deleting ../data/html/20042005/116.html\n", "Deleting ../data/html/20042005/1160.html\n", "Deleting ../data/html/20042005/1161.html\n", "Deleting ../data/html/20042005/1162.html\n", "Deleting ../data/html/20042005/1163.html\n", "Deleting ../data/html/20042005/1164.html\n", "Deleting ../data/html/20042005/1165.html\n", "Deleting ../data/html/20042005/1166.html\n", "Deleting ../data/html/20042005/1167.html\n", "Deleting ../data/html/20042005/1168.html\n", "Deleting ../data/html/20042005/1169.html\n", "Deleting ../data/html/20042005/117.html\n", "Deleting ../data/html/20042005/1170.html\n", "Deleting ../data/html/20042005/1171.html\n", "Deleting ../data/html/20042005/1172.html\n", "Deleting ../data/html/20042005/1173.html\n", "Deleting ../data/html/20042005/1174.html\n", "Deleting ../data/html/20042005/1175.html\n", "Deleting ../data/html/20042005/1176.html\n", "Deleting ../data/html/20042005/1177.html\n", "Deleting ../data/html/20042005/1178.html\n", "Deleting ../data/html/20042005/1179.html\n", "Deleting ../data/html/20042005/118.html\n", "Deleting ../data/html/20042005/1180.html\n", "Deleting ../data/html/20042005/1181.html\n", "Deleting ../data/html/20042005/1182.html\n", "Deleting ../data/html/20042005/1183.html\n", "Deleting ../data/html/20042005/1184.html\n", "Deleting ../data/html/20042005/1185.html\n", "Deleting ../data/html/20042005/1186.html\n", "Deleting ../data/html/20042005/1187.html\n", "Deleting ../data/html/20042005/1188.html\n", "Deleting ../data/html/20042005/1189.html\n", "Deleting ../data/html/20042005/119.html\n", "Deleting ../data/html/20042005/1190.html\n", "Deleting ../data/html/20042005/1191.html\n", "Deleting ../data/html/20042005/1192.html\n", "Deleting ../data/html/20042005/1193.html\n", "Deleting ../data/html/20042005/1194.html\n", "Deleting ../data/html/20042005/1195.html\n", "Deleting ../data/html/20042005/1196.html\n", "Deleting ../data/html/20042005/1197.html\n", "Deleting ../data/html/20042005/1198.html\n", "Deleting ../data/html/20042005/1199.html\n", "Deleting ../data/html/20042005/12.html\n", "Deleting ../data/html/20042005/120.html\n", "Deleting ../data/html/20042005/1200.html\n", "Deleting ../data/html/20042005/1201.html\n", "Deleting ../data/html/20042005/1202.html\n", "Deleting ../data/html/20042005/1203.html\n", "Deleting ../data/html/20042005/1204.html\n", "Deleting ../data/html/20042005/1205.html\n", "Deleting ../data/html/20042005/1206.html\n", "Deleting ../data/html/20042005/1207.html\n", "Deleting ../data/html/20042005/1208.html\n", "Deleting ../data/html/20042005/1209.html\n", "Deleting ../data/html/20042005/121.html\n", "Deleting ../data/html/20042005/1210.html\n", "Deleting ../data/html/20042005/1211.html\n", "Deleting ../data/html/20042005/1212.html\n", "Deleting ../data/html/20042005/1213.html\n", "Deleting ../data/html/20042005/1214.html\n", "Deleting ../data/html/20042005/1215.html\n", "Deleting ../data/html/20042005/1216.html\n", "Deleting ../data/html/20042005/1217.html\n", "Deleting ../data/html/20042005/1218.html\n", "Deleting ../data/html/20042005/1219.html\n", "Deleting ../data/html/20042005/122.html\n", "Deleting ../data/html/20042005/1220.html\n", "Deleting ../data/html/20042005/1221.html\n", "Deleting ../data/html/20042005/1222.html\n", "Deleting ../data/html/20042005/1223.html\n", "Deleting ../data/html/20042005/1224.html\n", "Deleting ../data/html/20042005/1225.html\n", "Deleting ../data/html/20042005/1226.html\n", "Deleting ../data/html/20042005/1227.html\n", "Deleting ../data/html/20042005/1228.html\n", "Deleting ../data/html/20042005/1229.html\n", "Deleting ../data/html/20042005/123.html\n", "Deleting ../data/html/20042005/1230.html\n", "Deleting ../data/html/20042005/1231.html\n", "Deleting ../data/html/20042005/1232.html\n", "Deleting ../data/html/20042005/1233.html\n", "Deleting ../data/html/20042005/1234.html\n", "Deleting ../data/html/20042005/1235.html\n", "Deleting ../data/html/20042005/1236.html\n", "Deleting ../data/html/20042005/1237.html\n", "Deleting ../data/html/20042005/1238.html\n", "Deleting ../data/html/20042005/1239.html\n", "Deleting ../data/html/20042005/124.html\n", "Deleting ../data/html/20042005/1240.html\n", "Deleting ../data/html/20042005/1241.html\n", "Deleting ../data/html/20042005/1242.html\n", "Deleting ../data/html/20042005/1243.html\n", "Deleting ../data/html/20042005/1244.html\n", "Deleting ../data/html/20042005/1245.html\n", "Deleting ../data/html/20042005/1246.html\n", "Deleting ../data/html/20042005/1247.html\n", "Deleting ../data/html/20042005/1248.html\n", "Deleting ../data/html/20042005/1249.html\n", "Deleting ../data/html/20042005/125.html\n", "Deleting ../data/html/20042005/1250.html\n", "Deleting ../data/html/20042005/1251.html\n", "Deleting ../data/html/20042005/1252.html\n", "Deleting ../data/html/20042005/1253.html\n", "Deleting ../data/html/20042005/1254.html\n", "Deleting ../data/html/20042005/1255.html\n", "Deleting ../data/html/20042005/1256.html\n", "Deleting ../data/html/20042005/1257.html\n", "Deleting ../data/html/20042005/1258.html\n", "Deleting ../data/html/20042005/1259.html\n", "Deleting ../data/html/20042005/126.html\n", "Deleting ../data/html/20042005/1260.html\n", "Deleting ../data/html/20042005/1261.html\n", "Deleting ../data/html/20042005/1262.html\n", "Deleting ../data/html/20042005/1263.html\n", "Deleting ../data/html/20042005/1264.html\n", "Deleting ../data/html/20042005/1265.html\n", "Deleting ../data/html/20042005/1266.html\n", "Deleting ../data/html/20042005/1267.html\n", "Deleting ../data/html/20042005/1268.html\n", "Deleting ../data/html/20042005/1269.html\n", "Deleting ../data/html/20042005/127.html\n", "Deleting ../data/html/20042005/1270.html\n", "Deleting ../data/html/20042005/1271.html\n", "Deleting ../data/html/20042005/1272.html\n", "Deleting ../data/html/20042005/1273.html\n", "Deleting ../data/html/20042005/1274.html\n", "Deleting ../data/html/20042005/1275.html\n", "Deleting ../data/html/20042005/1276.html\n", "Deleting ../data/html/20042005/1277.html\n", "Deleting ../data/html/20042005/1278.html\n", "Deleting ../data/html/20042005/1279.html\n", "Deleting ../data/html/20042005/128.html\n", "Deleting ../data/html/20042005/1280.html\n", "Deleting ../data/html/20042005/1281.html\n", "Deleting ../data/html/20042005/1282.html\n", "Deleting ../data/html/20042005/1283.html\n", "Deleting ../data/html/20042005/1284.html\n", "Deleting ../data/html/20042005/1285.html\n", "Deleting ../data/html/20042005/1286.html\n", "Deleting ../data/html/20042005/1287.html\n", "Deleting ../data/html/20042005/1288.html\n", "Deleting ../data/html/20042005/1289.html\n", "Deleting ../data/html/20042005/129.html\n", "Deleting ../data/html/20042005/1290.html\n", "Deleting ../data/html/20042005/1291.html\n", "Deleting ../data/html/20042005/1292.html\n", "Deleting ../data/html/20042005/1293.html\n", "Deleting ../data/html/20042005/1294.html\n", "Deleting ../data/html/20042005/1295.html\n", "Deleting ../data/html/20042005/1296.html\n", "Deleting ../data/html/20042005/1297.html\n", "Deleting ../data/html/20042005/1298.html\n", "Deleting ../data/html/20042005/1299.html\n", "Deleting ../data/html/20042005/13.html\n", "Deleting ../data/html/20042005/130.html\n", "Deleting ../data/html/20042005/1300.html\n", "Deleting ../data/html/20042005/1301.html\n", "Deleting ../data/html/20042005/1302.html\n", "Deleting ../data/html/20042005/1303.html\n", "Deleting ../data/html/20042005/1304.html\n", "Deleting ../data/html/20042005/1305.html\n", "Deleting ../data/html/20042005/1306.html\n", "Deleting ../data/html/20042005/1307.html\n", "Deleting ../data/html/20042005/1308.html\n", "Deleting ../data/html/20042005/1309.html\n", "Deleting ../data/html/20042005/131.html\n", "Deleting ../data/html/20042005/1310.html\n", "Deleting ../data/html/20042005/1311.html\n", "Deleting ../data/html/20042005/1312.html\n", "Deleting ../data/html/20042005/1313.html\n", "Deleting ../data/html/20042005/1314.html\n", "Deleting ../data/html/20042005/1315.html\n", "Deleting ../data/html/20042005/1316.html\n", "Deleting ../data/html/20042005/1317.html\n", "Deleting ../data/html/20042005/1318.html\n", "Deleting ../data/html/20042005/1319.html\n", "Deleting ../data/html/20042005/132.html\n", "Deleting ../data/html/20042005/1320.html\n", "Deleting ../data/html/20042005/1321.html\n", "Deleting ../data/html/20042005/1322.html\n", "Deleting ../data/html/20042005/1323.html\n", "Deleting ../data/html/20042005/1324.html\n", "Deleting ../data/html/20042005/1325.html\n", "Deleting ../data/html/20042005/1326.html\n", "Deleting ../data/html/20042005/1327.html\n", "Deleting ../data/html/20042005/1328.html\n", "Deleting ../data/html/20042005/1329.html\n", "Deleting ../data/html/20042005/133.html\n", "Deleting ../data/html/20042005/1330.html\n", "Deleting ../data/html/20042005/1331.html\n", "Deleting ../data/html/20042005/1332.html\n", "Deleting ../data/html/20042005/1333.html\n", "Deleting ../data/html/20042005/1334.html\n", "Deleting ../data/html/20042005/1335.html\n", "Deleting ../data/html/20042005/1336.html\n", "Deleting ../data/html/20042005/1337.html\n", "Deleting ../data/html/20042005/1338.html\n", "Deleting ../data/html/20042005/1339.html\n", "Deleting ../data/html/20042005/134.html\n", "Deleting ../data/html/20042005/1340.html\n", "Deleting ../data/html/20042005/1341.html\n", "Deleting ../data/html/20042005/1342.html\n", "Deleting ../data/html/20042005/1343.html\n", "Deleting ../data/html/20042005/1344.html\n", "Deleting ../data/html/20042005/1345.html\n", "Deleting ../data/html/20042005/1346.html\n", "Deleting ../data/html/20042005/1347.html\n", "Deleting ../data/html/20042005/1348.html\n", "Deleting ../data/html/20042005/1349.html\n", "Deleting ../data/html/20042005/135.html\n", "Deleting ../data/html/20042005/1350.html\n", "Deleting ../data/html/20042005/1351.html\n", "Deleting ../data/html/20042005/1352.html\n", "Deleting ../data/html/20042005/1353.html\n", "Deleting ../data/html/20042005/1354.html\n", "Deleting ../data/html/20042005/1355.html\n", "Deleting ../data/html/20042005/1356.html\n", "Deleting ../data/html/20042005/1357.html\n", "Deleting ../data/html/20042005/1358.html\n", "Deleting ../data/html/20042005/1359.html\n", "Deleting ../data/html/20042005/136.html\n", "Deleting ../data/html/20042005/1360.html\n", "Deleting ../data/html/20042005/1361.html\n", "Deleting ../data/html/20042005/1362.html\n", "Deleting ../data/html/20042005/1363.html\n", "Deleting ../data/html/20042005/1364.html\n", "Deleting ../data/html/20042005/1365.html\n", "Deleting ../data/html/20042005/1366.html\n", "Deleting ../data/html/20042005/1367.html\n", "Deleting ../data/html/20042005/1368.html\n", "Deleting ../data/html/20042005/1369.html\n", "Deleting ../data/html/20042005/137.html\n", "Deleting ../data/html/20042005/1370.html\n", "Deleting ../data/html/20042005/1371.html\n", "Deleting ../data/html/20042005/1372.html\n", "Deleting ../data/html/20042005/1373.html\n", "Deleting ../data/html/20042005/1374.html\n", "Deleting ../data/html/20042005/1375.html\n", "Deleting ../data/html/20042005/1376.html\n", "Deleting ../data/html/20042005/1377.html\n", "Deleting ../data/html/20042005/1378.html\n", "Deleting ../data/html/20042005/1379.html\n", "Deleting ../data/html/20042005/138.html\n", "Deleting ../data/html/20042005/1380.html\n", "Deleting ../data/html/20042005/1381.html\n", "Deleting ../data/html/20042005/1382.html\n", "Deleting ../data/html/20042005/1383.html\n", "Deleting ../data/html/20042005/1384.html\n", "Deleting ../data/html/20042005/1385.html\n", "Deleting ../data/html/20042005/1386.html\n", "Deleting ../data/html/20042005/1387.html\n", "Deleting ../data/html/20042005/1388.html\n", "Deleting ../data/html/20042005/1389.html\n", "Deleting ../data/html/20042005/139.html\n", "Deleting ../data/html/20042005/1390.html\n", "Deleting ../data/html/20042005/1391.html\n", "Deleting ../data/html/20042005/1392.html\n", "Deleting ../data/html/20042005/1393.html\n", "Deleting ../data/html/20042005/1394.html\n", "Deleting ../data/html/20042005/1395.html\n", "Deleting ../data/html/20042005/1396.html\n", "Deleting ../data/html/20042005/1397.html\n", "Deleting ../data/html/20042005/1398.html\n", "Deleting ../data/html/20042005/1399.html\n", "Deleting ../data/html/20042005/14.html\n", "Deleting ../data/html/20042005/140.html\n", "Deleting ../data/html/20042005/1400.html\n", "Deleting ../data/html/20042005/1401.html\n", "Deleting ../data/html/20042005/1402.html\n", "Deleting ../data/html/20042005/1403.html\n", "Deleting ../data/html/20042005/1404.html\n", "Deleting ../data/html/20042005/1405.html\n", "Deleting ../data/html/20042005/1406.html\n", "Deleting ../data/html/20042005/1407.html\n", "Deleting ../data/html/20042005/1408.html\n", "Deleting ../data/html/20042005/1409.html\n", "Deleting ../data/html/20042005/141.html\n", "Deleting ../data/html/20042005/1410.html\n", "Deleting ../data/html/20042005/1411.html\n", "Deleting ../data/html/20042005/1412.html\n", "Deleting ../data/html/20042005/1413.html\n", "Deleting ../data/html/20042005/1414.html\n", "Deleting ../data/html/20042005/1415.html\n", "Deleting ../data/html/20042005/1416.html\n", "Deleting ../data/html/20042005/1417.html\n", "Deleting ../data/html/20042005/1418.html\n", "Deleting ../data/html/20042005/1419.html\n", "Deleting ../data/html/20042005/142.html\n", "Deleting ../data/html/20042005/1420.html\n", "Deleting ../data/html/20042005/1421.html\n", "Deleting ../data/html/20042005/1422.html\n", "Deleting ../data/html/20042005/1423.html\n", "Deleting ../data/html/20042005/1424.html\n", "Deleting ../data/html/20042005/1425.html\n", "Deleting ../data/html/20042005/1426.html\n", "Deleting ../data/html/20042005/1427.html\n", "Deleting ../data/html/20042005/1428.html\n", "Deleting ../data/html/20042005/1429.html\n", "Deleting ../data/html/20042005/143.html\n", "Deleting ../data/html/20042005/1430.html\n", "Deleting ../data/html/20042005/1431.html\n", "Deleting ../data/html/20042005/1432.html\n", "Deleting ../data/html/20042005/1433.html\n", "Deleting ../data/html/20042005/1434.html\n", "Deleting ../data/html/20042005/1435.html\n", "Deleting ../data/html/20042005/1436.html\n", "Deleting ../data/html/20042005/1437.html\n", "Deleting ../data/html/20042005/1438.html\n", "Deleting ../data/html/20042005/1439.html\n", "Deleting ../data/html/20042005/144.html\n", "Deleting ../data/html/20042005/1440.html\n", "Deleting ../data/html/20042005/1441.html\n", "Deleting ../data/html/20042005/1442.html\n", "Deleting ../data/html/20042005/1443.html\n", "Deleting ../data/html/20042005/1444.html\n", "Deleting ../data/html/20042005/1445.html\n", "Deleting ../data/html/20042005/1446.html\n", "Deleting ../data/html/20042005/1447.html\n", "Deleting ../data/html/20042005/1448.html\n", "Deleting ../data/html/20042005/1449.html\n", "Deleting ../data/html/20042005/145.html\n", "Deleting ../data/html/20042005/1450.html\n", "Deleting ../data/html/20042005/1451.html\n", "Deleting ../data/html/20042005/1452.html\n", "Deleting ../data/html/20042005/1453.html\n", "Deleting ../data/html/20042005/1454.html\n", "Deleting ../data/html/20042005/1455.html\n", "Deleting ../data/html/20042005/1456.html\n", "Deleting ../data/html/20042005/1457.html\n", "Deleting ../data/html/20042005/1458.html\n", "Deleting ../data/html/20042005/1459.html\n", "Deleting ../data/html/20042005/146.html\n", "Deleting ../data/html/20042005/1460.html\n", "Deleting ../data/html/20042005/1461.html\n", "Deleting ../data/html/20042005/1462.html\n", "Deleting ../data/html/20042005/1463.html\n", "Deleting ../data/html/20042005/1464.html\n", "Deleting ../data/html/20042005/1465.html\n", "Deleting ../data/html/20042005/1466.html\n", "Deleting ../data/html/20042005/1467.html\n", "Deleting ../data/html/20042005/1468.html\n", "Deleting ../data/html/20042005/1469.html\n", "Deleting ../data/html/20042005/147.html\n", "Deleting ../data/html/20042005/1470.html\n", "Deleting ../data/html/20042005/1471.html\n", "Deleting ../data/html/20042005/1472.html\n", "Deleting ../data/html/20042005/1473.html\n", "Deleting ../data/html/20042005/1474.html\n", "Deleting ../data/html/20042005/1475.html\n", "Deleting ../data/html/20042005/1476.html\n", "Deleting ../data/html/20042005/1477.html\n", "Deleting ../data/html/20042005/1478.html\n", "Deleting ../data/html/20042005/1479.html\n", "Deleting ../data/html/20042005/148.html\n", "Deleting ../data/html/20042005/1480.html\n", "Deleting ../data/html/20042005/1481.html\n", "Deleting ../data/html/20042005/1482.html\n", "Deleting ../data/html/20042005/1483.html\n", "Deleting ../data/html/20042005/1484.html\n", "Deleting ../data/html/20042005/1485.html\n", "Deleting ../data/html/20042005/1486.html\n", "Deleting ../data/html/20042005/1487.html\n", "Deleting ../data/html/20042005/1488.html\n", "Deleting ../data/html/20042005/1489.html\n", "Deleting ../data/html/20042005/149.html\n", "Deleting ../data/html/20042005/1490.html\n", "Deleting ../data/html/20042005/1491.html\n", "Deleting ../data/html/20042005/1492.html\n", "Deleting ../data/html/20042005/1493.html\n", "Deleting ../data/html/20042005/1494.html\n", "Deleting ../data/html/20042005/1495.html\n", "Deleting ../data/html/20042005/1496.html\n", "Deleting ../data/html/20042005/1497.html\n", "Deleting ../data/html/20042005/1498.html\n", "Deleting ../data/html/20042005/1499.html\n", "Deleting ../data/html/20042005/15.html\n", "Deleting ../data/html/20042005/150.html\n", "Deleting ../data/html/20042005/1500.html\n", "Deleting ../data/html/20042005/1501.html\n", "Deleting ../data/html/20042005/1502.html\n", "Deleting ../data/html/20042005/1503.html\n", "Deleting ../data/html/20042005/1504.html\n", "Deleting ../data/html/20042005/1505.html\n", "Deleting ../data/html/20042005/1506.html\n", "Deleting ../data/html/20042005/1507.html\n", "Deleting ../data/html/20042005/1508.html\n", "Deleting ../data/html/20042005/1509.html\n", "Deleting ../data/html/20042005/151.html\n", "Deleting ../data/html/20042005/1510.html\n", "Deleting ../data/html/20042005/1511.html\n", "Deleting ../data/html/20042005/1512.html\n", "Deleting ../data/html/20042005/1513.html\n", "Deleting ../data/html/20042005/1514.html\n", "Deleting ../data/html/20042005/1515.html\n", "Deleting ../data/html/20042005/1516.html\n", "Deleting ../data/html/20042005/1517.html\n", "Deleting ../data/html/20042005/1518.html\n", "Deleting ../data/html/20042005/1519.html\n", "Deleting ../data/html/20042005/152.html\n", "Deleting ../data/html/20042005/1520.html\n", "Deleting ../data/html/20042005/1521.html\n", "Deleting ../data/html/20042005/1522.html\n", "Deleting ../data/html/20042005/1523.html\n", "Deleting ../data/html/20042005/1524.html\n", "Deleting ../data/html/20042005/1525.html\n", "Deleting ../data/html/20042005/1526.html\n", "Deleting ../data/html/20042005/1527.html\n", "Deleting ../data/html/20042005/1528.html\n", "Deleting ../data/html/20042005/1529.html\n", "Deleting ../data/html/20042005/153.html\n", "Deleting ../data/html/20042005/1530.html\n", "Deleting ../data/html/20042005/1531.html\n", "Deleting ../data/html/20042005/1532.html\n", "Deleting ../data/html/20042005/1533.html\n", "Deleting ../data/html/20042005/1534.html\n", "Deleting ../data/html/20042005/1535.html\n", "Deleting ../data/html/20042005/1536.html\n", "Deleting ../data/html/20042005/1537.html\n", "Deleting ../data/html/20042005/1538.html\n", "Deleting ../data/html/20042005/1539.html\n", "Deleting ../data/html/20042005/154.html\n", "Deleting ../data/html/20042005/1540.html\n", "Deleting ../data/html/20042005/1541.html\n", "Deleting ../data/html/20042005/1542.html\n", "Deleting ../data/html/20042005/1543.html\n", "Deleting ../data/html/20042005/1544.html\n", "Deleting ../data/html/20042005/1545.html\n", "Deleting ../data/html/20042005/1546.html\n", "Deleting ../data/html/20042005/1547.html\n", "Deleting ../data/html/20042005/1548.html\n", "Deleting ../data/html/20042005/1549.html\n", "Deleting ../data/html/20042005/155.html\n", "Deleting ../data/html/20042005/1550.html\n", "Deleting ../data/html/20042005/1551.html\n", "Deleting ../data/html/20042005/1552.html\n", "Deleting ../data/html/20042005/1553.html\n", "Deleting ../data/html/20042005/1554.html\n", "Deleting ../data/html/20042005/1555.html\n", "Deleting ../data/html/20042005/1556.html\n", "Deleting ../data/html/20042005/1557.html\n", "Deleting ../data/html/20042005/1558.html\n", "Deleting ../data/html/20042005/1559.html\n", "Deleting ../data/html/20042005/156.html\n", "Deleting ../data/html/20042005/1560.html\n", "Deleting ../data/html/20042005/1561.html\n", "Deleting ../data/html/20042005/1562.html\n", "Deleting ../data/html/20042005/1563.html\n", "Deleting ../data/html/20042005/1564.html\n", "Deleting ../data/html/20042005/1565.html\n", "Deleting ../data/html/20042005/1566.html\n", "Deleting ../data/html/20042005/1567.html\n", "Deleting ../data/html/20042005/1568.html\n", "Deleting ../data/html/20042005/1569.html\n", "Deleting ../data/html/20042005/157.html\n", "Deleting ../data/html/20042005/1570.html\n", "Deleting ../data/html/20042005/1571.html\n", "Deleting ../data/html/20042005/1572.html\n", "Deleting ../data/html/20042005/1573.html\n", "Deleting ../data/html/20042005/1574.html\n", "Deleting ../data/html/20042005/1575.html\n", "Deleting ../data/html/20042005/1576.html\n", "Deleting ../data/html/20042005/1577.html\n", "Deleting ../data/html/20042005/1578.html\n", "Deleting ../data/html/20042005/1579.html\n", "Deleting ../data/html/20042005/158.html\n", "Deleting ../data/html/20042005/1580.html\n", "Deleting ../data/html/20042005/1581.html\n", "Deleting ../data/html/20042005/1582.html\n", "Deleting ../data/html/20042005/1583.html\n", "Deleting ../data/html/20042005/1584.html\n", "Deleting ../data/html/20042005/1585.html\n", "Deleting ../data/html/20042005/1586.html\n", "Deleting ../data/html/20042005/1587.html\n", "Deleting ../data/html/20042005/1588.html\n", "Deleting ../data/html/20042005/1589.html\n", "Deleting ../data/html/20042005/159.html\n", "Deleting ../data/html/20042005/1590.html\n", "Deleting ../data/html/20042005/1591.html\n", "Deleting ../data/html/20042005/1592.html\n", "Deleting ../data/html/20042005/1593.html\n", "Deleting ../data/html/20042005/1594.html\n", "Deleting ../data/html/20042005/1595.html\n", "Deleting ../data/html/20042005/1596.html\n", "Deleting ../data/html/20042005/1597.html\n", "Deleting ../data/html/20042005/1598.html\n", "Deleting ../data/html/20042005/1599.html\n", "Deleting ../data/html/20042005/16.html\n", "Deleting ../data/html/20042005/160.html\n", "Deleting ../data/html/20042005/1600.html\n", "Deleting ../data/html/20042005/1601.html\n", "Deleting ../data/html/20042005/1602.html\n", "Deleting ../data/html/20042005/1603.html\n", "Deleting ../data/html/20042005/1604.html\n", "Deleting ../data/html/20042005/1605.html\n", "Deleting ../data/html/20042005/1606.html\n", "Deleting ../data/html/20042005/1607.html\n", "Deleting ../data/html/20042005/1608.html\n", "Deleting ../data/html/20042005/1609.html\n", "Deleting ../data/html/20042005/161.html\n", "Deleting ../data/html/20042005/1610.html\n", "Deleting ../data/html/20042005/1611.html\n", "Deleting ../data/html/20042005/1612.html\n", "Deleting ../data/html/20042005/1613.html\n", "Deleting ../data/html/20042005/1614.html\n", "Deleting ../data/html/20042005/1615.html\n", "Deleting ../data/html/20042005/1616.html\n", "Deleting ../data/html/20042005/1617.html\n", "Deleting ../data/html/20042005/1618.html\n", "Deleting ../data/html/20042005/1619.html\n", "Deleting ../data/html/20042005/162.html\n", "Deleting ../data/html/20042005/1620.html\n", "Deleting ../data/html/20042005/1621.html\n", "Deleting ../data/html/20042005/1622.html\n", "Deleting ../data/html/20042005/1623.html\n", "Deleting ../data/html/20042005/1624.html\n", "Deleting ../data/html/20042005/1625.html\n", "Deleting ../data/html/20042005/1626.html\n", "Deleting ../data/html/20042005/1627.html\n", "Deleting ../data/html/20042005/1628.html\n", "Deleting ../data/html/20042005/1629.html\n", "Deleting ../data/html/20042005/163.html\n", "Deleting ../data/html/20042005/1630.html\n", "Deleting ../data/html/20042005/1631.html\n", "Deleting ../data/html/20042005/1632.html\n", "Deleting ../data/html/20042005/1633.html\n", "Deleting ../data/html/20042005/1634.html\n", "Deleting ../data/html/20042005/1635.html\n", "Deleting ../data/html/20042005/1636.html\n", "Deleting ../data/html/20042005/1637.html\n", "Deleting ../data/html/20042005/1638.html\n", "Deleting ../data/html/20042005/1639.html\n", "Deleting ../data/html/20042005/164.html\n", "Deleting ../data/html/20042005/1640.html\n", "Deleting ../data/html/20042005/1641.html\n", "Deleting ../data/html/20042005/1642.html\n", "Deleting ../data/html/20042005/1643.html\n", "Deleting ../data/html/20042005/1644.html\n", "Deleting ../data/html/20042005/1645.html\n", "Deleting ../data/html/20042005/1646.html\n", "Deleting ../data/html/20042005/1647.html\n", "Deleting ../data/html/20042005/1648.html\n", "Deleting ../data/html/20042005/1649.html\n", "Deleting ../data/html/20042005/165.html\n", "Deleting ../data/html/20042005/1650.html\n", "Deleting ../data/html/20042005/1651.html\n", "Deleting ../data/html/20042005/1652.html\n", "Deleting ../data/html/20042005/1653.html\n", "Deleting ../data/html/20042005/1654.html\n", "Deleting ../data/html/20042005/1655.html\n", "Deleting ../data/html/20042005/1656.html\n", "Deleting ../data/html/20042005/1657.html\n", "Deleting ../data/html/20042005/1658.html\n", "Deleting ../data/html/20042005/1659.html\n", "Deleting ../data/html/20042005/166.html\n", "Deleting ../data/html/20042005/1660.html\n", "Deleting ../data/html/20042005/1661.html\n", "Deleting ../data/html/20042005/1662.html\n", "Deleting ../data/html/20042005/1663.html\n", "Deleting ../data/html/20042005/1664.html\n", "Deleting ../data/html/20042005/1665.html\n", "Deleting ../data/html/20042005/1666.html\n", "Deleting ../data/html/20042005/1667.html\n", "Deleting ../data/html/20042005/1668.html\n", "Deleting ../data/html/20042005/1669.html\n", "Deleting ../data/html/20042005/167.html\n", "Deleting ../data/html/20042005/1670.html\n", "Deleting ../data/html/20042005/1671.html\n", "Deleting ../data/html/20042005/1672.html\n", "Deleting ../data/html/20042005/1673.html\n", "Deleting ../data/html/20042005/1674.html\n", "Deleting ../data/html/20042005/1675.html\n", "Deleting ../data/html/20042005/1676.html\n", "Deleting ../data/html/20042005/1677.html\n", "Deleting ../data/html/20042005/1678.html\n", "Deleting ../data/html/20042005/1679.html\n", "Deleting ../data/html/20042005/168.html\n", "Deleting ../data/html/20042005/1680.html\n", "Deleting ../data/html/20042005/1681.html\n", "Deleting ../data/html/20042005/1682.html\n", "Deleting ../data/html/20042005/1683.html\n", "Deleting ../data/html/20042005/1684.html\n", "Deleting ../data/html/20042005/1685.html\n", "Deleting ../data/html/20042005/1686.html\n", "Deleting ../data/html/20042005/1687.html\n", "Deleting ../data/html/20042005/1688.html\n", "Deleting ../data/html/20042005/1689.html\n", "Deleting ../data/html/20042005/169.html\n", "Deleting ../data/html/20042005/1690.html\n", "Deleting ../data/html/20042005/1691.html\n", "Deleting ../data/html/20042005/1692.html\n", "Deleting ../data/html/20042005/1693.html\n", "Deleting ../data/html/20042005/1694.html\n", "Deleting ../data/html/20042005/1695.html\n", "Deleting ../data/html/20042005/1696.html\n", "Deleting ../data/html/20042005/1697.html\n", "Deleting ../data/html/20042005/1698.html\n", "Deleting ../data/html/20042005/1699.html\n", "Deleting ../data/html/20042005/17.html\n", "Deleting ../data/html/20042005/170.html\n", "Deleting ../data/html/20042005/1700.html\n", "Deleting ../data/html/20042005/1701.html\n", "Deleting ../data/html/20042005/1702.html\n", "Deleting ../data/html/20042005/1703.html\n", "Deleting ../data/html/20042005/1704.html\n", "Deleting ../data/html/20042005/1705.html\n", "Deleting ../data/html/20042005/1706.html\n", "Deleting ../data/html/20042005/1707.html\n", "Deleting ../data/html/20042005/1708.html\n", "Deleting ../data/html/20042005/1709.html\n", "Deleting ../data/html/20042005/171.html\n", "Deleting ../data/html/20042005/1710.html\n", "Deleting ../data/html/20042005/1711.html\n", "Deleting ../data/html/20042005/1712.html\n", "Deleting ../data/html/20042005/1713.html\n", "Deleting ../data/html/20042005/1714.html\n", "Deleting ../data/html/20042005/1715.html\n", "Deleting ../data/html/20042005/1716.html\n", "Deleting ../data/html/20042005/1717.html\n", "Deleting ../data/html/20042005/1718.html\n", "Deleting ../data/html/20042005/1719.html\n", "Deleting ../data/html/20042005/172.html\n", "Deleting ../data/html/20042005/1720.html\n", "Deleting ../data/html/20042005/1721.html\n", "Deleting ../data/html/20042005/1722.html\n", "Deleting ../data/html/20042005/1723.html\n", "Deleting ../data/html/20042005/1724.html\n", "Deleting ../data/html/20042005/1725.html\n", "Deleting ../data/html/20042005/1726.html\n", "Deleting ../data/html/20042005/1727.html\n", "Deleting ../data/html/20042005/1728.html\n", "Deleting ../data/html/20042005/1729.html\n", "Deleting ../data/html/20042005/173.html\n", "Deleting ../data/html/20042005/1730.html\n", "Deleting ../data/html/20042005/1731.html\n", "Deleting ../data/html/20042005/1732.html\n", "Deleting ../data/html/20042005/1733.html\n", "Deleting ../data/html/20042005/1734.html\n", "Deleting ../data/html/20042005/1735.html\n", "Deleting ../data/html/20042005/1736.html\n", "Deleting ../data/html/20042005/1737.html\n", "Deleting ../data/html/20042005/1738.html\n", "Deleting ../data/html/20042005/1739.html\n", "Deleting ../data/html/20042005/174.html\n", "Deleting ../data/html/20042005/1740.html\n", "Deleting ../data/html/20042005/1741.html\n", "Deleting ../data/html/20042005/1742.html\n", "Deleting ../data/html/20042005/1743.html\n", "Deleting ../data/html/20042005/1744.html\n", "Deleting ../data/html/20042005/1745.html\n", "Deleting ../data/html/20042005/1746.html\n", "Deleting ../data/html/20042005/1747.html\n", "Deleting ../data/html/20042005/1748.html\n", "Deleting ../data/html/20042005/1749.html\n", "Deleting ../data/html/20042005/175.html\n", "Deleting ../data/html/20042005/1750.html\n", "Deleting ../data/html/20042005/1751.html\n", "Deleting ../data/html/20042005/1752.html\n", "Deleting ../data/html/20042005/1753.html\n", "Deleting ../data/html/20042005/1754.html\n", "Deleting ../data/html/20042005/1755.html\n", "Deleting ../data/html/20042005/1756.html\n", "Deleting ../data/html/20042005/1757.html\n", "Deleting ../data/html/20042005/1758.html\n", "Deleting ../data/html/20042005/1759.html\n", "Deleting ../data/html/20042005/176.html\n", "Deleting ../data/html/20042005/1760.html\n", "Deleting ../data/html/20042005/1761.html\n", "Deleting ../data/html/20042005/1762.html\n", "Deleting ../data/html/20042005/1763.html\n", "Deleting ../data/html/20042005/1764.html\n", "Deleting ../data/html/20042005/1765.html\n", "Deleting ../data/html/20042005/1766.html\n", "Deleting ../data/html/20042005/1767.html\n", "Deleting ../data/html/20042005/1768.html\n", "Deleting ../data/html/20042005/1769.html\n", "Deleting ../data/html/20042005/177.html\n", "Deleting ../data/html/20042005/1770.html\n", "Deleting ../data/html/20042005/1771.html\n", "Deleting ../data/html/20042005/1772.html\n", "Deleting ../data/html/20042005/1773.html\n", "Deleting ../data/html/20042005/1774.html\n", "Deleting ../data/html/20042005/1775.html\n", "Deleting ../data/html/20042005/1776.html\n", "Deleting ../data/html/20042005/1777.html\n", "Deleting ../data/html/20042005/1778.html\n", "Deleting ../data/html/20042005/1779.html\n", "Deleting ../data/html/20042005/178.html\n", "Deleting ../data/html/20042005/1780.html\n", "Deleting ../data/html/20042005/1781.html\n", "Deleting ../data/html/20042005/1782.html\n", "Deleting ../data/html/20042005/1783.html\n", "Deleting ../data/html/20042005/1784.html\n", "Deleting ../data/html/20042005/1785.html\n", "Deleting ../data/html/20042005/1786.html\n", "Deleting ../data/html/20042005/1787.html\n", "Deleting ../data/html/20042005/1788.html\n", "Deleting ../data/html/20042005/1789.html\n", "Deleting ../data/html/20042005/179.html\n", "Deleting ../data/html/20042005/1790.html\n", "Deleting ../data/html/20042005/1791.html\n", "Deleting ../data/html/20042005/1792.html\n", "Deleting ../data/html/20042005/1793.html\n", "Deleting ../data/html/20042005/1794.html\n", "Deleting ../data/html/20042005/1795.html\n", "Deleting ../data/html/20042005/1796.html\n", "Deleting ../data/html/20042005/1797.html\n", "Deleting ../data/html/20042005/1798.html\n", "Deleting ../data/html/20042005/1799.html\n", "Deleting ../data/html/20042005/18.html\n", "Deleting ../data/html/20042005/180.html\n", "Deleting ../data/html/20042005/1800.html\n", "Deleting ../data/html/20042005/1801.html\n", "Deleting ../data/html/20042005/1802.html\n", "Deleting ../data/html/20042005/1803.html\n", "Deleting ../data/html/20042005/1804.html\n", "Deleting ../data/html/20042005/1805.html\n", "Deleting ../data/html/20042005/1806.html\n", "Deleting ../data/html/20042005/1807.html\n", "Deleting ../data/html/20042005/1808.html\n", "Deleting ../data/html/20042005/1809.html\n", "Deleting ../data/html/20042005/181.html\n", "Deleting ../data/html/20042005/1810.html\n", "Deleting ../data/html/20042005/1811.html\n", "Deleting ../data/html/20042005/1812.html\n", "Deleting ../data/html/20042005/1813.html\n", "Deleting ../data/html/20042005/1814.html\n", "Deleting ../data/html/20042005/1815.html\n", "Deleting ../data/html/20042005/1816.html\n", "Deleting ../data/html/20042005/1817.html\n", "Deleting ../data/html/20042005/1818.html\n", "Deleting ../data/html/20042005/1819.html\n", "Deleting ../data/html/20042005/182.html\n", "Deleting ../data/html/20042005/1820.html\n", "Deleting ../data/html/20042005/1821.html\n", "Deleting ../data/html/20042005/1822.html\n", "Deleting ../data/html/20042005/1823.html\n", "Deleting ../data/html/20042005/1824.html\n", "Deleting ../data/html/20042005/1825.html\n", "Deleting ../data/html/20042005/1826.html\n", "Deleting ../data/html/20042005/1827.html\n", "Deleting ../data/html/20042005/1828.html\n", "Deleting ../data/html/20042005/1829.html\n", "Deleting ../data/html/20042005/183.html\n", "Deleting ../data/html/20042005/1830.html\n", "Deleting ../data/html/20042005/1831.html\n", "Deleting ../data/html/20042005/1832.html\n", "Deleting ../data/html/20042005/1833.html\n", "Deleting ../data/html/20042005/1834.html\n", "Deleting ../data/html/20042005/1835.html\n", "Deleting ../data/html/20042005/1836.html\n", "Deleting ../data/html/20042005/1837.html\n", "Deleting ../data/html/20042005/1838.html\n", "Deleting ../data/html/20042005/1839.html\n", "Deleting ../data/html/20042005/184.html\n", "Deleting ../data/html/20042005/1840.html\n", "Deleting ../data/html/20042005/1841.html\n", "Deleting ../data/html/20042005/1842.html\n", "Deleting ../data/html/20042005/1843.html\n", "Deleting ../data/html/20042005/1844.html\n", "Deleting ../data/html/20042005/1845.html\n", "Deleting ../data/html/20042005/1846.html\n", "Deleting ../data/html/20042005/1847.html\n", "Deleting ../data/html/20042005/1848.html\n", "Deleting ../data/html/20042005/1849.html\n", "Deleting ../data/html/20042005/185.html\n", "Deleting ../data/html/20042005/1850.html\n", "Deleting ../data/html/20042005/1851.html\n", "Deleting ../data/html/20042005/1852.html\n", "Deleting ../data/html/20042005/1853.html\n", "Deleting ../data/html/20042005/1854.html\n", "Deleting ../data/html/20042005/1855.html\n", "Deleting ../data/html/20042005/1856.html\n", "Deleting ../data/html/20042005/1857.html\n", "Deleting ../data/html/20042005/1858.html\n", "Deleting ../data/html/20042005/1859.html\n", "Deleting ../data/html/20042005/186.html\n", "Deleting ../data/html/20042005/1860.html\n", "Deleting ../data/html/20042005/1861.html\n", "Deleting ../data/html/20042005/1862.html\n", "Deleting ../data/html/20042005/1863.html\n", "Deleting ../data/html/20042005/1864.html\n", "Deleting ../data/html/20042005/1865.html\n", "Deleting ../data/html/20042005/1866.html\n", "Deleting ../data/html/20042005/1867.html\n", "Deleting ../data/html/20042005/1868.html\n", "Deleting ../data/html/20042005/1869.html\n", "Deleting ../data/html/20042005/187.html\n", "Deleting ../data/html/20042005/1870.html\n", "Deleting ../data/html/20042005/1871.html\n", "Deleting ../data/html/20042005/1872.html\n", "Deleting ../data/html/20042005/1873.html\n", "Deleting ../data/html/20042005/1874.html\n", "Deleting ../data/html/20042005/1875.html\n", "Deleting ../data/html/20042005/1876.html\n", "Deleting ../data/html/20042005/1877.html\n", "Deleting ../data/html/20042005/1878.html\n", "Deleting ../data/html/20042005/1879.html\n", "Deleting ../data/html/20042005/188.html\n", "Deleting ../data/html/20042005/1880.html\n", "Deleting ../data/html/20042005/1881.html\n", "Deleting ../data/html/20042005/1882.html\n", "Deleting ../data/html/20042005/1883.html\n", "Deleting ../data/html/20042005/1884.html\n", "Deleting ../data/html/20042005/1885.html\n", "Deleting ../data/html/20042005/1886.html\n", "Deleting ../data/html/20042005/1887.html\n", "Deleting ../data/html/20042005/1888.html\n", "Deleting ../data/html/20042005/1889.html\n", "Deleting ../data/html/20042005/189.html\n", "Deleting ../data/html/20042005/1890.html\n", "Deleting ../data/html/20042005/1891.html\n", "Deleting ../data/html/20042005/1892.html\n", "Deleting ../data/html/20042005/1893.html\n", "Deleting ../data/html/20042005/1894.html\n", "Deleting ../data/html/20042005/1895.html\n", "Deleting ../data/html/20042005/1896.html\n", "Deleting ../data/html/20042005/1897.html\n", "Deleting ../data/html/20042005/1898.html\n", "Deleting ../data/html/20042005/1899.html\n", "Deleting ../data/html/20042005/19.html\n", "Deleting ../data/html/20042005/190.html\n", "Deleting ../data/html/20042005/1900.html\n", "Deleting ../data/html/20042005/1901.html\n", "Deleting ../data/html/20042005/1902.html\n", "Deleting ../data/html/20042005/1903.html\n", "Deleting ../data/html/20042005/1904.html\n", "Deleting ../data/html/20042005/1905.html\n", "Deleting ../data/html/20042005/1906.html\n", "Deleting ../data/html/20042005/1907.html\n", "Deleting ../data/html/20042005/1908.html\n", "Deleting ../data/html/20042005/1909.html\n", "Deleting ../data/html/20042005/191.html\n", "Deleting ../data/html/20042005/1910.html\n", "Deleting ../data/html/20042005/1911.html\n", "Deleting ../data/html/20042005/1912.html\n", "Deleting ../data/html/20042005/1913.html\n", "Deleting ../data/html/20042005/1914.html\n", "Deleting ../data/html/20042005/1915.html\n", "Deleting ../data/html/20042005/1916.html\n", "Deleting ../data/html/20042005/1917.html\n", "Deleting ../data/html/20042005/1918.html\n", "Deleting ../data/html/20042005/1919.html\n", "Deleting ../data/html/20042005/192.html\n", "Deleting ../data/html/20042005/1920.html\n", "Deleting ../data/html/20042005/1921.html\n", "Deleting ../data/html/20042005/1922.html\n", "Deleting ../data/html/20042005/1923.html\n", "Deleting ../data/html/20042005/1924.html\n", "Deleting ../data/html/20042005/1925.html\n", "Deleting ../data/html/20042005/1926.html\n", "Deleting ../data/html/20042005/1927.html\n", "Deleting ../data/html/20042005/1928.html\n", "Deleting ../data/html/20042005/1929.html\n", "Deleting ../data/html/20042005/193.html\n", "Deleting ../data/html/20042005/1930.html\n", "Deleting ../data/html/20042005/1931.html\n", "Deleting ../data/html/20042005/1932.html\n", "Deleting ../data/html/20042005/1933.html\n", "Deleting ../data/html/20042005/1934.html\n", "Deleting ../data/html/20042005/1935.html\n", "Deleting ../data/html/20042005/1936.html\n", "Deleting ../data/html/20042005/1937.html\n", "Deleting ../data/html/20042005/1938.html\n", "Deleting ../data/html/20042005/1939.html\n", "Deleting ../data/html/20042005/194.html\n", "Deleting ../data/html/20042005/1940.html\n", "Deleting ../data/html/20042005/1941.html\n", "Deleting ../data/html/20042005/1942.html\n", "Deleting ../data/html/20042005/1943.html\n", "Deleting ../data/html/20042005/1944.html\n", "Deleting ../data/html/20042005/1945.html\n", "Deleting ../data/html/20042005/1946.html\n", "Deleting ../data/html/20042005/1947.html\n", "Deleting ../data/html/20042005/1948.html\n", "Deleting ../data/html/20042005/1949.html\n", "Deleting ../data/html/20042005/195.html\n", "Deleting ../data/html/20042005/1950.html\n", "Deleting ../data/html/20042005/1951.html\n", "Deleting ../data/html/20042005/1952.html\n", "Deleting ../data/html/20042005/1953.html\n", "Deleting ../data/html/20042005/1954.html\n", "Deleting ../data/html/20042005/1955.html\n", "Deleting ../data/html/20042005/1956.html\n", "Deleting ../data/html/20042005/1957.html\n", "Deleting ../data/html/20042005/1958.html\n", "Deleting ../data/html/20042005/1959.html\n", "Deleting ../data/html/20042005/196.html\n", "Deleting ../data/html/20042005/1960.html\n", "Deleting ../data/html/20042005/1961.html\n", "Deleting ../data/html/20042005/1962.html\n", "Deleting ../data/html/20042005/1963.html\n", "Deleting ../data/html/20042005/1964.html\n", "Deleting ../data/html/20042005/1965.html\n", "Deleting ../data/html/20042005/1966.html\n", "Deleting ../data/html/20042005/1967.html\n", "Deleting ../data/html/20042005/1968.html\n", "Deleting ../data/html/20042005/1969.html\n", "Deleting ../data/html/20042005/197.html\n", "Deleting ../data/html/20042005/1970.html\n", "Deleting ../data/html/20042005/1971.html\n", "Deleting ../data/html/20042005/1972.html\n", "Deleting ../data/html/20042005/1973.html\n", "Deleting ../data/html/20042005/1974.html\n", "Deleting ../data/html/20042005/1975.html\n", "Deleting ../data/html/20042005/1976.html\n", "Deleting ../data/html/20042005/1977.html\n", "Deleting ../data/html/20042005/1978.html\n", "Deleting ../data/html/20042005/1979.html\n", "Deleting ../data/html/20042005/198.html\n", "Deleting ../data/html/20042005/1980.html\n", "Deleting ../data/html/20042005/1981.html\n", "Deleting ../data/html/20042005/1982.html\n", "Deleting ../data/html/20042005/1983.html\n", "Deleting ../data/html/20042005/1984.html\n", "Deleting ../data/html/20042005/1985.html\n", "Deleting ../data/html/20042005/1986.html\n", "Deleting ../data/html/20042005/1987.html\n", "Deleting ../data/html/20042005/1988.html\n", "Deleting ../data/html/20042005/1989.html\n", "Deleting ../data/html/20042005/199.html\n", "Deleting ../data/html/20042005/1990.html\n", "Deleting ../data/html/20042005/1991.html\n", "Deleting ../data/html/20042005/1992.html\n", "Deleting ../data/html/20042005/1993.html\n", "Deleting ../data/html/20042005/1994.html\n", "Deleting ../data/html/20042005/1995.html\n", "Deleting ../data/html/20042005/1996.html\n", "Deleting ../data/html/20042005/1997.html\n", "Deleting ../data/html/20042005/1998.html\n", "Deleting ../data/html/20042005/1999.html\n", "Deleting ../data/html/20042005/2.html\n", "Deleting ../data/html/20042005/20.html\n", "Deleting ../data/html/20042005/200.html\n", "Deleting ../data/html/20042005/2000.html\n", "Deleting ../data/html/20042005/2001.html\n", "Deleting ../data/html/20042005/2002.html\n", "Deleting ../data/html/20042005/2003.html\n", "Deleting ../data/html/20042005/2004.html\n", "Deleting ../data/html/20042005/2005.html\n", "Deleting ../data/html/20042005/2006.html\n", "Deleting ../data/html/20042005/2007.html\n", "Deleting ../data/html/20042005/2008.html\n", "Deleting ../data/html/20042005/2009.html\n", "Deleting ../data/html/20042005/201.html\n", "Deleting ../data/html/20042005/2010.html\n", "Deleting ../data/html/20042005/2011.html\n", "Deleting ../data/html/20042005/2012.html\n", "Deleting ../data/html/20042005/2013.html\n", "Deleting ../data/html/20042005/2014.html\n", "Deleting ../data/html/20042005/2015.html\n", "Deleting ../data/html/20042005/2016.html\n", "Deleting ../data/html/20042005/2017.html\n", "Deleting ../data/html/20042005/2018.html\n", "Deleting ../data/html/20042005/2019.html\n", "Deleting ../data/html/20042005/202.html\n", "Deleting ../data/html/20042005/2020.html\n", "Deleting ../data/html/20042005/2021.html\n", "Deleting ../data/html/20042005/2022.html\n", "Deleting ../data/html/20042005/2023.html\n", "Deleting ../data/html/20042005/2024.html\n", "Deleting ../data/html/20042005/2025.html\n", "Deleting ../data/html/20042005/2026.html\n", "Deleting ../data/html/20042005/2027.html\n", "Deleting ../data/html/20042005/2028.html\n", "Deleting ../data/html/20042005/2029.html\n", "Deleting ../data/html/20042005/203.html\n", "Deleting ../data/html/20042005/2030.html\n", "Deleting ../data/html/20042005/2031.html\n", "Deleting ../data/html/20042005/2032.html\n", "Deleting ../data/html/20042005/2033.html\n", "Deleting ../data/html/20042005/2034.html\n", "Deleting ../data/html/20042005/2035.html\n", "Deleting ../data/html/20042005/2036.html\n", "Deleting ../data/html/20042005/2037.html\n", "Deleting ../data/html/20042005/2038.html\n", "Deleting ../data/html/20042005/2039.html\n", "Deleting ../data/html/20042005/204.html\n", "Deleting ../data/html/20042005/2040.html\n", "Deleting ../data/html/20042005/2041.html\n", "Deleting ../data/html/20042005/2042.html\n", "Deleting ../data/html/20042005/2043.html\n", "Deleting ../data/html/20042005/2044.html\n", "Deleting ../data/html/20042005/2045.html\n", "Deleting ../data/html/20042005/2046.html\n", "Deleting ../data/html/20042005/2047.html\n", "Deleting ../data/html/20042005/2048.html\n", "Deleting ../data/html/20042005/2049.html\n", "Deleting ../data/html/20042005/205.html\n", "Deleting ../data/html/20042005/2050.html\n", "Deleting ../data/html/20042005/2051.html\n", "Deleting ../data/html/20042005/2052.html\n", "Deleting ../data/html/20042005/2053.html\n", "Deleting ../data/html/20042005/2054.html\n", "Deleting ../data/html/20042005/2055.html\n", "Deleting ../data/html/20042005/2056.html\n", "Deleting ../data/html/20042005/2057.html\n", "Deleting ../data/html/20042005/2058.html\n", "Deleting ../data/html/20042005/2059.html\n", "Deleting ../data/html/20042005/206.html\n", "Deleting ../data/html/20042005/2060.html\n", "Deleting ../data/html/20042005/2061.html\n", "Deleting ../data/html/20042005/2062.html\n", "Deleting ../data/html/20042005/2063.html\n", "Deleting ../data/html/20042005/2064.html\n", "Deleting ../data/html/20042005/2065.html\n", "Deleting ../data/html/20042005/2066.html\n", "Deleting ../data/html/20042005/2067.html\n", "Deleting ../data/html/20042005/2068.html\n", "Deleting ../data/html/20042005/2069.html\n", "Deleting ../data/html/20042005/207.html\n", "Deleting ../data/html/20042005/2070.html\n", "Deleting ../data/html/20042005/2071.html\n", "Deleting ../data/html/20042005/2072.html\n", "Deleting ../data/html/20042005/2073.html\n", "Deleting ../data/html/20042005/2074.html\n", "Deleting ../data/html/20042005/2075.html\n", "Deleting ../data/html/20042005/2076.html\n", "Deleting ../data/html/20042005/2077.html\n", "Deleting ../data/html/20042005/2078.html\n", "Deleting ../data/html/20042005/2079.html\n", "Deleting ../data/html/20042005/208.html\n", "Deleting ../data/html/20042005/2080.html\n", "Deleting ../data/html/20042005/2081.html\n", "Deleting ../data/html/20042005/2082.html\n", "Deleting ../data/html/20042005/2083.html\n", "Deleting ../data/html/20042005/2084.html\n", "Deleting ../data/html/20042005/2085.html\n", "Deleting ../data/html/20042005/2086.html\n", "Deleting ../data/html/20042005/2087.html\n", "Deleting ../data/html/20042005/2088.html\n", "Deleting ../data/html/20042005/2089.html\n", "Deleting ../data/html/20042005/209.html\n", "Deleting ../data/html/20042005/2090.html\n", "Deleting ../data/html/20042005/2091.html\n", "Deleting ../data/html/20042005/2092.html\n", "Deleting ../data/html/20042005/2093.html\n", "Deleting ../data/html/20042005/2094.html\n", "Deleting ../data/html/20042005/2095.html\n", "Deleting ../data/html/20042005/2096.html\n", "Deleting ../data/html/20042005/2097.html\n", "Deleting ../data/html/20042005/2098.html\n", "Deleting ../data/html/20042005/2099.html\n", "Deleting ../data/html/20042005/21.html\n", "Deleting ../data/html/20042005/210.html\n", "Deleting ../data/html/20042005/2100.html\n", "Deleting ../data/html/20042005/2101.html\n", "Deleting ../data/html/20042005/2102.html\n", "Deleting ../data/html/20042005/2103.html\n", "Deleting ../data/html/20042005/2104.html\n", "Deleting ../data/html/20042005/2105.html\n", "Deleting ../data/html/20042005/2106.html\n", "Deleting ../data/html/20042005/2107.html\n", "Deleting ../data/html/20042005/2108.html\n", "Deleting ../data/html/20042005/2109.html\n", "Deleting ../data/html/20042005/211.html\n", "Deleting ../data/html/20042005/2110.html\n", "Deleting ../data/html/20042005/2111.html\n", "Deleting ../data/html/20042005/2112.html\n", "Deleting ../data/html/20042005/2113.html\n", "Deleting ../data/html/20042005/2114.html\n", "Deleting ../data/html/20042005/2115.html\n", "Deleting ../data/html/20042005/2116.html\n", "Deleting ../data/html/20042005/2117.html\n", "Deleting ../data/html/20042005/2118.html\n", "Deleting ../data/html/20042005/2119.html\n", "Deleting ../data/html/20042005/212.html\n", "Deleting ../data/html/20042005/2120.html\n", "Deleting ../data/html/20042005/2121.html\n", "Deleting ../data/html/20042005/2122.html\n", "Deleting ../data/html/20042005/2123.html\n", "Deleting ../data/html/20042005/2124.html\n", "Deleting ../data/html/20042005/2125.html\n", "Deleting ../data/html/20042005/2126.html\n", "Deleting ../data/html/20042005/2127.html\n", "Deleting ../data/html/20042005/2128.html\n", "Deleting ../data/html/20042005/2129.html\n", "Deleting ../data/html/20042005/213.html\n", "Deleting ../data/html/20042005/2130.html\n", "Deleting ../data/html/20042005/2131.html\n", "Deleting ../data/html/20042005/2132.html\n", "Deleting ../data/html/20042005/2133.html\n", "Deleting ../data/html/20042005/2134.html\n", "Deleting ../data/html/20042005/2135.html\n", "Deleting ../data/html/20042005/2136.html\n", "Deleting ../data/html/20042005/2137.html\n", "Deleting ../data/html/20042005/2138.html\n", "Deleting ../data/html/20042005/2139.html\n", "Deleting ../data/html/20042005/214.html\n", "Deleting ../data/html/20042005/2140.html\n", "Deleting ../data/html/20042005/2141.html\n", "Deleting ../data/html/20042005/2142.html\n", "Deleting ../data/html/20042005/2143.html\n", "Deleting ../data/html/20042005/2144.html\n", "Deleting ../data/html/20042005/2145.html\n", "Deleting ../data/html/20042005/2146.html\n", "Deleting ../data/html/20042005/2147.html\n", "Deleting ../data/html/20042005/2148.html\n", "Deleting ../data/html/20042005/2149.html\n", "Deleting ../data/html/20042005/215.html\n", "Deleting ../data/html/20042005/2150.html\n", "Deleting ../data/html/20042005/2151.html\n", "Deleting ../data/html/20042005/2152.html\n", "Deleting ../data/html/20042005/2153.html\n", "Deleting ../data/html/20042005/2154.html\n", "Deleting ../data/html/20042005/2155.html\n", "Deleting ../data/html/20042005/2156.html\n", "Deleting ../data/html/20042005/2157.html\n", "Deleting ../data/html/20042005/2158.html\n", "Deleting ../data/html/20042005/2159.html\n", "Deleting ../data/html/20042005/216.html\n", "Deleting ../data/html/20042005/2160.html\n", "Deleting ../data/html/20042005/2161.html\n", "Deleting ../data/html/20042005/2162.html\n", "Deleting ../data/html/20042005/2163.html\n", "Deleting ../data/html/20042005/2164.html\n", "Deleting ../data/html/20042005/2165.html\n", "Deleting ../data/html/20042005/2166.html\n", "Deleting ../data/html/20042005/2167.html\n", "Deleting ../data/html/20042005/2168.html\n", "Deleting ../data/html/20042005/2169.html\n", "Deleting ../data/html/20042005/217.html\n", "Deleting ../data/html/20042005/2170.html\n", "Deleting ../data/html/20042005/2171.html\n", "Deleting ../data/html/20042005/2172.html\n", "Deleting ../data/html/20042005/2173.html\n", "Deleting ../data/html/20042005/2174.html\n", "Deleting ../data/html/20042005/2175.html\n", "Deleting ../data/html/20042005/2176.html\n", "Deleting ../data/html/20042005/2177.html\n", "Deleting ../data/html/20042005/2178.html\n", "Deleting ../data/html/20042005/2179.html\n", "Deleting ../data/html/20042005/218.html\n", "Deleting ../data/html/20042005/2180.html\n", "Deleting ../data/html/20042005/2181.html\n", "Deleting ../data/html/20042005/2182.html\n", "Deleting ../data/html/20042005/2183.html\n", "Deleting ../data/html/20042005/2184.html\n", "Deleting ../data/html/20042005/2185.html\n", "Deleting ../data/html/20042005/2186.html\n", "Deleting ../data/html/20042005/2187.html\n", "Deleting ../data/html/20042005/2188.html\n", "Deleting ../data/html/20042005/2189.html\n", "Deleting ../data/html/20042005/219.html\n", "Deleting ../data/html/20042005/2190.html\n", "Deleting ../data/html/20042005/2191.html\n", "Deleting ../data/html/20042005/2192.html\n", "Deleting ../data/html/20042005/2193.html\n", "Deleting ../data/html/20042005/2194.html\n", "Deleting ../data/html/20042005/2195.html\n", "Deleting ../data/html/20042005/2196.html\n", "Deleting ../data/html/20042005/2197.html\n", "Deleting ../data/html/20042005/2198.html\n", "Deleting ../data/html/20042005/2199.html\n", "Deleting ../data/html/20042005/22.html\n", "Deleting ../data/html/20042005/220.html\n", "Deleting ../data/html/20042005/2200.html\n", "Deleting ../data/html/20042005/2201.html\n", "Deleting ../data/html/20042005/2202.html\n", "Deleting ../data/html/20042005/2203.html\n", "Deleting ../data/html/20042005/2204.html\n", "Deleting ../data/html/20042005/2205.html\n", "Deleting ../data/html/20042005/2206.html\n", "Deleting ../data/html/20042005/2207.html\n", "Deleting ../data/html/20042005/2208.html\n", "Deleting ../data/html/20042005/2209.html\n", "Deleting ../data/html/20042005/221.html\n", "Deleting ../data/html/20042005/2210.html\n", "Deleting ../data/html/20042005/2211.html\n", "Deleting ../data/html/20042005/2212.html\n", "Deleting ../data/html/20042005/2213.html\n", "Deleting ../data/html/20042005/2214.html\n", "Deleting ../data/html/20042005/2215.html\n", "Deleting ../data/html/20042005/2216.html\n", "Deleting ../data/html/20042005/2217.html\n", "Deleting ../data/html/20042005/2218.html\n", "Deleting ../data/html/20042005/2219.html\n", "Deleting ../data/html/20042005/222.html\n", "Deleting ../data/html/20042005/2220.html\n", "Deleting ../data/html/20042005/2221.html\n", "Deleting ../data/html/20042005/2222.html\n", "Deleting ../data/html/20042005/2223.html\n", "Deleting ../data/html/20042005/2224.html\n", "Deleting ../data/html/20042005/2225.html\n", "Deleting ../data/html/20042005/2226.html\n", "Deleting ../data/html/20042005/2227.html\n", "Deleting ../data/html/20042005/2228.html\n", "Deleting ../data/html/20042005/2229.html\n", "Deleting ../data/html/20042005/223.html\n", "Deleting ../data/html/20042005/2230.html\n", "Deleting ../data/html/20042005/2231.html\n", "Deleting ../data/html/20042005/2232.html\n", "Deleting ../data/html/20042005/2233.html\n", "Deleting ../data/html/20042005/2234.html\n", "Deleting ../data/html/20042005/2235.html\n", "Deleting ../data/html/20042005/2236.html\n", "Deleting ../data/html/20042005/2237.html\n", "Deleting ../data/html/20042005/2238.html\n", "Deleting ../data/html/20042005/2239.html\n", "Deleting ../data/html/20042005/224.html\n", "Deleting ../data/html/20042005/2240.html\n", "Deleting ../data/html/20042005/2241.html\n", "Deleting ../data/html/20042005/2242.html\n", "Deleting ../data/html/20042005/2243.html\n", "Deleting ../data/html/20042005/2244.html\n", "Deleting ../data/html/20042005/2245.html\n", "Deleting ../data/html/20042005/2246.html\n", "Deleting ../data/html/20042005/2247.html\n", "Deleting ../data/html/20042005/2248.html\n", "Deleting ../data/html/20042005/2249.html\n", "Deleting ../data/html/20042005/225.html\n", "Deleting ../data/html/20042005/2250.html\n", "Deleting ../data/html/20042005/2251.html\n", "Deleting ../data/html/20042005/2252.html\n", "Deleting ../data/html/20042005/2253.html\n", "Deleting ../data/html/20042005/2254.html\n", "Deleting ../data/html/20042005/2255.html\n", "Deleting ../data/html/20042005/2256.html\n", "Deleting ../data/html/20042005/2257.html\n", "Deleting ../data/html/20042005/2258.html\n", "Deleting ../data/html/20042005/2259.html\n", "Deleting ../data/html/20042005/226.html\n", "Deleting ../data/html/20042005/2260.html\n", "Deleting ../data/html/20042005/2261.html\n", "Deleting ../data/html/20042005/2262.html\n", "Deleting ../data/html/20042005/2263.html\n", "Deleting ../data/html/20042005/2264.html\n", "Deleting ../data/html/20042005/2265.html\n", "Deleting ../data/html/20042005/2266.html\n", "Deleting ../data/html/20042005/2267.html\n", "Deleting ../data/html/20042005/2268.html\n", "Deleting ../data/html/20042005/2269.html\n", "Deleting ../data/html/20042005/227.html\n", "Deleting ../data/html/20042005/2270.html\n", "Deleting ../data/html/20042005/2271.html\n", "Deleting ../data/html/20042005/2272.html\n", "Deleting ../data/html/20042005/2273.html\n", "Deleting ../data/html/20042005/2274.html\n", "Deleting ../data/html/20042005/2275.html\n", "Deleting ../data/html/20042005/2276.html\n", "Deleting ../data/html/20042005/2277.html\n", "Deleting ../data/html/20042005/2278.html\n", "Deleting ../data/html/20042005/2279.html\n", "Deleting ../data/html/20042005/228.html\n", "Deleting ../data/html/20042005/2280.html\n", "Deleting ../data/html/20042005/2281.html\n", "Deleting ../data/html/20042005/2282.html\n", "Deleting ../data/html/20042005/2283.html\n", "Deleting ../data/html/20042005/2284.html\n", "Deleting ../data/html/20042005/2285.html\n", "Deleting ../data/html/20042005/2286.html\n", "Deleting ../data/html/20042005/2287.html\n", "Deleting ../data/html/20042005/2288.html\n", "Deleting ../data/html/20042005/2289.html\n", "Deleting ../data/html/20042005/229.html\n", "Deleting ../data/html/20042005/2290.html\n", "Deleting ../data/html/20042005/2291.html\n", "Deleting ../data/html/20042005/2292.html\n", "Deleting ../data/html/20042005/2293.html\n", "Deleting ../data/html/20042005/2294.html\n", "Deleting ../data/html/20042005/2295.html\n", "Deleting ../data/html/20042005/2296.html\n", "Deleting ../data/html/20042005/2297.html\n", "Deleting ../data/html/20042005/2298.html\n", "Deleting ../data/html/20042005/2299.html\n", "Deleting ../data/html/20042005/23.html\n", "Deleting ../data/html/20042005/230.html\n", "Deleting ../data/html/20042005/2300.html\n", "Deleting ../data/html/20042005/2301.html\n", "Deleting ../data/html/20042005/2302.html\n", "Deleting ../data/html/20042005/2303.html\n", "Deleting ../data/html/20042005/2304.html\n", "Deleting ../data/html/20042005/2305.html\n", "Deleting ../data/html/20042005/2306.html\n", "Deleting ../data/html/20042005/2307.html\n", "Deleting ../data/html/20042005/2308.html\n", "Deleting ../data/html/20042005/2309.html\n", "Deleting ../data/html/20042005/231.html\n", "Deleting ../data/html/20042005/2310.html\n", "Deleting ../data/html/20042005/2311.html\n", "Deleting ../data/html/20042005/2312.html\n", "Deleting ../data/html/20042005/2313.html\n", "Deleting ../data/html/20042005/2314.html\n", "Deleting ../data/html/20042005/2315.html\n", "Deleting ../data/html/20042005/2316.html\n", "Deleting ../data/html/20042005/2317.html\n", "Deleting ../data/html/20042005/2318.html\n", "Deleting ../data/html/20042005/2319.html\n", "Deleting ../data/html/20042005/232.html\n", "Deleting ../data/html/20042005/2320.html\n", "Deleting ../data/html/20042005/2321.html\n", "Deleting ../data/html/20042005/2322.html\n", "Deleting ../data/html/20042005/2323.html\n", "Deleting ../data/html/20042005/2324.html\n", "Deleting ../data/html/20042005/2325.html\n", "Deleting ../data/html/20042005/2326.html\n", "Deleting ../data/html/20042005/2327.html\n", "Deleting ../data/html/20042005/2328.html\n", "Deleting ../data/html/20042005/2329.html\n", "Deleting ../data/html/20042005/233.html\n", "Deleting ../data/html/20042005/2330.html\n", "Deleting ../data/html/20042005/2331.html\n", "Deleting ../data/html/20042005/2332.html\n", "Deleting ../data/html/20042005/2333.html\n", "Deleting ../data/html/20042005/2334.html\n", "Deleting ../data/html/20042005/2335.html\n", "Deleting ../data/html/20042005/2336.html\n", "Deleting ../data/html/20042005/2337.html\n", "Deleting ../data/html/20042005/2338.html\n", "Deleting ../data/html/20042005/2339.html\n", "Deleting ../data/html/20042005/234.html\n", "Deleting ../data/html/20042005/2340.html\n", "Deleting ../data/html/20042005/2341.html\n", "Deleting ../data/html/20042005/2342.html\n", "Deleting ../data/html/20042005/2343.html\n", "Deleting ../data/html/20042005/2344.html\n", "Deleting ../data/html/20042005/2345.html\n", "Deleting ../data/html/20042005/2346.html\n", "Deleting ../data/html/20042005/2347.html\n", "Deleting ../data/html/20042005/2348.html\n", "Deleting ../data/html/20042005/2349.html\n", "Deleting ../data/html/20042005/235.html\n", "Deleting ../data/html/20042005/2350.html\n", "Deleting ../data/html/20042005/2351.html\n", "Deleting ../data/html/20042005/2352.html\n", "Deleting ../data/html/20042005/2353.html\n", "Deleting ../data/html/20042005/2354.html\n", "Deleting ../data/html/20042005/2355.html\n", "Deleting ../data/html/20042005/2356.html\n", "Deleting ../data/html/20042005/2357.html\n", "Deleting ../data/html/20042005/2358.html\n", "Deleting ../data/html/20042005/2359.html\n", "Deleting ../data/html/20042005/236.html\n", "Deleting ../data/html/20042005/2360.html\n", "Deleting ../data/html/20042005/2361.html\n", "Deleting ../data/html/20042005/2362.html\n", "Deleting ../data/html/20042005/2363.html\n", "Deleting ../data/html/20042005/2364.html\n", "Deleting ../data/html/20042005/2365.html\n", "Deleting ../data/html/20042005/2366.html\n", "Deleting ../data/html/20042005/2367.html\n", "Deleting ../data/html/20042005/2368.html\n", "Deleting ../data/html/20042005/2369.html\n", "Deleting ../data/html/20042005/237.html\n", "Deleting ../data/html/20042005/2370.html\n", "Deleting ../data/html/20042005/2371.html\n", "Deleting ../data/html/20042005/2372.html\n", "Deleting ../data/html/20042005/2373.html\n", "Deleting ../data/html/20042005/2374.html\n", "Deleting ../data/html/20042005/2375.html\n", "Deleting ../data/html/20042005/2376.html\n", "Deleting ../data/html/20042005/2377.html\n", "Deleting ../data/html/20042005/2378.html\n", "Deleting ../data/html/20042005/2379.html\n", "Deleting ../data/html/20042005/238.html\n", "Deleting ../data/html/20042005/2380.html\n", "Deleting ../data/html/20042005/2381.html\n", "Deleting ../data/html/20042005/2382.html\n", "Deleting ../data/html/20042005/2383.html\n", "Deleting ../data/html/20042005/2384.html\n", "Deleting ../data/html/20042005/2385.html\n", "Deleting ../data/html/20042005/2386.html\n", "Deleting ../data/html/20042005/2387.html\n", "Deleting ../data/html/20042005/2388.html\n", "Deleting ../data/html/20042005/2389.html\n", "Deleting ../data/html/20042005/239.html\n", "Deleting ../data/html/20042005/2390.html\n", "Deleting ../data/html/20042005/2391.html\n", "Deleting ../data/html/20042005/2392.html\n", "Deleting ../data/html/20042005/2393.html\n", "Deleting ../data/html/20042005/2394.html\n", "Deleting ../data/html/20042005/2395.html\n", "Deleting ../data/html/20042005/2396.html\n", "Deleting ../data/html/20042005/2397.html\n", "Deleting ../data/html/20042005/2398.html\n", "Deleting ../data/html/20042005/2399.html\n", "Deleting ../data/html/20042005/24.html\n", "Deleting ../data/html/20042005/240.html\n", "Deleting ../data/html/20042005/2400.html\n", "Deleting ../data/html/20042005/2401.html\n", "Deleting ../data/html/20042005/2402.html\n", "Deleting ../data/html/20042005/2403.html\n", "Deleting ../data/html/20042005/2404.html\n", "Deleting ../data/html/20042005/2405.html\n", "Deleting ../data/html/20042005/2406.html\n", "Deleting ../data/html/20042005/2407.html\n", "Deleting ../data/html/20042005/2408.html\n", "Deleting ../data/html/20042005/2409.html\n", "Deleting ../data/html/20042005/241.html\n", "Deleting ../data/html/20042005/2410.html\n", "Deleting ../data/html/20042005/2411.html\n", "Deleting ../data/html/20042005/2412.html\n", "Deleting ../data/html/20042005/2413.html\n", "Deleting ../data/html/20042005/2414.html\n", "Deleting ../data/html/20042005/2415.html\n", "Deleting ../data/html/20042005/2416.html\n", "Deleting ../data/html/20042005/2417.html\n", "Deleting ../data/html/20042005/2418.html\n", "Deleting ../data/html/20042005/2419.html\n", "Deleting ../data/html/20042005/242.html\n", "Deleting ../data/html/20042005/2420.html\n", "Deleting ../data/html/20042005/2421.html\n", "Deleting ../data/html/20042005/2422.html\n", "Deleting ../data/html/20042005/2423.html\n", "Deleting ../data/html/20042005/2424.html\n", "Deleting ../data/html/20042005/2425.html\n", "Deleting ../data/html/20042005/2426.html\n", "Deleting ../data/html/20042005/2427.html\n", "Deleting ../data/html/20042005/2428.html\n", "Deleting ../data/html/20042005/2429.html\n", "Deleting ../data/html/20042005/243.html\n", "Deleting ../data/html/20042005/2430.html\n", "Deleting ../data/html/20042005/2431.html\n", "Deleting ../data/html/20042005/2432.html\n", "Deleting ../data/html/20042005/2433.html\n", "Deleting ../data/html/20042005/2434.html\n", "Deleting ../data/html/20042005/2435.html\n", "Deleting ../data/html/20042005/2436.html\n", "Deleting ../data/html/20042005/2437.html\n", "Deleting ../data/html/20042005/2438.html\n", "Deleting ../data/html/20042005/2439.html\n", "Deleting ../data/html/20042005/244.html\n", "Deleting ../data/html/20042005/2440.html\n", "Deleting ../data/html/20042005/2441.html\n", "Deleting ../data/html/20042005/2442.html\n", "Deleting ../data/html/20042005/2443.html\n", "Deleting ../data/html/20042005/2444.html\n", "Deleting ../data/html/20042005/2445.html\n", "Deleting ../data/html/20042005/2446.html\n", "Deleting ../data/html/20042005/2447.html\n", "Deleting ../data/html/20042005/2448.html\n", "Deleting ../data/html/20042005/2449.html\n", "Deleting ../data/html/20042005/245.html\n", "Deleting ../data/html/20042005/2450.html\n", "Deleting ../data/html/20042005/2451.html\n", "Deleting ../data/html/20042005/2452.html\n", "Deleting ../data/html/20042005/2453.html\n", "Deleting ../data/html/20042005/2454.html\n", "Deleting ../data/html/20042005/2455.html\n", "Deleting ../data/html/20042005/2456.html\n", "Deleting ../data/html/20042005/2457.html\n", "Deleting ../data/html/20042005/2458.html\n", "Deleting ../data/html/20042005/2459.html\n", "Deleting ../data/html/20042005/246.html\n", "Deleting ../data/html/20042005/2460.html\n", "Deleting ../data/html/20042005/2461.html\n", "Deleting ../data/html/20042005/2462.html\n", "Deleting ../data/html/20042005/2463.html\n", "Deleting ../data/html/20042005/2464.html\n", "Deleting ../data/html/20042005/2465.html\n", "Deleting ../data/html/20042005/2466.html\n", "Deleting ../data/html/20042005/2467.html\n", "Deleting ../data/html/20042005/2468.html\n", "Deleting ../data/html/20042005/2469.html\n", "Deleting ../data/html/20042005/247.html\n", "Deleting ../data/html/20042005/2470.html\n", "Deleting ../data/html/20042005/2471.html\n", "Deleting ../data/html/20042005/2472.html\n", "Deleting ../data/html/20042005/2473.html\n", "Deleting ../data/html/20042005/2474.html\n", "Deleting ../data/html/20042005/2475.html\n", "Deleting ../data/html/20042005/2476.html\n", "Deleting ../data/html/20042005/2477.html\n", "Deleting ../data/html/20042005/2478.html\n", "Deleting ../data/html/20042005/2479.html\n", "Deleting ../data/html/20042005/248.html\n", "Deleting ../data/html/20042005/2480.html\n", "Deleting ../data/html/20042005/2481.html\n", "Deleting ../data/html/20042005/2482.html\n", "Deleting ../data/html/20042005/2483.html\n", "Deleting ../data/html/20042005/2484.html\n", "Deleting ../data/html/20042005/2485.html\n", "Deleting ../data/html/20042005/2486.html\n", "Deleting ../data/html/20042005/2487.html\n", "Deleting ../data/html/20042005/2488.html\n", "Deleting ../data/html/20042005/2489.html\n", "Deleting ../data/html/20042005/249.html\n", "Deleting ../data/html/20042005/2490.html\n", "Deleting ../data/html/20042005/2491.html\n", "Deleting ../data/html/20042005/2492.html\n", "Deleting ../data/html/20042005/2493.html\n", "Deleting ../data/html/20042005/2494.html\n", "Deleting ../data/html/20042005/2495.html\n", "Deleting ../data/html/20042005/2496.html\n", "Deleting ../data/html/20042005/2497.html\n", "Deleting ../data/html/20042005/2498.html\n", "Deleting ../data/html/20042005/2499.html\n", "Deleting ../data/html/20042005/25.html\n", "Deleting ../data/html/20042005/250.html\n", "Deleting ../data/html/20042005/2500.html\n", "Deleting ../data/html/20042005/2501.html\n", "Deleting ../data/html/20042005/2502.html\n", "Deleting ../data/html/20042005/2503.html\n", "Deleting ../data/html/20042005/2504.html\n", "Deleting ../data/html/20042005/2505.html\n", "Deleting ../data/html/20042005/2506.html\n", "Deleting ../data/html/20042005/2507.html\n", "Deleting ../data/html/20042005/2508.html\n", "Deleting ../data/html/20042005/2509.html\n", "Deleting ../data/html/20042005/251.html\n", "Deleting ../data/html/20042005/2510.html\n", "Deleting ../data/html/20042005/2511.html\n", "Deleting ../data/html/20042005/2512.html\n", "Deleting ../data/html/20042005/2513.html\n", "Deleting ../data/html/20042005/2514.html\n", "Deleting ../data/html/20042005/2515.html\n", "Deleting ../data/html/20042005/2516.html\n", "Deleting ../data/html/20042005/2517.html\n", "Deleting ../data/html/20042005/2518.html\n", "Deleting ../data/html/20042005/2519.html\n", "Deleting ../data/html/20042005/252.html\n", "Deleting ../data/html/20042005/2520.html\n", "Deleting ../data/html/20042005/2521.html\n", "Deleting ../data/html/20042005/2522.html\n", "Deleting ../data/html/20042005/2523.html\n", "Deleting ../data/html/20042005/2524.html\n", "Deleting ../data/html/20042005/2525.html\n", "Deleting ../data/html/20042005/2526.html\n", "Deleting ../data/html/20042005/2527.html\n", "Deleting ../data/html/20042005/2528.html\n", "Deleting ../data/html/20042005/2529.html\n", "Deleting ../data/html/20042005/253.html\n", "Deleting ../data/html/20042005/2530.html\n", "Deleting ../data/html/20042005/2531.html\n", "Deleting ../data/html/20042005/2532.html\n", "Deleting ../data/html/20042005/2533.html\n", "Deleting ../data/html/20042005/2534.html\n", "Deleting ../data/html/20042005/2535.html\n", "Deleting ../data/html/20042005/2536.html\n", "Deleting ../data/html/20042005/2537.html\n", "Deleting ../data/html/20042005/2538.html\n", "Deleting ../data/html/20042005/2539.html\n", "Deleting ../data/html/20042005/254.html\n", "Deleting ../data/html/20042005/2540.html\n", "Deleting ../data/html/20042005/2541.html\n", "Deleting ../data/html/20042005/2542.html\n", "Deleting ../data/html/20042005/2543.html\n", "Deleting ../data/html/20042005/2544.html\n", "Deleting ../data/html/20042005/2545.html\n", "Deleting ../data/html/20042005/2546.html\n", "Deleting ../data/html/20042005/2547.html\n", "Deleting ../data/html/20042005/2548.html\n", "Deleting ../data/html/20042005/2549.html\n", "Deleting ../data/html/20042005/255.html\n", "Deleting ../data/html/20042005/2550.html\n", "Deleting ../data/html/20042005/2551.html\n", "Deleting ../data/html/20042005/2552.html\n", "Deleting ../data/html/20042005/2553.html\n", "Deleting ../data/html/20042005/2554.html\n", "Deleting ../data/html/20042005/2555.html\n", "Deleting ../data/html/20042005/2556.html\n", "Deleting ../data/html/20042005/2557.html\n", "Deleting ../data/html/20042005/2558.html\n", "Deleting ../data/html/20042005/2559.html\n", "Deleting ../data/html/20042005/256.html\n", "Deleting ../data/html/20042005/2560.html\n", "Deleting ../data/html/20042005/2561.html\n", "Deleting ../data/html/20042005/2562.html\n", "Deleting ../data/html/20042005/2563.html\n", "Deleting ../data/html/20042005/2564.html\n", "Deleting ../data/html/20042005/2565.html\n", "Deleting ../data/html/20042005/2566.html\n", "Deleting ../data/html/20042005/2567.html\n", "Deleting ../data/html/20042005/2568.html\n", "Deleting ../data/html/20042005/2569.html\n", "Deleting ../data/html/20042005/257.html\n", "Deleting ../data/html/20042005/2570.html\n", "Deleting ../data/html/20042005/2571.html\n", "Deleting ../data/html/20042005/2572.html\n", "Deleting ../data/html/20042005/2573.html\n", "Deleting ../data/html/20042005/2574.html\n", "Deleting ../data/html/20042005/2575.html\n", "Deleting ../data/html/20042005/2576.html\n", "Deleting ../data/html/20042005/2577.html\n", "Deleting ../data/html/20042005/2578.html\n", "Deleting ../data/html/20042005/2579.html\n", "Deleting ../data/html/20042005/258.html\n", "Deleting ../data/html/20042005/2580.html\n", "Deleting ../data/html/20042005/2581.html\n", "Deleting ../data/html/20042005/2582.html\n", "Deleting ../data/html/20042005/2583.html\n", "Deleting ../data/html/20042005/2584.html\n", "Deleting ../data/html/20042005/2585.html\n", "Deleting ../data/html/20042005/2586.html\n", "Deleting ../data/html/20042005/2587.html\n", "Deleting ../data/html/20042005/2588.html\n", "Deleting ../data/html/20042005/2589.html\n", "Deleting ../data/html/20042005/259.html\n", "Deleting ../data/html/20042005/2590.html\n", "Deleting ../data/html/20042005/2591.html\n", "Deleting ../data/html/20042005/2592.html\n", "Deleting ../data/html/20042005/2593.html\n", "Deleting ../data/html/20042005/2594.html\n", "Deleting ../data/html/20042005/2595.html\n", "Deleting ../data/html/20042005/2596.html\n", "Deleting ../data/html/20042005/2597.html\n", "Deleting ../data/html/20042005/2598.html\n", "Deleting ../data/html/20042005/2599.html\n", "Deleting ../data/html/20042005/26.html\n", "Deleting ../data/html/20042005/260.html\n", "Deleting ../data/html/20042005/2600.html\n", "Deleting ../data/html/20042005/2601.html\n", "Deleting ../data/html/20042005/2602.html\n", "Deleting ../data/html/20042005/2603.html\n", "Deleting ../data/html/20042005/2604.html\n", "Deleting ../data/html/20042005/2605.html\n", "Deleting ../data/html/20042005/2606.html\n", "Deleting ../data/html/20042005/2607.html\n", "Deleting ../data/html/20042005/2608.html\n", "Deleting ../data/html/20042005/2609.html\n", "Deleting ../data/html/20042005/261.html\n", "Deleting ../data/html/20042005/2610.html\n", "Deleting ../data/html/20042005/2611.html\n", "Deleting ../data/html/20042005/2612.html\n", "Deleting ../data/html/20042005/2613.html\n", "Deleting ../data/html/20042005/2614.html\n", "Deleting ../data/html/20042005/2615.html\n", "Deleting ../data/html/20042005/2616.html\n", "Deleting ../data/html/20042005/2617.html\n", "Deleting ../data/html/20042005/2618.html\n", "Deleting ../data/html/20042005/2619.html\n", "Deleting ../data/html/20042005/262.html\n", "Deleting ../data/html/20042005/2620.html\n", "Deleting ../data/html/20042005/2621.html\n", "Deleting ../data/html/20042005/2622.html\n", "Deleting ../data/html/20042005/2623.html\n", "Deleting ../data/html/20042005/2624.html\n", "Deleting ../data/html/20042005/2625.html\n", "Deleting ../data/html/20042005/2626.html\n", "Deleting ../data/html/20042005/2627.html\n", "Deleting ../data/html/20042005/2628.html\n", "Deleting ../data/html/20042005/2629.html\n", "Deleting ../data/html/20042005/263.html\n", "Deleting ../data/html/20042005/2630.html\n", "Deleting ../data/html/20042005/2631.html\n", "Deleting ../data/html/20042005/2632.html\n", "Deleting ../data/html/20042005/2633.html\n", "Deleting ../data/html/20042005/2634.html\n", "Deleting ../data/html/20042005/2635.html\n", "Deleting ../data/html/20042005/2636.html\n", "Deleting ../data/html/20042005/2637.html\n", "Deleting ../data/html/20042005/2638.html\n", "Deleting ../data/html/20042005/2639.html\n", "Deleting ../data/html/20042005/264.html\n", "Deleting ../data/html/20042005/2640.html\n", "Deleting ../data/html/20042005/2641.html\n", "Deleting ../data/html/20042005/2642.html\n", "Deleting ../data/html/20042005/2643.html\n", "Deleting ../data/html/20042005/2644.html\n", "Deleting ../data/html/20042005/2645.html\n", "Deleting ../data/html/20042005/2646.html\n", "Deleting ../data/html/20042005/2647.html\n", "Deleting ../data/html/20042005/2648.html\n", "Deleting ../data/html/20042005/2649.html\n", "Deleting ../data/html/20042005/265.html\n", "Deleting ../data/html/20042005/2650.html\n", "Deleting ../data/html/20042005/2651.html\n", "Deleting ../data/html/20042005/2652.html\n", "Deleting ../data/html/20042005/2653.html\n", "Deleting ../data/html/20042005/2654.html\n", "Deleting ../data/html/20042005/2655.html\n", "Deleting ../data/html/20042005/2656.html\n", "Deleting ../data/html/20042005/2657.html\n", "Deleting ../data/html/20042005/2658.html\n", "Deleting ../data/html/20042005/2659.html\n", "Deleting ../data/html/20042005/266.html\n", "Deleting ../data/html/20042005/2660.html\n", "Deleting ../data/html/20042005/2661.html\n", "Deleting ../data/html/20042005/2662.html\n", "Deleting ../data/html/20042005/2663.html\n", "Deleting ../data/html/20042005/2664.html\n", "Deleting ../data/html/20042005/2665.html\n", "Deleting ../data/html/20042005/2666.html\n", "Deleting ../data/html/20042005/2667.html\n", "Deleting ../data/html/20042005/2668.html\n", "Deleting ../data/html/20042005/2669.html\n", "Deleting ../data/html/20042005/267.html\n", "Deleting ../data/html/20042005/2670.html\n", "Deleting ../data/html/20042005/2671.html\n", "Deleting ../data/html/20042005/2672.html\n", "Deleting ../data/html/20042005/2673.html\n", "Deleting ../data/html/20042005/2674.html\n", "Deleting ../data/html/20042005/2675.html\n", "Deleting ../data/html/20042005/2676.html\n", "Deleting ../data/html/20042005/2677.html\n", "Deleting ../data/html/20042005/2678.html\n", "Deleting ../data/html/20042005/2679.html\n", "Deleting ../data/html/20042005/268.html\n", "Deleting ../data/html/20042005/2680.html\n", "Deleting ../data/html/20042005/2681.html\n", "Deleting ../data/html/20042005/2682.html\n", "Deleting ../data/html/20042005/2683.html\n", "Deleting ../data/html/20042005/2684.html\n", "Deleting ../data/html/20042005/2685.html\n", "Deleting ../data/html/20042005/2686.html\n", "Deleting ../data/html/20042005/2687.html\n", "Deleting ../data/html/20042005/2688.html\n", "Deleting ../data/html/20042005/2689.html\n", "Deleting ../data/html/20042005/269.html\n", "Deleting ../data/html/20042005/2690.html\n", "Deleting ../data/html/20042005/2691.html\n", "Deleting ../data/html/20042005/2692.html\n", "Deleting ../data/html/20042005/2693.html\n", "Deleting ../data/html/20042005/2694.html\n", "Deleting ../data/html/20042005/2695.html\n", "Deleting ../data/html/20042005/2696.html\n", "Deleting ../data/html/20042005/2697.html\n", "Deleting ../data/html/20042005/2698.html\n", "Deleting ../data/html/20042005/2699.html\n", "Deleting ../data/html/20042005/27.html\n", "Deleting ../data/html/20042005/270.html\n", "Deleting ../data/html/20042005/2700.html\n", "Deleting ../data/html/20042005/2701.html\n", "Deleting ../data/html/20042005/2702.html\n", "Deleting ../data/html/20042005/2703.html\n", "Deleting ../data/html/20042005/2704.html\n", "Deleting ../data/html/20042005/2705.html\n", "Deleting ../data/html/20042005/2706.html\n", "Deleting ../data/html/20042005/2707.html\n", "Deleting ../data/html/20042005/2708.html\n", "Deleting ../data/html/20042005/2709.html\n", "Deleting ../data/html/20042005/271.html\n", "Deleting ../data/html/20042005/2710.html\n", "Deleting ../data/html/20042005/2711.html\n", "Deleting ../data/html/20042005/2712.html\n", "Deleting ../data/html/20042005/2713.html\n", "Deleting ../data/html/20042005/2714.html\n", "Deleting ../data/html/20042005/2715.html\n", "Deleting ../data/html/20042005/2716.html\n", "Deleting ../data/html/20042005/2717.html\n", "Deleting ../data/html/20042005/2718.html\n", "Deleting ../data/html/20042005/2719.html\n", "Deleting ../data/html/20042005/272.html\n", "Deleting ../data/html/20042005/2720.html\n", "Deleting ../data/html/20042005/2721.html\n", "Deleting ../data/html/20042005/2722.html\n", "Deleting ../data/html/20042005/2723.html\n", "Deleting ../data/html/20042005/2724.html\n", "Deleting ../data/html/20042005/2725.html\n", "Deleting ../data/html/20042005/2726.html\n", "Deleting ../data/html/20042005/2727.html\n", "Deleting ../data/html/20042005/2728.html\n", "Deleting ../data/html/20042005/2729.html\n", "Deleting ../data/html/20042005/273.html\n", "Deleting ../data/html/20042005/2730.html\n", "Deleting ../data/html/20042005/2731.html\n", "Deleting ../data/html/20042005/2732.html\n", "Deleting ../data/html/20042005/2733.html\n", "Deleting ../data/html/20042005/2734.html\n", "Deleting ../data/html/20042005/2735.html\n", "Deleting ../data/html/20042005/2736.html\n", "Deleting ../data/html/20042005/2737.html\n", "Deleting ../data/html/20042005/2738.html\n", "Deleting ../data/html/20042005/2739.html\n", "Deleting ../data/html/20042005/274.html\n", "Deleting ../data/html/20042005/2740.html\n", "Deleting ../data/html/20042005/2741.html\n", "Deleting ../data/html/20042005/2742.html\n", "Deleting ../data/html/20042005/2743.html\n", "Deleting ../data/html/20042005/2744.html\n", "Deleting ../data/html/20042005/2745.html\n", "Deleting ../data/html/20042005/2746.html\n", "Deleting ../data/html/20042005/2747.html\n", "Deleting ../data/html/20042005/2748.html\n", "Deleting ../data/html/20042005/2749.html\n", "Deleting ../data/html/20042005/275.html\n", "Deleting ../data/html/20042005/2750.html\n", "Deleting ../data/html/20042005/2751.html\n", "Deleting ../data/html/20042005/2752.html\n", "Deleting ../data/html/20042005/2753.html\n", "Deleting ../data/html/20042005/2754.html\n", "Deleting ../data/html/20042005/2755.html\n", "Deleting ../data/html/20042005/2756.html\n", "Deleting ../data/html/20042005/2757.html\n", "Deleting ../data/html/20042005/2758.html\n", "Deleting ../data/html/20042005/2759.html\n", "Deleting ../data/html/20042005/276.html\n", "Deleting ../data/html/20042005/2760.html\n", "Deleting ../data/html/20042005/2761.html\n", "Deleting ../data/html/20042005/2762.html\n", "Deleting ../data/html/20042005/2763.html\n", "Deleting ../data/html/20042005/2764.html\n", "Deleting ../data/html/20042005/2765.html\n", "Deleting ../data/html/20042005/2766.html\n", "Deleting ../data/html/20042005/2767.html\n", "Deleting ../data/html/20042005/2768.html\n", "Deleting ../data/html/20042005/2769.html\n", "Deleting ../data/html/20042005/277.html\n", "Deleting ../data/html/20042005/2770.html\n", "Deleting ../data/html/20042005/2771.html\n", "Deleting ../data/html/20042005/2772.html\n", "Deleting ../data/html/20042005/2773.html\n", "Deleting ../data/html/20042005/2774.html\n", "Deleting ../data/html/20042005/2775.html\n", "Deleting ../data/html/20042005/2776.html\n", "Deleting ../data/html/20042005/2777.html\n", "Deleting ../data/html/20042005/2778.html\n", "Deleting ../data/html/20042005/2779.html\n", "Deleting ../data/html/20042005/278.html\n", "Deleting ../data/html/20042005/2780.html\n", "Deleting ../data/html/20042005/2781.html\n", "Deleting ../data/html/20042005/2782.html\n", "Deleting ../data/html/20042005/2783.html\n", "Deleting ../data/html/20042005/2784.html\n", "Deleting ../data/html/20042005/2785.html\n", "Deleting ../data/html/20042005/2786.html\n", "Deleting ../data/html/20042005/2787.html\n", "Deleting ../data/html/20042005/2788.html\n", "Deleting ../data/html/20042005/2789.html\n", "Deleting ../data/html/20042005/279.html\n", "Deleting ../data/html/20042005/2790.html\n", "Deleting ../data/html/20042005/2791.html\n", "Deleting ../data/html/20042005/2792.html\n", "Deleting ../data/html/20042005/2793.html\n", "Deleting ../data/html/20042005/2794.html\n", "Deleting ../data/html/20042005/2795.html\n", "Deleting ../data/html/20042005/2796.html\n", "Deleting ../data/html/20042005/2797.html\n", "Deleting ../data/html/20042005/2798.html\n", "Deleting ../data/html/20042005/2799.html\n", "Deleting ../data/html/20042005/28.html\n", "Deleting ../data/html/20042005/280.html\n", "Deleting ../data/html/20042005/2800.html\n", "Deleting ../data/html/20042005/2801.html\n", "Deleting ../data/html/20042005/2802.html\n", "Deleting ../data/html/20042005/2803.html\n", "Deleting ../data/html/20042005/2804.html\n", "Deleting ../data/html/20042005/2805.html\n", "Deleting ../data/html/20042005/2806.html\n", "Deleting ../data/html/20042005/2807.html\n", "Deleting ../data/html/20042005/2808.html\n", "Deleting ../data/html/20042005/2809.html\n", "Deleting ../data/html/20042005/281.html\n", "Deleting ../data/html/20042005/2810.html\n", "Deleting ../data/html/20042005/2811.html\n", "Deleting ../data/html/20042005/2812.html\n", "Deleting ../data/html/20042005/2813.html\n", "Deleting ../data/html/20042005/2814.html\n", "Deleting ../data/html/20042005/2815.html\n", "Deleting ../data/html/20042005/2816.html\n", "Deleting ../data/html/20042005/2817.html\n", "Deleting ../data/html/20042005/2818.html\n", "Deleting ../data/html/20042005/2819.html\n", "Deleting ../data/html/20042005/282.html\n", "Deleting ../data/html/20042005/2820.html\n", "Deleting ../data/html/20042005/2821.html\n", "Deleting ../data/html/20042005/2822.html\n", "Deleting ../data/html/20042005/2823.html\n", "Deleting ../data/html/20042005/2824.html\n", "Deleting ../data/html/20042005/2825.html\n", "Deleting ../data/html/20042005/2826.html\n", "Deleting ../data/html/20042005/2827.html\n", "Deleting ../data/html/20042005/2828.html\n", "Deleting ../data/html/20042005/2829.html\n", "Deleting ../data/html/20042005/283.html\n", "Deleting ../data/html/20042005/2830.html\n", "Deleting ../data/html/20042005/2831.html\n", "Deleting ../data/html/20042005/2832.html\n", "Deleting ../data/html/20042005/2833.html\n", "Deleting ../data/html/20042005/2834.html\n", "Deleting ../data/html/20042005/2835.html\n", "Deleting ../data/html/20042005/2836.html\n", "Deleting ../data/html/20042005/2837.html\n", "Deleting ../data/html/20042005/2838.html\n", "Deleting ../data/html/20042005/2839.html\n", "Deleting ../data/html/20042005/284.html\n", "Deleting ../data/html/20042005/2840.html\n", "Deleting ../data/html/20042005/2841.html\n", "Deleting ../data/html/20042005/2842.html\n", "Deleting ../data/html/20042005/2843.html\n", "Deleting ../data/html/20042005/2844.html\n", "Deleting ../data/html/20042005/2845.html\n", "Deleting ../data/html/20042005/2846.html\n", "Deleting ../data/html/20042005/2847.html\n", "Deleting ../data/html/20042005/2848.html\n", "Deleting ../data/html/20042005/2849.html\n", "Deleting ../data/html/20042005/285.html\n", "Deleting ../data/html/20042005/2850.html\n", "Deleting ../data/html/20042005/2851.html\n", "Deleting ../data/html/20042005/2852.html\n", "Deleting ../data/html/20042005/2853.html\n", "Deleting ../data/html/20042005/2854.html\n", "Deleting ../data/html/20042005/2855.html\n", "Deleting ../data/html/20042005/2856.html\n", "Deleting ../data/html/20042005/2857.html\n", "Deleting ../data/html/20042005/2858.html\n", "Deleting ../data/html/20042005/2859.html\n", "Deleting ../data/html/20042005/286.html\n", "Deleting ../data/html/20042005/2860.html\n", "Deleting ../data/html/20042005/2861.html\n", "Deleting ../data/html/20042005/2862.html\n", "Deleting ../data/html/20042005/2863.html\n", "Deleting ../data/html/20042005/2864.html\n", "Deleting ../data/html/20042005/2865.html\n", "Deleting ../data/html/20042005/2866.html\n", "Deleting ../data/html/20042005/2867.html\n", "Deleting ../data/html/20042005/2868.html\n", "Deleting ../data/html/20042005/2869.html\n", "Deleting ../data/html/20042005/287.html\n", "Deleting ../data/html/20042005/2870.html\n", "Deleting ../data/html/20042005/2871.html\n", "Deleting ../data/html/20042005/2872.html\n", "Deleting ../data/html/20042005/2873.html\n", "Deleting ../data/html/20042005/2874.html\n", "Deleting ../data/html/20042005/2875.html\n", "Deleting ../data/html/20042005/2876.html\n", "Deleting ../data/html/20042005/2877.html\n", "Deleting ../data/html/20042005/2878.html\n", "Deleting ../data/html/20042005/2879.html\n", "Deleting ../data/html/20042005/288.html\n", "Deleting ../data/html/20042005/2880.html\n", "Deleting ../data/html/20042005/2881.html\n", "Deleting ../data/html/20042005/2882.html\n", "Deleting ../data/html/20042005/2883.html\n", "Deleting ../data/html/20042005/2884.html\n", "Deleting ../data/html/20042005/2885.html\n", "Deleting ../data/html/20042005/2886.html\n", "Deleting ../data/html/20042005/2887.html\n", "Deleting ../data/html/20042005/2888.html\n", "Deleting ../data/html/20042005/2889.html\n", "Deleting ../data/html/20042005/289.html\n", "Deleting ../data/html/20042005/2890.html\n", "Deleting ../data/html/20042005/2891.html\n", "Deleting ../data/html/20042005/2892.html\n", "Deleting ../data/html/20042005/2893.html\n", "Deleting ../data/html/20042005/2894.html\n", "Deleting ../data/html/20042005/2895.html\n", "Deleting ../data/html/20042005/2896.html\n", "Deleting ../data/html/20042005/2897.html\n", "Deleting ../data/html/20042005/2898.html\n", "Deleting ../data/html/20042005/2899.html\n", "Deleting ../data/html/20042005/29.html\n", "Deleting ../data/html/20042005/290.html\n", "Deleting ../data/html/20042005/2900.html\n", "Deleting ../data/html/20042005/2901.html\n", "Deleting ../data/html/20042005/2902.html\n", "Deleting ../data/html/20042005/2903.html\n", "Deleting ../data/html/20042005/2904.html\n", "Deleting ../data/html/20042005/2905.html\n", "Deleting ../data/html/20042005/2906.html\n", "Deleting ../data/html/20042005/2907.html\n", "Deleting ../data/html/20042005/2908.html\n", "Deleting ../data/html/20042005/2909.html\n", "Deleting ../data/html/20042005/291.html\n", "Deleting ../data/html/20042005/2910.html\n", "Deleting ../data/html/20042005/2911.html\n", "Deleting ../data/html/20042005/2912.html\n", "Deleting ../data/html/20042005/2913.html\n", "Deleting ../data/html/20042005/2914.html\n", "Deleting ../data/html/20042005/2915.html\n", "Deleting ../data/html/20042005/2916.html\n", "Deleting ../data/html/20042005/2917.html\n", "Deleting ../data/html/20042005/2918.html\n", "Deleting ../data/html/20042005/2919.html\n", "Deleting ../data/html/20042005/292.html\n", "Deleting ../data/html/20042005/2920.html\n", "Deleting ../data/html/20042005/2921.html\n", "Deleting ../data/html/20042005/2922.html\n", "Deleting ../data/html/20042005/2923.html\n", "Deleting ../data/html/20042005/2924.html\n", "Deleting ../data/html/20042005/2925.html\n", "Deleting ../data/html/20042005/2926.html\n", "Deleting ../data/html/20042005/2927.html\n", "Deleting ../data/html/20042005/2928.html\n", "Deleting ../data/html/20042005/2929.html\n", "Deleting ../data/html/20042005/293.html\n", "Deleting ../data/html/20042005/2930.html\n", "Deleting ../data/html/20042005/2931.html\n", "Deleting ../data/html/20042005/2932.html\n", "Deleting ../data/html/20042005/2933.html\n", "Deleting ../data/html/20042005/2934.html\n", "Deleting ../data/html/20042005/2935.html\n", "Deleting ../data/html/20042005/2936.html\n", "Deleting ../data/html/20042005/2937.html\n", "Deleting ../data/html/20042005/2938.html\n", "Deleting ../data/html/20042005/2939.html\n", "Deleting ../data/html/20042005/294.html\n", "Deleting ../data/html/20042005/2940.html\n", "Deleting ../data/html/20042005/2941.html\n", "Deleting ../data/html/20042005/2942.html\n", "Deleting ../data/html/20042005/2943.html\n", "Deleting ../data/html/20042005/2944.html\n", "Deleting ../data/html/20042005/2945.html\n", "Deleting ../data/html/20042005/2946.html\n", "Deleting ../data/html/20042005/2947.html\n", "Deleting ../data/html/20042005/2948.html\n", "Deleting ../data/html/20042005/2949.html\n", "Deleting ../data/html/20042005/295.html\n", "Deleting ../data/html/20042005/2950.html\n", "Deleting ../data/html/20042005/2951.html\n", "Deleting ../data/html/20042005/2952.html\n", "Deleting ../data/html/20042005/2953.html\n", "Deleting ../data/html/20042005/2954.html\n", "Deleting ../data/html/20042005/2955.html\n", "Deleting ../data/html/20042005/2956.html\n", "Deleting ../data/html/20042005/2957.html\n", "Deleting ../data/html/20042005/2958.html\n", "Deleting ../data/html/20042005/2959.html\n", "Deleting ../data/html/20042005/296.html\n", "Deleting ../data/html/20042005/2960.html\n", "Deleting ../data/html/20042005/2961.html\n", "Deleting ../data/html/20042005/2962.html\n", "Deleting ../data/html/20042005/2963.html\n", "Deleting ../data/html/20042005/2964.html\n", "Deleting ../data/html/20042005/2965.html\n", "Deleting ../data/html/20042005/2966.html\n", "Deleting ../data/html/20042005/2967.html\n", "Deleting ../data/html/20042005/2968.html\n", "Deleting ../data/html/20042005/2969.html\n", "Deleting ../data/html/20042005/297.html\n", "Deleting ../data/html/20042005/2970.html\n", "Deleting ../data/html/20042005/2971.html\n", "Deleting ../data/html/20042005/2972.html\n", "Deleting ../data/html/20042005/2973.html\n", "Deleting ../data/html/20042005/2974.html\n", "Deleting ../data/html/20042005/2975.html\n", "Deleting ../data/html/20042005/2976.html\n", "Deleting ../data/html/20042005/2977.html\n", "Deleting ../data/html/20042005/2978.html\n", "Deleting ../data/html/20042005/2979.html\n", "Deleting ../data/html/20042005/298.html\n", "Deleting ../data/html/20042005/2980.html\n", "Deleting ../data/html/20042005/2981.html\n", "Deleting ../data/html/20042005/2982.html\n", "Deleting ../data/html/20042005/2983.html\n", "Deleting ../data/html/20042005/2984.html\n", "Deleting ../data/html/20042005/2985.html\n", "Deleting ../data/html/20042005/2986.html\n", "Deleting ../data/html/20042005/2987.html\n", "Deleting ../data/html/20042005/2988.html\n", "Deleting ../data/html/20042005/2989.html\n", "Deleting ../data/html/20042005/299.html\n", "Deleting ../data/html/20042005/2990.html\n", "Deleting ../data/html/20042005/2991.html\n", "Deleting ../data/html/20042005/2992.html\n", "Deleting ../data/html/20042005/2993.html\n", "Deleting ../data/html/20042005/2994.html\n", "Deleting ../data/html/20042005/2995.html\n", "Deleting ../data/html/20042005/2996.html\n", "Deleting ../data/html/20042005/2997.html\n", "Deleting ../data/html/20042005/2998.html\n", "Deleting ../data/html/20042005/2999.html\n", "Deleting ../data/html/20042005/3.html\n", "Deleting ../data/html/20042005/30.html\n", "Deleting ../data/html/20042005/300.html\n", "Deleting ../data/html/20042005/301.html\n", "Deleting ../data/html/20042005/302.html\n", "Deleting ../data/html/20042005/303.html\n", "Deleting ../data/html/20042005/304.html\n", "Deleting ../data/html/20042005/305.html\n", "Deleting ../data/html/20042005/306.html\n", "Deleting ../data/html/20042005/307.html\n", "Deleting ../data/html/20042005/308.html\n", "Deleting ../data/html/20042005/309.html\n", "Deleting ../data/html/20042005/31.html\n", "Deleting ../data/html/20042005/310.html\n", "Deleting ../data/html/20042005/311.html\n", "Deleting ../data/html/20042005/312.html\n", "Deleting ../data/html/20042005/313.html\n", "Deleting ../data/html/20042005/314.html\n", "Deleting ../data/html/20042005/315.html\n", "Deleting ../data/html/20042005/316.html\n", "Deleting ../data/html/20042005/317.html\n", "Deleting ../data/html/20042005/318.html\n", "Deleting ../data/html/20042005/319.html\n", "Deleting ../data/html/20042005/32.html\n", "Deleting ../data/html/20042005/320.html\n", "Deleting ../data/html/20042005/321.html\n", "Deleting ../data/html/20042005/322.html\n", "Deleting ../data/html/20042005/323.html\n", "Deleting ../data/html/20042005/324.html\n", "Deleting ../data/html/20042005/325.html\n", "Deleting ../data/html/20042005/326.html\n", "Deleting ../data/html/20042005/327.html\n", "Deleting ../data/html/20042005/328.html\n", "Deleting ../data/html/20042005/329.html\n", "Deleting ../data/html/20042005/33.html\n", "Deleting ../data/html/20042005/330.html\n", "Deleting ../data/html/20042005/331.html\n", "Deleting ../data/html/20042005/332.html\n", "Deleting ../data/html/20042005/333.html\n", "Deleting ../data/html/20042005/334.html\n", "Deleting ../data/html/20042005/335.html\n", "Deleting ../data/html/20042005/336.html\n", "Deleting ../data/html/20042005/337.html\n", "Deleting ../data/html/20042005/338.html\n", "Deleting ../data/html/20042005/339.html\n", "Deleting ../data/html/20042005/34.html\n", "Deleting ../data/html/20042005/340.html\n", "Deleting ../data/html/20042005/341.html\n", "Deleting ../data/html/20042005/342.html\n", "Deleting ../data/html/20042005/343.html\n", "Deleting ../data/html/20042005/344.html\n", "Deleting ../data/html/20042005/345.html\n", "Deleting ../data/html/20042005/346.html\n", "Deleting ../data/html/20042005/347.html\n", "Deleting ../data/html/20042005/348.html\n", "Deleting ../data/html/20042005/349.html\n", "Deleting ../data/html/20042005/35.html\n", "Deleting ../data/html/20042005/350.html\n", "Deleting ../data/html/20042005/351.html\n", "Deleting ../data/html/20042005/352.html\n", "Deleting ../data/html/20042005/353.html\n", "Deleting ../data/html/20042005/354.html\n", "Deleting ../data/html/20042005/355.html\n", "Deleting ../data/html/20042005/356.html\n", "Deleting ../data/html/20042005/357.html\n", "Deleting ../data/html/20042005/358.html\n", "Deleting ../data/html/20042005/359.html\n", "Deleting ../data/html/20042005/36.html\n", "Deleting ../data/html/20042005/360.html\n", "Deleting ../data/html/20042005/361.html\n", "Deleting ../data/html/20042005/362.html\n", "Deleting ../data/html/20042005/363.html\n", "Deleting ../data/html/20042005/364.html\n", "Deleting ../data/html/20042005/365.html\n", "Deleting ../data/html/20042005/366.html\n", "Deleting ../data/html/20042005/367.html\n", "Deleting ../data/html/20042005/368.html\n", "Deleting ../data/html/20042005/369.html\n", "Deleting ../data/html/20042005/37.html\n", "Deleting ../data/html/20042005/370.html\n", "Deleting ../data/html/20042005/371.html\n", "Deleting ../data/html/20042005/372.html\n", "Deleting ../data/html/20042005/373.html\n", "Deleting ../data/html/20042005/374.html\n", "Deleting ../data/html/20042005/375.html\n", "Deleting ../data/html/20042005/376.html\n", "Deleting ../data/html/20042005/377.html\n", "Deleting ../data/html/20042005/378.html\n", "Deleting ../data/html/20042005/379.html\n", "Deleting ../data/html/20042005/38.html\n", "Deleting ../data/html/20042005/380.html\n", "Deleting ../data/html/20042005/381.html\n", "Deleting ../data/html/20042005/382.html\n", "Deleting ../data/html/20042005/383.html\n", "Deleting ../data/html/20042005/384.html\n", "Deleting ../data/html/20042005/385.html\n", "Deleting ../data/html/20042005/386.html\n", "Deleting ../data/html/20042005/387.html\n", "Deleting ../data/html/20042005/388.html\n", "Deleting ../data/html/20042005/389.html\n", "Deleting ../data/html/20042005/39.html\n", "Deleting ../data/html/20042005/390.html\n", "Deleting ../data/html/20042005/391.html\n", "Deleting ../data/html/20042005/392.html\n", "Deleting ../data/html/20042005/393.html\n", "Deleting ../data/html/20042005/394.html\n", "Deleting ../data/html/20042005/395.html\n", "Deleting ../data/html/20042005/396.html\n", "Deleting ../data/html/20042005/397.html\n", "Deleting ../data/html/20042005/398.html\n", "Deleting ../data/html/20042005/399.html\n", "Deleting ../data/html/20042005/4.html\n", "Deleting ../data/html/20042005/40.html\n", "Deleting ../data/html/20042005/400.html\n", "Deleting ../data/html/20042005/401.html\n", "Deleting ../data/html/20042005/402.html\n", "Deleting ../data/html/20042005/403.html\n", "Deleting ../data/html/20042005/404.html\n", "Deleting ../data/html/20042005/405.html\n", "Deleting ../data/html/20042005/406.html\n", "Deleting ../data/html/20042005/407.html\n", "Deleting ../data/html/20042005/408.html\n", "Deleting ../data/html/20042005/409.html\n", "Deleting ../data/html/20042005/41.html\n", "Deleting ../data/html/20042005/410.html\n", "Deleting ../data/html/20042005/411.html\n", "Deleting ../data/html/20042005/412.html\n", "Deleting ../data/html/20042005/413.html\n", "Deleting ../data/html/20042005/414.html\n", "Deleting ../data/html/20042005/415.html\n", "Deleting ../data/html/20042005/416.html\n", "Deleting ../data/html/20042005/417.html\n", "Deleting ../data/html/20042005/418.html\n", "Deleting ../data/html/20042005/419.html\n", "Deleting ../data/html/20042005/42.html\n", "Deleting ../data/html/20042005/420.html\n", "Deleting ../data/html/20042005/421.html\n", "Deleting ../data/html/20042005/422.html\n", "Deleting ../data/html/20042005/423.html\n", "Deleting ../data/html/20042005/424.html\n", "Deleting ../data/html/20042005/425.html\n", "Deleting ../data/html/20042005/426.html\n", "Deleting ../data/html/20042005/427.html\n", "Deleting ../data/html/20042005/428.html\n", "Deleting ../data/html/20042005/429.html\n", "Deleting ../data/html/20042005/43.html\n", "Deleting ../data/html/20042005/430.html\n", "Deleting ../data/html/20042005/431.html\n", "Deleting ../data/html/20042005/432.html\n", "Deleting ../data/html/20042005/433.html\n", "Deleting ../data/html/20042005/434.html\n", "Deleting ../data/html/20042005/435.html\n", "Deleting ../data/html/20042005/436.html\n", "Deleting ../data/html/20042005/437.html\n", "Deleting ../data/html/20042005/438.html\n", "Deleting ../data/html/20042005/439.html\n", "Deleting ../data/html/20042005/44.html\n", "Deleting ../data/html/20042005/440.html\n", "Deleting ../data/html/20042005/441.html\n", "Deleting ../data/html/20042005/442.html\n", "Deleting ../data/html/20042005/443.html\n", "Deleting ../data/html/20042005/444.html\n", "Deleting ../data/html/20042005/445.html\n", "Deleting ../data/html/20042005/446.html\n", "Deleting ../data/html/20042005/447.html\n", "Deleting ../data/html/20042005/448.html\n", "Deleting ../data/html/20042005/449.html\n", "Deleting ../data/html/20042005/45.html\n", "Deleting ../data/html/20042005/450.html\n", "Deleting ../data/html/20042005/451.html\n", "Deleting ../data/html/20042005/452.html\n", "Deleting ../data/html/20042005/453.html\n", "Deleting ../data/html/20042005/454.html\n", "Deleting ../data/html/20042005/455.html\n", "Deleting ../data/html/20042005/456.html\n", "Deleting ../data/html/20042005/457.html\n", "Deleting ../data/html/20042005/458.html\n", "Deleting ../data/html/20042005/459.html\n", "Deleting ../data/html/20042005/46.html\n", "Deleting ../data/html/20042005/460.html\n", "Deleting ../data/html/20042005/461.html\n", "Deleting ../data/html/20042005/462.html\n", "Deleting ../data/html/20042005/463.html\n", "Deleting ../data/html/20042005/464.html\n", "Deleting ../data/html/20042005/465.html\n", "Deleting ../data/html/20042005/466.html\n", "Deleting ../data/html/20042005/467.html\n", "Deleting ../data/html/20042005/468.html\n", "Deleting ../data/html/20042005/469.html\n", "Deleting ../data/html/20042005/47.html\n", "Deleting ../data/html/20042005/470.html\n", "Deleting ../data/html/20042005/471.html\n", "Deleting ../data/html/20042005/472.html\n", "Deleting ../data/html/20042005/473.html\n", "Deleting ../data/html/20042005/474.html\n", "Deleting ../data/html/20042005/475.html\n", "Deleting ../data/html/20042005/476.html\n", "Deleting ../data/html/20042005/477.html\n", "Deleting ../data/html/20042005/478.html\n", "Deleting ../data/html/20042005/479.html\n", "Deleting ../data/html/20042005/48.html\n", "Deleting ../data/html/20042005/480.html\n", "Deleting ../data/html/20042005/481.html\n", "Deleting ../data/html/20042005/482.html\n", "Deleting ../data/html/20042005/483.html\n", "Deleting ../data/html/20042005/484.html\n", "Deleting ../data/html/20042005/485.html\n", "Deleting ../data/html/20042005/486.html\n", "Deleting ../data/html/20042005/487.html\n", "Deleting ../data/html/20042005/488.html\n", "Deleting ../data/html/20042005/489.html\n", "Deleting ../data/html/20042005/49.html\n", "Deleting ../data/html/20042005/490.html\n", "Deleting ../data/html/20042005/491.html\n", "Deleting ../data/html/20042005/492.html\n", "Deleting ../data/html/20042005/493.html\n", "Deleting ../data/html/20042005/494.html\n", "Deleting ../data/html/20042005/495.html\n", "Deleting ../data/html/20042005/496.html\n", "Deleting ../data/html/20042005/497.html\n", "Deleting ../data/html/20042005/498.html\n", "Deleting ../data/html/20042005/499.html\n", "Deleting ../data/html/20042005/5.html\n", "Deleting ../data/html/20042005/50.html\n", "Deleting ../data/html/20042005/500.html\n", "Deleting ../data/html/20042005/501.html\n", "Deleting ../data/html/20042005/502.html\n", "Deleting ../data/html/20042005/503.html\n", "Deleting ../data/html/20042005/504.html\n", "Deleting ../data/html/20042005/505.html\n", "Deleting ../data/html/20042005/506.html\n", "Deleting ../data/html/20042005/507.html\n", "Deleting ../data/html/20042005/508.html\n", "Deleting ../data/html/20042005/509.html\n", "Deleting ../data/html/20042005/51.html\n", "Deleting ../data/html/20042005/510.html\n", "Deleting ../data/html/20042005/511.html\n", "Deleting ../data/html/20042005/512.html\n", "Deleting ../data/html/20042005/513.html\n", "Deleting ../data/html/20042005/514.html\n", "Deleting ../data/html/20042005/515.html\n", "Deleting ../data/html/20042005/516.html\n", "Deleting ../data/html/20042005/517.html\n", "Deleting ../data/html/20042005/518.html\n", "Deleting ../data/html/20042005/519.html\n", "Deleting ../data/html/20042005/52.html\n", "Deleting ../data/html/20042005/520.html\n", "Deleting ../data/html/20042005/521.html\n", "Deleting ../data/html/20042005/522.html\n", "Deleting ../data/html/20042005/523.html\n", "Deleting ../data/html/20042005/524.html\n", "Deleting ../data/html/20042005/525.html\n", "Deleting ../data/html/20042005/526.html\n", "Deleting ../data/html/20042005/527.html\n", "Deleting ../data/html/20042005/528.html\n", "Deleting ../data/html/20042005/529.html\n", "Deleting ../data/html/20042005/53.html\n", "Deleting ../data/html/20042005/530.html\n", "Deleting ../data/html/20042005/531.html\n", "Deleting ../data/html/20042005/532.html\n", "Deleting ../data/html/20042005/533.html\n", "Deleting ../data/html/20042005/534.html\n", "Deleting ../data/html/20042005/535.html\n", "Deleting ../data/html/20042005/536.html\n", "Deleting ../data/html/20042005/537.html\n", "Deleting ../data/html/20042005/538.html\n", "Deleting ../data/html/20042005/539.html\n", "Deleting ../data/html/20042005/54.html\n", "Deleting ../data/html/20042005/540.html\n", "Deleting ../data/html/20042005/541.html\n", "Deleting ../data/html/20042005/542.html\n", "Deleting ../data/html/20042005/543.html\n", "Deleting ../data/html/20042005/544.html\n", "Deleting ../data/html/20042005/545.html\n", "Deleting ../data/html/20042005/546.html\n", "Deleting ../data/html/20042005/547.html\n", "Deleting ../data/html/20042005/548.html\n", "Deleting ../data/html/20042005/549.html\n", "Deleting ../data/html/20042005/55.html\n", "Deleting ../data/html/20042005/550.html\n", "Deleting ../data/html/20042005/551.html\n", "Deleting ../data/html/20042005/552.html\n", "Deleting ../data/html/20042005/553.html\n", "Deleting ../data/html/20042005/554.html\n", "Deleting ../data/html/20042005/555.html\n", "Deleting ../data/html/20042005/556.html\n", "Deleting ../data/html/20042005/557.html\n", "Deleting ../data/html/20042005/558.html\n", "Deleting ../data/html/20042005/559.html\n", "Deleting ../data/html/20042005/56.html\n", "Deleting ../data/html/20042005/560.html\n", "Deleting ../data/html/20042005/561.html\n", "Deleting ../data/html/20042005/562.html\n", "Deleting ../data/html/20042005/563.html\n", "Deleting ../data/html/20042005/564.html\n", "Deleting ../data/html/20042005/565.html\n", "Deleting ../data/html/20042005/566.html\n", "Deleting ../data/html/20042005/567.html\n", "Deleting ../data/html/20042005/568.html\n", "Deleting ../data/html/20042005/569.html\n", "Deleting ../data/html/20042005/57.html\n", "Deleting ../data/html/20042005/570.html\n", "Deleting ../data/html/20042005/571.html\n", "Deleting ../data/html/20042005/572.html\n", "Deleting ../data/html/20042005/573.html\n", "Deleting ../data/html/20042005/574.html\n", "Deleting ../data/html/20042005/575.html\n", "Deleting ../data/html/20042005/576.html\n", "Deleting ../data/html/20042005/577.html\n", "Deleting ../data/html/20042005/578.html\n", "Deleting ../data/html/20042005/579.html\n", "Deleting ../data/html/20042005/58.html\n", "Deleting ../data/html/20042005/580.html\n", "Deleting ../data/html/20042005/581.html\n", "Deleting ../data/html/20042005/582.html\n", "Deleting ../data/html/20042005/583.html\n", "Deleting ../data/html/20042005/584.html\n", "Deleting ../data/html/20042005/585.html\n", "Deleting ../data/html/20042005/586.html\n", "Deleting ../data/html/20042005/587.html\n", "Deleting ../data/html/20042005/588.html\n", "Deleting ../data/html/20042005/589.html\n", "Deleting ../data/html/20042005/59.html\n", "Deleting ../data/html/20042005/590.html\n", "Deleting ../data/html/20042005/591.html\n", "Deleting ../data/html/20042005/592.html\n", "Deleting ../data/html/20042005/593.html\n", "Deleting ../data/html/20042005/594.html\n", "Deleting ../data/html/20042005/595.html\n", "Deleting ../data/html/20042005/596.html\n", "Deleting ../data/html/20042005/597.html\n", "Deleting ../data/html/20042005/598.html\n", "Deleting ../data/html/20042005/599.html\n", "Deleting ../data/html/20042005/6.html\n", "Deleting ../data/html/20042005/60.html\n", "Deleting ../data/html/20042005/600.html\n", "Deleting ../data/html/20042005/601.html\n", "Deleting ../data/html/20042005/602.html\n", "Deleting ../data/html/20042005/603.html\n", "Deleting ../data/html/20042005/604.html\n", "Deleting ../data/html/20042005/605.html\n", "Deleting ../data/html/20042005/606.html\n", "Deleting ../data/html/20042005/607.html\n", "Deleting ../data/html/20042005/608.html\n", "Deleting ../data/html/20042005/609.html\n", "Deleting ../data/html/20042005/61.html\n", "Deleting ../data/html/20042005/610.html\n", "Deleting ../data/html/20042005/611.html\n", "Deleting ../data/html/20042005/612.html\n", "Deleting ../data/html/20042005/613.html\n", "Deleting ../data/html/20042005/614.html\n", "Deleting ../data/html/20042005/615.html\n", "Deleting ../data/html/20042005/616.html\n", "Deleting ../data/html/20042005/617.html\n", "Deleting ../data/html/20042005/618.html\n", "Deleting ../data/html/20042005/619.html\n", "Deleting ../data/html/20042005/62.html\n", "Deleting ../data/html/20042005/620.html\n", "Deleting ../data/html/20042005/621.html\n", "Deleting ../data/html/20042005/622.html\n", "Deleting ../data/html/20042005/623.html\n", "Deleting ../data/html/20042005/624.html\n", "Deleting ../data/html/20042005/625.html\n", "Deleting ../data/html/20042005/626.html\n", "Deleting ../data/html/20042005/627.html\n", "Deleting ../data/html/20042005/628.html\n", "Deleting ../data/html/20042005/629.html\n", "Deleting ../data/html/20042005/63.html\n", "Deleting ../data/html/20042005/630.html\n", "Deleting ../data/html/20042005/631.html\n", "Deleting ../data/html/20042005/632.html\n", "Deleting ../data/html/20042005/633.html\n", "Deleting ../data/html/20042005/634.html\n", "Deleting ../data/html/20042005/635.html\n", "Deleting ../data/html/20042005/636.html\n", "Deleting ../data/html/20042005/637.html\n", "Deleting ../data/html/20042005/638.html\n", "Deleting ../data/html/20042005/639.html\n", "Deleting ../data/html/20042005/64.html\n", "Deleting ../data/html/20042005/640.html\n", "Deleting ../data/html/20042005/641.html\n", "Deleting ../data/html/20042005/642.html\n", "Deleting ../data/html/20042005/643.html\n", "Deleting ../data/html/20042005/644.html\n", "Deleting ../data/html/20042005/645.html\n", "Deleting ../data/html/20042005/646.html\n", "Deleting ../data/html/20042005/647.html\n", "Deleting ../data/html/20042005/648.html\n", "Deleting ../data/html/20042005/649.html\n", "Deleting ../data/html/20042005/65.html\n", "Deleting ../data/html/20042005/650.html\n", "Deleting ../data/html/20042005/651.html\n", "Deleting ../data/html/20042005/652.html\n", "Deleting ../data/html/20042005/653.html\n", "Deleting ../data/html/20042005/654.html\n", "Deleting ../data/html/20042005/655.html\n", "Deleting ../data/html/20042005/656.html\n", "Deleting ../data/html/20042005/657.html\n", "Deleting ../data/html/20042005/658.html\n", "Deleting ../data/html/20042005/659.html\n", "Deleting ../data/html/20042005/66.html\n", "Deleting ../data/html/20042005/660.html\n", "Deleting ../data/html/20042005/661.html\n", "Deleting ../data/html/20042005/662.html\n", "Deleting ../data/html/20042005/663.html\n", "Deleting ../data/html/20042005/664.html\n", "Deleting ../data/html/20042005/665.html\n", "Deleting ../data/html/20042005/666.html\n", "Deleting ../data/html/20042005/667.html\n", "Deleting ../data/html/20042005/668.html\n", "Deleting ../data/html/20042005/669.html\n", "Deleting ../data/html/20042005/67.html\n", "Deleting ../data/html/20042005/670.html\n", "Deleting ../data/html/20042005/671.html\n", "Deleting ../data/html/20042005/672.html\n", "Deleting ../data/html/20042005/673.html\n", "Deleting ../data/html/20042005/674.html\n", "Deleting ../data/html/20042005/675.html\n", "Deleting ../data/html/20042005/676.html\n", "Deleting ../data/html/20042005/677.html\n", "Deleting ../data/html/20042005/678.html\n", "Deleting ../data/html/20042005/679.html\n", "Deleting ../data/html/20042005/68.html\n", "Deleting ../data/html/20042005/680.html\n", "Deleting ../data/html/20042005/681.html\n", "Deleting ../data/html/20042005/682.html\n", "Deleting ../data/html/20042005/683.html\n", "Deleting ../data/html/20042005/684.html\n", "Deleting ../data/html/20042005/685.html\n", "Deleting ../data/html/20042005/686.html\n", "Deleting ../data/html/20042005/687.html\n", "Deleting ../data/html/20042005/688.html\n", "Deleting ../data/html/20042005/689.html\n", "Deleting ../data/html/20042005/69.html\n", "Deleting ../data/html/20042005/690.html\n", "Deleting ../data/html/20042005/691.html\n", "Deleting ../data/html/20042005/692.html\n", "Deleting ../data/html/20042005/693.html\n", "Deleting ../data/html/20042005/694.html\n", "Deleting ../data/html/20042005/695.html\n", "Deleting ../data/html/20042005/696.html\n", "Deleting ../data/html/20042005/697.html\n", "Deleting ../data/html/20042005/698.html\n", "Deleting ../data/html/20042005/699.html\n", "Deleting ../data/html/20042005/7.html\n", "Deleting ../data/html/20042005/70.html\n", "Deleting ../data/html/20042005/700.html\n", "Deleting ../data/html/20042005/701.html\n", "Deleting ../data/html/20042005/702.html\n", "Deleting ../data/html/20042005/703.html\n", "Deleting ../data/html/20042005/704.html\n", "Deleting ../data/html/20042005/705.html\n", "Deleting ../data/html/20042005/706.html\n", "Deleting ../data/html/20042005/707.html\n", "Deleting ../data/html/20042005/708.html\n", "Deleting ../data/html/20042005/709.html\n", "Deleting ../data/html/20042005/71.html\n", "Deleting ../data/html/20042005/710.html\n", "Deleting ../data/html/20042005/711.html\n", "Deleting ../data/html/20042005/712.html\n", "Deleting ../data/html/20042005/713.html\n", "Deleting ../data/html/20042005/714.html\n", "Deleting ../data/html/20042005/715.html\n", "Deleting ../data/html/20042005/716.html\n", "Deleting ../data/html/20042005/717.html\n", "Deleting ../data/html/20042005/718.html\n", "Deleting ../data/html/20042005/719.html\n", "Deleting ../data/html/20042005/72.html\n", "Deleting ../data/html/20042005/720.html\n", "Deleting ../data/html/20042005/721.html\n", "Deleting ../data/html/20042005/722.html\n", "Deleting ../data/html/20042005/723.html\n", "Deleting ../data/html/20042005/724.html\n", "Deleting ../data/html/20042005/725.html\n", "Deleting ../data/html/20042005/726.html\n", "Deleting ../data/html/20042005/727.html\n", "Deleting ../data/html/20042005/728.html\n", "Deleting ../data/html/20042005/729.html\n", "Deleting ../data/html/20042005/73.html\n", "Deleting ../data/html/20042005/730.html\n", "Deleting ../data/html/20042005/731.html\n", "Deleting ../data/html/20042005/732.html\n", "Deleting ../data/html/20042005/733.html\n", "Deleting ../data/html/20042005/734.html\n", "Deleting ../data/html/20042005/735.html\n", "Deleting ../data/html/20042005/736.html\n", "Deleting ../data/html/20042005/737.html\n", "Deleting ../data/html/20042005/738.html\n", "Deleting ../data/html/20042005/739.html\n", "Deleting ../data/html/20042005/74.html\n", "Deleting ../data/html/20042005/740.html\n", "Deleting ../data/html/20042005/741.html\n", "Deleting ../data/html/20042005/742.html\n", "Deleting ../data/html/20042005/743.html\n", "Deleting ../data/html/20042005/744.html\n", "Deleting ../data/html/20042005/745.html\n", "Deleting ../data/html/20042005/746.html\n", "Deleting ../data/html/20042005/747.html\n", "Deleting ../data/html/20042005/748.html\n", "Deleting ../data/html/20042005/749.html\n", "Deleting ../data/html/20042005/75.html\n", "Deleting ../data/html/20042005/750.html\n", "Deleting ../data/html/20042005/751.html\n", "Deleting ../data/html/20042005/752.html\n", "Deleting ../data/html/20042005/753.html\n", "Deleting ../data/html/20042005/754.html\n", "Deleting ../data/html/20042005/755.html\n", "Deleting ../data/html/20042005/756.html\n", "Deleting ../data/html/20042005/757.html\n", "Deleting ../data/html/20042005/758.html\n", "Deleting ../data/html/20042005/759.html\n", "Deleting ../data/html/20042005/76.html\n", "Deleting ../data/html/20042005/760.html\n", "Deleting ../data/html/20042005/761.html\n", "Deleting ../data/html/20042005/762.html\n", "Deleting ../data/html/20042005/763.html\n", "Deleting ../data/html/20042005/764.html\n", "Deleting ../data/html/20042005/765.html\n", "Deleting ../data/html/20042005/766.html\n", "Deleting ../data/html/20042005/767.html\n", "Deleting ../data/html/20042005/768.html\n", "Deleting ../data/html/20042005/769.html\n", "Deleting ../data/html/20042005/77.html\n", "Deleting ../data/html/20042005/770.html\n", "Deleting ../data/html/20042005/771.html\n", "Deleting ../data/html/20042005/772.html\n", "Deleting ../data/html/20042005/773.html\n", "Deleting ../data/html/20042005/774.html\n", "Deleting ../data/html/20042005/775.html\n", "Deleting ../data/html/20042005/776.html\n", "Deleting ../data/html/20042005/777.html\n", "Deleting ../data/html/20042005/778.html\n", "Deleting ../data/html/20042005/779.html\n", "Deleting ../data/html/20042005/78.html\n", "Deleting ../data/html/20042005/780.html\n", "Deleting ../data/html/20042005/781.html\n", "Deleting ../data/html/20042005/782.html\n", "Deleting ../data/html/20042005/783.html\n", "Deleting ../data/html/20042005/784.html\n", "Deleting ../data/html/20042005/785.html\n", "Deleting ../data/html/20042005/786.html\n", "Deleting ../data/html/20042005/787.html\n", "Deleting ../data/html/20042005/788.html\n", "Deleting ../data/html/20042005/789.html\n", "Deleting ../data/html/20042005/79.html\n", "Deleting ../data/html/20042005/790.html\n", "Deleting ../data/html/20042005/791.html\n", "Deleting ../data/html/20042005/792.html\n", "Deleting ../data/html/20042005/793.html\n", "Deleting ../data/html/20042005/794.html\n", "Deleting ../data/html/20042005/795.html\n", "Deleting ../data/html/20042005/796.html\n", "Deleting ../data/html/20042005/797.html\n", "Deleting ../data/html/20042005/798.html\n", "Deleting ../data/html/20042005/799.html\n", "Deleting ../data/html/20042005/8.html\n", "Deleting ../data/html/20042005/80.html\n", "Deleting ../data/html/20042005/800.html\n", "Deleting ../data/html/20042005/801.html\n", "Deleting ../data/html/20042005/802.html\n", "Deleting ../data/html/20042005/803.html\n", "Deleting ../data/html/20042005/804.html\n", "Deleting ../data/html/20042005/805.html\n", "Deleting ../data/html/20042005/806.html\n", "Deleting ../data/html/20042005/807.html\n", "Deleting ../data/html/20042005/808.html\n", "Deleting ../data/html/20042005/809.html\n", "Deleting ../data/html/20042005/81.html\n", "Deleting ../data/html/20042005/810.html\n", "Deleting ../data/html/20042005/811.html\n", "Deleting ../data/html/20042005/812.html\n", "Deleting ../data/html/20042005/813.html\n", "Deleting ../data/html/20042005/814.html\n", "Deleting ../data/html/20042005/815.html\n", "Deleting ../data/html/20042005/816.html\n", "Deleting ../data/html/20042005/817.html\n", "Deleting ../data/html/20042005/818.html\n", "Deleting ../data/html/20042005/819.html\n", "Deleting ../data/html/20042005/82.html\n", "Deleting ../data/html/20042005/820.html\n", "Deleting ../data/html/20042005/821.html\n", "Deleting ../data/html/20042005/822.html\n", "Deleting ../data/html/20042005/823.html\n", "Deleting ../data/html/20042005/824.html\n", "Deleting ../data/html/20042005/825.html\n", "Deleting ../data/html/20042005/826.html\n", "Deleting ../data/html/20042005/827.html\n", "Deleting ../data/html/20042005/828.html\n", "Deleting ../data/html/20042005/829.html\n", "Deleting ../data/html/20042005/83.html\n", "Deleting ../data/html/20042005/830.html\n", "Deleting ../data/html/20042005/831.html\n", "Deleting ../data/html/20042005/832.html\n", "Deleting ../data/html/20042005/833.html\n", "Deleting ../data/html/20042005/834.html\n", "Deleting ../data/html/20042005/835.html\n", "Deleting ../data/html/20042005/836.html\n", "Deleting ../data/html/20042005/837.html\n", "Deleting ../data/html/20042005/838.html\n", "Deleting ../data/html/20042005/839.html\n", "Deleting ../data/html/20042005/84.html\n", "Deleting ../data/html/20042005/840.html\n", "Deleting ../data/html/20042005/841.html\n", "Deleting ../data/html/20042005/842.html\n", "Deleting ../data/html/20042005/843.html\n", "Deleting ../data/html/20042005/844.html\n", "Deleting ../data/html/20042005/845.html\n", "Deleting ../data/html/20042005/846.html\n", "Deleting ../data/html/20042005/847.html\n", "Deleting ../data/html/20042005/848.html\n", "Deleting ../data/html/20042005/849.html\n", "Deleting ../data/html/20042005/85.html\n", "Deleting ../data/html/20042005/850.html\n", "Deleting ../data/html/20042005/851.html\n", "Deleting ../data/html/20042005/852.html\n", "Deleting ../data/html/20042005/853.html\n", "Deleting ../data/html/20042005/854.html\n", "Deleting ../data/html/20042005/855.html\n", "Deleting ../data/html/20042005/856.html\n", "Deleting ../data/html/20042005/857.html\n", "Deleting ../data/html/20042005/858.html\n", "Deleting ../data/html/20042005/859.html\n", "Deleting ../data/html/20042005/86.html\n", "Deleting ../data/html/20042005/860.html\n", "Deleting ../data/html/20042005/861.html\n", "Deleting ../data/html/20042005/862.html\n", "Deleting ../data/html/20042005/863.html\n", "Deleting ../data/html/20042005/864.html\n", "Deleting ../data/html/20042005/865.html\n", "Deleting ../data/html/20042005/866.html\n", "Deleting ../data/html/20042005/867.html\n", "Deleting ../data/html/20042005/868.html\n", "Deleting ../data/html/20042005/869.html\n", "Deleting ../data/html/20042005/87.html\n", "Deleting ../data/html/20042005/870.html\n", "Deleting ../data/html/20042005/871.html\n", "Deleting ../data/html/20042005/872.html\n", "Deleting ../data/html/20042005/873.html\n", "Deleting ../data/html/20042005/874.html\n", "Deleting ../data/html/20042005/875.html\n", "Deleting ../data/html/20042005/876.html\n", "Deleting ../data/html/20042005/877.html\n", "Deleting ../data/html/20042005/878.html\n", "Deleting ../data/html/20042005/879.html\n", "Deleting ../data/html/20042005/88.html\n", "Deleting ../data/html/20042005/880.html\n", "Deleting ../data/html/20042005/881.html\n", "Deleting ../data/html/20042005/882.html\n", "Deleting ../data/html/20042005/883.html\n", "Deleting ../data/html/20042005/884.html\n", "Deleting ../data/html/20042005/885.html\n", "Deleting ../data/html/20042005/886.html\n", "Deleting ../data/html/20042005/887.html\n", "Deleting ../data/html/20042005/888.html\n", "Deleting ../data/html/20042005/889.html\n", "Deleting ../data/html/20042005/89.html\n", "Deleting ../data/html/20042005/890.html\n", "Deleting ../data/html/20042005/891.html\n", "Deleting ../data/html/20042005/892.html\n", "Deleting ../data/html/20042005/893.html\n", "Deleting ../data/html/20042005/894.html\n", "Deleting ../data/html/20042005/895.html\n", "Deleting ../data/html/20042005/896.html\n", "Deleting ../data/html/20042005/897.html\n", "Deleting ../data/html/20042005/898.html\n", "Deleting ../data/html/20042005/899.html\n", "Deleting ../data/html/20042005/9.html\n", "Deleting ../data/html/20042005/90.html\n", "Deleting ../data/html/20042005/900.html\n", "Deleting ../data/html/20042005/901.html\n", "Deleting ../data/html/20042005/902.html\n", "Deleting ../data/html/20042005/903.html\n", "Deleting ../data/html/20042005/904.html\n", "Deleting ../data/html/20042005/905.html\n", "Deleting ../data/html/20042005/906.html\n", "Deleting ../data/html/20042005/907.html\n", "Deleting ../data/html/20042005/908.html\n", "Deleting ../data/html/20042005/909.html\n", "Deleting ../data/html/20042005/91.html\n", "Deleting ../data/html/20042005/910.html\n", "Deleting ../data/html/20042005/911.html\n", "Deleting ../data/html/20042005/912.html\n", "Deleting ../data/html/20042005/913.html\n", "Deleting ../data/html/20042005/914.html\n", "Deleting ../data/html/20042005/915.html\n", "Deleting ../data/html/20042005/916.html\n", "Deleting ../data/html/20042005/917.html\n", "Deleting ../data/html/20042005/918.html\n", "Deleting ../data/html/20042005/919.html\n", "Deleting ../data/html/20042005/92.html\n", "Deleting ../data/html/20042005/920.html\n", "Deleting ../data/html/20042005/921.html\n", "Deleting ../data/html/20042005/922.html\n", "Deleting ../data/html/20042005/923.html\n", "Deleting ../data/html/20042005/924.html\n", "Deleting ../data/html/20042005/925.html\n", "Deleting ../data/html/20042005/926.html\n", "Deleting ../data/html/20042005/927.html\n", "Deleting ../data/html/20042005/928.html\n", "Deleting ../data/html/20042005/929.html\n", "Deleting ../data/html/20042005/93.html\n", "Deleting ../data/html/20042005/930.html\n", "Deleting ../data/html/20042005/931.html\n", "Deleting ../data/html/20042005/932.html\n", "Deleting ../data/html/20042005/933.html\n", "Deleting ../data/html/20042005/934.html\n", "Deleting ../data/html/20042005/935.html\n", "Deleting ../data/html/20042005/936.html\n", "Deleting ../data/html/20042005/937.html\n", "Deleting ../data/html/20042005/938.html\n", "Deleting ../data/html/20042005/939.html\n", "Deleting ../data/html/20042005/94.html\n", "Deleting ../data/html/20042005/940.html\n", "Deleting ../data/html/20042005/941.html\n", "Deleting ../data/html/20042005/942.html\n", "Deleting ../data/html/20042005/943.html\n", "Deleting ../data/html/20042005/944.html\n", "Deleting ../data/html/20042005/945.html\n", "Deleting ../data/html/20042005/946.html\n", "Deleting ../data/html/20042005/947.html\n", "Deleting ../data/html/20042005/948.html\n", "Deleting ../data/html/20042005/949.html\n", "Deleting ../data/html/20042005/95.html\n", "Deleting ../data/html/20042005/950.html\n", "Deleting ../data/html/20042005/951.html\n", "Deleting ../data/html/20042005/952.html\n", "Deleting ../data/html/20042005/953.html\n", "Deleting ../data/html/20042005/954.html\n", "Deleting ../data/html/20042005/955.html\n", "Deleting ../data/html/20042005/956.html\n", "Deleting ../data/html/20042005/957.html\n", "Deleting ../data/html/20042005/958.html\n", "Deleting ../data/html/20042005/959.html\n", "Deleting ../data/html/20042005/96.html\n", "Deleting ../data/html/20042005/960.html\n", "Deleting ../data/html/20042005/961.html\n", "Deleting ../data/html/20042005/962.html\n", "Deleting ../data/html/20042005/963.html\n", "Deleting ../data/html/20042005/964.html\n", "Deleting ../data/html/20042005/965.html\n", "Deleting ../data/html/20042005/966.html\n", "Deleting ../data/html/20042005/967.html\n", "Deleting ../data/html/20042005/968.html\n", "Deleting ../data/html/20042005/969.html\n", "Deleting ../data/html/20042005/97.html\n", "Deleting ../data/html/20042005/970.html\n", "Deleting ../data/html/20042005/971.html\n", "Deleting ../data/html/20042005/972.html\n", "Deleting ../data/html/20042005/973.html\n", "Deleting ../data/html/20042005/974.html\n", "Deleting ../data/html/20042005/975.html\n", "Deleting ../data/html/20042005/976.html\n", "Deleting ../data/html/20042005/977.html\n", "Deleting ../data/html/20042005/978.html\n", "Deleting ../data/html/20042005/979.html\n", "Deleting ../data/html/20042005/98.html\n", "Deleting ../data/html/20042005/980.html\n", "Deleting ../data/html/20042005/981.html\n", "Deleting ../data/html/20042005/982.html\n", "Deleting ../data/html/20042005/983.html\n", "Deleting ../data/html/20042005/984.html\n", "Deleting ../data/html/20042005/985.html\n", "Deleting ../data/html/20042005/986.html\n", "Deleting ../data/html/20042005/987.html\n", "Deleting ../data/html/20042005/988.html\n", "Deleting ../data/html/20042005/989.html\n", "Deleting ../data/html/20042005/99.html\n", "Deleting ../data/html/20042005/990.html\n", "Deleting ../data/html/20042005/991.html\n", "Deleting ../data/html/20042005/992.html\n", "Deleting ../data/html/20042005/993.html\n", "Deleting ../data/html/20042005/994.html\n", "Deleting ../data/html/20042005/995.html\n", "Deleting ../data/html/20042005/996.html\n", "Deleting ../data/html/20042005/997.html\n", "Deleting ../data/html/20042005/998.html\n", "Deleting ../data/html/20042005/999.html\n", "Found 2999 files\n", "Deleting ../data/html/20052006/1231.html\n", "Deleting ../data/html/20052006/1232.html\n", "Deleting ../data/html/20052006/1233.html\n", "Deleting ../data/html/20052006/1234.html\n", "Deleting ../data/html/20052006/1235.html\n", "Deleting ../data/html/20052006/1236.html\n", "Deleting ../data/html/20052006/1237.html\n", "Deleting ../data/html/20052006/1238.html\n", "Deleting ../data/html/20052006/1239.html\n", "Deleting ../data/html/20052006/1240.html\n", "Deleting ../data/html/20052006/1241.html\n", "Deleting ../data/html/20052006/1242.html\n", "Deleting ../data/html/20052006/1243.html\n", "Deleting ../data/html/20052006/1244.html\n", "Deleting ../data/html/20052006/1245.html\n", "Deleting ../data/html/20052006/1246.html\n", "Deleting ../data/html/20052006/1247.html\n", "Deleting ../data/html/20052006/1248.html\n", "Deleting ../data/html/20052006/1249.html\n", "Deleting ../data/html/20052006/1250.html\n", "Deleting ../data/html/20052006/1251.html\n", "Deleting ../data/html/20052006/1252.html\n", "Deleting ../data/html/20052006/1253.html\n", "Deleting ../data/html/20052006/1254.html\n", "Deleting ../data/html/20052006/1255.html\n", "Deleting ../data/html/20052006/1256.html\n", "Deleting ../data/html/20052006/1257.html\n", "Deleting ../data/html/20052006/1258.html\n", "Deleting ../data/html/20052006/1259.html\n", "Deleting ../data/html/20052006/1260.html\n", "Deleting ../data/html/20052006/1261.html\n", "Deleting ../data/html/20052006/1262.html\n", "Deleting ../data/html/20052006/1263.html\n", "Deleting ../data/html/20052006/1264.html\n", "Deleting ../data/html/20052006/1265.html\n", "Deleting ../data/html/20052006/1266.html\n", "Deleting ../data/html/20052006/1267.html\n", "Deleting ../data/html/20052006/1268.html\n", "Deleting ../data/html/20052006/1269.html\n", "Deleting ../data/html/20052006/127.html\n", "Deleting ../data/html/20052006/1270.html\n", "Deleting ../data/html/20052006/1271.html\n", "Deleting ../data/html/20052006/1272.html\n", "Deleting ../data/html/20052006/1273.html\n", "Deleting ../data/html/20052006/1274.html\n", "Deleting ../data/html/20052006/1275.html\n", "Deleting ../data/html/20052006/1276.html\n", "Deleting ../data/html/20052006/1277.html\n", "Deleting ../data/html/20052006/1278.html\n", "Deleting ../data/html/20052006/1279.html\n", "Deleting ../data/html/20052006/1280.html\n", "Deleting ../data/html/20052006/1281.html\n", "Deleting ../data/html/20052006/1282.html\n", "Deleting ../data/html/20052006/1283.html\n", "Deleting ../data/html/20052006/1284.html\n", "Deleting ../data/html/20052006/1285.html\n", "Deleting ../data/html/20052006/1286.html\n", "Deleting ../data/html/20052006/1287.html\n", "Deleting ../data/html/20052006/1288.html\n", "Deleting ../data/html/20052006/1289.html\n", "Deleting ../data/html/20052006/1290.html\n", "Deleting ../data/html/20052006/1291.html\n", "Deleting ../data/html/20052006/1292.html\n", "Deleting ../data/html/20052006/1293.html\n", "Deleting ../data/html/20052006/1294.html\n", "Deleting ../data/html/20052006/1295.html\n", "Deleting ../data/html/20052006/1296.html\n", "Deleting ../data/html/20052006/1297.html\n", "Deleting ../data/html/20052006/1298.html\n", "Deleting ../data/html/20052006/1299.html\n", "Deleting ../data/html/20052006/1300.html\n", "Deleting ../data/html/20052006/1301.html\n", "Deleting ../data/html/20052006/1302.html\n", "Deleting ../data/html/20052006/1303.html\n", "Deleting ../data/html/20052006/1304.html\n", "Deleting ../data/html/20052006/1305.html\n", "Deleting ../data/html/20052006/1306.html\n", "Deleting ../data/html/20052006/1307.html\n", "Deleting ../data/html/20052006/1308.html\n", "Deleting ../data/html/20052006/1309.html\n", "Deleting ../data/html/20052006/1310.html\n", "Deleting ../data/html/20052006/1311.html\n", "Deleting ../data/html/20052006/1312.html\n", "Deleting ../data/html/20052006/1313.html\n", "Deleting ../data/html/20052006/1314.html\n", "Deleting ../data/html/20052006/1315.html\n", "Deleting ../data/html/20052006/1316.html\n", "Deleting ../data/html/20052006/1317.html\n", "Deleting ../data/html/20052006/1318.html\n", "Deleting ../data/html/20052006/1319.html\n", "Deleting ../data/html/20052006/1320.html\n", "Deleting ../data/html/20052006/1321.html\n", "Deleting ../data/html/20052006/1322.html\n", "Deleting ../data/html/20052006/1323.html\n", "Deleting ../data/html/20052006/1324.html\n", "Deleting ../data/html/20052006/1325.html\n", "Deleting ../data/html/20052006/1326.html\n", "Deleting ../data/html/20052006/1327.html\n", "Deleting ../data/html/20052006/1328.html\n", "Deleting ../data/html/20052006/1329.html\n", "Deleting ../data/html/20052006/1330.html\n", "Deleting ../data/html/20052006/1331.html\n", "Deleting ../data/html/20052006/1332.html\n", "Deleting ../data/html/20052006/1333.html\n", "Deleting ../data/html/20052006/1334.html\n", "Deleting ../data/html/20052006/1335.html\n", "Deleting ../data/html/20052006/1336.html\n", "Deleting ../data/html/20052006/1337.html\n", "Deleting ../data/html/20052006/1338.html\n", "Deleting ../data/html/20052006/1339.html\n", "Deleting ../data/html/20052006/1340.html\n", "Deleting ../data/html/20052006/1341.html\n", "Deleting ../data/html/20052006/1342.html\n", "Deleting ../data/html/20052006/1343.html\n", "Deleting ../data/html/20052006/1344.html\n", "Deleting ../data/html/20052006/1345.html\n", "Deleting ../data/html/20052006/1346.html\n", "Deleting ../data/html/20052006/1347.html\n", "Deleting ../data/html/20052006/1348.html\n", "Deleting ../data/html/20052006/1349.html\n", "Deleting ../data/html/20052006/1350.html\n", "Deleting ../data/html/20052006/1351.html\n", "Deleting ../data/html/20052006/1352.html\n", "Deleting ../data/html/20052006/1353.html\n", "Deleting ../data/html/20052006/1354.html\n", "Deleting ../data/html/20052006/1355.html\n", "Deleting ../data/html/20052006/1356.html\n", "Deleting ../data/html/20052006/1357.html\n", "Deleting ../data/html/20052006/1358.html\n", "Deleting ../data/html/20052006/1359.html\n", "Deleting ../data/html/20052006/1360.html\n", "Deleting ../data/html/20052006/1361.html\n", "Deleting ../data/html/20052006/1362.html\n", "Deleting ../data/html/20052006/1363.html\n", "Deleting ../data/html/20052006/1364.html\n", "Deleting ../data/html/20052006/1365.html\n", "Deleting ../data/html/20052006/1366.html\n", "Deleting ../data/html/20052006/1367.html\n", "Deleting ../data/html/20052006/1368.html\n", "Deleting ../data/html/20052006/1369.html\n", "Deleting ../data/html/20052006/1370.html\n", "Deleting ../data/html/20052006/1371.html\n", "Deleting ../data/html/20052006/1372.html\n", "Deleting ../data/html/20052006/1373.html\n", "Deleting ../data/html/20052006/1374.html\n", "Deleting ../data/html/20052006/1375.html\n", "Deleting ../data/html/20052006/1376.html\n", "Deleting ../data/html/20052006/1377.html\n", "Deleting ../data/html/20052006/1378.html\n", "Deleting ../data/html/20052006/1379.html\n", "Deleting ../data/html/20052006/1380.html\n", "Deleting ../data/html/20052006/1381.html\n", "Deleting ../data/html/20052006/1382.html\n", "Deleting ../data/html/20052006/1383.html\n", "Deleting ../data/html/20052006/1384.html\n", "Deleting ../data/html/20052006/1385.html\n", "Deleting ../data/html/20052006/1386.html\n", "Deleting ../data/html/20052006/1387.html\n", "Deleting ../data/html/20052006/1388.html\n", "Deleting ../data/html/20052006/1389.html\n", "Deleting ../data/html/20052006/1390.html\n", "Deleting ../data/html/20052006/1391.html\n", "Deleting ../data/html/20052006/1392.html\n", "Deleting ../data/html/20052006/1393.html\n", "Deleting ../data/html/20052006/1394.html\n", "Deleting ../data/html/20052006/1395.html\n", "Deleting ../data/html/20052006/1396.html\n", "Deleting ../data/html/20052006/1397.html\n", "Deleting ../data/html/20052006/1398.html\n", "Deleting ../data/html/20052006/1399.html\n", "Deleting ../data/html/20052006/1400.html\n", "Deleting ../data/html/20052006/1401.html\n", "Deleting ../data/html/20052006/1402.html\n", "Deleting ../data/html/20052006/1403.html\n", "Deleting ../data/html/20052006/1404.html\n", "Deleting ../data/html/20052006/1405.html\n", "Deleting ../data/html/20052006/1406.html\n", "Deleting ../data/html/20052006/1407.html\n", "Deleting ../data/html/20052006/1408.html\n", "Deleting ../data/html/20052006/1409.html\n", "Deleting ../data/html/20052006/1410.html\n", "Deleting ../data/html/20052006/1411.html\n", "Deleting ../data/html/20052006/1412.html\n", "Deleting ../data/html/20052006/1413.html\n", "Deleting ../data/html/20052006/1414.html\n", "Deleting ../data/html/20052006/1415.html\n", "Deleting ../data/html/20052006/1416.html\n", "Deleting ../data/html/20052006/1417.html\n", "Deleting ../data/html/20052006/1418.html\n", "Deleting ../data/html/20052006/1419.html\n", "Deleting ../data/html/20052006/1420.html\n", "Deleting ../data/html/20052006/1421.html\n", "Deleting ../data/html/20052006/1422.html\n", "Deleting ../data/html/20052006/1423.html\n", "Deleting ../data/html/20052006/1424.html\n", "Deleting ../data/html/20052006/1425.html\n", "Deleting ../data/html/20052006/1426.html\n", "Deleting ../data/html/20052006/1427.html\n", "Deleting ../data/html/20052006/1428.html\n", "Deleting ../data/html/20052006/1429.html\n", "Deleting ../data/html/20052006/1430.html\n", "Deleting ../data/html/20052006/1431.html\n", "Deleting ../data/html/20052006/1432.html\n", "Deleting ../data/html/20052006/1433.html\n", "Deleting ../data/html/20052006/1434.html\n", "Deleting ../data/html/20052006/1435.html\n", "Deleting ../data/html/20052006/1436.html\n", "Deleting ../data/html/20052006/1437.html\n", "Deleting ../data/html/20052006/1438.html\n", "Deleting ../data/html/20052006/1439.html\n", "Deleting ../data/html/20052006/1440.html\n", "Deleting ../data/html/20052006/1441.html\n", "Deleting ../data/html/20052006/1442.html\n", "Deleting ../data/html/20052006/1443.html\n", "Deleting ../data/html/20052006/1444.html\n", "Deleting ../data/html/20052006/1445.html\n", "Deleting ../data/html/20052006/1446.html\n", "Deleting ../data/html/20052006/1447.html\n", "Deleting ../data/html/20052006/1448.html\n", "Deleting ../data/html/20052006/1449.html\n", "Deleting ../data/html/20052006/1450.html\n", "Deleting ../data/html/20052006/1451.html\n", "Deleting ../data/html/20052006/1452.html\n", "Deleting ../data/html/20052006/1453.html\n", "Deleting ../data/html/20052006/1454.html\n", "Deleting ../data/html/20052006/1455.html\n", "Deleting ../data/html/20052006/1456.html\n", "Deleting ../data/html/20052006/1457.html\n", "Deleting ../data/html/20052006/1458.html\n", "Deleting ../data/html/20052006/1459.html\n", "Deleting ../data/html/20052006/1460.html\n", "Deleting ../data/html/20052006/1461.html\n", "Deleting ../data/html/20052006/1462.html\n", "Deleting ../data/html/20052006/1463.html\n", "Deleting ../data/html/20052006/1464.html\n", "Deleting ../data/html/20052006/1465.html\n", "Deleting ../data/html/20052006/1466.html\n", "Deleting ../data/html/20052006/1467.html\n", "Deleting ../data/html/20052006/1468.html\n", "Deleting ../data/html/20052006/1469.html\n", "Deleting ../data/html/20052006/1470.html\n", "Deleting ../data/html/20052006/1471.html\n", "Deleting ../data/html/20052006/1472.html\n", "Deleting ../data/html/20052006/1473.html\n", "Deleting ../data/html/20052006/1474.html\n", "Deleting ../data/html/20052006/1475.html\n", "Deleting ../data/html/20052006/1476.html\n", "Deleting ../data/html/20052006/1477.html\n", "Deleting ../data/html/20052006/1478.html\n", "Deleting ../data/html/20052006/1479.html\n", "Deleting ../data/html/20052006/1480.html\n", "Deleting ../data/html/20052006/1481.html\n", "Deleting ../data/html/20052006/1482.html\n", "Deleting ../data/html/20052006/1483.html\n", "Deleting ../data/html/20052006/1484.html\n", "Deleting ../data/html/20052006/1485.html\n", "Deleting ../data/html/20052006/1486.html\n", "Deleting ../data/html/20052006/1487.html\n", "Deleting ../data/html/20052006/1488.html\n", "Deleting ../data/html/20052006/1489.html\n", "Deleting ../data/html/20052006/1490.html\n", "Deleting ../data/html/20052006/1491.html\n", "Deleting ../data/html/20052006/1492.html\n", "Deleting ../data/html/20052006/1493.html\n", "Deleting ../data/html/20052006/1494.html\n", "Deleting ../data/html/20052006/1495.html\n", "Deleting ../data/html/20052006/1496.html\n", "Deleting ../data/html/20052006/1497.html\n", "Deleting ../data/html/20052006/1498.html\n", "Deleting ../data/html/20052006/1499.html\n", "Deleting ../data/html/20052006/1500.html\n", "Deleting ../data/html/20052006/1501.html\n", "Deleting ../data/html/20052006/1502.html\n", "Deleting ../data/html/20052006/1503.html\n", "Deleting ../data/html/20052006/1504.html\n", "Deleting ../data/html/20052006/1505.html\n", "Deleting ../data/html/20052006/1506.html\n", "Deleting ../data/html/20052006/1507.html\n", "Deleting ../data/html/20052006/1508.html\n", "Deleting ../data/html/20052006/1509.html\n", "Deleting ../data/html/20052006/1510.html\n", "Deleting ../data/html/20052006/1511.html\n", "Deleting ../data/html/20052006/1512.html\n", "Deleting ../data/html/20052006/1513.html\n", "Deleting ../data/html/20052006/1514.html\n", "Deleting ../data/html/20052006/1515.html\n", "Deleting ../data/html/20052006/1516.html\n", "Deleting ../data/html/20052006/1517.html\n", "Deleting ../data/html/20052006/1518.html\n", "Deleting ../data/html/20052006/1519.html\n", "Deleting ../data/html/20052006/1520.html\n", "Deleting ../data/html/20052006/1521.html\n", "Deleting ../data/html/20052006/1522.html\n", "Deleting ../data/html/20052006/1523.html\n", "Deleting ../data/html/20052006/1524.html\n", "Deleting ../data/html/20052006/1525.html\n", "Deleting ../data/html/20052006/1526.html\n", "Deleting ../data/html/20052006/1527.html\n", "Deleting ../data/html/20052006/1528.html\n", "Deleting ../data/html/20052006/1529.html\n", "Deleting ../data/html/20052006/1530.html\n", "Deleting ../data/html/20052006/1531.html\n", "Deleting ../data/html/20052006/1532.html\n", "Deleting ../data/html/20052006/1533.html\n", "Deleting ../data/html/20052006/1534.html\n", "Deleting ../data/html/20052006/1535.html\n", "Deleting ../data/html/20052006/1536.html\n", "Deleting ../data/html/20052006/1537.html\n", "Deleting ../data/html/20052006/1538.html\n", "Deleting ../data/html/20052006/1539.html\n", "Deleting ../data/html/20052006/1540.html\n", "Deleting ../data/html/20052006/1541.html\n", "Deleting ../data/html/20052006/1542.html\n", "Deleting ../data/html/20052006/1543.html\n", "Deleting ../data/html/20052006/1544.html\n", "Deleting ../data/html/20052006/1545.html\n", "Deleting ../data/html/20052006/1546.html\n", "Deleting ../data/html/20052006/1547.html\n", "Deleting ../data/html/20052006/1548.html\n", "Deleting ../data/html/20052006/1549.html\n", "Deleting ../data/html/20052006/1550.html\n", "Deleting ../data/html/20052006/1551.html\n", "Deleting ../data/html/20052006/1552.html\n", "Deleting ../data/html/20052006/1553.html\n", "Deleting ../data/html/20052006/1554.html\n", "Deleting ../data/html/20052006/1555.html\n", "Deleting ../data/html/20052006/1556.html\n", "Deleting ../data/html/20052006/1557.html\n", "Deleting ../data/html/20052006/1558.html\n", "Deleting ../data/html/20052006/1559.html\n", "Deleting ../data/html/20052006/1560.html\n", "Deleting ../data/html/20052006/1561.html\n", "Deleting ../data/html/20052006/1562.html\n", "Deleting ../data/html/20052006/1563.html\n", "Deleting ../data/html/20052006/1564.html\n", "Deleting ../data/html/20052006/1565.html\n", "Deleting ../data/html/20052006/1566.html\n", "Deleting ../data/html/20052006/1567.html\n", "Deleting ../data/html/20052006/1568.html\n", "Deleting ../data/html/20052006/1569.html\n", "Deleting ../data/html/20052006/1570.html\n", "Deleting ../data/html/20052006/1571.html\n", "Deleting ../data/html/20052006/1572.html\n", "Deleting ../data/html/20052006/1573.html\n", "Deleting ../data/html/20052006/1574.html\n", "Deleting ../data/html/20052006/1575.html\n", "Deleting ../data/html/20052006/1576.html\n", "Deleting ../data/html/20052006/1577.html\n", "Deleting ../data/html/20052006/1578.html\n", "Deleting ../data/html/20052006/1579.html\n", "Deleting ../data/html/20052006/1580.html\n", "Deleting ../data/html/20052006/1581.html\n", "Deleting ../data/html/20052006/1582.html\n", "Deleting ../data/html/20052006/1583.html\n", "Deleting ../data/html/20052006/1584.html\n", "Deleting ../data/html/20052006/1585.html\n", "Deleting ../data/html/20052006/1586.html\n", "Deleting ../data/html/20052006/1587.html\n", "Deleting ../data/html/20052006/1588.html\n", "Deleting ../data/html/20052006/1589.html\n", "Deleting ../data/html/20052006/1590.html\n", "Deleting ../data/html/20052006/1591.html\n", "Deleting ../data/html/20052006/1592.html\n", "Deleting ../data/html/20052006/1593.html\n", "Deleting ../data/html/20052006/1594.html\n", "Deleting ../data/html/20052006/1595.html\n", "Deleting ../data/html/20052006/1596.html\n", "Deleting ../data/html/20052006/1597.html\n", "Deleting ../data/html/20052006/1598.html\n", "Deleting ../data/html/20052006/1599.html\n", "Deleting ../data/html/20052006/1600.html\n", "Deleting ../data/html/20052006/1601.html\n", "Deleting ../data/html/20052006/1602.html\n", "Deleting ../data/html/20052006/1603.html\n", "Deleting ../data/html/20052006/1604.html\n", "Deleting ../data/html/20052006/1605.html\n", "Deleting ../data/html/20052006/1606.html\n", "Deleting ../data/html/20052006/1607.html\n", "Deleting ../data/html/20052006/1608.html\n", "Deleting ../data/html/20052006/1609.html\n", "Deleting ../data/html/20052006/1610.html\n", "Deleting ../data/html/20052006/1611.html\n", "Deleting ../data/html/20052006/1612.html\n", "Deleting ../data/html/20052006/1613.html\n", "Deleting ../data/html/20052006/1614.html\n", "Deleting ../data/html/20052006/1615.html\n", "Deleting ../data/html/20052006/1616.html\n", "Deleting ../data/html/20052006/1617.html\n", "Deleting ../data/html/20052006/1618.html\n", "Deleting ../data/html/20052006/1619.html\n", "Deleting ../data/html/20052006/1620.html\n", "Deleting ../data/html/20052006/1621.html\n", "Deleting ../data/html/20052006/1622.html\n", "Deleting ../data/html/20052006/1623.html\n", "Deleting ../data/html/20052006/1624.html\n", "Deleting ../data/html/20052006/1625.html\n", "Deleting ../data/html/20052006/1626.html\n", "Deleting ../data/html/20052006/1627.html\n", "Deleting ../data/html/20052006/1628.html\n", "Deleting ../data/html/20052006/1629.html\n", "Deleting ../data/html/20052006/1630.html\n", "Deleting ../data/html/20052006/1631.html\n", "Deleting ../data/html/20052006/1632.html\n", "Deleting ../data/html/20052006/1633.html\n", "Deleting ../data/html/20052006/1634.html\n", "Deleting ../data/html/20052006/1635.html\n", "Deleting ../data/html/20052006/1636.html\n", "Deleting ../data/html/20052006/1637.html\n", "Deleting ../data/html/20052006/1638.html\n", "Deleting ../data/html/20052006/1639.html\n", "Deleting ../data/html/20052006/1640.html\n", "Deleting ../data/html/20052006/1641.html\n", "Deleting ../data/html/20052006/1642.html\n", "Deleting ../data/html/20052006/1643.html\n", "Deleting ../data/html/20052006/1644.html\n", "Deleting ../data/html/20052006/1645.html\n", "Deleting ../data/html/20052006/1646.html\n", "Deleting ../data/html/20052006/1647.html\n", "Deleting ../data/html/20052006/1648.html\n", "Deleting ../data/html/20052006/1649.html\n", "Deleting ../data/html/20052006/1650.html\n", "Deleting ../data/html/20052006/1651.html\n", "Deleting ../data/html/20052006/1652.html\n", "Deleting ../data/html/20052006/1653.html\n", "Deleting ../data/html/20052006/1654.html\n", "Deleting ../data/html/20052006/1655.html\n", "Deleting ../data/html/20052006/1656.html\n", "Deleting ../data/html/20052006/1657.html\n", "Deleting ../data/html/20052006/1658.html\n", "Deleting ../data/html/20052006/1659.html\n", "Deleting ../data/html/20052006/1660.html\n", "Deleting ../data/html/20052006/1661.html\n", "Deleting ../data/html/20052006/1662.html\n", "Deleting ../data/html/20052006/1663.html\n", "Deleting ../data/html/20052006/1664.html\n", "Deleting ../data/html/20052006/1665.html\n", "Deleting ../data/html/20052006/1666.html\n", "Deleting ../data/html/20052006/1667.html\n", "Deleting ../data/html/20052006/1668.html\n", "Deleting ../data/html/20052006/1669.html\n", "Deleting ../data/html/20052006/1670.html\n", "Deleting ../data/html/20052006/1671.html\n", "Deleting ../data/html/20052006/1672.html\n", "Deleting ../data/html/20052006/1673.html\n", "Deleting ../data/html/20052006/1674.html\n", "Deleting ../data/html/20052006/1675.html\n", "Deleting ../data/html/20052006/1676.html\n", "Deleting ../data/html/20052006/1677.html\n", "Deleting ../data/html/20052006/1678.html\n", "Deleting ../data/html/20052006/1679.html\n", "Deleting ../data/html/20052006/1680.html\n", "Deleting ../data/html/20052006/1681.html\n", "Deleting ../data/html/20052006/1682.html\n", "Deleting ../data/html/20052006/1683.html\n", "Deleting ../data/html/20052006/1684.html\n", "Deleting ../data/html/20052006/1685.html\n", "Deleting ../data/html/20052006/1686.html\n", "Deleting ../data/html/20052006/1687.html\n", "Deleting ../data/html/20052006/1688.html\n", "Deleting ../data/html/20052006/1689.html\n", "Deleting ../data/html/20052006/1690.html\n", "Deleting ../data/html/20052006/1691.html\n", "Deleting ../data/html/20052006/1692.html\n", "Deleting ../data/html/20052006/1693.html\n", "Deleting ../data/html/20052006/1694.html\n", "Deleting ../data/html/20052006/1695.html\n", "Deleting ../data/html/20052006/1696.html\n", "Deleting ../data/html/20052006/1697.html\n", "Deleting ../data/html/20052006/1698.html\n", "Deleting ../data/html/20052006/1699.html\n", "Deleting ../data/html/20052006/1700.html\n", "Deleting ../data/html/20052006/1701.html\n", "Deleting ../data/html/20052006/1702.html\n", "Deleting ../data/html/20052006/1703.html\n", "Deleting ../data/html/20052006/1704.html\n", "Deleting ../data/html/20052006/1705.html\n", "Deleting ../data/html/20052006/1706.html\n", "Deleting ../data/html/20052006/1707.html\n", "Deleting ../data/html/20052006/1708.html\n", "Deleting ../data/html/20052006/1709.html\n", "Deleting ../data/html/20052006/1710.html\n", "Deleting ../data/html/20052006/1711.html\n", "Deleting ../data/html/20052006/1712.html\n", "Deleting ../data/html/20052006/1713.html\n", "Deleting ../data/html/20052006/1714.html\n", "Deleting ../data/html/20052006/1715.html\n", "Deleting ../data/html/20052006/1716.html\n", "Deleting ../data/html/20052006/1717.html\n", "Deleting ../data/html/20052006/1718.html\n", "Deleting ../data/html/20052006/1719.html\n", "Deleting ../data/html/20052006/1720.html\n", "Deleting ../data/html/20052006/1721.html\n", "Deleting ../data/html/20052006/1722.html\n", "Deleting ../data/html/20052006/1723.html\n", "Deleting ../data/html/20052006/1724.html\n", "Deleting ../data/html/20052006/1725.html\n", "Deleting ../data/html/20052006/1726.html\n", "Deleting ../data/html/20052006/1727.html\n", "Deleting ../data/html/20052006/1728.html\n", "Deleting ../data/html/20052006/1729.html\n", "Deleting ../data/html/20052006/1730.html\n", "Deleting ../data/html/20052006/1731.html\n", "Deleting ../data/html/20052006/1732.html\n", "Deleting ../data/html/20052006/1733.html\n", "Deleting ../data/html/20052006/1734.html\n", "Deleting ../data/html/20052006/1735.html\n", "Deleting ../data/html/20052006/1736.html\n", "Deleting ../data/html/20052006/1737.html\n", "Deleting ../data/html/20052006/1738.html\n", "Deleting ../data/html/20052006/1739.html\n", "Deleting ../data/html/20052006/1740.html\n", "Deleting ../data/html/20052006/1741.html\n", "Deleting ../data/html/20052006/1742.html\n", "Deleting ../data/html/20052006/1743.html\n", "Deleting ../data/html/20052006/1744.html\n", "Deleting ../data/html/20052006/1745.html\n", "Deleting ../data/html/20052006/1746.html\n", "Deleting ../data/html/20052006/1747.html\n", "Deleting ../data/html/20052006/1748.html\n", "Deleting ../data/html/20052006/1749.html\n", "Deleting ../data/html/20052006/1750.html\n", "Deleting ../data/html/20052006/1751.html\n", "Deleting ../data/html/20052006/1752.html\n", "Deleting ../data/html/20052006/1753.html\n", "Deleting ../data/html/20052006/1754.html\n", "Deleting ../data/html/20052006/1755.html\n", "Deleting ../data/html/20052006/1756.html\n", "Deleting ../data/html/20052006/1757.html\n", "Deleting ../data/html/20052006/1758.html\n", "Deleting ../data/html/20052006/1759.html\n", "Deleting ../data/html/20052006/1760.html\n", "Deleting ../data/html/20052006/1761.html\n", "Deleting ../data/html/20052006/1762.html\n", "Deleting ../data/html/20052006/1763.html\n", "Deleting ../data/html/20052006/1764.html\n", "Deleting ../data/html/20052006/1765.html\n", "Deleting ../data/html/20052006/1766.html\n", "Deleting ../data/html/20052006/1767.html\n", "Deleting ../data/html/20052006/1768.html\n", "Deleting ../data/html/20052006/1769.html\n", "Deleting ../data/html/20052006/1770.html\n", "Deleting ../data/html/20052006/1771.html\n", "Deleting ../data/html/20052006/1772.html\n", "Deleting ../data/html/20052006/1773.html\n", "Deleting ../data/html/20052006/1774.html\n", "Deleting ../data/html/20052006/1775.html\n", "Deleting ../data/html/20052006/1776.html\n", "Deleting ../data/html/20052006/1777.html\n", "Deleting ../data/html/20052006/1778.html\n", "Deleting ../data/html/20052006/1779.html\n", "Deleting ../data/html/20052006/1780.html\n", "Deleting ../data/html/20052006/1781.html\n", "Deleting ../data/html/20052006/1782.html\n", "Deleting ../data/html/20052006/1783.html\n", "Deleting ../data/html/20052006/1784.html\n", "Deleting ../data/html/20052006/1785.html\n", "Deleting ../data/html/20052006/1786.html\n", "Deleting ../data/html/20052006/1787.html\n", "Deleting ../data/html/20052006/1788.html\n", "Deleting ../data/html/20052006/1789.html\n", "Deleting ../data/html/20052006/1790.html\n", "Deleting ../data/html/20052006/1791.html\n", "Deleting ../data/html/20052006/1792.html\n", "Deleting ../data/html/20052006/1793.html\n", "Deleting ../data/html/20052006/1794.html\n", "Deleting ../data/html/20052006/1795.html\n", "Deleting ../data/html/20052006/1796.html\n", "Deleting ../data/html/20052006/1797.html\n", "Deleting ../data/html/20052006/1798.html\n", "Deleting ../data/html/20052006/1799.html\n", "Deleting ../data/html/20052006/1800.html\n", "Deleting ../data/html/20052006/1801.html\n", "Deleting ../data/html/20052006/1802.html\n", "Deleting ../data/html/20052006/1803.html\n", "Deleting ../data/html/20052006/1804.html\n", "Deleting ../data/html/20052006/1805.html\n", "Deleting ../data/html/20052006/1806.html\n", "Deleting ../data/html/20052006/1807.html\n", "Deleting ../data/html/20052006/1808.html\n", "Deleting ../data/html/20052006/1809.html\n", "Deleting ../data/html/20052006/1810.html\n", "Deleting ../data/html/20052006/1811.html\n", "Deleting ../data/html/20052006/1812.html\n", "Deleting ../data/html/20052006/1813.html\n", "Deleting ../data/html/20052006/1814.html\n", "Deleting ../data/html/20052006/1815.html\n", "Deleting ../data/html/20052006/1816.html\n", "Deleting ../data/html/20052006/1817.html\n", "Deleting ../data/html/20052006/1818.html\n", "Deleting ../data/html/20052006/1819.html\n", "Deleting ../data/html/20052006/1820.html\n", "Deleting ../data/html/20052006/1821.html\n", "Deleting ../data/html/20052006/1822.html\n", "Deleting ../data/html/20052006/1823.html\n", "Deleting ../data/html/20052006/1824.html\n", "Deleting ../data/html/20052006/1825.html\n", "Deleting ../data/html/20052006/1826.html\n", "Deleting ../data/html/20052006/1827.html\n", "Deleting ../data/html/20052006/1828.html\n", "Deleting ../data/html/20052006/1829.html\n", "Deleting ../data/html/20052006/1830.html\n", "Deleting ../data/html/20052006/1831.html\n", "Deleting ../data/html/20052006/1832.html\n", "Deleting ../data/html/20052006/1833.html\n", "Deleting ../data/html/20052006/1834.html\n", "Deleting ../data/html/20052006/1835.html\n", "Deleting ../data/html/20052006/1836.html\n", "Deleting ../data/html/20052006/1837.html\n", "Deleting ../data/html/20052006/1838.html\n", "Deleting ../data/html/20052006/1839.html\n", "Deleting ../data/html/20052006/1840.html\n", "Deleting ../data/html/20052006/1841.html\n", "Deleting ../data/html/20052006/1842.html\n", "Deleting ../data/html/20052006/1843.html\n", "Deleting ../data/html/20052006/1844.html\n", "Deleting ../data/html/20052006/1845.html\n", "Deleting ../data/html/20052006/1846.html\n", "Deleting ../data/html/20052006/1847.html\n", "Deleting ../data/html/20052006/1848.html\n", "Deleting ../data/html/20052006/1849.html\n", "Deleting ../data/html/20052006/1850.html\n", "Deleting ../data/html/20052006/1851.html\n", "Deleting ../data/html/20052006/1852.html\n", "Deleting ../data/html/20052006/1853.html\n", "Deleting ../data/html/20052006/1854.html\n", "Deleting ../data/html/20052006/1855.html\n", "Deleting ../data/html/20052006/1856.html\n", "Deleting ../data/html/20052006/1857.html\n", "Deleting ../data/html/20052006/1858.html\n", "Deleting ../data/html/20052006/1859.html\n", "Deleting ../data/html/20052006/1860.html\n", "Deleting ../data/html/20052006/1861.html\n", "Deleting ../data/html/20052006/1862.html\n", "Deleting ../data/html/20052006/1863.html\n", "Deleting ../data/html/20052006/1864.html\n", "Deleting ../data/html/20052006/1865.html\n", "Deleting ../data/html/20052006/1866.html\n", "Deleting ../data/html/20052006/1867.html\n", "Deleting ../data/html/20052006/1868.html\n", "Deleting ../data/html/20052006/1869.html\n", "Deleting ../data/html/20052006/1870.html\n", "Deleting ../data/html/20052006/1871.html\n", "Deleting ../data/html/20052006/1872.html\n", "Deleting ../data/html/20052006/1873.html\n", "Deleting ../data/html/20052006/1874.html\n", "Deleting ../data/html/20052006/1875.html\n", "Deleting ../data/html/20052006/1876.html\n", "Deleting ../data/html/20052006/1877.html\n", "Deleting ../data/html/20052006/1878.html\n", "Deleting ../data/html/20052006/1879.html\n", "Deleting ../data/html/20052006/1880.html\n", "Deleting ../data/html/20052006/1881.html\n", "Deleting ../data/html/20052006/1882.html\n", "Deleting ../data/html/20052006/1883.html\n", "Deleting ../data/html/20052006/1884.html\n", "Deleting ../data/html/20052006/1885.html\n", "Deleting ../data/html/20052006/1886.html\n", "Deleting ../data/html/20052006/1887.html\n", "Deleting ../data/html/20052006/1888.html\n", "Deleting ../data/html/20052006/1889.html\n", "Deleting ../data/html/20052006/1890.html\n", "Deleting ../data/html/20052006/1891.html\n", "Deleting ../data/html/20052006/1892.html\n", "Deleting ../data/html/20052006/1893.html\n", "Deleting ../data/html/20052006/1894.html\n", "Deleting ../data/html/20052006/1895.html\n", "Deleting ../data/html/20052006/1896.html\n", "Deleting ../data/html/20052006/1897.html\n", "Deleting ../data/html/20052006/1898.html\n", "Deleting ../data/html/20052006/1899.html\n", "Deleting ../data/html/20052006/1900.html\n", "Deleting ../data/html/20052006/1901.html\n", "Deleting ../data/html/20052006/1902.html\n", "Deleting ../data/html/20052006/1903.html\n", "Deleting ../data/html/20052006/1904.html\n", "Deleting ../data/html/20052006/1905.html\n", "Deleting ../data/html/20052006/1906.html\n", "Deleting ../data/html/20052006/1907.html\n", "Deleting ../data/html/20052006/1908.html\n", "Deleting ../data/html/20052006/1909.html\n", "Deleting ../data/html/20052006/1910.html\n", "Deleting ../data/html/20052006/1911.html\n", "Deleting ../data/html/20052006/1912.html\n", "Deleting ../data/html/20052006/1913.html\n", "Deleting ../data/html/20052006/1914.html\n", "Deleting ../data/html/20052006/1915.html\n", "Deleting ../data/html/20052006/1916.html\n", "Deleting ../data/html/20052006/1917.html\n", "Deleting ../data/html/20052006/1918.html\n", "Deleting ../data/html/20052006/1919.html\n", "Deleting ../data/html/20052006/1920.html\n", "Deleting ../data/html/20052006/1921.html\n", "Deleting ../data/html/20052006/1922.html\n", "Deleting ../data/html/20052006/1923.html\n", "Deleting ../data/html/20052006/1924.html\n", "Deleting ../data/html/20052006/1925.html\n", "Deleting ../data/html/20052006/1926.html\n", "Deleting ../data/html/20052006/1927.html\n", "Deleting ../data/html/20052006/1928.html\n", "Deleting ../data/html/20052006/1929.html\n", "Deleting ../data/html/20052006/1930.html\n", "Deleting ../data/html/20052006/1931.html\n", "Deleting ../data/html/20052006/1932.html\n", "Deleting ../data/html/20052006/1933.html\n", "Deleting ../data/html/20052006/1934.html\n", "Deleting ../data/html/20052006/1935.html\n", "Deleting ../data/html/20052006/1936.html\n", "Deleting ../data/html/20052006/1937.html\n", "Deleting ../data/html/20052006/1938.html\n", "Deleting ../data/html/20052006/1939.html\n", "Deleting ../data/html/20052006/1940.html\n", "Deleting ../data/html/20052006/1941.html\n", "Deleting ../data/html/20052006/1942.html\n", "Deleting ../data/html/20052006/1943.html\n", "Deleting ../data/html/20052006/1944.html\n", "Deleting ../data/html/20052006/1945.html\n", "Deleting ../data/html/20052006/1946.html\n", "Deleting ../data/html/20052006/1947.html\n", "Deleting ../data/html/20052006/1948.html\n", "Deleting ../data/html/20052006/1949.html\n", "Deleting ../data/html/20052006/1950.html\n", "Deleting ../data/html/20052006/1951.html\n", "Deleting ../data/html/20052006/1952.html\n", "Deleting ../data/html/20052006/1953.html\n", "Deleting ../data/html/20052006/1954.html\n", "Deleting ../data/html/20052006/1955.html\n", "Deleting ../data/html/20052006/1956.html\n", "Deleting ../data/html/20052006/1957.html\n", "Deleting ../data/html/20052006/1958.html\n", "Deleting ../data/html/20052006/1959.html\n", "Deleting ../data/html/20052006/1960.html\n", "Deleting ../data/html/20052006/1961.html\n", "Deleting ../data/html/20052006/1962.html\n", "Deleting ../data/html/20052006/1963.html\n", "Deleting ../data/html/20052006/1964.html\n", "Deleting ../data/html/20052006/1965.html\n", "Deleting ../data/html/20052006/1966.html\n", "Deleting ../data/html/20052006/1967.html\n", "Deleting ../data/html/20052006/1968.html\n", "Deleting ../data/html/20052006/1969.html\n", "Deleting ../data/html/20052006/1970.html\n", "Deleting ../data/html/20052006/1971.html\n", "Deleting ../data/html/20052006/1972.html\n", "Deleting ../data/html/20052006/1973.html\n", "Deleting ../data/html/20052006/1974.html\n", "Deleting ../data/html/20052006/1975.html\n", "Deleting ../data/html/20052006/1976.html\n", "Deleting ../data/html/20052006/1977.html\n", "Deleting ../data/html/20052006/1978.html\n", "Deleting ../data/html/20052006/1979.html\n", "Deleting ../data/html/20052006/1980.html\n", "Deleting ../data/html/20052006/1981.html\n", "Deleting ../data/html/20052006/1982.html\n", "Deleting ../data/html/20052006/1983.html\n", "Deleting ../data/html/20052006/1984.html\n", "Deleting ../data/html/20052006/1985.html\n", "Deleting ../data/html/20052006/1986.html\n", "Deleting ../data/html/20052006/1987.html\n", "Deleting ../data/html/20052006/1988.html\n", "Deleting ../data/html/20052006/1989.html\n", "Deleting ../data/html/20052006/1990.html\n", "Deleting ../data/html/20052006/1991.html\n", "Deleting ../data/html/20052006/1992.html\n", "Deleting ../data/html/20052006/1993.html\n", "Deleting ../data/html/20052006/1994.html\n", "Deleting ../data/html/20052006/1995.html\n", "Deleting ../data/html/20052006/1996.html\n", "Deleting ../data/html/20052006/1997.html\n", "Deleting ../data/html/20052006/1998.html\n", "Deleting ../data/html/20052006/1999.html\n", "Deleting ../data/html/20052006/2000.html\n", "Deleting ../data/html/20052006/2001.html\n", "Deleting ../data/html/20052006/2002.html\n", "Deleting ../data/html/20052006/2003.html\n", "Deleting ../data/html/20052006/2004.html\n", "Deleting ../data/html/20052006/2005.html\n", "Deleting ../data/html/20052006/2006.html\n", "Deleting ../data/html/20052006/2007.html\n", "Deleting ../data/html/20052006/2008.html\n", "Deleting ../data/html/20052006/2009.html\n", "Deleting ../data/html/20052006/2010.html\n", "Deleting ../data/html/20052006/2011.html\n", "Deleting ../data/html/20052006/2012.html\n", "Deleting ../data/html/20052006/2013.html\n", "Deleting ../data/html/20052006/2014.html\n", "Deleting ../data/html/20052006/2015.html\n", "Deleting ../data/html/20052006/2016.html\n", "Deleting ../data/html/20052006/2017.html\n", "Deleting ../data/html/20052006/2018.html\n", "Deleting ../data/html/20052006/2019.html\n", "Deleting ../data/html/20052006/2020.html\n", "Deleting ../data/html/20052006/2021.html\n", "Deleting ../data/html/20052006/2022.html\n", "Deleting ../data/html/20052006/2023.html\n", "Deleting ../data/html/20052006/2024.html\n", "Deleting ../data/html/20052006/2025.html\n", "Deleting ../data/html/20052006/2026.html\n", "Deleting ../data/html/20052006/2027.html\n", "Deleting ../data/html/20052006/2028.html\n", "Deleting ../data/html/20052006/2029.html\n", "Deleting ../data/html/20052006/2030.html\n", "Deleting ../data/html/20052006/2031.html\n", "Deleting ../data/html/20052006/2032.html\n", "Deleting ../data/html/20052006/2033.html\n", "Deleting ../data/html/20052006/2034.html\n", "Deleting ../data/html/20052006/2035.html\n", "Deleting ../data/html/20052006/2036.html\n", "Deleting ../data/html/20052006/2037.html\n", "Deleting ../data/html/20052006/2038.html\n", "Deleting ../data/html/20052006/2039.html\n", "Deleting ../data/html/20052006/2040.html\n", "Deleting ../data/html/20052006/2041.html\n", "Deleting ../data/html/20052006/2042.html\n", "Deleting ../data/html/20052006/2043.html\n", "Deleting ../data/html/20052006/2044.html\n", "Deleting ../data/html/20052006/2045.html\n", "Deleting ../data/html/20052006/2046.html\n", "Deleting ../data/html/20052006/2047.html\n", "Deleting ../data/html/20052006/2048.html\n", "Deleting ../data/html/20052006/2049.html\n", "Deleting ../data/html/20052006/2050.html\n", "Deleting ../data/html/20052006/2051.html\n", "Deleting ../data/html/20052006/2052.html\n", "Deleting ../data/html/20052006/2053.html\n", "Deleting ../data/html/20052006/2054.html\n", "Deleting ../data/html/20052006/2055.html\n", "Deleting ../data/html/20052006/2056.html\n", "Deleting ../data/html/20052006/2057.html\n", "Deleting ../data/html/20052006/2058.html\n", "Deleting ../data/html/20052006/2059.html\n", "Deleting ../data/html/20052006/2060.html\n", "Deleting ../data/html/20052006/2061.html\n", "Deleting ../data/html/20052006/2062.html\n", "Deleting ../data/html/20052006/2063.html\n", "Deleting ../data/html/20052006/2064.html\n", "Deleting ../data/html/20052006/2065.html\n", "Deleting ../data/html/20052006/2066.html\n", "Deleting ../data/html/20052006/2067.html\n", "Deleting ../data/html/20052006/2068.html\n", "Deleting ../data/html/20052006/2069.html\n", "Deleting ../data/html/20052006/2070.html\n", "Deleting ../data/html/20052006/2071.html\n", "Deleting ../data/html/20052006/2072.html\n", "Deleting ../data/html/20052006/2073.html\n", "Deleting ../data/html/20052006/2074.html\n", "Deleting ../data/html/20052006/2075.html\n", "Deleting ../data/html/20052006/2076.html\n", "Deleting ../data/html/20052006/2077.html\n", "Deleting ../data/html/20052006/2078.html\n", "Deleting ../data/html/20052006/2079.html\n", "Deleting ../data/html/20052006/2080.html\n", "Deleting ../data/html/20052006/2081.html\n", "Deleting ../data/html/20052006/2082.html\n", "Deleting ../data/html/20052006/2083.html\n", "Deleting ../data/html/20052006/2084.html\n", "Deleting ../data/html/20052006/2085.html\n", "Deleting ../data/html/20052006/2086.html\n", "Deleting ../data/html/20052006/2087.html\n", "Deleting ../data/html/20052006/2088.html\n", "Deleting ../data/html/20052006/2089.html\n", "Deleting ../data/html/20052006/2090.html\n", "Deleting ../data/html/20052006/2091.html\n", "Deleting ../data/html/20052006/2092.html\n", "Deleting ../data/html/20052006/2093.html\n", "Deleting ../data/html/20052006/2094.html\n", "Deleting ../data/html/20052006/2095.html\n", "Deleting ../data/html/20052006/2096.html\n", "Deleting ../data/html/20052006/2097.html\n", "Deleting ../data/html/20052006/2098.html\n", "Deleting ../data/html/20052006/2099.html\n", "Deleting ../data/html/20052006/2100.html\n", "Deleting ../data/html/20052006/2101.html\n", "Deleting ../data/html/20052006/2102.html\n", "Deleting ../data/html/20052006/2103.html\n", "Deleting ../data/html/20052006/2104.html\n", "Deleting ../data/html/20052006/2105.html\n", "Deleting ../data/html/20052006/2106.html\n", "Deleting ../data/html/20052006/2107.html\n", "Deleting ../data/html/20052006/2108.html\n", "Deleting ../data/html/20052006/2109.html\n", "Deleting ../data/html/20052006/2110.html\n", "Deleting ../data/html/20052006/2111.html\n", "Deleting ../data/html/20052006/2112.html\n", "Deleting ../data/html/20052006/2113.html\n", "Deleting ../data/html/20052006/2114.html\n", "Deleting ../data/html/20052006/2115.html\n", "Deleting ../data/html/20052006/2116.html\n", "Deleting ../data/html/20052006/2117.html\n", "Deleting ../data/html/20052006/2118.html\n", "Deleting ../data/html/20052006/2119.html\n", "Deleting ../data/html/20052006/2120.html\n", "Deleting ../data/html/20052006/2121.html\n", "Deleting ../data/html/20052006/2122.html\n", "Deleting ../data/html/20052006/2123.html\n", "Deleting ../data/html/20052006/2124.html\n", "Deleting ../data/html/20052006/2125.html\n", "Deleting ../data/html/20052006/2126.html\n", "Deleting ../data/html/20052006/2127.html\n", "Deleting ../data/html/20052006/2128.html\n", "Deleting ../data/html/20052006/2129.html\n", "Deleting ../data/html/20052006/2130.html\n", "Deleting ../data/html/20052006/2131.html\n", "Deleting ../data/html/20052006/2132.html\n", "Deleting ../data/html/20052006/2133.html\n", "Deleting ../data/html/20052006/2134.html\n", "Deleting ../data/html/20052006/2135.html\n", "Deleting ../data/html/20052006/2136.html\n", "Deleting ../data/html/20052006/2137.html\n", "Deleting ../data/html/20052006/2138.html\n", "Deleting ../data/html/20052006/2139.html\n", "Deleting ../data/html/20052006/2140.html\n", "Deleting ../data/html/20052006/2141.html\n", "Deleting ../data/html/20052006/2142.html\n", "Deleting ../data/html/20052006/2143.html\n", "Deleting ../data/html/20052006/2144.html\n", "Deleting ../data/html/20052006/2145.html\n", "Deleting ../data/html/20052006/2146.html\n", "Deleting ../data/html/20052006/2147.html\n", "Deleting ../data/html/20052006/2148.html\n", "Deleting ../data/html/20052006/2149.html\n", "Deleting ../data/html/20052006/2150.html\n", "Deleting ../data/html/20052006/2151.html\n", "Deleting ../data/html/20052006/2152.html\n", "Deleting ../data/html/20052006/2153.html\n", "Deleting ../data/html/20052006/2154.html\n", "Deleting ../data/html/20052006/2155.html\n", "Deleting ../data/html/20052006/2156.html\n", "Deleting ../data/html/20052006/2157.html\n", "Deleting ../data/html/20052006/2158.html\n", "Deleting ../data/html/20052006/2159.html\n", "Deleting ../data/html/20052006/2160.html\n", "Deleting ../data/html/20052006/2161.html\n", "Deleting ../data/html/20052006/2162.html\n", "Deleting ../data/html/20052006/2163.html\n", "Deleting ../data/html/20052006/2164.html\n", "Deleting ../data/html/20052006/2165.html\n", "Deleting ../data/html/20052006/2166.html\n", "Deleting ../data/html/20052006/2167.html\n", "Deleting ../data/html/20052006/2168.html\n", "Deleting ../data/html/20052006/2169.html\n", "Deleting ../data/html/20052006/2170.html\n", "Deleting ../data/html/20052006/2171.html\n", "Deleting ../data/html/20052006/2172.html\n", "Deleting ../data/html/20052006/2173.html\n", "Deleting ../data/html/20052006/2174.html\n", "Deleting ../data/html/20052006/2175.html\n", "Deleting ../data/html/20052006/2176.html\n", "Deleting ../data/html/20052006/2177.html\n", "Deleting ../data/html/20052006/2178.html\n", "Deleting ../data/html/20052006/2179.html\n", "Deleting ../data/html/20052006/2180.html\n", "Deleting ../data/html/20052006/2181.html\n", "Deleting ../data/html/20052006/2182.html\n", "Deleting ../data/html/20052006/2183.html\n", "Deleting ../data/html/20052006/2184.html\n", "Deleting ../data/html/20052006/2185.html\n", "Deleting ../data/html/20052006/2186.html\n", "Deleting ../data/html/20052006/2187.html\n", "Deleting ../data/html/20052006/2188.html\n", "Deleting ../data/html/20052006/2189.html\n", "Deleting ../data/html/20052006/2190.html\n", "Deleting ../data/html/20052006/2191.html\n", "Deleting ../data/html/20052006/2192.html\n", "Deleting ../data/html/20052006/2193.html\n", "Deleting ../data/html/20052006/2194.html\n", "Deleting ../data/html/20052006/2195.html\n", "Deleting ../data/html/20052006/2196.html\n", "Deleting ../data/html/20052006/2197.html\n", "Deleting ../data/html/20052006/2198.html\n", "Deleting ../data/html/20052006/2199.html\n", "Deleting ../data/html/20052006/2200.html\n", "Deleting ../data/html/20052006/2201.html\n", "Deleting ../data/html/20052006/2202.html\n", "Deleting ../data/html/20052006/2203.html\n", "Deleting ../data/html/20052006/2204.html\n", "Deleting ../data/html/20052006/2205.html\n", "Deleting ../data/html/20052006/2206.html\n", "Deleting ../data/html/20052006/2207.html\n", "Deleting ../data/html/20052006/2208.html\n", "Deleting ../data/html/20052006/2209.html\n", "Deleting ../data/html/20052006/2210.html\n", "Deleting ../data/html/20052006/2211.html\n", "Deleting ../data/html/20052006/2212.html\n", "Deleting ../data/html/20052006/2213.html\n", "Deleting ../data/html/20052006/2214.html\n", "Deleting ../data/html/20052006/2215.html\n", "Deleting ../data/html/20052006/2216.html\n", "Deleting ../data/html/20052006/2217.html\n", "Deleting ../data/html/20052006/2218.html\n", "Deleting ../data/html/20052006/2219.html\n", "Deleting ../data/html/20052006/2220.html\n", "Deleting ../data/html/20052006/2221.html\n", "Deleting ../data/html/20052006/2222.html\n", "Deleting ../data/html/20052006/2223.html\n", "Deleting ../data/html/20052006/2224.html\n", "Deleting ../data/html/20052006/2225.html\n", "Deleting ../data/html/20052006/2226.html\n", "Deleting ../data/html/20052006/2227.html\n", "Deleting ../data/html/20052006/2228.html\n", "Deleting ../data/html/20052006/2229.html\n", "Deleting ../data/html/20052006/2230.html\n", "Deleting ../data/html/20052006/2231.html\n", "Deleting ../data/html/20052006/2232.html\n", "Deleting ../data/html/20052006/2233.html\n", "Deleting ../data/html/20052006/2234.html\n", "Deleting ../data/html/20052006/2235.html\n", "Deleting ../data/html/20052006/2236.html\n", "Deleting ../data/html/20052006/2237.html\n", "Deleting ../data/html/20052006/2238.html\n", "Deleting ../data/html/20052006/2239.html\n", "Deleting ../data/html/20052006/2240.html\n", "Deleting ../data/html/20052006/2241.html\n", "Deleting ../data/html/20052006/2242.html\n", "Deleting ../data/html/20052006/2243.html\n", "Deleting ../data/html/20052006/2244.html\n", "Deleting ../data/html/20052006/2245.html\n", "Deleting ../data/html/20052006/2246.html\n", "Deleting ../data/html/20052006/2247.html\n", "Deleting ../data/html/20052006/2248.html\n", "Deleting ../data/html/20052006/2249.html\n", "Deleting ../data/html/20052006/2250.html\n", "Deleting ../data/html/20052006/2251.html\n", "Deleting ../data/html/20052006/2252.html\n", "Deleting ../data/html/20052006/2253.html\n", "Deleting ../data/html/20052006/2254.html\n", "Deleting ../data/html/20052006/2255.html\n", "Deleting ../data/html/20052006/2256.html\n", "Deleting ../data/html/20052006/2257.html\n", "Deleting ../data/html/20052006/2258.html\n", "Deleting ../data/html/20052006/2259.html\n", "Deleting ../data/html/20052006/2260.html\n", "Deleting ../data/html/20052006/2261.html\n", "Deleting ../data/html/20052006/2262.html\n", "Deleting ../data/html/20052006/2263.html\n", "Deleting ../data/html/20052006/2264.html\n", "Deleting ../data/html/20052006/2265.html\n", "Deleting ../data/html/20052006/2266.html\n", "Deleting ../data/html/20052006/2267.html\n", "Deleting ../data/html/20052006/2268.html\n", "Deleting ../data/html/20052006/2269.html\n", "Deleting ../data/html/20052006/2270.html\n", "Deleting ../data/html/20052006/2271.html\n", "Deleting ../data/html/20052006/2272.html\n", "Deleting ../data/html/20052006/2273.html\n", "Deleting ../data/html/20052006/2274.html\n", "Deleting ../data/html/20052006/2275.html\n", "Deleting ../data/html/20052006/2276.html\n", "Deleting ../data/html/20052006/2277.html\n", "Deleting ../data/html/20052006/2278.html\n", "Deleting ../data/html/20052006/2279.html\n", "Deleting ../data/html/20052006/2280.html\n", "Deleting ../data/html/20052006/2281.html\n", "Deleting ../data/html/20052006/2282.html\n", "Deleting ../data/html/20052006/2283.html\n", "Deleting ../data/html/20052006/2284.html\n", "Deleting ../data/html/20052006/2285.html\n", "Deleting ../data/html/20052006/2286.html\n", "Deleting ../data/html/20052006/2287.html\n", "Deleting ../data/html/20052006/2288.html\n", "Deleting ../data/html/20052006/2289.html\n", "Deleting ../data/html/20052006/2290.html\n", "Deleting ../data/html/20052006/2291.html\n", "Deleting ../data/html/20052006/2292.html\n", "Deleting ../data/html/20052006/2293.html\n", "Deleting ../data/html/20052006/2294.html\n", "Deleting ../data/html/20052006/2295.html\n", "Deleting ../data/html/20052006/2296.html\n", "Deleting ../data/html/20052006/2297.html\n", "Deleting ../data/html/20052006/2298.html\n", "Deleting ../data/html/20052006/2299.html\n", "Deleting ../data/html/20052006/2300.html\n", "Deleting ../data/html/20052006/2301.html\n", "Deleting ../data/html/20052006/2302.html\n", "Deleting ../data/html/20052006/2303.html\n", "Deleting ../data/html/20052006/2304.html\n", "Deleting ../data/html/20052006/2305.html\n", "Deleting ../data/html/20052006/2306.html\n", "Deleting ../data/html/20052006/2307.html\n", "Deleting ../data/html/20052006/2308.html\n", "Deleting ../data/html/20052006/2309.html\n", "Deleting ../data/html/20052006/2310.html\n", "Deleting ../data/html/20052006/2311.html\n", "Deleting ../data/html/20052006/2312.html\n", "Deleting ../data/html/20052006/2313.html\n", "Deleting ../data/html/20052006/2314.html\n", "Deleting ../data/html/20052006/2315.html\n", "Deleting ../data/html/20052006/2316.html\n", "Deleting ../data/html/20052006/2317.html\n", "Deleting ../data/html/20052006/2318.html\n", "Deleting ../data/html/20052006/2319.html\n", "Deleting ../data/html/20052006/2320.html\n", "Deleting ../data/html/20052006/2321.html\n", "Deleting ../data/html/20052006/2322.html\n", "Deleting ../data/html/20052006/2323.html\n", "Deleting ../data/html/20052006/2324.html\n", "Deleting ../data/html/20052006/2325.html\n", "Deleting ../data/html/20052006/2326.html\n", "Deleting ../data/html/20052006/2327.html\n", "Deleting ../data/html/20052006/2328.html\n", "Deleting ../data/html/20052006/2329.html\n", "Deleting ../data/html/20052006/2330.html\n", "Deleting ../data/html/20052006/2331.html\n", "Deleting ../data/html/20052006/2332.html\n", "Deleting ../data/html/20052006/2333.html\n", "Deleting ../data/html/20052006/2334.html\n", "Deleting ../data/html/20052006/2335.html\n", "Deleting ../data/html/20052006/2336.html\n", "Deleting ../data/html/20052006/2337.html\n", "Deleting ../data/html/20052006/2338.html\n", "Deleting ../data/html/20052006/2339.html\n", "Deleting ../data/html/20052006/234.html\n", "Deleting ../data/html/20052006/2340.html\n", "Deleting ../data/html/20052006/2341.html\n", "Deleting ../data/html/20052006/2342.html\n", "Deleting ../data/html/20052006/2343.html\n", "Deleting ../data/html/20052006/2344.html\n", "Deleting ../data/html/20052006/2345.html\n", "Deleting ../data/html/20052006/2346.html\n", "Deleting ../data/html/20052006/2347.html\n", "Deleting ../data/html/20052006/2348.html\n", "Deleting ../data/html/20052006/2349.html\n", "Deleting ../data/html/20052006/2350.html\n", "Deleting ../data/html/20052006/2351.html\n", "Deleting ../data/html/20052006/2352.html\n", "Deleting ../data/html/20052006/2353.html\n", "Deleting ../data/html/20052006/2354.html\n", "Deleting ../data/html/20052006/2355.html\n", "Deleting ../data/html/20052006/2356.html\n", "Deleting ../data/html/20052006/2357.html\n", "Deleting ../data/html/20052006/2358.html\n", "Deleting ../data/html/20052006/2359.html\n", "Deleting ../data/html/20052006/2360.html\n", "Deleting ../data/html/20052006/2361.html\n", "Deleting ../data/html/20052006/2362.html\n", "Deleting ../data/html/20052006/2363.html\n", "Deleting ../data/html/20052006/2364.html\n", "Deleting ../data/html/20052006/2365.html\n", "Deleting ../data/html/20052006/2366.html\n", "Deleting ../data/html/20052006/2367.html\n", "Deleting ../data/html/20052006/2368.html\n", "Deleting ../data/html/20052006/2369.html\n", "Deleting ../data/html/20052006/2370.html\n", "Deleting ../data/html/20052006/2371.html\n", "Deleting ../data/html/20052006/2372.html\n", "Deleting ../data/html/20052006/2373.html\n", "Deleting ../data/html/20052006/2374.html\n", "Deleting ../data/html/20052006/2375.html\n", "Deleting ../data/html/20052006/2376.html\n", "Deleting ../data/html/20052006/2377.html\n", "Deleting ../data/html/20052006/2378.html\n", "Deleting ../data/html/20052006/2379.html\n", "Deleting ../data/html/20052006/2380.html\n", "Deleting ../data/html/20052006/2381.html\n", "Deleting ../data/html/20052006/2382.html\n", "Deleting ../data/html/20052006/2383.html\n", "Deleting ../data/html/20052006/2384.html\n", "Deleting ../data/html/20052006/2385.html\n", "Deleting ../data/html/20052006/2386.html\n", "Deleting ../data/html/20052006/2387.html\n", "Deleting ../data/html/20052006/2388.html\n", "Deleting ../data/html/20052006/2389.html\n", "Deleting ../data/html/20052006/2390.html\n", "Deleting ../data/html/20052006/2391.html\n", "Deleting ../data/html/20052006/2392.html\n", "Deleting ../data/html/20052006/2393.html\n", "Deleting ../data/html/20052006/2394.html\n", "Deleting ../data/html/20052006/2395.html\n", "Deleting ../data/html/20052006/2396.html\n", "Deleting ../data/html/20052006/2397.html\n", "Deleting ../data/html/20052006/2398.html\n", "Deleting ../data/html/20052006/2399.html\n", "Deleting ../data/html/20052006/2400.html\n", "Deleting ../data/html/20052006/2401.html\n", "Deleting ../data/html/20052006/2402.html\n", "Deleting ../data/html/20052006/2403.html\n", "Deleting ../data/html/20052006/2404.html\n", "Deleting ../data/html/20052006/2405.html\n", "Deleting ../data/html/20052006/2406.html\n", "Deleting ../data/html/20052006/2407.html\n", "Deleting ../data/html/20052006/2408.html\n", "Deleting ../data/html/20052006/2409.html\n", "Deleting ../data/html/20052006/2410.html\n", "Deleting ../data/html/20052006/2411.html\n", "Deleting ../data/html/20052006/2412.html\n", "Deleting ../data/html/20052006/2413.html\n", "Deleting ../data/html/20052006/2414.html\n", "Deleting ../data/html/20052006/2415.html\n", "Deleting ../data/html/20052006/2416.html\n", "Deleting ../data/html/20052006/2417.html\n", "Deleting ../data/html/20052006/2418.html\n", "Deleting ../data/html/20052006/2419.html\n", "Deleting ../data/html/20052006/2420.html\n", "Deleting ../data/html/20052006/2421.html\n", "Deleting ../data/html/20052006/2422.html\n", "Deleting ../data/html/20052006/2423.html\n", "Deleting ../data/html/20052006/2424.html\n", "Deleting ../data/html/20052006/2425.html\n", "Deleting ../data/html/20052006/2426.html\n", "Deleting ../data/html/20052006/2427.html\n", "Deleting ../data/html/20052006/2428.html\n", "Deleting ../data/html/20052006/2429.html\n", "Deleting ../data/html/20052006/2430.html\n", "Deleting ../data/html/20052006/2431.html\n", "Deleting ../data/html/20052006/2432.html\n", "Deleting ../data/html/20052006/2433.html\n", "Deleting ../data/html/20052006/2434.html\n", "Deleting ../data/html/20052006/2435.html\n", "Deleting ../data/html/20052006/2436.html\n", "Deleting ../data/html/20052006/2437.html\n", "Deleting ../data/html/20052006/2438.html\n", "Deleting ../data/html/20052006/2439.html\n", "Deleting ../data/html/20052006/2440.html\n", "Deleting ../data/html/20052006/2441.html\n", "Deleting ../data/html/20052006/2442.html\n", "Deleting ../data/html/20052006/2443.html\n", "Deleting ../data/html/20052006/2444.html\n", "Deleting ../data/html/20052006/2445.html\n", "Deleting ../data/html/20052006/2446.html\n", "Deleting ../data/html/20052006/2447.html\n", "Deleting ../data/html/20052006/2448.html\n", "Deleting ../data/html/20052006/2449.html\n", "Deleting ../data/html/20052006/2450.html\n", "Deleting ../data/html/20052006/2451.html\n", "Deleting ../data/html/20052006/2452.html\n", "Deleting ../data/html/20052006/2453.html\n", "Deleting ../data/html/20052006/2454.html\n", "Deleting ../data/html/20052006/2455.html\n", "Deleting ../data/html/20052006/2456.html\n", "Deleting ../data/html/20052006/2457.html\n", "Deleting ../data/html/20052006/2458.html\n", "Deleting ../data/html/20052006/2459.html\n", "Deleting ../data/html/20052006/2460.html\n", "Deleting ../data/html/20052006/2461.html\n", "Deleting ../data/html/20052006/2462.html\n", "Deleting ../data/html/20052006/2463.html\n", "Deleting ../data/html/20052006/2464.html\n", "Deleting ../data/html/20052006/2465.html\n", "Deleting ../data/html/20052006/2466.html\n", "Deleting ../data/html/20052006/2467.html\n", "Deleting ../data/html/20052006/2468.html\n", "Deleting ../data/html/20052006/2469.html\n", "Deleting ../data/html/20052006/2470.html\n", "Deleting ../data/html/20052006/2471.html\n", "Deleting ../data/html/20052006/2472.html\n", "Deleting ../data/html/20052006/2473.html\n", "Deleting ../data/html/20052006/2474.html\n", "Deleting ../data/html/20052006/2475.html\n", "Deleting ../data/html/20052006/2476.html\n", "Deleting ../data/html/20052006/2477.html\n", "Deleting ../data/html/20052006/2478.html\n", "Deleting ../data/html/20052006/2479.html\n", "Deleting ../data/html/20052006/2480.html\n", "Deleting ../data/html/20052006/2481.html\n", "Deleting ../data/html/20052006/2482.html\n", "Deleting ../data/html/20052006/2483.html\n", "Deleting ../data/html/20052006/2484.html\n", "Deleting ../data/html/20052006/2485.html\n", "Deleting ../data/html/20052006/2486.html\n", "Deleting ../data/html/20052006/2487.html\n", "Deleting ../data/html/20052006/2488.html\n", "Deleting ../data/html/20052006/2489.html\n", "Deleting ../data/html/20052006/2490.html\n", "Deleting ../data/html/20052006/2491.html\n", "Deleting ../data/html/20052006/2492.html\n", "Deleting ../data/html/20052006/2493.html\n", "Deleting ../data/html/20052006/2494.html\n", "Deleting ../data/html/20052006/2495.html\n", "Deleting ../data/html/20052006/2496.html\n", "Deleting ../data/html/20052006/2497.html\n", "Deleting ../data/html/20052006/2498.html\n", "Deleting ../data/html/20052006/2499.html\n", "Deleting ../data/html/20052006/2500.html\n", "Deleting ../data/html/20052006/2501.html\n", "Deleting ../data/html/20052006/2502.html\n", "Deleting ../data/html/20052006/2503.html\n", "Deleting ../data/html/20052006/2504.html\n", "Deleting ../data/html/20052006/2505.html\n", "Deleting ../data/html/20052006/2506.html\n", "Deleting ../data/html/20052006/2507.html\n", "Deleting ../data/html/20052006/2508.html\n", "Deleting ../data/html/20052006/2509.html\n", "Deleting ../data/html/20052006/2510.html\n", "Deleting ../data/html/20052006/2511.html\n", "Deleting ../data/html/20052006/2512.html\n", "Deleting ../data/html/20052006/2513.html\n", "Deleting ../data/html/20052006/2514.html\n", "Deleting ../data/html/20052006/2515.html\n", "Deleting ../data/html/20052006/2516.html\n", "Deleting ../data/html/20052006/2517.html\n", "Deleting ../data/html/20052006/2518.html\n", "Deleting ../data/html/20052006/2519.html\n", "Deleting ../data/html/20052006/2520.html\n", "Deleting ../data/html/20052006/2521.html\n", "Deleting ../data/html/20052006/2522.html\n", "Deleting ../data/html/20052006/2523.html\n", "Deleting ../data/html/20052006/2524.html\n", "Deleting ../data/html/20052006/2525.html\n", "Deleting ../data/html/20052006/2526.html\n", "Deleting ../data/html/20052006/2527.html\n", "Deleting ../data/html/20052006/2528.html\n", "Deleting ../data/html/20052006/2529.html\n", "Deleting ../data/html/20052006/2530.html\n", "Deleting ../data/html/20052006/2531.html\n", "Deleting ../data/html/20052006/2532.html\n", "Deleting ../data/html/20052006/2533.html\n", "Deleting ../data/html/20052006/2534.html\n", "Deleting ../data/html/20052006/2535.html\n", "Deleting ../data/html/20052006/2536.html\n", "Deleting ../data/html/20052006/2537.html\n", "Deleting ../data/html/20052006/2538.html\n", "Deleting ../data/html/20052006/2539.html\n", "Deleting ../data/html/20052006/2540.html\n", "Deleting ../data/html/20052006/2541.html\n", "Deleting ../data/html/20052006/2542.html\n", "Deleting ../data/html/20052006/2543.html\n", "Deleting ../data/html/20052006/2544.html\n", "Deleting ../data/html/20052006/2545.html\n", "Deleting ../data/html/20052006/2546.html\n", "Deleting ../data/html/20052006/2547.html\n", "Deleting ../data/html/20052006/2548.html\n", "Deleting ../data/html/20052006/2549.html\n", "Deleting ../data/html/20052006/2550.html\n", "Deleting ../data/html/20052006/2551.html\n", "Deleting ../data/html/20052006/2552.html\n", "Deleting ../data/html/20052006/2553.html\n", "Deleting ../data/html/20052006/2554.html\n", "Deleting ../data/html/20052006/2555.html\n", "Deleting ../data/html/20052006/2556.html\n", "Deleting ../data/html/20052006/2557.html\n", "Deleting ../data/html/20052006/2558.html\n", "Deleting ../data/html/20052006/2559.html\n", "Deleting ../data/html/20052006/2560.html\n", "Deleting ../data/html/20052006/2561.html\n", "Deleting ../data/html/20052006/2562.html\n", "Deleting ../data/html/20052006/2563.html\n", "Deleting ../data/html/20052006/2564.html\n", "Deleting ../data/html/20052006/2565.html\n", "Deleting ../data/html/20052006/2566.html\n", "Deleting ../data/html/20052006/2567.html\n", "Deleting ../data/html/20052006/2568.html\n", "Deleting ../data/html/20052006/2569.html\n", "Deleting ../data/html/20052006/2570.html\n", "Deleting ../data/html/20052006/2571.html\n", "Deleting ../data/html/20052006/2572.html\n", "Deleting ../data/html/20052006/2573.html\n", "Deleting ../data/html/20052006/2574.html\n", "Deleting ../data/html/20052006/2575.html\n", "Deleting ../data/html/20052006/2576.html\n", "Deleting ../data/html/20052006/2577.html\n", "Deleting ../data/html/20052006/2578.html\n", "Deleting ../data/html/20052006/2579.html\n", "Deleting ../data/html/20052006/2580.html\n", "Deleting ../data/html/20052006/2581.html\n", "Deleting ../data/html/20052006/2582.html\n", "Deleting ../data/html/20052006/2583.html\n", "Deleting ../data/html/20052006/2584.html\n", "Deleting ../data/html/20052006/2585.html\n", "Deleting ../data/html/20052006/2586.html\n", "Deleting ../data/html/20052006/2587.html\n", "Deleting ../data/html/20052006/2588.html\n", "Deleting ../data/html/20052006/2589.html\n", "Deleting ../data/html/20052006/2590.html\n", "Deleting ../data/html/20052006/2591.html\n", "Deleting ../data/html/20052006/2592.html\n", "Deleting ../data/html/20052006/2593.html\n", "Deleting ../data/html/20052006/2594.html\n", "Deleting ../data/html/20052006/2595.html\n", "Deleting ../data/html/20052006/2596.html\n", "Deleting ../data/html/20052006/2597.html\n", "Deleting ../data/html/20052006/2598.html\n", "Deleting ../data/html/20052006/2599.html\n", "Deleting ../data/html/20052006/2600.html\n", "Deleting ../data/html/20052006/2601.html\n", "Deleting ../data/html/20052006/2602.html\n", "Deleting ../data/html/20052006/2603.html\n", "Deleting ../data/html/20052006/2604.html\n", "Deleting ../data/html/20052006/2605.html\n", "Deleting ../data/html/20052006/2606.html\n", "Deleting ../data/html/20052006/2607.html\n", "Deleting ../data/html/20052006/2608.html\n", "Deleting ../data/html/20052006/2609.html\n", "Deleting ../data/html/20052006/2610.html\n", "Deleting ../data/html/20052006/2611.html\n", "Deleting ../data/html/20052006/2612.html\n", "Deleting ../data/html/20052006/2613.html\n", "Deleting ../data/html/20052006/2614.html\n", "Deleting ../data/html/20052006/2615.html\n", "Deleting ../data/html/20052006/2616.html\n", "Deleting ../data/html/20052006/2617.html\n", "Deleting ../data/html/20052006/2618.html\n", "Deleting ../data/html/20052006/2619.html\n", "Deleting ../data/html/20052006/2620.html\n", "Deleting ../data/html/20052006/2621.html\n", "Deleting ../data/html/20052006/2622.html\n", "Deleting ../data/html/20052006/2623.html\n", "Deleting ../data/html/20052006/2624.html\n", "Deleting ../data/html/20052006/2625.html\n", "Deleting ../data/html/20052006/2626.html\n", "Deleting ../data/html/20052006/2627.html\n", "Deleting ../data/html/20052006/2628.html\n", "Deleting ../data/html/20052006/2629.html\n", "Deleting ../data/html/20052006/2630.html\n", "Deleting ../data/html/20052006/2631.html\n", "Deleting ../data/html/20052006/2632.html\n", "Deleting ../data/html/20052006/2633.html\n", "Deleting ../data/html/20052006/2634.html\n", "Deleting ../data/html/20052006/2635.html\n", "Deleting ../data/html/20052006/2636.html\n", "Deleting ../data/html/20052006/2637.html\n", "Deleting ../data/html/20052006/2638.html\n", "Deleting ../data/html/20052006/2639.html\n", "Deleting ../data/html/20052006/2640.html\n", "Deleting ../data/html/20052006/2641.html\n", "Deleting ../data/html/20052006/2642.html\n", "Deleting ../data/html/20052006/2643.html\n", "Deleting ../data/html/20052006/2644.html\n", "Deleting ../data/html/20052006/2645.html\n", "Deleting ../data/html/20052006/2646.html\n", "Deleting ../data/html/20052006/2647.html\n", "Deleting ../data/html/20052006/2648.html\n", "Deleting ../data/html/20052006/2649.html\n", "Deleting ../data/html/20052006/2650.html\n", "Deleting ../data/html/20052006/2651.html\n", "Deleting ../data/html/20052006/2652.html\n", "Deleting ../data/html/20052006/2653.html\n", "Deleting ../data/html/20052006/2654.html\n", "Deleting ../data/html/20052006/2655.html\n", "Deleting ../data/html/20052006/2656.html\n", "Deleting ../data/html/20052006/2657.html\n", "Deleting ../data/html/20052006/2658.html\n", "Deleting ../data/html/20052006/2659.html\n", "Deleting ../data/html/20052006/2660.html\n", "Deleting ../data/html/20052006/2661.html\n", "Deleting ../data/html/20052006/2662.html\n", "Deleting ../data/html/20052006/2663.html\n", "Deleting ../data/html/20052006/2664.html\n", "Deleting ../data/html/20052006/2665.html\n", "Deleting ../data/html/20052006/2666.html\n", "Deleting ../data/html/20052006/2667.html\n", "Deleting ../data/html/20052006/2668.html\n", "Deleting ../data/html/20052006/2669.html\n", "Deleting ../data/html/20052006/2670.html\n", "Deleting ../data/html/20052006/2671.html\n", "Deleting ../data/html/20052006/2672.html\n", "Deleting ../data/html/20052006/2673.html\n", "Deleting ../data/html/20052006/2674.html\n", "Deleting ../data/html/20052006/2675.html\n", "Deleting ../data/html/20052006/2676.html\n", "Deleting ../data/html/20052006/2677.html\n", "Deleting ../data/html/20052006/2678.html\n", "Deleting ../data/html/20052006/2679.html\n", "Deleting ../data/html/20052006/2680.html\n", "Deleting ../data/html/20052006/2681.html\n", "Deleting ../data/html/20052006/2682.html\n", "Deleting ../data/html/20052006/2683.html\n", "Deleting ../data/html/20052006/2684.html\n", "Deleting ../data/html/20052006/2685.html\n", "Deleting ../data/html/20052006/2686.html\n", "Deleting ../data/html/20052006/2687.html\n", "Deleting ../data/html/20052006/2688.html\n", "Deleting ../data/html/20052006/2689.html\n", "Deleting ../data/html/20052006/2690.html\n", "Deleting ../data/html/20052006/2691.html\n", "Deleting ../data/html/20052006/2692.html\n", "Deleting ../data/html/20052006/2693.html\n", "Deleting ../data/html/20052006/2694.html\n", "Deleting ../data/html/20052006/2695.html\n", "Deleting ../data/html/20052006/2696.html\n", "Deleting ../data/html/20052006/2697.html\n", "Deleting ../data/html/20052006/2698.html\n", "Deleting ../data/html/20052006/2699.html\n", "Deleting ../data/html/20052006/2700.html\n", "Deleting ../data/html/20052006/2701.html\n", "Deleting ../data/html/20052006/2702.html\n", "Deleting ../data/html/20052006/2703.html\n", "Deleting ../data/html/20052006/2704.html\n", "Deleting ../data/html/20052006/2705.html\n", "Deleting ../data/html/20052006/2706.html\n", "Deleting ../data/html/20052006/2707.html\n", "Deleting ../data/html/20052006/2708.html\n", "Deleting ../data/html/20052006/2709.html\n", "Deleting ../data/html/20052006/2710.html\n", "Deleting ../data/html/20052006/2711.html\n", "Deleting ../data/html/20052006/2712.html\n", "Deleting ../data/html/20052006/2713.html\n", "Deleting ../data/html/20052006/2714.html\n", "Deleting ../data/html/20052006/2715.html\n", "Deleting ../data/html/20052006/2716.html\n", "Deleting ../data/html/20052006/2717.html\n", "Deleting ../data/html/20052006/2718.html\n", "Deleting ../data/html/20052006/2719.html\n", "Deleting ../data/html/20052006/2720.html\n", "Deleting ../data/html/20052006/2721.html\n", "Deleting ../data/html/20052006/2722.html\n", "Deleting ../data/html/20052006/2723.html\n", "Deleting ../data/html/20052006/2724.html\n", "Deleting ../data/html/20052006/2725.html\n", "Deleting ../data/html/20052006/2726.html\n", "Deleting ../data/html/20052006/2727.html\n", "Deleting ../data/html/20052006/2728.html\n", "Deleting ../data/html/20052006/2729.html\n", "Deleting ../data/html/20052006/2730.html\n", "Deleting ../data/html/20052006/2731.html\n", "Deleting ../data/html/20052006/2732.html\n", "Deleting ../data/html/20052006/2733.html\n", "Deleting ../data/html/20052006/2734.html\n", "Deleting ../data/html/20052006/2735.html\n", "Deleting ../data/html/20052006/2736.html\n", "Deleting ../data/html/20052006/2737.html\n", "Deleting ../data/html/20052006/2738.html\n", "Deleting ../data/html/20052006/2739.html\n", "Deleting ../data/html/20052006/2740.html\n", "Deleting ../data/html/20052006/2741.html\n", "Deleting ../data/html/20052006/2742.html\n", "Deleting ../data/html/20052006/2743.html\n", "Deleting ../data/html/20052006/2744.html\n", "Deleting ../data/html/20052006/2745.html\n", "Deleting ../data/html/20052006/2746.html\n", "Deleting ../data/html/20052006/2747.html\n", "Deleting ../data/html/20052006/2748.html\n", "Deleting ../data/html/20052006/2749.html\n", "Deleting ../data/html/20052006/2750.html\n", "Deleting ../data/html/20052006/2751.html\n", "Deleting ../data/html/20052006/2752.html\n", "Deleting ../data/html/20052006/2753.html\n", "Deleting ../data/html/20052006/2754.html\n", "Deleting ../data/html/20052006/2755.html\n", "Deleting ../data/html/20052006/2756.html\n", "Deleting ../data/html/20052006/2757.html\n", "Deleting ../data/html/20052006/2758.html\n", "Deleting ../data/html/20052006/2759.html\n", "Deleting ../data/html/20052006/2760.html\n", "Deleting ../data/html/20052006/2761.html\n", "Deleting ../data/html/20052006/2762.html\n", "Deleting ../data/html/20052006/2763.html\n", "Deleting ../data/html/20052006/2764.html\n", "Deleting ../data/html/20052006/2765.html\n", "Deleting ../data/html/20052006/2766.html\n", "Deleting ../data/html/20052006/2767.html\n", "Deleting ../data/html/20052006/2768.html\n", "Deleting ../data/html/20052006/2769.html\n", "Deleting ../data/html/20052006/2770.html\n", "Deleting ../data/html/20052006/2771.html\n", "Deleting ../data/html/20052006/2772.html\n", "Deleting ../data/html/20052006/2773.html\n", "Deleting ../data/html/20052006/2774.html\n", "Deleting ../data/html/20052006/2775.html\n", "Deleting ../data/html/20052006/2776.html\n", "Deleting ../data/html/20052006/2777.html\n", "Deleting ../data/html/20052006/2778.html\n", "Deleting ../data/html/20052006/2779.html\n", "Deleting ../data/html/20052006/2780.html\n", "Deleting ../data/html/20052006/2781.html\n", "Deleting ../data/html/20052006/2782.html\n", "Deleting ../data/html/20052006/2783.html\n", "Deleting ../data/html/20052006/2784.html\n", "Deleting ../data/html/20052006/2785.html\n", "Deleting ../data/html/20052006/2786.html\n", "Deleting ../data/html/20052006/2787.html\n", "Deleting ../data/html/20052006/2788.html\n", "Deleting ../data/html/20052006/2789.html\n", "Deleting ../data/html/20052006/2790.html\n", "Deleting ../data/html/20052006/2791.html\n", "Deleting ../data/html/20052006/2792.html\n", "Deleting ../data/html/20052006/2793.html\n", "Deleting ../data/html/20052006/2794.html\n", "Deleting ../data/html/20052006/2795.html\n", "Deleting ../data/html/20052006/2796.html\n", "Deleting ../data/html/20052006/2797.html\n", "Deleting ../data/html/20052006/2798.html\n", "Deleting ../data/html/20052006/2799.html\n", "Deleting ../data/html/20052006/2800.html\n", "Deleting ../data/html/20052006/2801.html\n", "Deleting ../data/html/20052006/2802.html\n", "Deleting ../data/html/20052006/2803.html\n", "Deleting ../data/html/20052006/2804.html\n", "Deleting ../data/html/20052006/2805.html\n", "Deleting ../data/html/20052006/2806.html\n", "Deleting ../data/html/20052006/2807.html\n", "Deleting ../data/html/20052006/2808.html\n", "Deleting ../data/html/20052006/2809.html\n", "Deleting ../data/html/20052006/2810.html\n", "Deleting ../data/html/20052006/2811.html\n", "Deleting ../data/html/20052006/2812.html\n", "Deleting ../data/html/20052006/2813.html\n", "Deleting ../data/html/20052006/2814.html\n", "Deleting ../data/html/20052006/2815.html\n", "Deleting ../data/html/20052006/2816.html\n", "Deleting ../data/html/20052006/2817.html\n", "Deleting ../data/html/20052006/2818.html\n", "Deleting ../data/html/20052006/2819.html\n", "Deleting ../data/html/20052006/2820.html\n", "Deleting ../data/html/20052006/2821.html\n", "Deleting ../data/html/20052006/2822.html\n", "Deleting ../data/html/20052006/2823.html\n", "Deleting ../data/html/20052006/2824.html\n", "Deleting ../data/html/20052006/2825.html\n", "Deleting ../data/html/20052006/2826.html\n", "Deleting ../data/html/20052006/2827.html\n", "Deleting ../data/html/20052006/2828.html\n", "Deleting ../data/html/20052006/2829.html\n", "Deleting ../data/html/20052006/2830.html\n", "Deleting ../data/html/20052006/2831.html\n", "Deleting ../data/html/20052006/2832.html\n", "Deleting ../data/html/20052006/2833.html\n", "Deleting ../data/html/20052006/2834.html\n", "Deleting ../data/html/20052006/2835.html\n", "Deleting ../data/html/20052006/2836.html\n", "Deleting ../data/html/20052006/2837.html\n", "Deleting ../data/html/20052006/2838.html\n", "Deleting ../data/html/20052006/2839.html\n", "Deleting ../data/html/20052006/2840.html\n", "Deleting ../data/html/20052006/2841.html\n", "Deleting ../data/html/20052006/2842.html\n", "Deleting ../data/html/20052006/2843.html\n", "Deleting ../data/html/20052006/2844.html\n", "Deleting ../data/html/20052006/2845.html\n", "Deleting ../data/html/20052006/2846.html\n", "Deleting ../data/html/20052006/2847.html\n", "Deleting ../data/html/20052006/2848.html\n", "Deleting ../data/html/20052006/2849.html\n", "Deleting ../data/html/20052006/2850.html\n", "Deleting ../data/html/20052006/2851.html\n", "Deleting ../data/html/20052006/2852.html\n", "Deleting ../data/html/20052006/2853.html\n", "Deleting ../data/html/20052006/2854.html\n", "Deleting ../data/html/20052006/2855.html\n", "Deleting ../data/html/20052006/2856.html\n", "Deleting ../data/html/20052006/2857.html\n", "Deleting ../data/html/20052006/2858.html\n", "Deleting ../data/html/20052006/2859.html\n", "Deleting ../data/html/20052006/2860.html\n", "Deleting ../data/html/20052006/2861.html\n", "Deleting ../data/html/20052006/2862.html\n", "Deleting ../data/html/20052006/2863.html\n", "Deleting ../data/html/20052006/2864.html\n", "Deleting ../data/html/20052006/2865.html\n", "Deleting ../data/html/20052006/2866.html\n", "Deleting ../data/html/20052006/2867.html\n", "Deleting ../data/html/20052006/2868.html\n", "Deleting ../data/html/20052006/2869.html\n", "Deleting ../data/html/20052006/2870.html\n", "Deleting ../data/html/20052006/2871.html\n", "Deleting ../data/html/20052006/2872.html\n", "Deleting ../data/html/20052006/2873.html\n", "Deleting ../data/html/20052006/2874.html\n", "Deleting ../data/html/20052006/2875.html\n", "Deleting ../data/html/20052006/2876.html\n", "Deleting ../data/html/20052006/2877.html\n", "Deleting ../data/html/20052006/2878.html\n", "Deleting ../data/html/20052006/2879.html\n", "Deleting ../data/html/20052006/2880.html\n", "Deleting ../data/html/20052006/2881.html\n", "Deleting ../data/html/20052006/2882.html\n", "Deleting ../data/html/20052006/2883.html\n", "Deleting ../data/html/20052006/2884.html\n", "Deleting ../data/html/20052006/2885.html\n", "Deleting ../data/html/20052006/2886.html\n", "Deleting ../data/html/20052006/2887.html\n", "Deleting ../data/html/20052006/2888.html\n", "Deleting ../data/html/20052006/2889.html\n", "Deleting ../data/html/20052006/2890.html\n", "Deleting ../data/html/20052006/2891.html\n", "Deleting ../data/html/20052006/2892.html\n", "Deleting ../data/html/20052006/2893.html\n", "Deleting ../data/html/20052006/2894.html\n", "Deleting ../data/html/20052006/2895.html\n", "Deleting ../data/html/20052006/2896.html\n", "Deleting ../data/html/20052006/2897.html\n", "Deleting ../data/html/20052006/2898.html\n", "Deleting ../data/html/20052006/2899.html\n", "Deleting ../data/html/20052006/2900.html\n", "Deleting ../data/html/20052006/2901.html\n", "Deleting ../data/html/20052006/2902.html\n", "Deleting ../data/html/20052006/2903.html\n", "Deleting ../data/html/20052006/2904.html\n", "Deleting ../data/html/20052006/2905.html\n", "Deleting ../data/html/20052006/2906.html\n", "Deleting ../data/html/20052006/2907.html\n", "Deleting ../data/html/20052006/2908.html\n", "Deleting ../data/html/20052006/2909.html\n", "Deleting ../data/html/20052006/2910.html\n", "Deleting ../data/html/20052006/2911.html\n", "Deleting ../data/html/20052006/2912.html\n", "Deleting ../data/html/20052006/2913.html\n", "Deleting ../data/html/20052006/2914.html\n", "Deleting ../data/html/20052006/2915.html\n", "Deleting ../data/html/20052006/2916.html\n", "Deleting ../data/html/20052006/2917.html\n", "Deleting ../data/html/20052006/2918.html\n", "Deleting ../data/html/20052006/2919.html\n", "Deleting ../data/html/20052006/2920.html\n", "Deleting ../data/html/20052006/2921.html\n", "Deleting ../data/html/20052006/2922.html\n", "Deleting ../data/html/20052006/2923.html\n", "Deleting ../data/html/20052006/2924.html\n", "Deleting ../data/html/20052006/2925.html\n", "Deleting ../data/html/20052006/2926.html\n", "Deleting ../data/html/20052006/2927.html\n", "Deleting ../data/html/20052006/2928.html\n", "Deleting ../data/html/20052006/2929.html\n", "Deleting ../data/html/20052006/2930.html\n", "Deleting ../data/html/20052006/2931.html\n", "Deleting ../data/html/20052006/2932.html\n", "Deleting ../data/html/20052006/2933.html\n", "Deleting ../data/html/20052006/2934.html\n", "Deleting ../data/html/20052006/2935.html\n", "Deleting ../data/html/20052006/2936.html\n", "Deleting ../data/html/20052006/2937.html\n", "Deleting ../data/html/20052006/2938.html\n", "Deleting ../data/html/20052006/2939.html\n", "Deleting ../data/html/20052006/2940.html\n", "Deleting ../data/html/20052006/2941.html\n", "Deleting ../data/html/20052006/2942.html\n", "Deleting ../data/html/20052006/2943.html\n", "Deleting ../data/html/20052006/2944.html\n", "Deleting ../data/html/20052006/2945.html\n", "Deleting ../data/html/20052006/2946.html\n", "Deleting ../data/html/20052006/2947.html\n", "Deleting ../data/html/20052006/2948.html\n", "Deleting ../data/html/20052006/2949.html\n", "Deleting ../data/html/20052006/2950.html\n", "Deleting ../data/html/20052006/2951.html\n", "Deleting ../data/html/20052006/2952.html\n", "Deleting ../data/html/20052006/2953.html\n", "Deleting ../data/html/20052006/2954.html\n", "Deleting ../data/html/20052006/2955.html\n", "Deleting ../data/html/20052006/2956.html\n", "Deleting ../data/html/20052006/2957.html\n", "Deleting ../data/html/20052006/2958.html\n", "Deleting ../data/html/20052006/2959.html\n", "Deleting ../data/html/20052006/2960.html\n", "Deleting ../data/html/20052006/2961.html\n", "Deleting ../data/html/20052006/2962.html\n", "Deleting ../data/html/20052006/2963.html\n", "Deleting ../data/html/20052006/2964.html\n", "Deleting ../data/html/20052006/2965.html\n", "Deleting ../data/html/20052006/2966.html\n", "Deleting ../data/html/20052006/2967.html\n", "Deleting ../data/html/20052006/2968.html\n", "Deleting ../data/html/20052006/2969.html\n", "Deleting ../data/html/20052006/2970.html\n", "Deleting ../data/html/20052006/2971.html\n", "Deleting ../data/html/20052006/2972.html\n", "Deleting ../data/html/20052006/2973.html\n", "Deleting ../data/html/20052006/2974.html\n", "Deleting ../data/html/20052006/2975.html\n", "Deleting ../data/html/20052006/2976.html\n", "Deleting ../data/html/20052006/2977.html\n", "Deleting ../data/html/20052006/2978.html\n", "Deleting ../data/html/20052006/2979.html\n", "Deleting ../data/html/20052006/2980.html\n", "Deleting ../data/html/20052006/2981.html\n", "Deleting ../data/html/20052006/2982.html\n", "Deleting ../data/html/20052006/2983.html\n", "Deleting ../data/html/20052006/2984.html\n", "Deleting ../data/html/20052006/2985.html\n", "Deleting ../data/html/20052006/2986.html\n", "Deleting ../data/html/20052006/2987.html\n", "Deleting ../data/html/20052006/2988.html\n", "Deleting ../data/html/20052006/2989.html\n", "Deleting ../data/html/20052006/2990.html\n", "Deleting ../data/html/20052006/2991.html\n", "Deleting ../data/html/20052006/2992.html\n", "Deleting ../data/html/20052006/2993.html\n", "Deleting ../data/html/20052006/2994.html\n", "Deleting ../data/html/20052006/2995.html\n", "Deleting ../data/html/20052006/2996.html\n", "Deleting ../data/html/20052006/2997.html\n", "Deleting ../data/html/20052006/2998.html\n", "Deleting ../data/html/20052006/2999.html\n", "Found 2999 files\n", "Deleting ../data/html/20062007/1231.html\n", "Deleting ../data/html/20062007/1232.html\n", "Deleting ../data/html/20062007/1233.html\n", "Deleting ../data/html/20062007/1234.html\n", "Deleting ../data/html/20062007/1235.html\n", "Deleting ../data/html/20062007/1236.html\n", "Deleting ../data/html/20062007/1237.html\n", "Deleting ../data/html/20062007/1238.html\n", "Deleting ../data/html/20062007/1239.html\n", "Deleting ../data/html/20062007/1240.html\n", "Deleting ../data/html/20062007/1241.html\n", "Deleting ../data/html/20062007/1242.html\n", "Deleting ../data/html/20062007/1243.html\n", "Deleting ../data/html/20062007/1244.html\n", "Deleting ../data/html/20062007/1245.html\n", "Deleting ../data/html/20062007/1246.html\n", "Deleting ../data/html/20062007/1247.html\n", "Deleting ../data/html/20062007/1248.html\n", "Deleting ../data/html/20062007/1249.html\n", "Deleting ../data/html/20062007/1250.html\n", "Deleting ../data/html/20062007/1251.html\n", "Deleting ../data/html/20062007/1252.html\n", "Deleting ../data/html/20062007/1253.html\n", "Deleting ../data/html/20062007/1254.html\n", "Deleting ../data/html/20062007/1255.html\n", "Deleting ../data/html/20062007/1256.html\n", "Deleting ../data/html/20062007/1257.html\n", "Deleting ../data/html/20062007/1258.html\n", "Deleting ../data/html/20062007/1259.html\n", "Deleting ../data/html/20062007/1260.html\n", "Deleting ../data/html/20062007/1261.html\n", "Deleting ../data/html/20062007/1262.html\n", "Deleting ../data/html/20062007/1263.html\n", "Deleting ../data/html/20062007/1264.html\n", "Deleting ../data/html/20062007/1265.html\n", "Deleting ../data/html/20062007/1266.html\n", "Deleting ../data/html/20062007/1267.html\n", "Deleting ../data/html/20062007/1268.html\n", "Deleting ../data/html/20062007/1269.html\n", "Deleting ../data/html/20062007/1270.html\n", "Deleting ../data/html/20062007/1271.html\n", "Deleting ../data/html/20062007/1272.html\n", "Deleting ../data/html/20062007/1273.html\n", "Deleting ../data/html/20062007/1274.html\n", "Deleting ../data/html/20062007/1275.html\n", "Deleting ../data/html/20062007/1276.html\n", "Deleting ../data/html/20062007/1277.html\n", "Deleting ../data/html/20062007/1278.html\n", "Deleting ../data/html/20062007/1279.html\n", "Deleting ../data/html/20062007/1280.html\n", "Deleting ../data/html/20062007/1281.html\n", "Deleting ../data/html/20062007/1282.html\n", "Deleting ../data/html/20062007/1283.html\n", "Deleting ../data/html/20062007/1284.html\n", "Deleting ../data/html/20062007/1285.html\n", "Deleting ../data/html/20062007/1286.html\n", "Deleting ../data/html/20062007/1287.html\n", "Deleting ../data/html/20062007/1288.html\n", "Deleting ../data/html/20062007/1289.html\n", "Deleting ../data/html/20062007/1290.html\n", "Deleting ../data/html/20062007/1291.html\n", "Deleting ../data/html/20062007/1292.html\n", "Deleting ../data/html/20062007/1293.html\n", "Deleting ../data/html/20062007/1294.html\n", "Deleting ../data/html/20062007/1295.html\n", "Deleting ../data/html/20062007/1296.html\n", "Deleting ../data/html/20062007/1297.html\n", "Deleting ../data/html/20062007/1298.html\n", "Deleting ../data/html/20062007/1299.html\n", "Deleting ../data/html/20062007/1300.html\n", "Deleting ../data/html/20062007/1301.html\n", "Deleting ../data/html/20062007/1302.html\n", "Deleting ../data/html/20062007/1303.html\n", "Deleting ../data/html/20062007/1304.html\n", "Deleting ../data/html/20062007/1305.html\n", "Deleting ../data/html/20062007/1306.html\n", "Deleting ../data/html/20062007/1307.html\n", "Deleting ../data/html/20062007/1308.html\n", "Deleting ../data/html/20062007/1309.html\n", "Deleting ../data/html/20062007/1310.html\n", "Deleting ../data/html/20062007/1311.html\n", "Deleting ../data/html/20062007/1312.html\n", "Deleting ../data/html/20062007/1313.html\n", "Deleting ../data/html/20062007/1314.html\n", "Deleting ../data/html/20062007/1315.html\n", "Deleting ../data/html/20062007/1316.html\n", "Deleting ../data/html/20062007/1317.html\n", "Deleting ../data/html/20062007/1318.html\n", "Deleting ../data/html/20062007/1319.html\n", "Deleting ../data/html/20062007/1320.html\n", "Deleting ../data/html/20062007/1321.html\n", "Deleting ../data/html/20062007/1322.html\n", "Deleting ../data/html/20062007/1323.html\n", "Deleting ../data/html/20062007/1324.html\n", "Deleting ../data/html/20062007/1325.html\n", "Deleting ../data/html/20062007/1326.html\n", "Deleting ../data/html/20062007/1327.html\n", "Deleting ../data/html/20062007/1328.html\n", "Deleting ../data/html/20062007/1329.html\n", "Deleting ../data/html/20062007/1330.html\n", "Deleting ../data/html/20062007/1331.html\n", "Deleting ../data/html/20062007/1332.html\n", "Deleting ../data/html/20062007/1333.html\n", "Deleting ../data/html/20062007/1334.html\n", "Deleting ../data/html/20062007/1335.html\n", "Deleting ../data/html/20062007/1336.html\n", "Deleting ../data/html/20062007/1337.html\n", "Deleting ../data/html/20062007/1338.html\n", "Deleting ../data/html/20062007/1339.html\n", "Deleting ../data/html/20062007/1340.html\n", "Deleting ../data/html/20062007/1341.html\n", "Deleting ../data/html/20062007/1342.html\n", "Deleting ../data/html/20062007/1343.html\n", "Deleting ../data/html/20062007/1344.html\n", "Deleting ../data/html/20062007/1345.html\n", "Deleting ../data/html/20062007/1346.html\n", "Deleting ../data/html/20062007/1347.html\n", "Deleting ../data/html/20062007/1348.html\n", "Deleting ../data/html/20062007/1349.html\n", "Deleting ../data/html/20062007/1350.html\n", "Deleting ../data/html/20062007/1351.html\n", "Deleting ../data/html/20062007/1352.html\n", "Deleting ../data/html/20062007/1353.html\n", "Deleting ../data/html/20062007/1354.html\n", "Deleting ../data/html/20062007/1355.html\n", "Deleting ../data/html/20062007/1356.html\n", "Deleting ../data/html/20062007/1357.html\n", "Deleting ../data/html/20062007/1358.html\n", "Deleting ../data/html/20062007/1359.html\n", "Deleting ../data/html/20062007/1360.html\n", "Deleting ../data/html/20062007/1361.html\n", "Deleting ../data/html/20062007/1362.html\n", "Deleting ../data/html/20062007/1363.html\n", "Deleting ../data/html/20062007/1364.html\n", "Deleting ../data/html/20062007/1365.html\n", "Deleting ../data/html/20062007/1366.html\n", "Deleting ../data/html/20062007/1367.html\n", "Deleting ../data/html/20062007/1368.html\n", "Deleting ../data/html/20062007/1369.html\n", "Deleting ../data/html/20062007/1370.html\n", "Deleting ../data/html/20062007/1371.html\n", "Deleting ../data/html/20062007/1372.html\n", "Deleting ../data/html/20062007/1373.html\n", "Deleting ../data/html/20062007/1374.html\n", "Deleting ../data/html/20062007/1375.html\n", "Deleting ../data/html/20062007/1376.html\n", "Deleting ../data/html/20062007/1377.html\n", "Deleting ../data/html/20062007/1378.html\n", "Deleting ../data/html/20062007/1379.html\n", "Deleting ../data/html/20062007/1380.html\n", "Deleting ../data/html/20062007/1381.html\n", "Deleting ../data/html/20062007/1382.html\n", "Deleting ../data/html/20062007/1383.html\n", "Deleting ../data/html/20062007/1384.html\n", "Deleting ../data/html/20062007/1385.html\n", "Deleting ../data/html/20062007/1386.html\n", "Deleting ../data/html/20062007/1387.html\n", "Deleting ../data/html/20062007/1388.html\n", "Deleting ../data/html/20062007/1389.html\n", "Deleting ../data/html/20062007/1390.html\n", "Deleting ../data/html/20062007/1391.html\n", "Deleting ../data/html/20062007/1392.html\n", "Deleting ../data/html/20062007/1393.html\n", "Deleting ../data/html/20062007/1394.html\n", "Deleting ../data/html/20062007/1395.html\n", "Deleting ../data/html/20062007/1396.html\n", "Deleting ../data/html/20062007/1397.html\n", "Deleting ../data/html/20062007/1398.html\n", "Deleting ../data/html/20062007/1399.html\n", "Deleting ../data/html/20062007/1400.html\n", "Deleting ../data/html/20062007/1401.html\n", "Deleting ../data/html/20062007/1402.html\n", "Deleting ../data/html/20062007/1403.html\n", "Deleting ../data/html/20062007/1404.html\n", "Deleting ../data/html/20062007/1405.html\n", "Deleting ../data/html/20062007/1406.html\n", "Deleting ../data/html/20062007/1407.html\n", "Deleting ../data/html/20062007/1408.html\n", "Deleting ../data/html/20062007/1409.html\n", "Deleting ../data/html/20062007/1410.html\n", "Deleting ../data/html/20062007/1411.html\n", "Deleting ../data/html/20062007/1412.html\n", "Deleting ../data/html/20062007/1413.html\n", "Deleting ../data/html/20062007/1414.html\n", "Deleting ../data/html/20062007/1415.html\n", "Deleting ../data/html/20062007/1416.html\n", "Deleting ../data/html/20062007/1417.html\n", "Deleting ../data/html/20062007/1418.html\n", "Deleting ../data/html/20062007/1419.html\n", "Deleting ../data/html/20062007/1420.html\n", "Deleting ../data/html/20062007/1421.html\n", "Deleting ../data/html/20062007/1422.html\n", "Deleting ../data/html/20062007/1423.html\n", "Deleting ../data/html/20062007/1424.html\n", "Deleting ../data/html/20062007/1425.html\n", "Deleting ../data/html/20062007/1426.html\n", "Deleting ../data/html/20062007/1427.html\n", "Deleting ../data/html/20062007/1428.html\n", "Deleting ../data/html/20062007/1429.html\n", "Deleting ../data/html/20062007/1430.html\n", "Deleting ../data/html/20062007/1431.html\n", "Deleting ../data/html/20062007/1432.html\n", "Deleting ../data/html/20062007/1433.html\n", "Deleting ../data/html/20062007/1434.html\n", "Deleting ../data/html/20062007/1435.html\n", "Deleting ../data/html/20062007/1436.html\n", "Deleting ../data/html/20062007/1437.html\n", "Deleting ../data/html/20062007/1438.html\n", "Deleting ../data/html/20062007/1439.html\n", "Deleting ../data/html/20062007/1440.html\n", "Deleting ../data/html/20062007/1441.html\n", "Deleting ../data/html/20062007/1442.html\n", "Deleting ../data/html/20062007/1443.html\n", "Deleting ../data/html/20062007/1444.html\n", "Deleting ../data/html/20062007/1445.html\n", "Deleting ../data/html/20062007/1446.html\n", "Deleting ../data/html/20062007/1447.html\n", "Deleting ../data/html/20062007/1448.html\n", "Deleting ../data/html/20062007/1449.html\n", "Deleting ../data/html/20062007/1450.html\n", "Deleting ../data/html/20062007/1451.html\n", "Deleting ../data/html/20062007/1452.html\n", "Deleting ../data/html/20062007/1453.html\n", "Deleting ../data/html/20062007/1454.html\n", "Deleting ../data/html/20062007/1455.html\n", "Deleting ../data/html/20062007/1456.html\n", "Deleting ../data/html/20062007/1457.html\n", "Deleting ../data/html/20062007/1458.html\n", "Deleting ../data/html/20062007/1459.html\n", "Deleting ../data/html/20062007/1460.html\n", "Deleting ../data/html/20062007/1461.html\n", "Deleting ../data/html/20062007/1462.html\n", "Deleting ../data/html/20062007/1463.html\n", "Deleting ../data/html/20062007/1464.html\n", "Deleting ../data/html/20062007/1465.html\n", "Deleting ../data/html/20062007/1466.html\n", "Deleting ../data/html/20062007/1467.html\n", "Deleting ../data/html/20062007/1468.html\n", "Deleting ../data/html/20062007/1469.html\n", "Deleting ../data/html/20062007/1470.html\n", "Deleting ../data/html/20062007/1471.html\n", "Deleting ../data/html/20062007/1472.html\n", "Deleting ../data/html/20062007/1473.html\n", "Deleting ../data/html/20062007/1474.html\n", "Deleting ../data/html/20062007/1475.html\n", "Deleting ../data/html/20062007/1476.html\n", "Deleting ../data/html/20062007/1477.html\n", "Deleting ../data/html/20062007/1478.html\n", "Deleting ../data/html/20062007/1479.html\n", "Deleting ../data/html/20062007/1480.html\n", "Deleting ../data/html/20062007/1481.html\n", "Deleting ../data/html/20062007/1482.html\n", "Deleting ../data/html/20062007/1483.html\n", "Deleting ../data/html/20062007/1484.html\n", "Deleting ../data/html/20062007/1485.html\n", "Deleting ../data/html/20062007/1486.html\n", "Deleting ../data/html/20062007/1487.html\n", "Deleting ../data/html/20062007/1488.html\n", "Deleting ../data/html/20062007/1489.html\n", "Deleting ../data/html/20062007/1490.html\n", "Deleting ../data/html/20062007/1491.html\n", "Deleting ../data/html/20062007/1492.html\n", "Deleting ../data/html/20062007/1493.html\n", "Deleting ../data/html/20062007/1494.html\n", "Deleting ../data/html/20062007/1495.html\n", "Deleting ../data/html/20062007/1496.html\n", "Deleting ../data/html/20062007/1497.html\n", "Deleting ../data/html/20062007/1498.html\n", "Deleting ../data/html/20062007/1499.html\n", "Deleting ../data/html/20062007/1500.html\n", "Deleting ../data/html/20062007/1501.html\n", "Deleting ../data/html/20062007/1502.html\n", "Deleting ../data/html/20062007/1503.html\n", "Deleting ../data/html/20062007/1504.html\n", "Deleting ../data/html/20062007/1505.html\n", "Deleting ../data/html/20062007/1506.html\n", "Deleting ../data/html/20062007/1507.html\n", "Deleting ../data/html/20062007/1508.html\n", "Deleting ../data/html/20062007/1509.html\n", "Deleting ../data/html/20062007/1510.html\n", "Deleting ../data/html/20062007/1511.html\n", "Deleting ../data/html/20062007/1512.html\n", "Deleting ../data/html/20062007/1513.html\n", "Deleting ../data/html/20062007/1514.html\n", "Deleting ../data/html/20062007/1515.html\n", "Deleting ../data/html/20062007/1516.html\n", "Deleting ../data/html/20062007/1517.html\n", "Deleting ../data/html/20062007/1518.html\n", "Deleting ../data/html/20062007/1519.html\n", "Deleting ../data/html/20062007/1520.html\n", "Deleting ../data/html/20062007/1521.html\n", "Deleting ../data/html/20062007/1522.html\n", "Deleting ../data/html/20062007/1523.html\n", "Deleting ../data/html/20062007/1524.html\n", "Deleting ../data/html/20062007/1525.html\n", "Deleting ../data/html/20062007/1526.html\n", "Deleting ../data/html/20062007/1527.html\n", "Deleting ../data/html/20062007/1528.html\n", "Deleting ../data/html/20062007/1529.html\n", "Deleting ../data/html/20062007/1530.html\n", "Deleting ../data/html/20062007/1531.html\n", "Deleting ../data/html/20062007/1532.html\n", "Deleting ../data/html/20062007/1533.html\n", "Deleting ../data/html/20062007/1534.html\n", "Deleting ../data/html/20062007/1535.html\n", "Deleting ../data/html/20062007/1536.html\n", "Deleting ../data/html/20062007/1537.html\n", "Deleting ../data/html/20062007/1538.html\n", "Deleting ../data/html/20062007/1539.html\n", "Deleting ../data/html/20062007/1540.html\n", "Deleting ../data/html/20062007/1541.html\n", "Deleting ../data/html/20062007/1542.html\n", "Deleting ../data/html/20062007/1543.html\n", "Deleting ../data/html/20062007/1544.html\n", "Deleting ../data/html/20062007/1545.html\n", "Deleting ../data/html/20062007/1546.html\n", "Deleting ../data/html/20062007/1547.html\n", "Deleting ../data/html/20062007/1548.html\n", "Deleting ../data/html/20062007/1549.html\n", "Deleting ../data/html/20062007/1550.html\n", "Deleting ../data/html/20062007/1551.html\n", "Deleting ../data/html/20062007/1552.html\n", "Deleting ../data/html/20062007/1553.html\n", "Deleting ../data/html/20062007/1554.html\n", "Deleting ../data/html/20062007/1555.html\n", "Deleting ../data/html/20062007/1556.html\n", "Deleting ../data/html/20062007/1557.html\n", "Deleting ../data/html/20062007/1558.html\n", "Deleting ../data/html/20062007/1559.html\n", "Deleting ../data/html/20062007/1560.html\n", "Deleting ../data/html/20062007/1561.html\n", "Deleting ../data/html/20062007/1562.html\n", "Deleting ../data/html/20062007/1563.html\n", "Deleting ../data/html/20062007/1564.html\n", "Deleting ../data/html/20062007/1565.html\n", "Deleting ../data/html/20062007/1566.html\n", "Deleting ../data/html/20062007/1567.html\n", "Deleting ../data/html/20062007/1568.html\n", "Deleting ../data/html/20062007/1569.html\n", "Deleting ../data/html/20062007/1570.html\n", "Deleting ../data/html/20062007/1571.html\n", "Deleting ../data/html/20062007/1572.html\n", "Deleting ../data/html/20062007/1573.html\n", "Deleting ../data/html/20062007/1574.html\n", "Deleting ../data/html/20062007/1575.html\n", "Deleting ../data/html/20062007/1576.html\n", "Deleting ../data/html/20062007/1577.html\n", "Deleting ../data/html/20062007/1578.html\n", "Deleting ../data/html/20062007/1579.html\n", "Deleting ../data/html/20062007/1580.html\n", "Deleting ../data/html/20062007/1581.html\n", "Deleting ../data/html/20062007/1582.html\n", "Deleting ../data/html/20062007/1583.html\n", "Deleting ../data/html/20062007/1584.html\n", "Deleting ../data/html/20062007/1585.html\n", "Deleting ../data/html/20062007/1586.html\n", "Deleting ../data/html/20062007/1587.html\n", "Deleting ../data/html/20062007/1588.html\n", "Deleting ../data/html/20062007/1589.html\n", "Deleting ../data/html/20062007/1590.html\n", "Deleting ../data/html/20062007/1591.html\n", "Deleting ../data/html/20062007/1592.html\n", "Deleting ../data/html/20062007/1593.html\n", "Deleting ../data/html/20062007/1594.html\n", "Deleting ../data/html/20062007/1595.html\n", "Deleting ../data/html/20062007/1596.html\n", "Deleting ../data/html/20062007/1597.html\n", "Deleting ../data/html/20062007/1598.html\n", "Deleting ../data/html/20062007/1599.html\n", "Deleting ../data/html/20062007/1600.html\n", "Deleting ../data/html/20062007/1601.html\n", "Deleting ../data/html/20062007/1602.html\n", "Deleting ../data/html/20062007/1603.html\n", "Deleting ../data/html/20062007/1604.html\n", "Deleting ../data/html/20062007/1605.html\n", "Deleting ../data/html/20062007/1606.html\n", "Deleting ../data/html/20062007/1607.html\n", "Deleting ../data/html/20062007/1608.html\n", "Deleting ../data/html/20062007/1609.html\n", "Deleting ../data/html/20062007/1610.html\n", "Deleting ../data/html/20062007/1611.html\n", "Deleting ../data/html/20062007/1612.html\n", "Deleting ../data/html/20062007/1613.html\n", "Deleting ../data/html/20062007/1614.html\n", "Deleting ../data/html/20062007/1615.html\n", "Deleting ../data/html/20062007/1616.html\n", "Deleting ../data/html/20062007/1617.html\n", "Deleting ../data/html/20062007/1618.html\n", "Deleting ../data/html/20062007/1619.html\n", "Deleting ../data/html/20062007/1620.html\n", "Deleting ../data/html/20062007/1621.html\n", "Deleting ../data/html/20062007/1622.html\n", "Deleting ../data/html/20062007/1623.html\n", "Deleting ../data/html/20062007/1624.html\n", "Deleting ../data/html/20062007/1625.html\n", "Deleting ../data/html/20062007/1626.html\n", "Deleting ../data/html/20062007/1627.html\n", "Deleting ../data/html/20062007/1628.html\n", "Deleting ../data/html/20062007/1629.html\n", "Deleting ../data/html/20062007/1630.html\n", "Deleting ../data/html/20062007/1631.html\n", "Deleting ../data/html/20062007/1632.html\n", "Deleting ../data/html/20062007/1633.html\n", "Deleting ../data/html/20062007/1634.html\n", "Deleting ../data/html/20062007/1635.html\n", "Deleting ../data/html/20062007/1636.html\n", "Deleting ../data/html/20062007/1637.html\n", "Deleting ../data/html/20062007/1638.html\n", "Deleting ../data/html/20062007/1639.html\n", "Deleting ../data/html/20062007/1640.html\n", "Deleting ../data/html/20062007/1641.html\n", "Deleting ../data/html/20062007/1642.html\n", "Deleting ../data/html/20062007/1643.html\n", "Deleting ../data/html/20062007/1644.html\n", "Deleting ../data/html/20062007/1645.html\n", "Deleting ../data/html/20062007/1646.html\n", "Deleting ../data/html/20062007/1647.html\n", "Deleting ../data/html/20062007/1648.html\n", "Deleting ../data/html/20062007/1649.html\n", "Deleting ../data/html/20062007/1650.html\n", "Deleting ../data/html/20062007/1651.html\n", "Deleting ../data/html/20062007/1652.html\n", "Deleting ../data/html/20062007/1653.html\n", "Deleting ../data/html/20062007/1654.html\n", "Deleting ../data/html/20062007/1655.html\n", "Deleting ../data/html/20062007/1656.html\n", "Deleting ../data/html/20062007/1657.html\n", "Deleting ../data/html/20062007/1658.html\n", "Deleting ../data/html/20062007/1659.html\n", "Deleting ../data/html/20062007/1660.html\n", "Deleting ../data/html/20062007/1661.html\n", "Deleting ../data/html/20062007/1662.html\n", "Deleting ../data/html/20062007/1663.html\n", "Deleting ../data/html/20062007/1664.html\n", "Deleting ../data/html/20062007/1665.html\n", "Deleting ../data/html/20062007/1666.html\n", "Deleting ../data/html/20062007/1667.html\n", "Deleting ../data/html/20062007/1668.html\n", "Deleting ../data/html/20062007/1669.html\n", "Deleting ../data/html/20062007/1670.html\n", "Deleting ../data/html/20062007/1671.html\n", "Deleting ../data/html/20062007/1672.html\n", "Deleting ../data/html/20062007/1673.html\n", "Deleting ../data/html/20062007/1674.html\n", "Deleting ../data/html/20062007/1675.html\n", "Deleting ../data/html/20062007/1676.html\n", "Deleting ../data/html/20062007/1677.html\n", "Deleting ../data/html/20062007/1678.html\n", "Deleting ../data/html/20062007/1679.html\n", "Deleting ../data/html/20062007/1680.html\n", "Deleting ../data/html/20062007/1681.html\n", "Deleting ../data/html/20062007/1682.html\n", "Deleting ../data/html/20062007/1683.html\n", "Deleting ../data/html/20062007/1684.html\n", "Deleting ../data/html/20062007/1685.html\n", "Deleting ../data/html/20062007/1686.html\n", "Deleting ../data/html/20062007/1687.html\n", "Deleting ../data/html/20062007/1688.html\n", "Deleting ../data/html/20062007/1689.html\n", "Deleting ../data/html/20062007/1690.html\n", "Deleting ../data/html/20062007/1691.html\n", "Deleting ../data/html/20062007/1692.html\n", "Deleting ../data/html/20062007/1693.html\n", "Deleting ../data/html/20062007/1694.html\n", "Deleting ../data/html/20062007/1695.html\n", "Deleting ../data/html/20062007/1696.html\n", "Deleting ../data/html/20062007/1697.html\n", "Deleting ../data/html/20062007/1698.html\n", "Deleting ../data/html/20062007/1699.html\n", "Deleting ../data/html/20062007/1700.html\n", "Deleting ../data/html/20062007/1701.html\n", "Deleting ../data/html/20062007/1702.html\n", "Deleting ../data/html/20062007/1703.html\n", "Deleting ../data/html/20062007/1704.html\n", "Deleting ../data/html/20062007/1705.html\n", "Deleting ../data/html/20062007/1706.html\n", "Deleting ../data/html/20062007/1707.html\n", "Deleting ../data/html/20062007/1708.html\n", "Deleting ../data/html/20062007/1709.html\n", "Deleting ../data/html/20062007/1710.html\n", "Deleting ../data/html/20062007/1711.html\n", "Deleting ../data/html/20062007/1712.html\n", "Deleting ../data/html/20062007/1713.html\n", "Deleting ../data/html/20062007/1714.html\n", "Deleting ../data/html/20062007/1715.html\n", "Deleting ../data/html/20062007/1716.html\n", "Deleting ../data/html/20062007/1717.html\n", "Deleting ../data/html/20062007/1718.html\n", "Deleting ../data/html/20062007/1719.html\n", "Deleting ../data/html/20062007/1720.html\n", "Deleting ../data/html/20062007/1721.html\n", "Deleting ../data/html/20062007/1722.html\n", "Deleting ../data/html/20062007/1723.html\n", "Deleting ../data/html/20062007/1724.html\n", "Deleting ../data/html/20062007/1725.html\n", "Deleting ../data/html/20062007/1726.html\n", "Deleting ../data/html/20062007/1727.html\n", "Deleting ../data/html/20062007/1728.html\n", "Deleting ../data/html/20062007/1729.html\n", "Deleting ../data/html/20062007/1730.html\n", "Deleting ../data/html/20062007/1731.html\n", "Deleting ../data/html/20062007/1732.html\n", "Deleting ../data/html/20062007/1733.html\n", "Deleting ../data/html/20062007/1734.html\n", "Deleting ../data/html/20062007/1735.html\n", "Deleting ../data/html/20062007/1736.html\n", "Deleting ../data/html/20062007/1737.html\n", "Deleting ../data/html/20062007/1738.html\n", "Deleting ../data/html/20062007/1739.html\n", "Deleting ../data/html/20062007/1740.html\n", "Deleting ../data/html/20062007/1741.html\n", "Deleting ../data/html/20062007/1742.html\n", "Deleting ../data/html/20062007/1743.html\n", "Deleting ../data/html/20062007/1744.html\n", "Deleting ../data/html/20062007/1745.html\n", "Deleting ../data/html/20062007/1746.html\n", "Deleting ../data/html/20062007/1747.html\n", "Deleting ../data/html/20062007/1748.html\n", "Deleting ../data/html/20062007/1749.html\n", "Deleting ../data/html/20062007/1750.html\n", "Deleting ../data/html/20062007/1751.html\n", "Deleting ../data/html/20062007/1752.html\n", "Deleting ../data/html/20062007/1753.html\n", "Deleting ../data/html/20062007/1754.html\n", "Deleting ../data/html/20062007/1755.html\n", "Deleting ../data/html/20062007/1756.html\n", "Deleting ../data/html/20062007/1757.html\n", "Deleting ../data/html/20062007/1758.html\n", "Deleting ../data/html/20062007/1759.html\n", "Deleting ../data/html/20062007/1760.html\n", "Deleting ../data/html/20062007/1761.html\n", "Deleting ../data/html/20062007/1762.html\n", "Deleting ../data/html/20062007/1763.html\n", "Deleting ../data/html/20062007/1764.html\n", "Deleting ../data/html/20062007/1765.html\n", "Deleting ../data/html/20062007/1766.html\n", "Deleting ../data/html/20062007/1767.html\n", "Deleting ../data/html/20062007/1768.html\n", "Deleting ../data/html/20062007/1769.html\n", "Deleting ../data/html/20062007/1770.html\n", "Deleting ../data/html/20062007/1771.html\n", "Deleting ../data/html/20062007/1772.html\n", "Deleting ../data/html/20062007/1773.html\n", "Deleting ../data/html/20062007/1774.html\n", "Deleting ../data/html/20062007/1775.html\n", "Deleting ../data/html/20062007/1776.html\n", "Deleting ../data/html/20062007/1777.html\n", "Deleting ../data/html/20062007/1778.html\n", "Deleting ../data/html/20062007/1779.html\n", "Deleting ../data/html/20062007/1780.html\n", "Deleting ../data/html/20062007/1781.html\n", "Deleting ../data/html/20062007/1782.html\n", "Deleting ../data/html/20062007/1783.html\n", "Deleting ../data/html/20062007/1784.html\n", "Deleting ../data/html/20062007/1785.html\n", "Deleting ../data/html/20062007/1786.html\n", "Deleting ../data/html/20062007/1787.html\n", "Deleting ../data/html/20062007/1788.html\n", "Deleting ../data/html/20062007/1789.html\n", "Deleting ../data/html/20062007/1790.html\n", "Deleting ../data/html/20062007/1791.html\n", "Deleting ../data/html/20062007/1792.html\n", "Deleting ../data/html/20062007/1793.html\n", "Deleting ../data/html/20062007/1794.html\n", "Deleting ../data/html/20062007/1795.html\n", "Deleting ../data/html/20062007/1796.html\n", "Deleting ../data/html/20062007/1797.html\n", "Deleting ../data/html/20062007/1798.html\n", "Deleting ../data/html/20062007/1799.html\n", "Deleting ../data/html/20062007/1800.html\n", "Deleting ../data/html/20062007/1801.html\n", "Deleting ../data/html/20062007/1802.html\n", "Deleting ../data/html/20062007/1803.html\n", "Deleting ../data/html/20062007/1804.html\n", "Deleting ../data/html/20062007/1805.html\n", "Deleting ../data/html/20062007/1806.html\n", "Deleting ../data/html/20062007/1807.html\n", "Deleting ../data/html/20062007/1808.html\n", "Deleting ../data/html/20062007/1809.html\n", "Deleting ../data/html/20062007/1810.html\n", "Deleting ../data/html/20062007/1811.html\n", "Deleting ../data/html/20062007/1812.html\n", "Deleting ../data/html/20062007/1813.html\n", "Deleting ../data/html/20062007/1814.html\n", "Deleting ../data/html/20062007/1815.html\n", "Deleting ../data/html/20062007/1816.html\n", "Deleting ../data/html/20062007/1817.html\n", "Deleting ../data/html/20062007/1818.html\n", "Deleting ../data/html/20062007/1819.html\n", "Deleting ../data/html/20062007/1820.html\n", "Deleting ../data/html/20062007/1821.html\n", "Deleting ../data/html/20062007/1822.html\n", "Deleting ../data/html/20062007/1823.html\n", "Deleting ../data/html/20062007/1824.html\n", "Deleting ../data/html/20062007/1825.html\n", "Deleting ../data/html/20062007/1826.html\n", "Deleting ../data/html/20062007/1827.html\n", "Deleting ../data/html/20062007/1828.html\n", "Deleting ../data/html/20062007/1829.html\n", "Deleting ../data/html/20062007/1830.html\n", "Deleting ../data/html/20062007/1831.html\n", "Deleting ../data/html/20062007/1832.html\n", "Deleting ../data/html/20062007/1833.html\n", "Deleting ../data/html/20062007/1834.html\n", "Deleting ../data/html/20062007/1835.html\n", "Deleting ../data/html/20062007/1836.html\n", "Deleting ../data/html/20062007/1837.html\n", "Deleting ../data/html/20062007/1838.html\n", "Deleting ../data/html/20062007/1839.html\n", "Deleting ../data/html/20062007/1840.html\n", "Deleting ../data/html/20062007/1841.html\n", "Deleting ../data/html/20062007/1842.html\n", "Deleting ../data/html/20062007/1843.html\n", "Deleting ../data/html/20062007/1844.html\n", "Deleting ../data/html/20062007/1845.html\n", "Deleting ../data/html/20062007/1846.html\n", "Deleting ../data/html/20062007/1847.html\n", "Deleting ../data/html/20062007/1848.html\n", "Deleting ../data/html/20062007/1849.html\n", "Deleting ../data/html/20062007/1850.html\n", "Deleting ../data/html/20062007/1851.html\n", "Deleting ../data/html/20062007/1852.html\n", "Deleting ../data/html/20062007/1853.html\n", "Deleting ../data/html/20062007/1854.html\n", "Deleting ../data/html/20062007/1855.html\n", "Deleting ../data/html/20062007/1856.html\n", "Deleting ../data/html/20062007/1857.html\n", "Deleting ../data/html/20062007/1858.html\n", "Deleting ../data/html/20062007/1859.html\n", "Deleting ../data/html/20062007/1860.html\n", "Deleting ../data/html/20062007/1861.html\n", "Deleting ../data/html/20062007/1862.html\n", "Deleting ../data/html/20062007/1863.html\n", "Deleting ../data/html/20062007/1864.html\n", "Deleting ../data/html/20062007/1865.html\n", "Deleting ../data/html/20062007/1866.html\n", "Deleting ../data/html/20062007/1867.html\n", "Deleting ../data/html/20062007/1868.html\n", "Deleting ../data/html/20062007/1869.html\n", "Deleting ../data/html/20062007/1870.html\n", "Deleting ../data/html/20062007/1871.html\n", "Deleting ../data/html/20062007/1872.html\n", "Deleting ../data/html/20062007/1873.html\n", "Deleting ../data/html/20062007/1874.html\n", "Deleting ../data/html/20062007/1875.html\n", "Deleting ../data/html/20062007/1876.html\n", "Deleting ../data/html/20062007/1877.html\n", "Deleting ../data/html/20062007/1878.html\n", "Deleting ../data/html/20062007/1879.html\n", "Deleting ../data/html/20062007/1880.html\n", "Deleting ../data/html/20062007/1881.html\n", "Deleting ../data/html/20062007/1882.html\n", "Deleting ../data/html/20062007/1883.html\n", "Deleting ../data/html/20062007/1884.html\n", "Deleting ../data/html/20062007/1885.html\n", "Deleting ../data/html/20062007/1886.html\n", "Deleting ../data/html/20062007/1887.html\n", "Deleting ../data/html/20062007/1888.html\n", "Deleting ../data/html/20062007/1889.html\n", "Deleting ../data/html/20062007/1890.html\n", "Deleting ../data/html/20062007/1891.html\n", "Deleting ../data/html/20062007/1892.html\n", "Deleting ../data/html/20062007/1893.html\n", "Deleting ../data/html/20062007/1894.html\n", "Deleting ../data/html/20062007/1895.html\n", "Deleting ../data/html/20062007/1896.html\n", "Deleting ../data/html/20062007/1897.html\n", "Deleting ../data/html/20062007/1898.html\n", "Deleting ../data/html/20062007/1899.html\n", "Deleting ../data/html/20062007/1900.html\n", "Deleting ../data/html/20062007/1901.html\n", "Deleting ../data/html/20062007/1902.html\n", "Deleting ../data/html/20062007/1903.html\n", "Deleting ../data/html/20062007/1904.html\n", "Deleting ../data/html/20062007/1905.html\n", "Deleting ../data/html/20062007/1906.html\n", "Deleting ../data/html/20062007/1907.html\n", "Deleting ../data/html/20062007/1908.html\n", "Deleting ../data/html/20062007/1909.html\n", "Deleting ../data/html/20062007/1910.html\n", "Deleting ../data/html/20062007/1911.html\n", "Deleting ../data/html/20062007/1912.html\n", "Deleting ../data/html/20062007/1913.html\n", "Deleting ../data/html/20062007/1914.html\n", "Deleting ../data/html/20062007/1915.html\n", "Deleting ../data/html/20062007/1916.html\n", "Deleting ../data/html/20062007/1917.html\n", "Deleting ../data/html/20062007/1918.html\n", "Deleting ../data/html/20062007/1919.html\n", "Deleting ../data/html/20062007/1920.html\n", "Deleting ../data/html/20062007/1921.html\n", "Deleting ../data/html/20062007/1922.html\n", "Deleting ../data/html/20062007/1923.html\n", "Deleting ../data/html/20062007/1924.html\n", "Deleting ../data/html/20062007/1925.html\n", "Deleting ../data/html/20062007/1926.html\n", "Deleting ../data/html/20062007/1927.html\n", "Deleting ../data/html/20062007/1928.html\n", "Deleting ../data/html/20062007/1929.html\n", "Deleting ../data/html/20062007/1930.html\n", "Deleting ../data/html/20062007/1931.html\n", "Deleting ../data/html/20062007/1932.html\n", "Deleting ../data/html/20062007/1933.html\n", "Deleting ../data/html/20062007/1934.html\n", "Deleting ../data/html/20062007/1935.html\n", "Deleting ../data/html/20062007/1936.html\n", "Deleting ../data/html/20062007/1937.html\n", "Deleting ../data/html/20062007/1938.html\n", "Deleting ../data/html/20062007/1939.html\n", "Deleting ../data/html/20062007/1940.html\n", "Deleting ../data/html/20062007/1941.html\n", "Deleting ../data/html/20062007/1942.html\n", "Deleting ../data/html/20062007/1943.html\n", "Deleting ../data/html/20062007/1944.html\n", "Deleting ../data/html/20062007/1945.html\n", "Deleting ../data/html/20062007/1946.html\n", "Deleting ../data/html/20062007/1947.html\n", "Deleting ../data/html/20062007/1948.html\n", "Deleting ../data/html/20062007/1949.html\n", "Deleting ../data/html/20062007/1950.html\n", "Deleting ../data/html/20062007/1951.html\n", "Deleting ../data/html/20062007/1952.html\n", "Deleting ../data/html/20062007/1953.html\n", "Deleting ../data/html/20062007/1954.html\n", "Deleting ../data/html/20062007/1955.html\n", "Deleting ../data/html/20062007/1956.html\n", "Deleting ../data/html/20062007/1957.html\n", "Deleting ../data/html/20062007/1958.html\n", "Deleting ../data/html/20062007/1959.html\n", "Deleting ../data/html/20062007/1960.html\n", "Deleting ../data/html/20062007/1961.html\n", "Deleting ../data/html/20062007/1962.html\n", "Deleting ../data/html/20062007/1963.html\n", "Deleting ../data/html/20062007/1964.html\n", "Deleting ../data/html/20062007/1965.html\n", "Deleting ../data/html/20062007/1966.html\n", "Deleting ../data/html/20062007/1967.html\n", "Deleting ../data/html/20062007/1968.html\n", "Deleting ../data/html/20062007/1969.html\n", "Deleting ../data/html/20062007/1970.html\n", "Deleting ../data/html/20062007/1971.html\n", "Deleting ../data/html/20062007/1972.html\n", "Deleting ../data/html/20062007/1973.html\n", "Deleting ../data/html/20062007/1974.html\n", "Deleting ../data/html/20062007/1975.html\n", "Deleting ../data/html/20062007/1976.html\n", "Deleting ../data/html/20062007/1977.html\n", "Deleting ../data/html/20062007/1978.html\n", "Deleting ../data/html/20062007/1979.html\n", "Deleting ../data/html/20062007/1980.html\n", "Deleting ../data/html/20062007/1981.html\n", "Deleting ../data/html/20062007/1982.html\n", "Deleting ../data/html/20062007/1983.html\n", "Deleting ../data/html/20062007/1984.html\n", "Deleting ../data/html/20062007/1985.html\n", "Deleting ../data/html/20062007/1986.html\n", "Deleting ../data/html/20062007/1987.html\n", "Deleting ../data/html/20062007/1988.html\n", "Deleting ../data/html/20062007/1989.html\n", "Deleting ../data/html/20062007/1990.html\n", "Deleting ../data/html/20062007/1991.html\n", "Deleting ../data/html/20062007/1992.html\n", "Deleting ../data/html/20062007/1993.html\n", "Deleting ../data/html/20062007/1994.html\n", "Deleting ../data/html/20062007/1995.html\n", "Deleting ../data/html/20062007/1996.html\n", "Deleting ../data/html/20062007/1997.html\n", "Deleting ../data/html/20062007/1998.html\n", "Deleting ../data/html/20062007/1999.html\n", "Deleting ../data/html/20062007/2000.html\n", "Deleting ../data/html/20062007/2001.html\n", "Deleting ../data/html/20062007/2002.html\n", "Deleting ../data/html/20062007/2003.html\n", "Deleting ../data/html/20062007/2004.html\n", "Deleting ../data/html/20062007/2005.html\n", "Deleting ../data/html/20062007/2006.html\n", "Deleting ../data/html/20062007/2007.html\n", "Deleting ../data/html/20062007/2008.html\n", "Deleting ../data/html/20062007/2009.html\n", "Deleting ../data/html/20062007/2010.html\n", "Deleting ../data/html/20062007/2011.html\n", "Deleting ../data/html/20062007/2012.html\n", "Deleting ../data/html/20062007/2013.html\n", "Deleting ../data/html/20062007/2014.html\n", "Deleting ../data/html/20062007/2015.html\n", "Deleting ../data/html/20062007/2016.html\n", "Deleting ../data/html/20062007/2017.html\n", "Deleting ../data/html/20062007/2018.html\n", "Deleting ../data/html/20062007/2019.html\n", "Deleting ../data/html/20062007/2020.html\n", "Deleting ../data/html/20062007/2021.html\n", "Deleting ../data/html/20062007/2022.html\n", "Deleting ../data/html/20062007/2023.html\n", "Deleting ../data/html/20062007/2024.html\n", "Deleting ../data/html/20062007/2025.html\n", "Deleting ../data/html/20062007/2026.html\n", "Deleting ../data/html/20062007/2027.html\n", "Deleting ../data/html/20062007/2028.html\n", "Deleting ../data/html/20062007/2029.html\n", "Deleting ../data/html/20062007/2030.html\n", "Deleting ../data/html/20062007/2031.html\n", "Deleting ../data/html/20062007/2032.html\n", "Deleting ../data/html/20062007/2033.html\n", "Deleting ../data/html/20062007/2034.html\n", "Deleting ../data/html/20062007/2035.html\n", "Deleting ../data/html/20062007/2036.html\n", "Deleting ../data/html/20062007/2037.html\n", "Deleting ../data/html/20062007/2038.html\n", "Deleting ../data/html/20062007/2039.html\n", "Deleting ../data/html/20062007/2040.html\n", "Deleting ../data/html/20062007/2041.html\n", "Deleting ../data/html/20062007/2042.html\n", "Deleting ../data/html/20062007/2043.html\n", "Deleting ../data/html/20062007/2044.html\n", "Deleting ../data/html/20062007/2045.html\n", "Deleting ../data/html/20062007/2046.html\n", "Deleting ../data/html/20062007/2047.html\n", "Deleting ../data/html/20062007/2048.html\n", "Deleting ../data/html/20062007/2049.html\n", "Deleting ../data/html/20062007/2050.html\n", "Deleting ../data/html/20062007/2051.html\n", "Deleting ../data/html/20062007/2052.html\n", "Deleting ../data/html/20062007/2053.html\n", "Deleting ../data/html/20062007/2054.html\n", "Deleting ../data/html/20062007/2055.html\n", "Deleting ../data/html/20062007/2056.html\n", "Deleting ../data/html/20062007/2057.html\n", "Deleting ../data/html/20062007/2058.html\n", "Deleting ../data/html/20062007/2059.html\n", "Deleting ../data/html/20062007/2060.html\n", "Deleting ../data/html/20062007/2061.html\n", "Deleting ../data/html/20062007/2062.html\n", "Deleting ../data/html/20062007/2063.html\n", "Deleting ../data/html/20062007/2064.html\n", "Deleting ../data/html/20062007/2065.html\n", "Deleting ../data/html/20062007/2066.html\n", "Deleting ../data/html/20062007/2067.html\n", "Deleting ../data/html/20062007/2068.html\n", "Deleting ../data/html/20062007/2069.html\n", "Deleting ../data/html/20062007/2070.html\n", "Deleting ../data/html/20062007/2071.html\n", "Deleting ../data/html/20062007/2072.html\n", "Deleting ../data/html/20062007/2073.html\n", "Deleting ../data/html/20062007/2074.html\n", "Deleting ../data/html/20062007/2075.html\n", "Deleting ../data/html/20062007/2076.html\n", "Deleting ../data/html/20062007/2077.html\n", "Deleting ../data/html/20062007/2078.html\n", "Deleting ../data/html/20062007/2079.html\n", "Deleting ../data/html/20062007/2080.html\n", "Deleting ../data/html/20062007/2081.html\n", "Deleting ../data/html/20062007/2082.html\n", "Deleting ../data/html/20062007/2083.html\n", "Deleting ../data/html/20062007/2084.html\n", "Deleting ../data/html/20062007/2085.html\n", "Deleting ../data/html/20062007/2086.html\n", "Deleting ../data/html/20062007/2087.html\n", "Deleting ../data/html/20062007/2088.html\n", "Deleting ../data/html/20062007/2089.html\n", "Deleting ../data/html/20062007/2090.html\n", "Deleting ../data/html/20062007/2091.html\n", "Deleting ../data/html/20062007/2092.html\n", "Deleting ../data/html/20062007/2093.html\n", "Deleting ../data/html/20062007/2094.html\n", "Deleting ../data/html/20062007/2095.html\n", "Deleting ../data/html/20062007/2096.html\n", "Deleting ../data/html/20062007/2097.html\n", "Deleting ../data/html/20062007/2098.html\n", "Deleting ../data/html/20062007/2099.html\n", "Deleting ../data/html/20062007/2100.html\n", "Deleting ../data/html/20062007/2101.html\n", "Deleting ../data/html/20062007/2102.html\n", "Deleting ../data/html/20062007/2103.html\n", "Deleting ../data/html/20062007/2104.html\n", "Deleting ../data/html/20062007/2105.html\n", "Deleting ../data/html/20062007/2106.html\n", "Deleting ../data/html/20062007/2107.html\n", "Deleting ../data/html/20062007/2108.html\n", "Deleting ../data/html/20062007/2109.html\n", "Deleting ../data/html/20062007/2110.html\n", "Deleting ../data/html/20062007/2111.html\n", "Deleting ../data/html/20062007/2112.html\n", "Deleting ../data/html/20062007/2113.html\n", "Deleting ../data/html/20062007/2114.html\n", "Deleting ../data/html/20062007/2115.html\n", "Deleting ../data/html/20062007/2116.html\n", "Deleting ../data/html/20062007/2117.html\n", "Deleting ../data/html/20062007/2118.html\n", "Deleting ../data/html/20062007/2119.html\n", "Deleting ../data/html/20062007/2120.html\n", "Deleting ../data/html/20062007/2121.html\n", "Deleting ../data/html/20062007/2122.html\n", "Deleting ../data/html/20062007/2123.html\n", "Deleting ../data/html/20062007/2124.html\n", "Deleting ../data/html/20062007/2125.html\n", "Deleting ../data/html/20062007/2126.html\n", "Deleting ../data/html/20062007/2127.html\n", "Deleting ../data/html/20062007/2128.html\n", "Deleting ../data/html/20062007/2129.html\n", "Deleting ../data/html/20062007/2130.html\n", "Deleting ../data/html/20062007/2131.html\n", "Deleting ../data/html/20062007/2132.html\n", "Deleting ../data/html/20062007/2133.html\n", "Deleting ../data/html/20062007/2134.html\n", "Deleting ../data/html/20062007/2135.html\n", "Deleting ../data/html/20062007/2136.html\n", "Deleting ../data/html/20062007/2137.html\n", "Deleting ../data/html/20062007/2138.html\n", "Deleting ../data/html/20062007/2139.html\n", "Deleting ../data/html/20062007/2140.html\n", "Deleting ../data/html/20062007/2141.html\n", "Deleting ../data/html/20062007/2142.html\n", "Deleting ../data/html/20062007/2143.html\n", "Deleting ../data/html/20062007/2144.html\n", "Deleting ../data/html/20062007/2145.html\n", "Deleting ../data/html/20062007/2146.html\n", "Deleting ../data/html/20062007/2147.html\n", "Deleting ../data/html/20062007/2148.html\n", "Deleting ../data/html/20062007/2149.html\n", "Deleting ../data/html/20062007/2150.html\n", "Deleting ../data/html/20062007/2151.html\n", "Deleting ../data/html/20062007/2152.html\n", "Deleting ../data/html/20062007/2153.html\n", "Deleting ../data/html/20062007/2154.html\n", "Deleting ../data/html/20062007/2155.html\n", "Deleting ../data/html/20062007/2156.html\n", "Deleting ../data/html/20062007/2157.html\n", "Deleting ../data/html/20062007/2158.html\n", "Deleting ../data/html/20062007/2159.html\n", "Deleting ../data/html/20062007/2160.html\n", "Deleting ../data/html/20062007/2161.html\n", "Deleting ../data/html/20062007/2162.html\n", "Deleting ../data/html/20062007/2163.html\n", "Deleting ../data/html/20062007/2164.html\n", "Deleting ../data/html/20062007/2165.html\n", "Deleting ../data/html/20062007/2166.html\n", "Deleting ../data/html/20062007/2167.html\n", "Deleting ../data/html/20062007/2168.html\n", "Deleting ../data/html/20062007/2169.html\n", "Deleting ../data/html/20062007/2170.html\n", "Deleting ../data/html/20062007/2171.html\n", "Deleting ../data/html/20062007/2172.html\n", "Deleting ../data/html/20062007/2173.html\n", "Deleting ../data/html/20062007/2174.html\n", "Deleting ../data/html/20062007/2175.html\n", "Deleting ../data/html/20062007/2176.html\n", "Deleting ../data/html/20062007/2177.html\n", "Deleting ../data/html/20062007/2178.html\n", "Deleting ../data/html/20062007/2179.html\n", "Deleting ../data/html/20062007/2180.html\n", "Deleting ../data/html/20062007/2181.html\n", "Deleting ../data/html/20062007/2182.html\n", "Deleting ../data/html/20062007/2183.html\n", "Deleting ../data/html/20062007/2184.html\n", "Deleting ../data/html/20062007/2185.html\n", "Deleting ../data/html/20062007/2186.html\n", "Deleting ../data/html/20062007/2187.html\n", "Deleting ../data/html/20062007/2188.html\n", "Deleting ../data/html/20062007/2189.html\n", "Deleting ../data/html/20062007/2190.html\n", "Deleting ../data/html/20062007/2191.html\n", "Deleting ../data/html/20062007/2192.html\n", "Deleting ../data/html/20062007/2193.html\n", "Deleting ../data/html/20062007/2194.html\n", "Deleting ../data/html/20062007/2195.html\n", "Deleting ../data/html/20062007/2196.html\n", "Deleting ../data/html/20062007/2197.html\n", "Deleting ../data/html/20062007/2198.html\n", "Deleting ../data/html/20062007/2199.html\n", "Deleting ../data/html/20062007/2200.html\n", "Deleting ../data/html/20062007/2201.html\n", "Deleting ../data/html/20062007/2202.html\n", "Deleting ../data/html/20062007/2203.html\n", "Deleting ../data/html/20062007/2204.html\n", "Deleting ../data/html/20062007/2205.html\n", "Deleting ../data/html/20062007/2206.html\n", "Deleting ../data/html/20062007/2207.html\n", "Deleting ../data/html/20062007/2208.html\n", "Deleting ../data/html/20062007/2209.html\n", "Deleting ../data/html/20062007/2210.html\n", "Deleting ../data/html/20062007/2211.html\n", "Deleting ../data/html/20062007/2212.html\n", "Deleting ../data/html/20062007/2213.html\n", "Deleting ../data/html/20062007/2214.html\n", "Deleting ../data/html/20062007/2215.html\n", "Deleting ../data/html/20062007/2216.html\n", "Deleting ../data/html/20062007/2217.html\n", "Deleting ../data/html/20062007/2218.html\n", "Deleting ../data/html/20062007/2219.html\n", "Deleting ../data/html/20062007/2220.html\n", "Deleting ../data/html/20062007/2221.html\n", "Deleting ../data/html/20062007/2222.html\n", "Deleting ../data/html/20062007/2223.html\n", "Deleting ../data/html/20062007/2224.html\n", "Deleting ../data/html/20062007/2225.html\n", "Deleting ../data/html/20062007/2226.html\n", "Deleting ../data/html/20062007/2227.html\n", "Deleting ../data/html/20062007/2228.html\n", "Deleting ../data/html/20062007/2229.html\n", "Deleting ../data/html/20062007/2230.html\n", "Deleting ../data/html/20062007/2231.html\n", "Deleting ../data/html/20062007/2232.html\n", "Deleting ../data/html/20062007/2233.html\n", "Deleting ../data/html/20062007/2234.html\n", "Deleting ../data/html/20062007/2235.html\n", "Deleting ../data/html/20062007/2236.html\n", "Deleting ../data/html/20062007/2237.html\n", "Deleting ../data/html/20062007/2238.html\n", "Deleting ../data/html/20062007/2239.html\n", "Deleting ../data/html/20062007/2240.html\n", "Deleting ../data/html/20062007/2241.html\n", "Deleting ../data/html/20062007/2242.html\n", "Deleting ../data/html/20062007/2243.html\n", "Deleting ../data/html/20062007/2244.html\n", "Deleting ../data/html/20062007/2245.html\n", "Deleting ../data/html/20062007/2246.html\n", "Deleting ../data/html/20062007/2247.html\n", "Deleting ../data/html/20062007/2248.html\n", "Deleting ../data/html/20062007/2249.html\n", "Deleting ../data/html/20062007/2250.html\n", "Deleting ../data/html/20062007/2251.html\n", "Deleting ../data/html/20062007/2252.html\n", "Deleting ../data/html/20062007/2253.html\n", "Deleting ../data/html/20062007/2254.html\n", "Deleting ../data/html/20062007/2255.html\n", "Deleting ../data/html/20062007/2256.html\n", "Deleting ../data/html/20062007/2257.html\n", "Deleting ../data/html/20062007/2258.html\n", "Deleting ../data/html/20062007/2259.html\n", "Deleting ../data/html/20062007/2260.html\n", "Deleting ../data/html/20062007/2261.html\n", "Deleting ../data/html/20062007/2262.html\n", "Deleting ../data/html/20062007/2263.html\n", "Deleting ../data/html/20062007/2264.html\n", "Deleting ../data/html/20062007/2265.html\n", "Deleting ../data/html/20062007/2266.html\n", "Deleting ../data/html/20062007/2267.html\n", "Deleting ../data/html/20062007/2268.html\n", "Deleting ../data/html/20062007/2269.html\n", "Deleting ../data/html/20062007/2270.html\n", "Deleting ../data/html/20062007/2271.html\n", "Deleting ../data/html/20062007/2272.html\n", "Deleting ../data/html/20062007/2273.html\n", "Deleting ../data/html/20062007/2274.html\n", "Deleting ../data/html/20062007/2275.html\n", "Deleting ../data/html/20062007/2276.html\n", "Deleting ../data/html/20062007/2277.html\n", "Deleting ../data/html/20062007/2278.html\n", "Deleting ../data/html/20062007/2279.html\n", "Deleting ../data/html/20062007/2280.html\n", "Deleting ../data/html/20062007/2281.html\n", "Deleting ../data/html/20062007/2282.html\n", "Deleting ../data/html/20062007/2283.html\n", "Deleting ../data/html/20062007/2284.html\n", "Deleting ../data/html/20062007/2285.html\n", "Deleting ../data/html/20062007/2286.html\n", "Deleting ../data/html/20062007/2287.html\n", "Deleting ../data/html/20062007/2288.html\n", "Deleting ../data/html/20062007/2289.html\n", "Deleting ../data/html/20062007/2290.html\n", "Deleting ../data/html/20062007/2291.html\n", "Deleting ../data/html/20062007/2292.html\n", "Deleting ../data/html/20062007/2293.html\n", "Deleting ../data/html/20062007/2294.html\n", "Deleting ../data/html/20062007/2295.html\n", "Deleting ../data/html/20062007/2296.html\n", "Deleting ../data/html/20062007/2297.html\n", "Deleting ../data/html/20062007/2298.html\n", "Deleting ../data/html/20062007/2299.html\n", "Deleting ../data/html/20062007/2300.html\n", "Deleting ../data/html/20062007/2301.html\n", "Deleting ../data/html/20062007/2302.html\n", "Deleting ../data/html/20062007/2303.html\n", "Deleting ../data/html/20062007/2304.html\n", "Deleting ../data/html/20062007/2305.html\n", "Deleting ../data/html/20062007/2306.html\n", "Deleting ../data/html/20062007/2307.html\n", "Deleting ../data/html/20062007/2308.html\n", "Deleting ../data/html/20062007/2309.html\n", "Deleting ../data/html/20062007/2310.html\n", "Deleting ../data/html/20062007/2311.html\n", "Deleting ../data/html/20062007/2312.html\n", "Deleting ../data/html/20062007/2313.html\n", "Deleting ../data/html/20062007/2314.html\n", "Deleting ../data/html/20062007/2315.html\n", "Deleting ../data/html/20062007/2316.html\n", "Deleting ../data/html/20062007/2317.html\n", "Deleting ../data/html/20062007/2318.html\n", "Deleting ../data/html/20062007/2319.html\n", "Deleting ../data/html/20062007/2320.html\n", "Deleting ../data/html/20062007/2321.html\n", "Deleting ../data/html/20062007/2322.html\n", "Deleting ../data/html/20062007/2323.html\n", "Deleting ../data/html/20062007/2324.html\n", "Deleting ../data/html/20062007/2325.html\n", "Deleting ../data/html/20062007/2326.html\n", "Deleting ../data/html/20062007/2327.html\n", "Deleting ../data/html/20062007/2328.html\n", "Deleting ../data/html/20062007/2329.html\n", "Deleting ../data/html/20062007/2330.html\n", "Deleting ../data/html/20062007/2331.html\n", "Deleting ../data/html/20062007/2332.html\n", "Deleting ../data/html/20062007/2333.html\n", "Deleting ../data/html/20062007/2334.html\n", "Deleting ../data/html/20062007/2335.html\n", "Deleting ../data/html/20062007/2336.html\n", "Deleting ../data/html/20062007/2337.html\n", "Deleting ../data/html/20062007/2338.html\n", "Deleting ../data/html/20062007/2339.html\n", "Deleting ../data/html/20062007/2340.html\n", "Deleting ../data/html/20062007/2341.html\n", "Deleting ../data/html/20062007/2342.html\n", "Deleting ../data/html/20062007/2343.html\n", "Deleting ../data/html/20062007/2344.html\n", "Deleting ../data/html/20062007/2345.html\n", "Deleting ../data/html/20062007/2346.html\n", "Deleting ../data/html/20062007/2347.html\n", "Deleting ../data/html/20062007/2348.html\n", "Deleting ../data/html/20062007/2349.html\n", "Deleting ../data/html/20062007/2350.html\n", "Deleting ../data/html/20062007/2351.html\n", "Deleting ../data/html/20062007/2352.html\n", "Deleting ../data/html/20062007/2353.html\n", "Deleting ../data/html/20062007/2354.html\n", "Deleting ../data/html/20062007/2355.html\n", "Deleting ../data/html/20062007/2356.html\n", "Deleting ../data/html/20062007/2357.html\n", "Deleting ../data/html/20062007/2358.html\n", "Deleting ../data/html/20062007/2359.html\n", "Deleting ../data/html/20062007/2360.html\n", "Deleting ../data/html/20062007/2361.html\n", "Deleting ../data/html/20062007/2362.html\n", "Deleting ../data/html/20062007/2363.html\n", "Deleting ../data/html/20062007/2364.html\n", "Deleting ../data/html/20062007/2365.html\n", "Deleting ../data/html/20062007/2366.html\n", "Deleting ../data/html/20062007/2367.html\n", "Deleting ../data/html/20062007/2368.html\n", "Deleting ../data/html/20062007/2369.html\n", "Deleting ../data/html/20062007/2370.html\n", "Deleting ../data/html/20062007/2371.html\n", "Deleting ../data/html/20062007/2372.html\n", "Deleting ../data/html/20062007/2373.html\n", "Deleting ../data/html/20062007/2374.html\n", "Deleting ../data/html/20062007/2375.html\n", "Deleting ../data/html/20062007/2376.html\n", "Deleting ../data/html/20062007/2377.html\n", "Deleting ../data/html/20062007/2378.html\n", "Deleting ../data/html/20062007/2379.html\n", "Deleting ../data/html/20062007/2380.html\n", "Deleting ../data/html/20062007/2381.html\n", "Deleting ../data/html/20062007/2382.html\n", "Deleting ../data/html/20062007/2383.html\n", "Deleting ../data/html/20062007/2384.html\n", "Deleting ../data/html/20062007/2385.html\n", "Deleting ../data/html/20062007/2386.html\n", "Deleting ../data/html/20062007/2387.html\n", "Deleting ../data/html/20062007/2388.html\n", "Deleting ../data/html/20062007/2389.html\n", "Deleting ../data/html/20062007/2390.html\n", "Deleting ../data/html/20062007/2391.html\n", "Deleting ../data/html/20062007/2392.html\n", "Deleting ../data/html/20062007/2393.html\n", "Deleting ../data/html/20062007/2394.html\n", "Deleting ../data/html/20062007/2395.html\n", "Deleting ../data/html/20062007/2396.html\n", "Deleting ../data/html/20062007/2397.html\n", "Deleting ../data/html/20062007/2398.html\n", "Deleting ../data/html/20062007/2399.html\n", "Deleting ../data/html/20062007/2400.html\n", "Deleting ../data/html/20062007/2401.html\n", "Deleting ../data/html/20062007/2402.html\n", "Deleting ../data/html/20062007/2403.html\n", "Deleting ../data/html/20062007/2404.html\n", "Deleting ../data/html/20062007/2405.html\n", "Deleting ../data/html/20062007/2406.html\n", "Deleting ../data/html/20062007/2407.html\n", "Deleting ../data/html/20062007/2408.html\n", "Deleting ../data/html/20062007/2409.html\n", "Deleting ../data/html/20062007/2410.html\n", "Deleting ../data/html/20062007/2411.html\n", "Deleting ../data/html/20062007/2412.html\n", "Deleting ../data/html/20062007/2413.html\n", "Deleting ../data/html/20062007/2414.html\n", "Deleting ../data/html/20062007/2415.html\n", "Deleting ../data/html/20062007/2416.html\n", "Deleting ../data/html/20062007/2417.html\n", "Deleting ../data/html/20062007/2418.html\n", "Deleting ../data/html/20062007/2419.html\n", "Deleting ../data/html/20062007/2420.html\n", "Deleting ../data/html/20062007/2421.html\n", "Deleting ../data/html/20062007/2422.html\n", "Deleting ../data/html/20062007/2423.html\n", "Deleting ../data/html/20062007/2424.html\n", "Deleting ../data/html/20062007/2425.html\n", "Deleting ../data/html/20062007/2426.html\n", "Deleting ../data/html/20062007/2427.html\n", "Deleting ../data/html/20062007/2428.html\n", "Deleting ../data/html/20062007/2429.html\n", "Deleting ../data/html/20062007/2430.html\n", "Deleting ../data/html/20062007/2431.html\n", "Deleting ../data/html/20062007/2432.html\n", "Deleting ../data/html/20062007/2433.html\n", "Deleting ../data/html/20062007/2434.html\n", "Deleting ../data/html/20062007/2435.html\n", "Deleting ../data/html/20062007/2436.html\n", "Deleting ../data/html/20062007/2437.html\n", "Deleting ../data/html/20062007/2438.html\n", "Deleting ../data/html/20062007/2439.html\n", "Deleting ../data/html/20062007/2440.html\n", "Deleting ../data/html/20062007/2441.html\n", "Deleting ../data/html/20062007/2442.html\n", "Deleting ../data/html/20062007/2443.html\n", "Deleting ../data/html/20062007/2444.html\n", "Deleting ../data/html/20062007/2445.html\n", "Deleting ../data/html/20062007/2446.html\n", "Deleting ../data/html/20062007/2447.html\n", "Deleting ../data/html/20062007/2448.html\n", "Deleting ../data/html/20062007/2449.html\n", "Deleting ../data/html/20062007/2450.html\n", "Deleting ../data/html/20062007/2451.html\n", "Deleting ../data/html/20062007/2452.html\n", "Deleting ../data/html/20062007/2453.html\n", "Deleting ../data/html/20062007/2454.html\n", "Deleting ../data/html/20062007/2455.html\n", "Deleting ../data/html/20062007/2456.html\n", "Deleting ../data/html/20062007/2457.html\n", "Deleting ../data/html/20062007/2458.html\n", "Deleting ../data/html/20062007/2459.html\n", "Deleting ../data/html/20062007/2460.html\n", "Deleting ../data/html/20062007/2461.html\n", "Deleting ../data/html/20062007/2462.html\n", "Deleting ../data/html/20062007/2463.html\n", "Deleting ../data/html/20062007/2464.html\n", "Deleting ../data/html/20062007/2465.html\n", "Deleting ../data/html/20062007/2466.html\n", "Deleting ../data/html/20062007/2467.html\n", "Deleting ../data/html/20062007/2468.html\n", "Deleting ../data/html/20062007/2469.html\n", "Deleting ../data/html/20062007/2470.html\n", "Deleting ../data/html/20062007/2471.html\n", "Deleting ../data/html/20062007/2472.html\n", "Deleting ../data/html/20062007/2473.html\n", "Deleting ../data/html/20062007/2474.html\n", "Deleting ../data/html/20062007/2475.html\n", "Deleting ../data/html/20062007/2476.html\n", "Deleting ../data/html/20062007/2477.html\n", "Deleting ../data/html/20062007/2478.html\n", "Deleting ../data/html/20062007/2479.html\n", "Deleting ../data/html/20062007/2480.html\n", "Deleting ../data/html/20062007/2481.html\n", "Deleting ../data/html/20062007/2482.html\n", "Deleting ../data/html/20062007/2483.html\n", "Deleting ../data/html/20062007/2484.html\n", "Deleting ../data/html/20062007/2485.html\n", "Deleting ../data/html/20062007/2486.html\n", "Deleting ../data/html/20062007/2487.html\n", "Deleting ../data/html/20062007/2488.html\n", "Deleting ../data/html/20062007/2489.html\n", "Deleting ../data/html/20062007/2490.html\n", "Deleting ../data/html/20062007/2491.html\n", "Deleting ../data/html/20062007/2492.html\n", "Deleting ../data/html/20062007/2493.html\n", "Deleting ../data/html/20062007/2494.html\n", "Deleting ../data/html/20062007/2495.html\n", "Deleting ../data/html/20062007/2496.html\n", "Deleting ../data/html/20062007/2497.html\n", "Deleting ../data/html/20062007/2498.html\n", "Deleting ../data/html/20062007/2499.html\n", "Deleting ../data/html/20062007/2500.html\n", "Deleting ../data/html/20062007/2501.html\n", "Deleting ../data/html/20062007/2502.html\n", "Deleting ../data/html/20062007/2503.html\n", "Deleting ../data/html/20062007/2504.html\n", "Deleting ../data/html/20062007/2505.html\n", "Deleting ../data/html/20062007/2506.html\n", "Deleting ../data/html/20062007/2507.html\n", "Deleting ../data/html/20062007/2508.html\n", "Deleting ../data/html/20062007/2509.html\n", "Deleting ../data/html/20062007/2510.html\n", "Deleting ../data/html/20062007/2511.html\n", "Deleting ../data/html/20062007/2512.html\n", "Deleting ../data/html/20062007/2513.html\n", "Deleting ../data/html/20062007/2514.html\n", "Deleting ../data/html/20062007/2515.html\n", "Deleting ../data/html/20062007/2516.html\n", "Deleting ../data/html/20062007/2517.html\n", "Deleting ../data/html/20062007/2518.html\n", "Deleting ../data/html/20062007/2519.html\n", "Deleting ../data/html/20062007/2520.html\n", "Deleting ../data/html/20062007/2521.html\n", "Deleting ../data/html/20062007/2522.html\n", "Deleting ../data/html/20062007/2523.html\n", "Deleting ../data/html/20062007/2524.html\n", "Deleting ../data/html/20062007/2525.html\n", "Deleting ../data/html/20062007/2526.html\n", "Deleting ../data/html/20062007/2527.html\n", "Deleting ../data/html/20062007/2528.html\n", "Deleting ../data/html/20062007/2529.html\n", "Deleting ../data/html/20062007/2530.html\n", "Deleting ../data/html/20062007/2531.html\n", "Deleting ../data/html/20062007/2532.html\n", "Deleting ../data/html/20062007/2533.html\n", "Deleting ../data/html/20062007/2534.html\n", "Deleting ../data/html/20062007/2535.html\n", "Deleting ../data/html/20062007/2536.html\n", "Deleting ../data/html/20062007/2537.html\n", "Deleting ../data/html/20062007/2538.html\n", "Deleting ../data/html/20062007/2539.html\n", "Deleting ../data/html/20062007/2540.html\n", "Deleting ../data/html/20062007/2541.html\n", "Deleting ../data/html/20062007/2542.html\n", "Deleting ../data/html/20062007/2543.html\n", "Deleting ../data/html/20062007/2544.html\n", "Deleting ../data/html/20062007/2545.html\n", "Deleting ../data/html/20062007/2546.html\n", "Deleting ../data/html/20062007/2547.html\n", "Deleting ../data/html/20062007/2548.html\n", "Deleting ../data/html/20062007/2549.html\n", "Deleting ../data/html/20062007/2550.html\n", "Deleting ../data/html/20062007/2551.html\n", "Deleting ../data/html/20062007/2552.html\n", "Deleting ../data/html/20062007/2553.html\n", "Deleting ../data/html/20062007/2554.html\n", "Deleting ../data/html/20062007/2555.html\n", "Deleting ../data/html/20062007/2556.html\n", "Deleting ../data/html/20062007/2557.html\n", "Deleting ../data/html/20062007/2558.html\n", "Deleting ../data/html/20062007/2559.html\n", "Deleting ../data/html/20062007/2560.html\n", "Deleting ../data/html/20062007/2561.html\n", "Deleting ../data/html/20062007/2562.html\n", "Deleting ../data/html/20062007/2563.html\n", "Deleting ../data/html/20062007/2564.html\n", "Deleting ../data/html/20062007/2565.html\n", "Deleting ../data/html/20062007/2566.html\n", "Deleting ../data/html/20062007/2567.html\n", "Deleting ../data/html/20062007/2568.html\n", "Deleting ../data/html/20062007/2569.html\n", "Deleting ../data/html/20062007/2570.html\n", "Deleting ../data/html/20062007/2571.html\n", "Deleting ../data/html/20062007/2572.html\n", "Deleting ../data/html/20062007/2573.html\n", "Deleting ../data/html/20062007/2574.html\n", "Deleting ../data/html/20062007/2575.html\n", "Deleting ../data/html/20062007/2576.html\n", "Deleting ../data/html/20062007/2577.html\n", "Deleting ../data/html/20062007/2578.html\n", "Deleting ../data/html/20062007/2579.html\n", "Deleting ../data/html/20062007/2580.html\n", "Deleting ../data/html/20062007/2581.html\n", "Deleting ../data/html/20062007/2582.html\n", "Deleting ../data/html/20062007/2583.html\n", "Deleting ../data/html/20062007/2584.html\n", "Deleting ../data/html/20062007/2585.html\n", "Deleting ../data/html/20062007/2586.html\n", "Deleting ../data/html/20062007/2587.html\n", "Deleting ../data/html/20062007/2588.html\n", "Deleting ../data/html/20062007/2589.html\n", "Deleting ../data/html/20062007/2590.html\n", "Deleting ../data/html/20062007/2591.html\n", "Deleting ../data/html/20062007/2592.html\n", "Deleting ../data/html/20062007/2593.html\n", "Deleting ../data/html/20062007/2594.html\n", "Deleting ../data/html/20062007/2595.html\n", "Deleting ../data/html/20062007/2596.html\n", "Deleting ../data/html/20062007/2597.html\n", "Deleting ../data/html/20062007/2598.html\n", "Deleting ../data/html/20062007/2599.html\n", "Deleting ../data/html/20062007/2600.html\n", "Deleting ../data/html/20062007/2601.html\n", "Deleting ../data/html/20062007/2602.html\n", "Deleting ../data/html/20062007/2603.html\n", "Deleting ../data/html/20062007/2604.html\n", "Deleting ../data/html/20062007/2605.html\n", "Deleting ../data/html/20062007/2606.html\n", "Deleting ../data/html/20062007/2607.html\n", "Deleting ../data/html/20062007/2608.html\n", "Deleting ../data/html/20062007/2609.html\n", "Deleting ../data/html/20062007/2610.html\n", "Deleting ../data/html/20062007/2611.html\n", "Deleting ../data/html/20062007/2612.html\n", "Deleting ../data/html/20062007/2613.html\n", "Deleting ../data/html/20062007/2614.html\n", "Deleting ../data/html/20062007/2615.html\n", "Deleting ../data/html/20062007/2616.html\n", "Deleting ../data/html/20062007/2617.html\n", "Deleting ../data/html/20062007/2618.html\n", "Deleting ../data/html/20062007/2619.html\n", "Deleting ../data/html/20062007/2620.html\n", "Deleting ../data/html/20062007/2621.html\n", "Deleting ../data/html/20062007/2622.html\n", "Deleting ../data/html/20062007/2623.html\n", "Deleting ../data/html/20062007/2624.html\n", "Deleting ../data/html/20062007/2625.html\n", "Deleting ../data/html/20062007/2626.html\n", "Deleting ../data/html/20062007/2627.html\n", "Deleting ../data/html/20062007/2628.html\n", "Deleting ../data/html/20062007/2629.html\n", "Deleting ../data/html/20062007/2630.html\n", "Deleting ../data/html/20062007/2631.html\n", "Deleting ../data/html/20062007/2632.html\n", "Deleting ../data/html/20062007/2633.html\n", "Deleting ../data/html/20062007/2634.html\n", "Deleting ../data/html/20062007/2635.html\n", "Deleting ../data/html/20062007/2636.html\n", "Deleting ../data/html/20062007/2637.html\n", "Deleting ../data/html/20062007/2638.html\n", "Deleting ../data/html/20062007/2639.html\n", "Deleting ../data/html/20062007/2640.html\n", "Deleting ../data/html/20062007/2641.html\n", "Deleting ../data/html/20062007/2642.html\n", "Deleting ../data/html/20062007/2643.html\n", "Deleting ../data/html/20062007/2644.html\n", "Deleting ../data/html/20062007/2645.html\n", "Deleting ../data/html/20062007/2646.html\n", "Deleting ../data/html/20062007/2647.html\n", "Deleting ../data/html/20062007/2648.html\n", "Deleting ../data/html/20062007/2649.html\n", "Deleting ../data/html/20062007/2650.html\n", "Deleting ../data/html/20062007/2651.html\n", "Deleting ../data/html/20062007/2652.html\n", "Deleting ../data/html/20062007/2653.html\n", "Deleting ../data/html/20062007/2654.html\n", "Deleting ../data/html/20062007/2655.html\n", "Deleting ../data/html/20062007/2656.html\n", "Deleting ../data/html/20062007/2657.html\n", "Deleting ../data/html/20062007/2658.html\n", "Deleting ../data/html/20062007/2659.html\n", "Deleting ../data/html/20062007/2660.html\n", "Deleting ../data/html/20062007/2661.html\n", "Deleting ../data/html/20062007/2662.html\n", "Deleting ../data/html/20062007/2663.html\n", "Deleting ../data/html/20062007/2664.html\n", "Deleting ../data/html/20062007/2665.html\n", "Deleting ../data/html/20062007/2666.html\n", "Deleting ../data/html/20062007/2667.html\n", "Deleting ../data/html/20062007/2668.html\n", "Deleting ../data/html/20062007/2669.html\n", "Deleting ../data/html/20062007/2670.html\n", "Deleting ../data/html/20062007/2671.html\n", "Deleting ../data/html/20062007/2672.html\n", "Deleting ../data/html/20062007/2673.html\n", "Deleting ../data/html/20062007/2674.html\n", "Deleting ../data/html/20062007/2675.html\n", "Deleting ../data/html/20062007/2676.html\n", "Deleting ../data/html/20062007/2677.html\n", "Deleting ../data/html/20062007/2678.html\n", "Deleting ../data/html/20062007/2679.html\n", "Deleting ../data/html/20062007/2680.html\n", "Deleting ../data/html/20062007/2681.html\n", "Deleting ../data/html/20062007/2682.html\n", "Deleting ../data/html/20062007/2683.html\n", "Deleting ../data/html/20062007/2684.html\n", "Deleting ../data/html/20062007/2685.html\n", "Deleting ../data/html/20062007/2686.html\n", "Deleting ../data/html/20062007/2687.html\n", "Deleting ../data/html/20062007/2688.html\n", "Deleting ../data/html/20062007/2689.html\n", "Deleting ../data/html/20062007/2690.html\n", "Deleting ../data/html/20062007/2691.html\n", "Deleting ../data/html/20062007/2692.html\n", "Deleting ../data/html/20062007/2693.html\n", "Deleting ../data/html/20062007/2694.html\n", "Deleting ../data/html/20062007/2695.html\n", "Deleting ../data/html/20062007/2696.html\n", "Deleting ../data/html/20062007/2697.html\n", "Deleting ../data/html/20062007/2698.html\n", "Deleting ../data/html/20062007/2699.html\n", "Deleting ../data/html/20062007/2700.html\n", "Deleting ../data/html/20062007/2701.html\n", "Deleting ../data/html/20062007/2702.html\n", "Deleting ../data/html/20062007/2703.html\n", "Deleting ../data/html/20062007/2704.html\n", "Deleting ../data/html/20062007/2705.html\n", "Deleting ../data/html/20062007/2706.html\n", "Deleting ../data/html/20062007/2707.html\n", "Deleting ../data/html/20062007/2708.html\n", "Deleting ../data/html/20062007/2709.html\n", "Deleting ../data/html/20062007/2710.html\n", "Deleting ../data/html/20062007/2711.html\n", "Deleting ../data/html/20062007/2712.html\n", "Deleting ../data/html/20062007/2713.html\n", "Deleting ../data/html/20062007/2714.html\n", "Deleting ../data/html/20062007/2715.html\n", "Deleting ../data/html/20062007/2716.html\n", "Deleting ../data/html/20062007/2717.html\n", "Deleting ../data/html/20062007/2718.html\n", "Deleting ../data/html/20062007/2719.html\n", "Deleting ../data/html/20062007/2720.html\n", "Deleting ../data/html/20062007/2721.html\n", "Deleting ../data/html/20062007/2722.html\n", "Deleting ../data/html/20062007/2723.html\n", "Deleting ../data/html/20062007/2724.html\n", "Deleting ../data/html/20062007/2725.html\n", "Deleting ../data/html/20062007/2726.html\n", "Deleting ../data/html/20062007/2727.html\n", "Deleting ../data/html/20062007/2728.html\n", "Deleting ../data/html/20062007/2729.html\n", "Deleting ../data/html/20062007/2730.html\n", "Deleting ../data/html/20062007/2731.html\n", "Deleting ../data/html/20062007/2732.html\n", "Deleting ../data/html/20062007/2733.html\n", "Deleting ../data/html/20062007/2734.html\n", "Deleting ../data/html/20062007/2735.html\n", "Deleting ../data/html/20062007/2736.html\n", "Deleting ../data/html/20062007/2737.html\n", "Deleting ../data/html/20062007/2738.html\n", "Deleting ../data/html/20062007/2739.html\n", "Deleting ../data/html/20062007/2740.html\n", "Deleting ../data/html/20062007/2741.html\n", "Deleting ../data/html/20062007/2742.html\n", "Deleting ../data/html/20062007/2743.html\n", "Deleting ../data/html/20062007/2744.html\n", "Deleting ../data/html/20062007/2745.html\n", "Deleting ../data/html/20062007/2746.html\n", "Deleting ../data/html/20062007/2747.html\n", "Deleting ../data/html/20062007/2748.html\n", "Deleting ../data/html/20062007/2749.html\n", "Deleting ../data/html/20062007/2750.html\n", "Deleting ../data/html/20062007/2751.html\n", "Deleting ../data/html/20062007/2752.html\n", "Deleting ../data/html/20062007/2753.html\n", "Deleting ../data/html/20062007/2754.html\n", "Deleting ../data/html/20062007/2755.html\n", "Deleting ../data/html/20062007/2756.html\n", "Deleting ../data/html/20062007/2757.html\n", "Deleting ../data/html/20062007/2758.html\n", "Deleting ../data/html/20062007/2759.html\n", "Deleting ../data/html/20062007/2760.html\n", "Deleting ../data/html/20062007/2761.html\n", "Deleting ../data/html/20062007/2762.html\n", "Deleting ../data/html/20062007/2763.html\n", "Deleting ../data/html/20062007/2764.html\n", "Deleting ../data/html/20062007/2765.html\n", "Deleting ../data/html/20062007/2766.html\n", "Deleting ../data/html/20062007/2767.html\n", "Deleting ../data/html/20062007/2768.html\n", "Deleting ../data/html/20062007/2769.html\n", "Deleting ../data/html/20062007/2770.html\n", "Deleting ../data/html/20062007/2771.html\n", "Deleting ../data/html/20062007/2772.html\n", "Deleting ../data/html/20062007/2773.html\n", "Deleting ../data/html/20062007/2774.html\n", "Deleting ../data/html/20062007/2775.html\n", "Deleting ../data/html/20062007/2776.html\n", "Deleting ../data/html/20062007/2777.html\n", "Deleting ../data/html/20062007/2778.html\n", "Deleting ../data/html/20062007/2779.html\n", "Deleting ../data/html/20062007/2780.html\n", "Deleting ../data/html/20062007/2781.html\n", "Deleting ../data/html/20062007/2782.html\n", "Deleting ../data/html/20062007/2783.html\n", "Deleting ../data/html/20062007/2784.html\n", "Deleting ../data/html/20062007/2785.html\n", "Deleting ../data/html/20062007/2786.html\n", "Deleting ../data/html/20062007/2787.html\n", "Deleting ../data/html/20062007/2788.html\n", "Deleting ../data/html/20062007/2789.html\n", "Deleting ../data/html/20062007/2790.html\n", "Deleting ../data/html/20062007/2791.html\n", "Deleting ../data/html/20062007/2792.html\n", "Deleting ../data/html/20062007/2793.html\n", "Deleting ../data/html/20062007/2794.html\n", "Deleting ../data/html/20062007/2795.html\n", "Deleting ../data/html/20062007/2796.html\n", "Deleting ../data/html/20062007/2797.html\n", "Deleting ../data/html/20062007/2798.html\n", "Deleting ../data/html/20062007/2799.html\n", "Deleting ../data/html/20062007/2800.html\n", "Deleting ../data/html/20062007/2801.html\n", "Deleting ../data/html/20062007/2802.html\n", "Deleting ../data/html/20062007/2803.html\n", "Deleting ../data/html/20062007/2804.html\n", "Deleting ../data/html/20062007/2805.html\n", "Deleting ../data/html/20062007/2806.html\n", "Deleting ../data/html/20062007/2807.html\n", "Deleting ../data/html/20062007/2808.html\n", "Deleting ../data/html/20062007/2809.html\n", "Deleting ../data/html/20062007/2810.html\n", "Deleting ../data/html/20062007/2811.html\n", "Deleting ../data/html/20062007/2812.html\n", "Deleting ../data/html/20062007/2813.html\n", "Deleting ../data/html/20062007/2814.html\n", "Deleting ../data/html/20062007/2815.html\n", "Deleting ../data/html/20062007/2816.html\n", "Deleting ../data/html/20062007/2817.html\n", "Deleting ../data/html/20062007/2818.html\n", "Deleting ../data/html/20062007/2819.html\n", "Deleting ../data/html/20062007/2820.html\n", "Deleting ../data/html/20062007/2821.html\n", "Deleting ../data/html/20062007/2822.html\n", "Deleting ../data/html/20062007/2823.html\n", "Deleting ../data/html/20062007/2824.html\n", "Deleting ../data/html/20062007/2825.html\n", "Deleting ../data/html/20062007/2826.html\n", "Deleting ../data/html/20062007/2827.html\n", "Deleting ../data/html/20062007/2828.html\n", "Deleting ../data/html/20062007/2829.html\n", "Deleting ../data/html/20062007/2830.html\n", "Deleting ../data/html/20062007/2831.html\n", "Deleting ../data/html/20062007/2832.html\n", "Deleting ../data/html/20062007/2833.html\n", "Deleting ../data/html/20062007/2834.html\n", "Deleting ../data/html/20062007/2835.html\n", "Deleting ../data/html/20062007/2836.html\n", "Deleting ../data/html/20062007/2837.html\n", "Deleting ../data/html/20062007/2838.html\n", "Deleting ../data/html/20062007/2839.html\n", "Deleting ../data/html/20062007/2840.html\n", "Deleting ../data/html/20062007/2841.html\n", "Deleting ../data/html/20062007/2842.html\n", "Deleting ../data/html/20062007/2843.html\n", "Deleting ../data/html/20062007/2844.html\n", "Deleting ../data/html/20062007/2845.html\n", "Deleting ../data/html/20062007/2846.html\n", "Deleting ../data/html/20062007/2847.html\n", "Deleting ../data/html/20062007/2848.html\n", "Deleting ../data/html/20062007/2849.html\n", "Deleting ../data/html/20062007/2850.html\n", "Deleting ../data/html/20062007/2851.html\n", "Deleting ../data/html/20062007/2852.html\n", "Deleting ../data/html/20062007/2853.html\n", "Deleting ../data/html/20062007/2854.html\n", "Deleting ../data/html/20062007/2855.html\n", "Deleting ../data/html/20062007/2856.html\n", "Deleting ../data/html/20062007/2857.html\n", "Deleting ../data/html/20062007/2858.html\n", "Deleting ../data/html/20062007/2859.html\n", "Deleting ../data/html/20062007/2860.html\n", "Deleting ../data/html/20062007/2861.html\n", "Deleting ../data/html/20062007/2862.html\n", "Deleting ../data/html/20062007/2863.html\n", "Deleting ../data/html/20062007/2864.html\n", "Deleting ../data/html/20062007/2865.html\n", "Deleting ../data/html/20062007/2866.html\n", "Deleting ../data/html/20062007/2867.html\n", "Deleting ../data/html/20062007/2868.html\n", "Deleting ../data/html/20062007/2869.html\n", "Deleting ../data/html/20062007/2870.html\n", "Deleting ../data/html/20062007/2871.html\n", "Deleting ../data/html/20062007/2872.html\n", "Deleting ../data/html/20062007/2873.html\n", "Deleting ../data/html/20062007/2874.html\n", "Deleting ../data/html/20062007/2875.html\n", "Deleting ../data/html/20062007/2876.html\n", "Deleting ../data/html/20062007/2877.html\n", "Deleting ../data/html/20062007/2878.html\n", "Deleting ../data/html/20062007/2879.html\n", "Deleting ../data/html/20062007/2880.html\n", "Deleting ../data/html/20062007/2881.html\n", "Deleting ../data/html/20062007/2882.html\n", "Deleting ../data/html/20062007/2883.html\n", "Deleting ../data/html/20062007/2884.html\n", "Deleting ../data/html/20062007/2885.html\n", "Deleting ../data/html/20062007/2886.html\n", "Deleting ../data/html/20062007/2887.html\n", "Deleting ../data/html/20062007/2888.html\n", "Deleting ../data/html/20062007/2889.html\n", "Deleting ../data/html/20062007/2890.html\n", "Deleting ../data/html/20062007/2891.html\n", "Deleting ../data/html/20062007/2892.html\n", "Deleting ../data/html/20062007/2893.html\n", "Deleting ../data/html/20062007/2894.html\n", "Deleting ../data/html/20062007/2895.html\n", "Deleting ../data/html/20062007/2896.html\n", "Deleting ../data/html/20062007/2897.html\n", "Deleting ../data/html/20062007/2898.html\n", "Deleting ../data/html/20062007/2899.html\n", "Deleting ../data/html/20062007/2900.html\n", "Deleting ../data/html/20062007/2901.html\n", "Deleting ../data/html/20062007/2902.html\n", "Deleting ../data/html/20062007/2903.html\n", "Deleting ../data/html/20062007/2904.html\n", "Deleting ../data/html/20062007/2905.html\n", "Deleting ../data/html/20062007/2906.html\n", "Deleting ../data/html/20062007/2907.html\n", "Deleting ../data/html/20062007/2908.html\n", "Deleting ../data/html/20062007/2909.html\n", "Deleting ../data/html/20062007/2910.html\n", "Deleting ../data/html/20062007/2911.html\n", "Deleting ../data/html/20062007/2912.html\n", "Deleting ../data/html/20062007/2913.html\n", "Deleting ../data/html/20062007/2914.html\n", "Deleting ../data/html/20062007/2915.html\n", "Deleting ../data/html/20062007/2916.html\n", "Deleting ../data/html/20062007/2917.html\n", "Deleting ../data/html/20062007/2918.html\n", "Deleting ../data/html/20062007/2919.html\n", "Deleting ../data/html/20062007/2920.html\n", "Deleting ../data/html/20062007/2921.html\n", "Deleting ../data/html/20062007/2922.html\n", "Deleting ../data/html/20062007/2923.html\n", "Deleting ../data/html/20062007/2924.html\n", "Deleting ../data/html/20062007/2925.html\n", "Deleting ../data/html/20062007/2926.html\n", "Deleting ../data/html/20062007/2927.html\n", "Deleting ../data/html/20062007/2928.html\n", "Deleting ../data/html/20062007/2929.html\n", "Deleting ../data/html/20062007/2930.html\n", "Deleting ../data/html/20062007/2931.html\n", "Deleting ../data/html/20062007/2932.html\n", "Deleting ../data/html/20062007/2933.html\n", "Deleting ../data/html/20062007/2934.html\n", "Deleting ../data/html/20062007/2935.html\n", "Deleting ../data/html/20062007/2936.html\n", "Deleting ../data/html/20062007/2937.html\n", "Deleting ../data/html/20062007/2938.html\n", "Deleting ../data/html/20062007/2939.html\n", "Deleting ../data/html/20062007/2940.html\n", "Deleting ../data/html/20062007/2941.html\n", "Deleting ../data/html/20062007/2942.html\n", "Deleting ../data/html/20062007/2943.html\n", "Deleting ../data/html/20062007/2944.html\n", "Deleting ../data/html/20062007/2945.html\n", "Deleting ../data/html/20062007/2946.html\n", "Deleting ../data/html/20062007/2947.html\n", "Deleting ../data/html/20062007/2948.html\n", "Deleting ../data/html/20062007/2949.html\n", "Deleting ../data/html/20062007/2950.html\n", "Deleting ../data/html/20062007/2951.html\n", "Deleting ../data/html/20062007/2952.html\n", "Deleting ../data/html/20062007/2953.html\n", "Deleting ../data/html/20062007/2954.html\n", "Deleting ../data/html/20062007/2955.html\n", "Deleting ../data/html/20062007/2956.html\n", "Deleting ../data/html/20062007/2957.html\n", "Deleting ../data/html/20062007/2958.html\n", "Deleting ../data/html/20062007/2959.html\n", "Deleting ../data/html/20062007/2960.html\n", "Deleting ../data/html/20062007/2961.html\n", "Deleting ../data/html/20062007/2962.html\n", "Deleting ../data/html/20062007/2963.html\n", "Deleting ../data/html/20062007/2964.html\n", "Deleting ../data/html/20062007/2965.html\n", "Deleting ../data/html/20062007/2966.html\n", "Deleting ../data/html/20062007/2967.html\n", "Deleting ../data/html/20062007/2968.html\n", "Deleting ../data/html/20062007/2969.html\n", "Deleting ../data/html/20062007/2970.html\n", "Deleting ../data/html/20062007/2971.html\n", "Deleting ../data/html/20062007/2972.html\n", "Deleting ../data/html/20062007/2973.html\n", "Deleting ../data/html/20062007/2974.html\n", "Deleting ../data/html/20062007/2975.html\n", "Deleting ../data/html/20062007/2976.html\n", "Deleting ../data/html/20062007/2977.html\n", "Deleting ../data/html/20062007/2978.html\n", "Deleting ../data/html/20062007/2979.html\n", "Deleting ../data/html/20062007/2980.html\n", "Deleting ../data/html/20062007/2981.html\n", "Deleting ../data/html/20062007/2982.html\n", "Deleting ../data/html/20062007/2983.html\n", "Deleting ../data/html/20062007/2984.html\n", "Deleting ../data/html/20062007/2985.html\n", "Deleting ../data/html/20062007/2986.html\n", "Deleting ../data/html/20062007/2987.html\n", "Deleting ../data/html/20062007/2988.html\n", "Deleting ../data/html/20062007/2989.html\n", "Deleting ../data/html/20062007/2990.html\n", "Deleting ../data/html/20062007/2991.html\n", "Deleting ../data/html/20062007/2992.html\n", "Deleting ../data/html/20062007/2993.html\n", "Deleting ../data/html/20062007/2994.html\n", "Deleting ../data/html/20062007/2995.html\n", "Deleting ../data/html/20062007/2996.html\n", "Deleting ../data/html/20062007/2997.html\n", "Deleting ../data/html/20062007/2998.html\n", "Deleting ../data/html/20062007/2999.html\n" ] } ], "source": [ "def clean_folder_404s(season):\n", " f_pattern = '../../data/raw/html/{}/*.html'.format(season)\n", " files = sorted(glob.glob(f_pattern))\n", " print(f'Found {len(files)} files')\n", " for file in files:\n", " with open(file, 'r') as f:\n", " text = f.read()\n", " if not text.strip():\n", " print(f'Deleting {file}')\n", " os.remove(file)\n", "\n", "clean_folder_404s('20032004')\n", "clean_folder_404s('20042005')\n", "clean_folder_404s('20052006')\n", "clean_folder_404s('20062007')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Modern format" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting data pull at 2019-02-17 15:44:14.763811\n", "Making dirs ../data/html/20022003\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20022003/PL020001.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20022003/PL020001.HTM\n", "Requesting HTML for URL = http://www.nhl.com/scores/htmlreports/20022003/PL020001.HTM\n" ] }, { "ename": "KeyboardInterrupt", "evalue": "", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mgames\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m5000\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0mdownload_game_range\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl_tempalte\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseasons\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgames\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;32m\u001b[0m in \u001b[0;36mdownload_game_range\u001b[0;34m(url_template, seasons, games)\u001b[0m\n\u001b[1;32m 53\u001b[0m page_text = get_page(\n\u001b[1;32m 54\u001b[0m \u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 55\u001b[0;31m \u001b[0murl_template\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mseason\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgame_num\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 56\u001b[0m )\n\u001b[1;32m 57\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mpage_text\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_page\u001b[0;34m(sess, url, tries)\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0msess\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0minit_sess\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mget_page\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtries\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 23\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_page\u001b[0;34m(sess, url, tries)\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0msess\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0minit_sess\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mget_page\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtries\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 23\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_page\u001b[0;34m(sess, url, tries)\u001b[0m\n\u001b[1;32m 18\u001b[0m \u001b[0mpage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msess\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstatus_code\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0;36m200\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 20\u001b[0;31m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 21\u001b[0m \u001b[0msess\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0minit_sess\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mget_page\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msess\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtries\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mKeyboardInterrupt\u001b[0m: " ] } ], "source": [ "url_tempalte = 'http://www.nhl.com/scores/htmlreports/{:}/PL02{:04d}.HTM'\n", "seasons = ['20072008', '20082009', '20092010',\n", " '20102011', '20112012', '20122013',\n", " '20132014', '20142015', '20152016',\n", " '20162017', '20172018']\n", "games = list(range(1, 3000))\n", "\n", "download_game_range(url_tempalte, seasons, games)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Pulled this data using `src/html_download/app.py`" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.1" } }, "nbformat": 4, "nbformat_minor": 2 }