You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Daniel Gaddy <dg...@sparctech.com> on 2002/06/10 16:19:27 UTC

Apache 2.0.35 with Win2kPro - PHP module issue - Please help ASAP!!!

Hello again,

I have posted this message now twice to this board, and the need of it getting resolved has grown greatly... I have had several contributors to this post, but no one is yet to determine the actual cause/fix for it, and I have been told to escalate this as needed... I will fully explain what is going on, and if anyone knows what needs to be specifically done for Apache 2.0.36 and the PHP module, that would be great, as the only documentation I have is for the 1.x versions of Apache... Where I currently stand is after troubleshooting thoroughly, I have actually gotten Apache to start with the key entires in httpd.conf... It SAYS that it loads the module on the Apache Monitor, however, if I try to run a PHP file from under the apache document root for one of our domains, it TRIES to open the file, and you know it sees the file, (obviously or it would say file not found), but due to a misconfiguration SOMEWHERE, whether that is php.ini, the location of .dll files, httpd.conf, or whatever the case, it simply will NOT load the .php file.  It will never time out, and never display any messages on why it didnt open the file, but will continue to show a status bar at the bottom of the page like it IS trying to open it... Something is certainly wrong... I have attempted to enable logging through php.ini, but the file I tell php.ini to create and keep logs in never gets created... It is almost like the system is not finding that file... I have the php.ini file in C:\Winnt, in C:\Winnt\System32, and in the folder that hosts php.exe, which is C:\PHP_4.2.1... I found no information truly helpful in the apache logs, but I will include the last 4 days or so of both access.log and error.log, as well as the entire current httpd.conf file and the entire php.ini file... If anyone that is aware of any way this could be resolved is willing to assist me, I would certainly appreciate it greatly... Again, let me reitterate that this is running on Apache 2.0.35, and ALL of the documentation I have found, as well as others have pointed me to has been for 1.x, and there may be some undocumented difference that needs to be done that is stopping me... If all else fails, due to the speed at which this needs to be resolved, I have VNC as an option if anyone is willing to assist remotely... Listed below in this respected order is httpd.conf, php.ini, access.log, and error.log... If I can provide ANY other information whatsoever, do not hesitate to ask!

Thank you all for your assistance...


HTTPD.CONF
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/usr/local/apache" will be interpreted by the
# server as "/usr/local/apache/logs/foo.log".
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
# If a drive letter is omitted, the drive on which Apache.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths, however, to avoid
# confusion.
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:http://httpd.apache.org/docs-2.0/mod/core.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "C:/Program Files/Apache Group/Apache2"

#
# ScoreBoardFile: File used to store internal server process information.
# If unspecified (the default), the scoreboard will be stored in an
# anonymous shared memory segment, and will be unavailable to third-party
# applications.
# If specified, ensure that no two invocations of Apache share the same
# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
#
#ScoreBoardFile logs/apache_runtime_status

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile logs/httpd.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
## 

# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadsPerChild 250
MaxRequestsPerChild  0
</IfModule>

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 24.242.177.229:80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule access_module modules/mod_access.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_module modules/mod_auth.so
#LoadModule auth_anon_module modules/mod_auth_anon.so
#LoadModule auth_dbm_module modules/mod_auth_dbm.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule cgi_module modules/mod_cgi.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule headers_module modules/mod_headers.so
LoadModule imap_module modules/mod_imap.so
LoadModule include_module modules/mod_include.so
#LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule perl_module modules/mod_perl.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule negotiation_module modules/mod_negotiation.so
#LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule status_module modules/mod_status.so
#LoadModule unique_id_module modules/mod_unique_id.so
#LoadModule userdir_module modules/mod_userdir.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
#LoadModule ssl_module modules/mod_ssl.so
LoadModule php4_module C:/PHP_4.2.1/sapi/php4apache2.dll

#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
#ExtendedStatus On

### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. admin@your-domain.com
#
ServerAdmin postmaster@technalithics.com

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work.  See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make 
# redirections work in a sensible way.
#
ServerName www.technalithics.com

#
# UseCanonicalName: Determines how Apache constructs self-referencing 
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client.  When set "On", Apache will use the value of the
# ServerName directive.
#
UseCanonicalName On

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/webserver/webs"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/webserver/webs">

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all

</Directory>

#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.  Be especially careful to use
# proper, forward slashes here.
#
#UserDir "My Documents/My Website"

#
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
# You must correct the path for the root to match your system's configured
# user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
# or whichever, as appropriate.
#
#<Directory "C:/Documents and Settings/*/My Documents/My Website">
#    AllowOverride FileInfo AuthConfig Limit
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#    <Limit GET POST OPTIONS PROPFIND>
#        Order allow,deny
#        Allow from all
#    </Limit>
#    <LimitExcept GET POST OPTIONS PROPFIND>
#        Order deny,allow
#        Deny from all
#    </LimitExcept>
#</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents.  The MultiViews Option can be used for the 
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var index.htm default.htm index.php index.php3

#
# AccessFileName: The name of the file to look for in each directory
# for access control information.  See also the AllowOverride directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>

#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig conf/mime.types

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
<IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
</IfModule>

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups off

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog logs/error.log

#
# LogLevel: Control the number of messages logged to the error.log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here.  Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog logs/access.log common

#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog logs/referer.log referer
#CustomLog logs/agent.log agent

#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined

#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of:  On | Off | EMail
#
ServerSignature On

#
# Aliases: Add here as many aliases as you need (with no limit). The format is 
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL.  So "/icons" isn't aliased in this
# example, only "/icons/".  If the fakename is slash-terminated, then the 
# realname must also be slash terminated, and if the fakename omits the 
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings.  If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "C:/Program Files/Apache Group/Apache2/icons/"

<Directory "C:/Program Files/Apache Group/Apache2/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

#
# This should be changed to the ServerRoot/manual/.  The alias provides
# the manual, even if you choose to move your DocumentRoot.  You may comment
# this out if you do not care for the documentation.
#
Alias /manual "C:/Program Files/Apache Group/Apache2/manual"

<Directory "C:/Program Files/Apache Group/Apache2/manual">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache2/cgi-bin/"

#ScriptAlias /php4/ "C:/PHP_4.2.1/"
AddHandler application/x-httpd-php4 .php
#AddHandler application/x-httpd-php4 .php3
#Action application/x-httpd-php4 "/php4/php.exe"
#
# "C:/Program Files/Apache Group/Apache2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:\Program Files\Apache Group\Apache2\cgi-bin">
    AllowOverride None
    Options +ExecCGI
    Order allow,deny
    Allow from all
</Directory>

#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar

#
# Directives controlling the display of server-generated directory listings.
#

#
# FancyIndexing is whether you want fancy directory indexing or standard.
# VersionSort is whether files containing version numbers should be 
# compared in the natural way, so that `apache-1.3.9.tar' is placed before
# `apache-1.3.12.tar'.
#
IndexOptions FancyIndexing VersionSort

#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions.  These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^

#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif

#
# AddDescription allows you to place a short description after a file in
# server-generated indexes.  These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz

#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes. 
ReadmeName README.html
HeaderName HEADER.html

#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing.  Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

#
# AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz

#
# DefaultLanguage and AddLanguage allows you to specify the language of 
# a document. You can then use content negotiation to give a browser a 
# file in a language the user can understand.
#
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will 
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
#
# * It is generally better to not mark a page as 
# * being a certain language than marking it with the wrong
# * language!
#
# DefaultLanguage nl
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
#
# Note 2: The example entries below illustrate that in some cases 
# the two character 'Language' abbreviation is not identical to 
# the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. There is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
#
# Danish (da) - Dutch (nl) - English (en) - Estonian (et)
# French (fr) - German (de) - Greek-Modern (el)
# Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (kr)
# Portugese (pt) - Luxembourgeois* (ltz)
# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
# Russian (ru) - Croatian (hr)
#
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .et
AddLanguage fr .fr
AddLanguage de .de
AddLanguage he .he
AddLanguage el .el
AddLanguage it .it
AddLanguage ja .ja
AddLanguage pl .po
AddLanguage kr .kr
AddLanguage pt .pt
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pt-br .pt-br
AddLanguage ltz .ltz
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage tw .tw
AddLanguage zh-tw .tw
AddLanguage hr .hr

#
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ltz ca es sv tw

#
# ForceLanguagePriority allows you to serve a result page rather than
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
# [in case no accepted languages matched the available variants]
#
ForceLanguagePriority Prefer Fallback

#
# Specify a default charset for all pages sent out. This is
# always a good idea and opens the door for future internationalisation
# of your web site, should you ever want it. Specifying it as
# a default does little harm; as the standard dictates that a page
# is in iso-8859-1 (latin1) unless specified otherwise i.e. you
# are merely stating the obvious. There are also some security
# reasons in browsers, related to javascript and URL parsing
# which encourage you to always set a default char set.
#
AddDefaultCharset ISO-8859-1

#
# Commonly used filename extensions to character sets. You probably
# want to avoid clashes with the language extensions, unless you
# are good at carefully testing your setup after each change.
# See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for
# the official list of charset names and their respective RFCs
#
AddCharset ISO-8859-1  .iso8859-1 .latin1
AddCharset ISO-8859-2  .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3  .iso8859-3 .latin3
AddCharset ISO-8859-4  .iso8859-4 .latin4
AddCharset ISO-8859-5  .iso8859-5 .latin5 .cyr .iso-ru
AddCharset ISO-8859-6  .iso8859-6 .latin6 .arb
AddCharset ISO-8859-7  .iso8859-7 .latin7 .grk
AddCharset ISO-8859-8  .iso8859-8 .latin8 .heb
AddCharset ISO-8859-9  .iso8859-9 .latin9 .trk
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5        .Big5       .big5
# For russian, more than one charset is used (depends on client, mostly):
AddCharset WINDOWS-1251 .cp-1251   .win-1251
AddCharset CP866       .cp866
AddCharset KOI8-r      .koi8-r .koi8-ru
AddCharset KOI8-ru     .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-8       .utf8

# The set below does not map to a specific (iso) standard
# but works on a fairly wide range of browsers. Note that
# capitalization actually matters (it should not, but it
# does for some browsers).
#
# See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets
# for a list of sorts. But browsers support few.
#
AddCharset GB2312      .gb2312 .gb 
AddCharset utf-7       .utf7
AddCharset utf-8       .utf8
AddCharset big5        .big5 .b5
AddCharset EUC-TW      .euc-tw
AddCharset EUC-JP      .euc-jp
AddCharset EUC-KR      .euc-kr
AddCharset shift_jis   .sjis

#
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#
AddType application/x-tar .tgz
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps

#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
AddHandler cgi-script .cgi .pl .exe

#
# For files that include their own HTTP headers:
#
#AddHandler send-as-is asis

#
# For server-parsed imagemap files:
#
#AddHandler imap-file map

#
# For type maps (negotiated resources):
# (This is enabled by default to allow the Apache "It Worked" page
#  to be distributed in multiple languages.)
#
AddHandler type-map var

# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
#AddOutputFilter INCLUDES .shtml

#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# Putting this all together, we can Internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections.  We use 
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line;
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# C:/Program Files/Apache Group/Apache2/error/include/ files and
# copying them to /your/include/path/, even on a per-VirtualHost basis.
#

<IfModule mod_negotiation.c>
<IfModule mod_include.c>
    Alias /error/ "C:/Program Files/Apache Group/Apache2/error/"

    <Directory "C:/Program Files/Apache Group/Apache2/error">
        AllowOverride None
        Options IncludesNoExec
        AddOutputFilter Includes html
        AddHandler type-map var
        Order allow,deny
        Allow from all
        LanguagePriority en es de fr
        ForceLanguagePriority Prefer Fallback
    </Directory>

    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
    ErrorDocument 410 /error/HTTP_GONE.html.var
    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
    ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var

</IfModule>
</IfModule>

#
# The following directives modify normal HTTP response behavior to
# handle known problems with browser implementations.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash.  This fixes a 
# problem with Microsoft WebFolders which does not appropriately handle 
# redirects for folders with DAV methods.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully

#
# Allow server status reports, with the URL of http://servername/server-status
# Change the ".24.242.177.229" to match your domain to enable.
#
#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from .24.242.177.229
#</Location>

#
# Allow remote server configuration reports, with the URL of
#  http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".your-domain.com" to match your domain to enable.
#
#<Location /server-info>
#    SetHandler server-info
#    Order deny,allow
#    Deny from all
#    Allow from .24.242.177.229
#</Location>

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#<IfModule mod_proxy.c>
#ProxyRequests On
#
#<Proxy *>
#    Order deny,allow
#    Deny from all
#    Allow from .your-domain.com
#</Proxy>

#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
#CacheRoot "C:/Program Files/Apache Group/Apache2/proxy"
#CacheSize 5
#CacheGcInterval 4
#CacheMaxExpire 24
#CacheLastModifiedFactor 0.1
#CacheDefaultExpire 1
#NoCache a-domain.com another-domain.edu joes.garage-sale.com

#</IfModule>
# End of proxy directives.

#
# Bring in additional module-specific configurations
#
#<IfModule mod_ssl.c>
#    Include conf/ssl.conf
#</IfModule>


### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs-2.0/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
#NameVirtualHost *

NameVirtualHost 24.242.177.229

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *>
#    ServerAdmin webmaster@dummy-host.example.com
#    DocumentRoot /www/docs/dummy-host.example.com
#    ServerName dummy-host.example.com
#    ErrorLog logs/dummy-host.example.com-error_log
#    CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/technalithics
ServerName www.technalithics.com
ServerAlias technalithics.com
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/sparctech
ServerName www.sparctech.com
ServerAlias sparctech.com
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/rover-phd
ServerName www.rover-phd.com
ServerAlias rover-phd.com
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/onewirenet
ServerName www.onewirenet.com
ServerAlias onewirenet.com
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/jailcontrols
ServerName www.jailcontrols.com
ServerAlias jailcontrols.com
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/sparctech/llano
ServerName www.sparctech.com/llano
ServerAlias sparctech.com/llano
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/onewirenet/wacosailclub
ServerName www.onewirenet.com/wacosailclub
ServerAlias onewirenet.com/wacosailclub
</VirtualHost>

<VirtualHost 24.242.177.229>
ServerAdmin postmaster@technalithics.com
DocumentRoot c:/webserver/webs/onewirenet/bestpractices
ServerName www.onewirenet.com/bestpractices
ServerAlias onewirenet.com/bestpractices
</VirtualHost>


PHP.INI
[PHP]

;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
;
; This is the recommended, PHP 4-style version of the php.ini-dist file.  It
; sets some non standard settings, that make PHP more efficient, more secure,
; and encourage cleaner coding.
; The price is that with these settings, PHP may be incompatible with some
; applications, and sometimes, more difficult to develop with.  Using this
; file is warmly recommended for production sites.  As all of the changes from
; the standard settings are thoroughly documented, you can go over each one,
; and decide whether you want to use it or not.
;
; For general information about the php.ini file, please consult the php.ini-dist
; file, included in your PHP distribution.
;
; This file is different from the php.ini-dist file in the fact that it features
; different values for several directives, in order to improve performance, while
; possibly breaking compatibility with the standard out-of-the-box behavior of
; PHP 3.  Please make sure you read what's different, and modify your scripts
; accordingly, if you decide to use this file instead.
;
; - register_globals = Off         [Security, Performance]
;     Global variables are no longer registered for input data (POST, GET, cookies,
;     environment and other server variables).  Instead of using $foo, you must use
;     you can use $_REQUEST["foo"] (includes any variable that arrives through the
;     request, namely, POST, GET and cookie variables), or use one of the specific
;     $_GET["foo"], $_POST["foo"], $_COOKIE["foo"] or $_FILES["foo"], depending
;     on where the input originates.  Also, you can look at the
;     import_request_variables() function.
;     Note that register_globals is going to be depracated (i.e., turned off by
;     default) in the next version of PHP, because it often leads to security bugs.
;     Read http://php.net/manual/en/security.registerglobals.php for further
;     information.
; - display_errors = Off           [Security]
;     With this directive set to off, errors that occur during the execution of
;     scripts will no longer be displayed as a part of the script output, and thus,
;     will no longer be exposed to remote users.  With some errors, the error message
;     content may expose information about your script, web server, or database
;     server that may be exploitable for hacking.  Production sites should have this
;     directive set to off.
; - log_errors = On                [Security]
;     This directive complements the above one.  Any errors that occur during the
;     execution of your script will be logged (typically, to your server's error log,
;     but can be configured in several ways).  Along with setting display_errors to off,
;     this setup gives you the ability to fully understand what may have gone wrong,
;     without exposing any sensitive information to remote users.
; - output_buffering = 4096        [Performance]
;     Set a 4KB output buffer.  Enabling output buffering typically results in less
;     writes, and sometimes less packets sent on the wire, which can often lead to
;     better performance.  The gain this directive actually yields greatly depends
;     on which Web server you're working with, and what kind of scripts you're using.
; - register_argc_argv = Off       [Performance]
;     Disables registration of the somewhat redundant $argv and $argc global
;     variables.
; - magic_quotes_gpc = Off         [Performance]
;     Input data is no longer escaped with slashes so that it can be sent into
;     SQL databases without further manipulation.  Instead, you should use the
;     function addslashes() on each input element you wish to send to a database.
; - variables_order = "GPCS"       [Performance]
;     The environment variables are not hashed into the $HTTP_ENV_VARS[].  To access
;     environment variables, you can use getenv() instead.
; - error_reporting = E_ALL        [Code Cleanliness, Security(?)]
;     By default, PHP surpresses errors of type E_NOTICE.  These error messages
;     are emitted for non-critical errors, but that could be a symptom of a bigger
;     problem.  Most notably, this will cause error messages about the use
;     of uninitialized variables to be displayed.
; - allow_call_time_pass_reference = Off     [Code cleanliness]
;     It's not possible to decide to force a variable to be passed by reference
;     when calling a function.  The PHP 4 style to do this is by making the
;     function require the relevant argument by reference.


;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;

; Enable the PHP scripting language engine under Apache.
engine = On

; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
short_open_tag = On

; Allow ASP-style <% %> tags.
asp_tags = Off

; The number of significant digits displayed in floating point numbers.
precision    =  14

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance = Off

; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a
; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by
; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as
; a value for this directive (e.g., output_buffering=4096).
output_buffering = 4096

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to "ob_gzhandler", output will be
; transparently compressed for browsers that support gzip or deflate encoding.
; Setting an output handler automatically turns on output buffering.
output_handler =

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
;
; Note: output_handler must be empty if this is set 'On' !!!!
;
zlib.output_compression = Off

; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block.  This is equivalent to calling the
; PHP function flush() after each and every call to print() or echo() and each
; and every HTML block.  Turning this option on has serious performance
; implications and is generally recommended for debugging purposes only.
implicit_flush = Off

; Whether to enable the ability to force arguments to be passed by reference
; at function call time.  This method is deprecated and is likely to be
; unsupported in future versions of PHP/Zend.  The encouraged method of
; specifying which arguments should be passed by reference is in the function
; declaration.  You're encouraged to try and turn this option Off and make
; sure your scripts work properly with it in order to ensure they will work
; with future versions of the language (you will receive a warning each time
; you use this feature, and the argument will be passed by value instead of by
; reference).
allow_call_time_pass_reference = Off

;
; Safe Mode
;
safe_mode = Off

; By default, Safe Mode does a UID compare check when
; opening files. If you want to relax this to a GID compare,
; then turn on safe_mode_gid.
safe_mode_gid = Off

; When safe_mode is on, UID/GID checks are bypassed when
; including files from this directory and its subdirectories.
; (directory must also be in include_path or full path must
; be used when including)
safe_mode_include_dir =        

; When safe_mode is on, only executables located in the safe_mode_exec_dir
; will be allowed to be executed via the exec family of functions.
safe_mode_exec_dir =

; open_basedir, if set, limits all file operations to the defined directory
; and below.  This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file.
;
;open_basedir =

; Setting certain environment variables may be a potential security breach.
; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
; the user may only alter environment variables whose names begin with the
; prefixes supplied here.  By default, users will only be able to set
; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars = PHP_

; This directive contains a comma-delimited list of environment variables that
; the end user won't be able to change using putenv().  These variables will be
; protected even if safe_mode_allowed_env_vars is set to allow to change them.
safe_mode_protected_env_vars = LD_LIBRARY_PATH

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-delimited list of function names.  This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions =

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; <font color="??????"> would work.
highlight.string  = #CC0000
highlight.comment = #FF9900
highlight.keyword = #006600
highlight.bg      = #FFFFFF
highlight.default = #0000CC
highlight.html    = #000000


;
; Misc
;
; Decides whether PHP may expose the fact that it is installed on the server
; (e.g. by adding its signature to the Web server header).  It is no security
; threat in any way, but it makes it possible to determine whether you use PHP
; on your server or not.
expose_php = On


;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30     ; Maximum execution time of each script, in seconds
memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; error_reporting is a bit-field.  Or each number up to get desired error
; reporting level
; E_ALL             - All errors and warnings
; E_ERROR           - fatal run-time errors
; E_WARNING         - run-time warnings (non-fatal errors)
; E_PARSE           - compile-time parse errors
; E_NOTICE          - run-time notices (these are warnings which often result
;                     from a bug in your code, but it's possible that it was
;                     intentional (e.g., using an uninitialized variable and
;                     relying on the fact it's automatically initialized to an
;                     empty string)
; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
;                     initial startup
; E_COMPILE_ERROR   - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR      - user-generated error message
; E_USER_WARNING    - user-generated warning message
; E_USER_NOTICE     - user-generated notice message
;
; Examples:
;
;   - Show all errors, except for notices
;
;error_reporting = E_ALL & ~E_NOTICE
;
;   - Show only errors
;
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
;   - Show all errors
;
error_reporting  =  E_ALL

; Print out errors (as a part of the output).  For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below).  Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = on

; Even when display_errors is on, errors that occur during PHP's startup
; sequence are not displayed.  It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = on

; Log errors into a log file (server-specific log, stderr, or error_log (below))
; As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = On

; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off

; Disable the inclusion of HTML tags in error messages.
;html_errors = Off
  
; String to output before an error message.
;error_prepend_string = "<font color=ff0000>"

; String to output after an error message.
;error_append_string = "</font>"

; Log errors to specified file.
error_log = PHPErrorLog

; Log errors to syslog (Event Log on NT, not valid in Windows 95).
error_log = syslog

; Warn if the + operator is used with strings.
warn_plus_overloading = Off


;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3

; The separator used in PHP generated URLs to separate arguments.
; Default is "&". 
;arg_separator.output = "&amp;"

; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&". 
; NOTE: Every character in this directive is considered as separator!
;arg_separator.input = ";&"

; This directive describes the order in which PHP registers GET, POST, Cookie,
; Environment and Built-in variables (G, P, C, E & S respectively, often
; referred to as EGPCS or GPC).  Registration is done from left to right, newer
; values override older values.
variables_order = "GPCS"

; Whether or not to register the EGPCS variables as global variables.  You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data.  This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on;  Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
register_globals = Off

; This directive tells PHP whether to declare the argv&argc variables (that
; would contain the GET information).  If you don't use these variables, you
; should turn it off for increased performance.
register_argc_argv = Off

; Maximum size of POST data that PHP will accept.
post_max_size = 8M

; This directive is deprecated.  Use variables_order instead.
gpc_order = "GPC"

; Magic quotes
;

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off    

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

; Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =

; As of 4.0b4, PHP always outputs a character encoding by default in
; the Content-type: header.  To disable sending of the charset, simply
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
;default_charset = "iso-8859-1"

; Always populate the $HTTP_RAW_POST_DATA variable.                               
;always_populate_raw_post_data = On

;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;

; UNIX: "/path1:/path2"  
;include_path = ".:/php/includes"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"

; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues.  The alternate is to use the
; cgi.force_redirect configuration below
doc_root = 

; The directory under which PHP opens the script using /~usernamem used only
; if nonempty.
user_dir =

; Directory in which the loadable extensions (modules) reside.
extension_dir = c:\PHP_4.2.1\extensions

; Whether or not to enable the dl() function.  The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
enable_dl = On

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.  Left undefined, PHP turns this on by default.  You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; cgi.force_redirect = 1

; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape 
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution.  Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; cgi.redirect_status_env = ;



;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M


;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;

; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On

; Define the anonymous ftp password (your email address)
;from="john@doe.com"


;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
;   extension=modulename.extension
;
; For example, on Windows:
;
;   extension=msql.dll
;
; ... or under UNIX:
;
;   extension=msql.so
;
; Note that it should be the name of the module only; no directory information 
; needs to go here.  Specify the location of the extension with the
; extension_dir directive above.


;Windows Extensions
;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
;
;extension=php_bz2.dll
;extension=php_ctype.dll
;extension=php_cpdf.dll
;extension=php_curl.dll
;extension=php_cybercash.dll
;extension=php_db.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_dbx.dll
;extension=php_domxml.dll
;extension=php_dotnet.dll
;extension=php_exif.dll
;extension=php_fbsql.dll
;extension=php_fdf.dll
;extension=php_filepro.dll
;extension=php_gd.dll
;extension=php_gettext.dll
;extension=php_hyperwave.dll
;extension=php_iconv.dll
;extension=php_ifx.dll
;extension=php_iisfunc.dll
;extension=php_imap.dll
;extension=php_ingres.dll
;extension=php_interbase.dll
;extension=php_java.dll
;extension=php_ldap.dll
;extension=php_mbstring.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_ming.dll
;extension=php_mssql.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_oracle.dll
;extension=php_pdf.dll
;extension=php_pgsql.dll
;extension=php_printer.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sybase_ct.dll
;extension=php_tokenizer.dll
;extension=php_w32api.dll
;extension=php_xslt.dll
;extension=php_yaz.dll
;extension=php_zlib.dll


;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[Syslog]
; Whether or not to define the various syslog variables (e.g. $LOG_PID,
; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
; runtime, you can define these variables by calling define_syslog_variables().
define_syslog_variables  = Off

[mail function]
; For Win32 only.
SMTP = mail.technalithics.com

; For Win32 only.
sendmail_from = hostmaster@technalithics.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =

[Java]
;java.class.path = .\php_java.jar
;java.home = c:\jdk
;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
;java.library.path = .\

[SQL]
sql.safe_mode = Off

[ODBC]
;odbc.default_db    =  Not yet implemented
;odbc.default_user  =  Not yet implemented
;odbc.default_pw    =  Not yet implemented

; Allow or prevent persistent links.
odbc.allow_persistent = On

; Check that a connection is still valid before reuse.
odbc.check_persistent = On

; Maximum number of persistent links.  -1 means no limit.
odbc.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
odbc.max_links = -1  

; Handling of LONG fields.  Returns number of bytes to variables.  0 means
; passthru.
odbc.defaultlrl = 4096  

; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1  

[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mysql.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
mysql.max_links = -1

; Default port number for mysql_connect().  If unset, mysql_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysql.default_port =

; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
mysql.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysql.default_user =

; Default password for mysql_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo cfg_get_var("mysql.default_password")
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysql.default_password =

[mSQL]
; Allow or prevent persistent links.
msql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
msql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
msql.max_links = -1

[PostgresSQL]
; Allow or prevent persistent links.
pgsql.allow_persistent = On

; Detect broken persistent links always with pg_pconnect(). Need a little overhead.
pgsql.auto_reset_persistent = Off

; Maximum number of persistent links.  -1 means no limit.
pgsql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
pgsql.max_links = -1

[Sybase]
; Allow or prevent persistent links.
sybase.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybase.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybase.max_links = -1

;sybase.interface_file = "/usr/sybase/interfaces"

; Minimum error severity to display.
sybase.min_error_severity = 10

; Minimum message severity to display.
sybase.min_message_severity = 10

; Compatability mode with old versions of PHP 3.0.
; If on, this will cause PHP to automatically assign types to results according
; to their Sybase type, instead of treating them all as strings.  This
; compatability mode will probably not stay around forever, so try applying
; whatever necessary changes to your code, and turn it off.
sybase.compatability_mode = Off

[Sybase-CT]
; Allow or prevent persistent links.
sybct.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybct.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybct.max_links = -1

; Minimum server message severity to display.
sybct.min_server_severity = 10

; Minimum client message severity to display.
sybct.min_client_severity = 10

[bcmath]
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0

[browscap]
;browscap = extra/browscap.ini

[Informix]
; Default host for ifx_connect() (doesn't apply in safe mode).
ifx.default_host =

; Default user for ifx_connect() (doesn't apply in safe mode).
ifx.default_user =

; Default password for ifx_connect() (doesn't apply in safe mode).
ifx.default_password =

; Allow or prevent persistent links.
ifx.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ifx.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
ifx.max_links = -1

; If on, select statements return the contents of a text blob instead of its id.
ifx.textasvarchar = 0

; If on, select statements return the contents of a byte blob instead of its id.
ifx.byteasvarchar = 0

; Trailing blanks are stripped from fixed-length char columns.  May help the
; life of Informix SE users.
ifx.charasvarchar = 0

; If on, the contents of text and byte blobs are dumped to a file instead of
; keeping them in memory.
ifx.blobinfile = 0

; NULL's are returned as empty strings, unless this is set to 1.  In that case,
; NULL's are returned as string 'NULL'.
ifx.nullformat = 0

[Session]
; Handler used to store/retrieve data.
session.save_handler = files

; Argument passed to save_handler.  In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this 
; variable in order to use PHP's session functions.
session.save_path = /tmp

; Whether to use cookies.
session.use_cookies = 1


; Name of the session (used as cookie name).
session.name = PHPSESSID

; Initialize session on request startup.
session.auto_start = 0

; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0

; The path for which the cookie is valid.
session.cookie_path = /

; The domain for which the cookie is valid.
session.cookie_domain =

; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php

; Percentual probability that the 'garbage collection' process is started
; on every session initialization.
session.gc_probability = 1

; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =

; How many bytes to read from the file.
session.entropy_length = 0

; Specified here to create the session id.
session.entropy_file =

;session.entropy_length = 16

;session.entropy_file = /dev/urandom

; Set to {nocache,private,public} to determine HTTP caching aspects.
session.cache_limiter = nocache

; Document expires after n minutes.
session.cache_expire = 180

; use transient sid support if enabled by compiling with --enable-trans-sid.
session.use_trans_sid = 1

url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"

[MSSQL]
; Allow or prevent persistent links.
mssql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mssql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
mssql.max_links = -1

; Minimum error severity to display.
mssql.min_error_severity = 10

; Minimum message severity to display.
mssql.min_message_severity = 10

; Compatability mode with old versions of PHP 3.0.
mssql.compatability_mode = Off

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textlimit = 4096

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textsize = 4096

; Limits the number of records in each batch.  0 = all records in one batch.
;mssql.batchsize = 0

[Assertion]
; Assert(expr); active by default.
;assert.active = On

; Issue a PHP warning for each failed assertion.
;assert.warning = On

; Don't bail out by default.
;assert.bail = Off

; User-function to be called if an assertion fails.
;assert.callback = 0

; Eval the expression with current error_reporting().  Set to true if you want
; error_reporting(0) around the eval().
;assert.quiet_eval = 0

[Ingres II]
; Allow or prevent persistent links.
ingres.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ingres.max_persistent = -1

; Maximum number of links, including persistents.  -1 means no limit.
ingres.max_links = -1

; Default database (format: [node_id::]dbname[/srv_class]).
ingres.default_database =

; Default user.
ingres.default_user =

; Default password.
ingres.default_password =

[Verisign Payflow Pro]
; Default Payflow Pro server.
pfpro.defaulthost = "test-payflow.verisign.com"

; Default port to connect to.
pfpro.defaultport = 443

; Default timeout in seconds.
pfpro.defaulttimeout = 30

; Default proxy IP address (if required).
;pfpro.proxyaddress =

; Default proxy port.
;pfpro.proxyport =

; Default proxy logon.
;pfpro.proxylogon =

; Default proxy password.
;pfpro.proxypassword =

[Sockets]
; Use the system read() function instead of the php_read() wrapper.
sockets.use_system_read = On

[com]
; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
;com.typelib_file = 
; allow Distributed-COM calls
;com.allow_dcom = true
; autoregister constants of a components typlib on com_load()
;com.autoregister_typelib = true
; register constants casesensitive
;com.autoregister_casesensitive = false
; show warnings on duplicate constat registrations
;com.autoregister_verbose = true

[Printer]
;printer.default_printer = ""

[mbstring]
;mbstring.internal_encoding = EUC-JP
;mbstring.http_input = auto
;mbstring.http_output = SJIS
;mbstring.detect_order = auto
;mbstring.substitute_character = none;

[FrontBase]
;fbsql.allow_persistent = On
;fbsql.autocommit = On
;fbsql.default_database = 
;fbsql.default_database_password =
;fbsql.default_host =
;fbsql.default_password =
;fbsql.default_user = "_SYSTEM"
;fbsql.generate_warnings = Off
;fbsql.max_connections = 128
;fbsql.max_links = 128
;fbsql.max_persistent = -1
;fbsql.max_results = 128
;fbsql.batchSize = 1000

; Local Variables:
; tab-width: 4
; End:



ACCESS.LOG
crawl2.googlebot.com - - [06/Jun/2002:00:07:20 -0600] "GET /cp-dec95.html HTTP/1.0" 404 845
crawl2.googlebot.com - - [06/Jun/2002:00:12:21 -0600] "GET /VL/job-listing-250396.html HTTP/1.0" 404 845
crawl3.googlebot.com - - [06/Jun/2002:00:30:10 -0600] "GET /cp-jan96.html HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:53:14 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:53:23 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:53:33 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:53:43 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:53:53 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:03 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:11 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:21 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:31 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:40 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:00:54:50 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
crawl4.googlebot.com - - [06/Jun/2002:01:00:37 -0600] "GET /cp-feb96.html HTTP/1.0" 404 845
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:18 -0600] "GET /products.htm HTTP/1.1" 200 11401
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:20 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:23 -0600] "GET /logo.gif HTTP/1.1" 200 4490
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:25 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:29 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:23 -0600] "GET /_derived/products.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8781
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:29 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:29 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1966
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:30 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:31 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2018
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:31 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:32 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:33 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:33 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1998
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:34 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:35 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
kato-ppp55.mines.edu - - [06/Jun/2002:01:20:35 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:02 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:14 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:14 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:14 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:15 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:15 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:16 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:16 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:16 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:17 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:17 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:17 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:18 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:18 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:19 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
h24-76-128-92.vs.shawcable.net - - [06/Jun/2002:02:17:19 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
crawl1.googlebot.com - - [06/Jun/2002:02:17:33 -0600] "GET /oher_top.html HTTP/1.0" 404 845
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
213.150.188.200 - - [06/Jun/2002:02:48:34 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /logo.gif HTTP/1.0" 200 4490
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
213.150.188.200 - - [06/Jun/2002:02:48:34 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8817
213.150.188.200 - - [06/Jun/2002:02:48:37 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
213.150.188.200 - - [06/Jun/2002:02:48:33 -0600] "GET /chem.html HTTP/1.0" 200 303854
64.140.48.30 - - [06/Jun/2002:03:07:25 -0600] "GET /robots.txt HTTP/1.0" 404 841
216.231.10.197 - - [06/Jun/2002:03:07:26 -0600] "GET /serv01.htm';return%20true%22%20onMouseOut=%22status=' HTTP/1.0" 404 841
jfh9x01 - - [06/Jun/2002:03:21:54 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:03 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:10 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:19 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:29 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:38 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:45 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:22:53 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:23:02 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:23:09 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:23:18 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:23:26 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:23:35 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:03:23:45 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:03:23:54 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:03:24:03 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:34 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:38 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:38 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:39 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:40 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:40 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:41 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:42 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:42 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:43 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:43 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:44 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:45 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:45 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:46 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
c-24-118-227-149.mn.client2.attbi.com - - [06/Jun/2002:04:07:47 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:37:35 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:37:47 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:37:55 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:05 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:15 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:25 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:35 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:45 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:38:55 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:39:03 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:39:13 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:39:23 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:39:33 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:04:39:42 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:04:39:52 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:04:40:02 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:50 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:52 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:48 -0600] "GET /chem.html HTTP/1.1" 200 303854
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:50 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:52 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:53 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
colosus3.iucc.ac.il - - [06/Jun/2002:05:02:51 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
colosus3.iucc.ac.il - - [06/Jun/2002:05:02:55 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:51 -0600] "GET /logo.gif HTTP/1.1" 200 4490
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:52 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:57 -0600] "GET /links.htm HTTP/1.1" 200 8789
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:48 -0600] "GET /chem.html HTTP/1.1" 200 303854
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1999
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2528
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2022
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2549
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:58 -0600] "GET /_derived/links.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8766
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2031
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2549
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
colosus1.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
colosus2.iucc.ac.il - - [06/Jun/2002:05:02:59 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2515
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2534
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1995
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1994
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:00 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:01 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:01 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:01 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1963
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:01 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:01 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2507
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:09 -0600] "GET /chem.html HTTP/1.1" 200 303854
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 991
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:17 -0600] "GET / HTTP/1.1" 200 11500
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:18 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:19 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:22 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:22 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1966
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:22 -0600] "GET /products.htm HTTP/1.1" 200 11401
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2018
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:22 -0600] "GET /_derived/products.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8781
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1998
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2000
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:23 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:24 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:24 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:24 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2535
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:24 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:29 -0600] "GET /prod01.htm HTTP/1.1" 200 7024
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:29 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
colosus3.iucc.ac.il - - [06/Jun/2002:05:03:29 -0600] "GET /images/bullet.gif HTTP/1.1" 200 958
colosus1.iucc.ac.il - - [06/Jun/2002:05:03:29 -0600] "GET /images/prodimg.gif HTTP/1.1" 200 3081
colosus2.iucc.ac.il - - [06/Jun/2002:05:03:29 -0600] "GET /_derived/prod01.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8809
wm3002.inktomisearch.com - - [06/Jun/2002:05:58:56 -0600] "GET /pr01.htm HTTP/1.0" 304 0
213.215.162.242 - - [06/Jun/2002:06:18:06 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
213.215.162.242 - - [06/Jun/2002:06:18:07 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
213.215.162.242 - - [06/Jun/2002:06:18:07 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
213.215.162.242 - - [06/Jun/2002:06:18:06 -0600] "GET /engineer.html HTTP/1.0" 200 135585
213.215.162.242 - - [06/Jun/2002:06:18:06 -0600] "GET /engineer.html HTTP/1.0" 200 135585
213.215.162.242 - - [06/Jun/2002:06:20:55 -0600] "GET /favicon.ico HTTP/1.0" 404 845
colosus2.iucc.ac.il - - [06/Jun/2002:06:38:11 -0600] "GET /botany.html HTTP/1.1" 200 76737
colosus2.iucc.ac.il - - [06/Jun/2002:06:38:14 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:20 -0600] "GET /news.htm HTTP/1.0" 200 4599
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:27 -0600] "GET /logo.gif HTTP/1.0" 200 4490
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:20 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:27 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:20 -0600] "GET /_derived/news.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8748
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:20 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:27 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
24.213.28.40.kzo.mi.chartermi.net - - [06/Jun/2002:07:10:27 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
66.28.250.175 - - [06/Jun/2002:07:14:17 -0600] "GET /robots.txt HTTP/1.0" 404 841
66.28.250.175 - - [06/Jun/2002:07:14:25 -0600] "GET /pr01.htm HTTP/1.0" 200 2905
66.28.250.174 - - [06/Jun/2002:07:15:40 -0600] "GET /robots.txt HTTP/1.0" 404 841
66.28.250.174 - - [06/Jun/2002:07:15:45 -0600] "GET /index.htm HTTP/1.0" 404 841
66.28.250.171 - - [06/Jun/2002:07:16:45 -0600] "GET /robots.txt HTTP/1.0" 404 841
66.28.250.171 - - [06/Jun/2002:07:16:50 -0600] "GET /gissoft.htm HTTP/1.0" 200 17898
66.28.250.172 - - [06/Jun/2002:07:20:53 -0600] "GET /robots.txt HTTP/1.0" 404 841
66.28.250.173 - - [06/Jun/2002:07:20:53 -0600] "GET /robots.txt HTTP/1.0" 404 841
66.28.250.173 - - [06/Jun/2002:07:20:59 -0600] "GET /pr02.htm HTTP/1.0" 200 2905
66.28.250.172 - - [06/Jun/2002:07:20:58 -0600] "GET /newpage2.htm HTTP/1.0" 200 211296
66.28.250.171 - - [06/Jun/2002:07:21:57 -0600] "GET /pr03.htm HTTP/1.0" 200 2905
halhoupro2.halliburton.com - - [06/Jun/2002:07:30:20 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
halhoupro2.halliburton.com - - [06/Jun/2002:07:30:21 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
halhoupro2.halliburton.com - - [06/Jun/2002:07:30:20 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
halhoupro2.halliburton.com - - [06/Jun/2002:07:30:20 -0600] "GET /engineer.html HTTP/1.0" 200 135585
66.28.250.174 - - [06/Jun/2002:07:31:00 -0600] "GET /prod01.htm HTTP/1.0" 200 4612
jfh9x01 - - [06/Jun/2002:07:40:49 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:40:58 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:07 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:17 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:26 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:35 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:44 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:51 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:41:58 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:42:08 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:42:15 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:42:24 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:42:31 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:07:42:41 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:07:42:48 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:07:42:55 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:34 -0600] "GET /llano HTTP/1.1" 301 315
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:34 -0600] "GET /llano/ HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:34 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:34 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:35 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:36 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:07:44:37 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
bkj-cache84.jaring.my - - [06/Jun/2002:08:58:32 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
bkj-cache84.jaring.my - - [06/Jun/2002:08:58:39 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
bkj-cache84.jaring.my - - [06/Jun/2002:08:58:40 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
bkj-cache84.jaring.my - - [06/Jun/2002:08:58:29 -0600] "GET /engineer.html HTTP/1.1" 200 135585
67.38.225.34 - - [06/Jun/2002:09:02:57 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
67.38.225.34 - - [06/Jun/2002:09:02:57 -0600] "GET /pr02.htm HTTP/1.1" 200 8107
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /logo.gif HTTP/1.1" 200 4490
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8920
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
67.38.225.34 - - [06/Jun/2002:09:03:07 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
67.38.225.34 - - [06/Jun/2002:09:05:05 -0600] "POST /_vti_bin/shtml.exe/pr02.htm HTTP/1.1" 403 827
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:35 -0600] "GET /pr02.htm HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:46 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:36 -0600] "GET /logo.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:46 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:47 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:47 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:47 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:47 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
pool-141-154-19-113.bos.east.verizon.net - - [06/Jun/2002:09:27:47 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
cache-rk07.proxy.aol.com - - [06/Jun/2002:09:40:59 -0600] "GET /abatt03 HTTP/1.0" 301 319
cache-rk07.proxy.aol.com - - [06/Jun/2002:09:40:57 -0600] "GET /abatt03 HTTP/1.0" 301 319
cache-rk07.proxy.aol.com - - [06/Jun/2002:09:41:01 -0600] "GET /abatt03 HTTP/1.0" 301 319
cache-rg07.proxy.aol.com - - [06/Jun/2002:09:41:02 -0600] "GET /abatt03/ HTTP/1.0" 200 1925
cache-rg07.proxy.aol.com - - [06/Jun/2002:09:41:02 -0600] "GET /abatt03/ HTTP/1.0" 200 1925
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:41:04 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.0" 200 18869
cache-rp06.proxy.aol.com - - [06/Jun/2002:09:41:06 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.0" 200 906
cache-rc02.proxy.aol.com - - [06/Jun/2002:09:41:36 -0600] "GET /abatt03/photo.htm HTTP/1.0" 304 0
cache-rc01.proxy.aol.com - - [06/Jun/2002:09:41:38 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.0" 200 20521
cache-rq08.proxy.aol.com - - [06/Jun/2002:09:41:40 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.0" 304 0
cache-rp04.proxy.aol.com - - [06/Jun/2002:09:41:40 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.0" 304 0
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:41:41 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.0" 200 1791
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:40 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.0" 304 0
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:41 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.0" 304 0
cache-rb03.proxy.aol.com - - [06/Jun/2002:09:41:40 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.0" 304 0
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:44 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.0" 304 0
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:45 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.0" 200 1974
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:41:45 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.0" 200 1848
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:42 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.0" 200 1214
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:43 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.0" 200 1210
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:44 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.0" 200 1213
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:44 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.0" 200 1184
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:41:42 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.0" 200 2119
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:41:45 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.0" 200 1528
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:48 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.0" 200 1914
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:49 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.0" 200 1834
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:51 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:46 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.0" 304 0
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:41:51 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.0" 200 1670
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:47 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.0" 200 1516
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:52 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.0" 304 0
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:41:53 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.0" 200 1878
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:47 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.0" 200 1871
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:55 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:56 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:41:56 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.0" 304 0
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:56 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.0" 200 1687
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:41:57 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.0" 200 2405
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:58 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.0" 304 0
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:41:58 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.0" 200 2137
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:41:58 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.0" 304 0
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:41:59 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:00 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.0" 200 1600
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:00 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.0" 200 1531
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:00 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:01 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.0" 304 0
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:42:01 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.0" 304 0
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:01 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.0" 304 0
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:42:02 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.0" 200 1543
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:02 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.0" 304 0
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:42:03 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:03 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.0" 200 1550
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:03 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.0" 200 2010
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:04 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.0" 200 1936
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:05 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.0" 200 1780
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:05 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.0" 304 0
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:05 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.0" 304 0
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:42:06 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.0" 200 1361
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:07 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.0" 304 0
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:42:07 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.0" 200 1939
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:07 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:07 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.0" 200 1827
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:09 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.0" 200 1653
cache-rc06.proxy.aol.com - - [06/Jun/2002:09:42:09 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:09 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.0" 200 1999
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:09 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.0" 200 2082
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:14 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:14 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.0" 304 0
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:42:14 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.0" 200 1903
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:14 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.0" 200 1922
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:16 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.0" 200 1933
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:16 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.0" 200 1808
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:16 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:17 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.0" 200 2342
cache-rl01.proxy.aol.com - - [06/Jun/2002:09:42:19 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.0" 200 2373
cache-rm03.proxy.aol.com - - [06/Jun/2002:09:42:19 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.0" 200 2130
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:19 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.0" 200 2145
cache-rg03.proxy.aol.com - - [06/Jun/2002:09:42:19 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.0" 200 2322
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:21 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.0" 304 0
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:21 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:21 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.0" 200 2109
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:21 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:24 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.0" 304 0
cache-rg03.proxy.aol.com - - [06/Jun/2002:09:42:24 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.0" 200 2136
cache-rh07.proxy.aol.com - - [06/Jun/2002:09:42:24 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.0" 200 1867
cache-rf08.proxy.aol.com - - [06/Jun/2002:09:42:24 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.0" 200 2004
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:26 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.0" 304 0
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:26 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.0" 200 1834
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:26 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.0" 200 1825
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:28 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:29 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:29 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.0" 200 2198
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:29 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.0" 200 2215
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:31 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.0" 304 0
cache-rh08.proxy.aol.com - - [06/Jun/2002:09:42:31 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.0" 304 0
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:31 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.0" 304 0
cache-rb02.proxy.aol.com - - [06/Jun/2002:09:42:31 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.0" 200 2216
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:33 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:33 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.0" 304 0
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:33 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.0" 304 0
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:33 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.0" 200 2140
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:36 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:36 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.0" 200 2209
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:36 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.0" 200 2246
cache-rb02.proxy.aol.com - - [06/Jun/2002:09:42:36 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.0" 200 2163
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:38 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:38 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.0" 200 2176
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:38 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.0" 200 2181
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:38 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.0" 200 2170
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:41 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:41 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.0" 200 2271
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:41 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.0" 200 2213
cache-rb02.proxy.aol.com - - [06/Jun/2002:09:42:41 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.0" 200 2222
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:43 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:43 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.0" 200 2213
cache-rl02.proxy.aol.com - - [06/Jun/2002:09:42:43 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.0" 304 0
cache-rf05.proxy.aol.com - - [06/Jun/2002:09:42:43 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.0" 200 2262
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:46 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.0" 304 0
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:46 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:46 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:46 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.0" 200 2166
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:48 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:48 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.0" 200 2119
cache-rb02.proxy.aol.com - - [06/Jun/2002:09:42:48 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.0" 200 2067
cache-rf05.proxy.aol.com - - [06/Jun/2002:09:42:48 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.0" 200 2227
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:51 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:51 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.0" 304 0
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:51 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.0" 200 2018
cache-rh04.proxy.aol.com - - [06/Jun/2002:09:42:51 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.0" 304 0
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:53 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.0" 200 2262
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:53 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.0" 200 2205
cache-rb02.proxy.aol.com - - [06/Jun/2002:09:42:53 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.0" 200 2026
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:53 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.0" 200 2075
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:55 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.0" 200 2029
cache-rf05.proxy.aol.com - - [06/Jun/2002:09:42:55 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.0" 200 2027
cache-rl03.proxy.aol.com - - [06/Jun/2002:09:42:55 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.0" 200 2067
cache-rf02.proxy.aol.com - - [06/Jun/2002:09:42:56 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.0" 200 2056
cache-rk02.proxy.aol.com - - [06/Jun/2002:09:44:20 -0600] "GET /abatt03/images/IMG_1651.JPG HTTP/1.0" 200 359808
cache-rk02.proxy.aol.com - - [06/Jun/2002:09:44:58 -0600] "GET /abatt03/images/IMG_1678.JPG HTTP/1.0" 200 1044312
cache-rk02.proxy.aol.com - - [06/Jun/2002:09:46:26 -0600] "GET /abatt03/images/IMG_1691.JPG HTTP/1.0" 200 1763004
jfh9x01 - - [06/Jun/2002:09:49:11 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:49:25 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:49:33 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
cache-rl05.proxy.aol.com - - [06/Jun/2002:09:49:28 -0600] "GET /abatt03/images/img_1742.jpg HTTP/1.0" 200 1264060
jfh9x01 - - [06/Jun/2002:09:49:41 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:49:51 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:49:58 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:09 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:17 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:27 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:35 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:46 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:50:56 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:51:04 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:09:51:11 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
cache-rb08.proxy.aol.com - - [06/Jun/2002:09:51:08 -0600] "GET /abatt03/images/img_1743.jpg HTTP/1.0" 200 1529380
jfh9x01 - - [06/Jun/2002:09:51:22 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:51:29 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
cache-rb08.proxy.aol.com - - [06/Jun/2002:09:51:34 -0600] "GET /abatt03/images/img_1734.jpg HTTP/1.0" 200 1524844
cache-rh02.proxy.aol.com - - [06/Jun/2002:09:51:56 -0600] "GET /abatt03/images/img_1745.jpg HTTP/1.0" 200 1479524
dbfw1.pb.com - - [06/Jun/2002:09:52:28 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /logo.gif HTTP/1.1" 200 4490
dbfw1.pb.com - - [06/Jun/2002:09:52:27 -0600] "GET /botany.html HTTP/1.1" 200 76737
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
dbfw1.pb.com - - [06/Jun/2002:09:52:33 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
dbfw1.pb.com - - [06/Jun/2002:09:52:34 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
202.28.27.2 - - [06/Jun/2002:09:54:57 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
202.28.27.2 - - [06/Jun/2002:09:54:57 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
202.28.27.2 - - [06/Jun/2002:09:55:02 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
202.28.27.2 - - [06/Jun/2002:09:54:51 -0600] "GET /engineer.html HTTP/1.0" 200 135585
jfh9x01 - - [06/Jun/2002:09:57:00 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:08 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:16 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:26 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:36 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:46 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:57:54 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:58:05 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
pcd420148.netvigator.com - - [06/Jun/2002:09:58:06 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
pcd420148.netvigator.com - - [06/Jun/2002:09:58:13 -0600] "GET /logo.gif HTTP/1.1" 200 4490
pcd420148.netvigator.com - - [06/Jun/2002:09:58:14 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
pcd420148.netvigator.com - - [06/Jun/2002:09:58:16 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
pcd420148.netvigator.com - - [06/Jun/2002:09:58:17 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
pcd420148.netvigator.com - - [06/Jun/2002:09:58:17 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
pcd420148.netvigator.com - - [06/Jun/2002:09:58:17 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
pcd420148.netvigator.com - - [06/Jun/2002:09:58:17 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
pcd420148.netvigator.com - - [06/Jun/2002:09:58:18 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
pcd420148.netvigator.com - - [06/Jun/2002:09:58:18 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
pcd420148.netvigator.com - - [06/Jun/2002:09:58:18 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
jfh9x01 - - [06/Jun/2002:09:58:12 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:58:22 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
218.102.21.2 - - [06/Jun/2002:09:58:05 -0600] "GET /chem.html HTTP/1.1" 200 303854
jfh9x01 - - [06/Jun/2002:09:58:32 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:58:45 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:58:53 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
pcd420148.netvigator.com - - [06/Jun/2002:09:59:08 -0600] "GET /favicon.ico HTTP/1.1" 404 845
pcd420148.netvigator.com - - [06/Jun/2002:09:59:09 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
jfh9x01 - - [06/Jun/2002:09:59:05 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:09:59:13 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:09:59:21 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:00:47 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:00:57 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:06 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:16 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:26 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:37 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:45 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:01:55 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:02:03 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:02:13 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
24.242.108.134 - - [06/Jun/2002:10:02:23 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
218.102.21.3 - - [06/Jun/2002:10:02:29 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:36 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:36 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:37 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:37 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:38 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
218.102.21.1 - - [06/Jun/2002:10:02:31 -0600] "GET /logo.gif HTTP/1.1" 304 0
218.102.21.1 - - [06/Jun/2002:10:02:38 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 304 0
218.102.21.3 - - [06/Jun/2002:10:02:38 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 304 0
218.102.21.1 - - [06/Jun/2002:10:02:38 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 304 0
jfh9x01 - - [06/Jun/2002:10:02:34 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:02:42 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:10:02:51 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:10:02:59 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:03:09 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:17:59 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:18:09 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:18:20 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:18:28 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
24.242.108.134 - - [06/Jun/2002:10:18:39 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:18:51 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:02 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:12 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:21 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:29 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:39 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:47 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:19:58 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:10:20:08 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 772
jfh9x01 - - [06/Jun/2002:10:20:16 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
jfh9x01 - - [06/Jun/2002:10:20:26 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 845
ds076703.uta.edu - - [06/Jun/2002:10:54:55 -0600] "GET / HTTP/1.1" 200 12229
ds076703.uta.edu - - [06/Jun/2002:10:54:56 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
ds076703.uta.edu - - [06/Jun/2002:10:55:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /products.htm HTTP/1.1" 200 11669
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2545
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2539
ds076703.uta.edu - - [06/Jun/2002:10:55:09 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1956
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2496
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2543
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2050
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2563
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 200 2241
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 200 1746
ds076703.uta.edu - - [06/Jun/2002:10:55:10 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 200 1701
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.1" 200 671
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.1" 200 679
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.1" 200 613
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.1" 200 683
ds076703.uta.edu - - [06/Jun/2002:10:55:14 -0600] "GET /gissoft.htm HTTP/1.1" 200 17898
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/up_cmp_blitz110_up.gif HTTP/1.1" 200 608
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.1" 200 676
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.1" 200 681
ds076703.uta.edu - - [06/Jun/2002:10:55:15 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.1" 200 689
ds076703.uta.edu - - [06/Jun/2002:10:55:34 -0600] "GET /serv01.htm HTTP/1.1" 200 183724
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /serv01.htm HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /images/sparclogo.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/up_cmp_blitz110_up.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:10:55:48 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:55 -0600] "GET /llano HTTP/1.1" 301 315
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:55 -0600] "GET /llano/ HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:56 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:10:59:57 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:00:00 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:00:00 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:43 -0600] "GET /llano HTTP/1.1" 301 315
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:43 -0600] "GET /llano/ HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:43 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:43 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:43 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:44 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:11:02:45 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /products.htm HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:20 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:31 -0600] "GET /images/tens2_small.jpg HTTP/1.1" 200 2001
ds076703.uta.edu - - [06/Jun/2002:11:04:31 -0600] "GET /tens.htm HTTP/1.1" 200 11469
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET / HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:44 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:45 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:45 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:45 -0600] "GET /images/undercon.gif HTTP/1.1" 304 0
ds076703.uta.edu - - [06/Jun/2002:11:04:47 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /logo.gif HTTP/1.1" 200 4490
ds076703.uta.edu - - [06/Jun/2002:11:04:47 -0600] "GET / HTTP/1.1" 200 11500
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 991
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
ds076703.uta.edu - - [06/Jun/2002:11:04:48 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
ds076703.uta.edu - - [06/Jun/2002:11:05:32 -0600] "GET /links.htm HTTP/1.1" 200 8789
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
ds076703.uta.edu - - [06/Jun/2002:11:05:32 -0600] "GET /_derived/links.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8766
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1999
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2528
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2022
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2549
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2031
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2549
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2515
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2534
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1995
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1994
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
ds076703.uta.edu - - [06/Jun/2002:11:05:34 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1963
ds076703.uta.edu - - [06/Jun/2002:11:05:35 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2507
24.242.177.226 - - [06/Jun/2002:11:08:45 -0600] "GET /_themes/corporat/corbkgnd.gif HTTP/1.1" 200 1732
24.242.177.226 - - [06/Jun/2002:11:08:45 -0600] "GET /_derived/index.html_cmp_corporat110_bnr.gif HTTP/1.1" 200 1719
24.242.177.226 - - [06/Jun/2002:11:08:46 -0600] "GET /_themes/corporat/acorrule.gif HTTP/1.1" 200 171
juniks.org - - [06/Jun/2002:11:08:44 -0600] "GET / HTTP/1.0" 200 4954
proxy.pponetti.com - - [06/Jun/2002:11:31:13 -0600] "GET /sail.html HTTP/1.0" 200 30077
64.65.163.4 - - [06/Jun/2002:12:01:59 -0600] "GET / HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:03 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:01:59 -0600] "GET /logo.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 991
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:04 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:05 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:06 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:06 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:18 -0600] "GET /chem.html HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:19 -0600] "GET /chem.html HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:19 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:19 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:20 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:20 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:20 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:19 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
64.65.163.4 - - [06/Jun/2002:12:02:24 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:58 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:57 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:58 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET / HTTP/1.0" 200 12229
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /images/sparclogo.gif HTTP/1.0" 200 13210
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
cfs.anixter.com - - [06/Jun/2002:12:02:56 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /images/undercon.gif HTTP/1.0" 200 293
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
cfs.anixter.com - - [06/Jun/2002:12:02:56 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
cfs.anixter.com - - [06/Jun/2002:12:02:56 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
cfs.anixter.com - - [06/Jun/2002:12:02:58 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
cfs.anixter.com - - [06/Jun/2002:12:02:59 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:57 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
cfs.anixter.com - - [06/Jun/2002:12:02:55 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
cfs.anixter.com - - [06/Jun/2002:12:02:59 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2518
cfs.anixter.com - - [06/Jun/2002:12:02:59 -0600] "GET /images/undercon.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:02:59 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:00 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:41 -0600] "GET /products.htm HTTP/1.0" 200 11669
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1983
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2006
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2005
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2050
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1956
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2013
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.0" 200 1746
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2545
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2530
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2539
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2496
cfs.anixter.com - - [06/Jun/2002:12:03:43 -0600] "GET /images/radmon1_small.JPG HTTP/1.0" 200 1701
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2543
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2563
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /images/radmon1_small.JPG HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:44 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:45 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:03:42 -0600] "GET /images/tenspcb_small.JPG HTTP/1.0" 200 2241
cfs.anixter.com - - [06/Jun/2002:12:04:04 -0600] "GET /services.htm HTTP/1.0" 200 10752
cfs.anixter.com - - [06/Jun/2002:12:04:04 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.0" 200 671
cfs.anixter.com - - [06/Jun/2002:12:04:04 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.0" 200 613
cfs.anixter.com - - [06/Jun/2002:12:04:05 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:04:05 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.0" 200 679
cfs.anixter.com - - [06/Jun/2002:12:04:05 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.0" 200 683
cfs.anixter.com - - [06/Jun/2002:12:04:06 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.0" 304 0
cfs.anixter.com - - [06/Jun/2002:12:04:08 -0600] "GET /_fpclass/fphover.class HTTP/1.0" 200 11684
cfs.anixter.com - - [06/Jun/2002:12:04:09 -0600] "GET /_fpclass/fphoverx.class HTTP/1.0" 200 2041
64.65.163.4 - - [06/Jun/2002:12:06:33 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 991
cfs.anixter.com - - [06/Jun/2002:12:06:53 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
cfs.anixter.com - - [06/Jun/2002:12:06:54 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
64.65.163.4 - - [06/Jun/2002:12:35:13 -0600] "GET /favicon.ico HTTP/1.1" 404 845
168.95.19.26 - - [06/Jun/2002:12:35:34 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 304 0
168.95.19.26 - - [06/Jun/2002:12:35:34 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
168.95.19.26 - - [06/Jun/2002:12:35:34 -0600] "GET /logo.gif HTTP/1.0" 200 4490
168.95.19.26 - - [06/Jun/2002:12:35:35 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
168.95.19.26 - - [06/Jun/2002:12:35:35 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
168.95.19.26 - - [06/Jun/2002:12:35:35 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
168.95.19.26 - - [06/Jun/2002:12:35:35 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
168.95.19.26 - - [06/Jun/2002:12:35:36 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
168.95.19.26 - - [06/Jun/2002:12:35:36 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
168.95.19.26 - - [06/Jun/2002:12:35:36 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
168.95.19.26 - - [06/Jun/2002:12:35:38 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
168.95.19.26 - - [06/Jun/2002:12:35:33 -0600] "GET /chem.html HTTP/1.0" 200 303854
cuscon4769.tstt.net.tt - - [06/Jun/2002:12:43:38 -0600] "GET /images/qisvbkgd.gif HTTP/1.1" 200 444
cuscon4769.tstt.net.tt - - [06/Jun/2002:12:43:47 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
cuscon4769.tstt.net.tt - - [06/Jun/2002:12:43:35 -0600] "GET /qisv.htm HTTP/1.1" 200 127030
64.65.163.4 - - [06/Jun/2002:12:55:28 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 991
24.242.177.226 - - [06/Jun/2002:13:19:14 -0600] "GET /bestpractices HTTP/1.1" 301 325
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/ HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/images/sciserv.bmp HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/home_cmp_artsy110_gbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/images/constguy.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn_a.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_themes/artsy/arthsepa.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:19 -0600] "GET /bestpractices/_derived/toc.htm_cmp_artsy110_gbtn.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:23 -0600] "GET /bestpractices/_derived/index.html_cmp_artsy110_bnr.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:51 -0600] "GET /bestpractices/news.htm HTTP/1.1" 200 10091
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15706
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/pr01.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2744
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/pr02.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2743
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/pr03.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3120
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/pr03.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2748
24.242.177.226 - - [06/Jun/2002:13:19:51 -0600] "GET /bestpractices/_derived/pr01.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3124
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/images/smallnew.gif HTTP/1.1" 200 926
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_themes/artsy/artbul1a.gif HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:13:19:55 -0600] "GET /bestpractices/_derived/pr02.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3111
24.242.177.226 - - [06/Jun/2002:13:20:15 -0600] "GET /bestpractices/products.htm HTTP/1.1" 200 4727
24.242.177.226 - - [06/Jun/2002:13:20:20 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15703
24.242.177.226 - - [06/Jun/2002:13:20:20 -0600] "GET /bestpractices/_derived/prod02.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3090
24.242.177.226 - - [06/Jun/2002:13:20:15 -0600] "GET /bestpractices/_derived/prod01.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3094
24.242.177.226 - - [06/Jun/2002:13:20:20 -0600] "GET /bestpractices/_derived/prod02.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2721
24.242.177.226 - - [06/Jun/2002:13:20:20 -0600] "GET /bestpractices/_derived/prod01.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2728
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/services.htm HTTP/1.1" 200 5545
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/mail-list.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3124
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15754
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/mail-list.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2754
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/serv02.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3085
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/serv02.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2711
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/serv03.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3078
24.242.177.226 - - [06/Jun/2002:13:20:23 -0600] "GET /bestpractices/_derived/serv03.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2711
24.242.177.226 - - [06/Jun/2002:13:20:36 -0600] "GET /bestpractices/agora/index.php?site=bestpractices&bn= HTTP/1.1" 404 1010
24.242.177.226 - - [06/Jun/2002:13:21:46 -0600] "GET /weather HTTP/1.1" 301 319
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/ HTTP/1.1" 200 5892
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/summary.gif HTTP/1.1" 200 9639
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/trends.gif HTTP/1.1" 200 8093
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/energy.gif HTTP/1.1" 200 9796
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/sunmoonimage.jpg HTTP/1.1" 200 40770
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/dailyhighlowbaroetc.gif HTTP/1.1" 200 16234
24.242.177.226 - - [06/Jun/2002:13:21:51 -0600] "GET /weather/index.gif HTTP/1.1" 200 13472
24.242.177.226 - - [06/Jun/2002:13:21:55 -0600] "GET /weather/dirplot.gif HTTP/1.1" 200 5356
24.242.177.226 - - [06/Jun/2002:13:27:47 -0600] "GET /bestpractices/agora/admin_site.php?site=bestpractices HTTP/1.1" 404 842
24.242.177.226 - - [06/Jun/2002:13:27:55 -0600] "GET /bestpractices/agora/admin_site.php?site=bestpractices HTTP/1.1" 404 842
24.242.177.226 - - [06/Jun/2002:13:27:59 -0600] "GET /bestpractices/agora/admin_site.php?site=bestpractices HTTP/1.1" 404 842
x1crawler1-1-0.x-echo.com - - [06/Jun/2002:13:34:08 -0600] "GET /prod04.htm HTTP/1.1" 304 0
24.242.177.226 - - [06/Jun/2002:15:26:29 -0600] "GET /agora/admin.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:26:40 -0600] "GET / HTTP/1.1" 200 4954
24.242.177.226 - - [06/Jun/2002:15:26:37 -0600] "GET /favicon.ico HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:26:41 -0600] "GET /_themes/corporat/corbkgnd.gif HTTP/1.1" 200 1732
24.242.177.226 - - [06/Jun/2002:15:26:41 -0600] "GET /_derived/index.html_cmp_corporat110_bnr.gif HTTP/1.1" 200 1719
24.242.177.226 - - [06/Jun/2002:15:26:43 -0600] "GET /_themes/corporat/acorrule.gif HTTP/1.1" 200 171
24.242.177.226 - - [06/Jun/2002:15:26:48 -0600] "GET /agora/ HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:26:58 -0600] "GET /agora/index.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:27:04 -0600] "GET / HTTP/1.1" 200 12229
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
24.242.177.226 - - [06/Jun/2002:15:27:04 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
24.242.177.226 - - [06/Jun/2002:15:27:08 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
24.242.177.226 - - [06/Jun/2002:15:27:04 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
24.242.177.226 - - [06/Jun/2002:15:27:09 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
24.242.177.226 - - [06/Jun/2002:15:27:05 -0600] "GET /favicon.ico HTTP/1.1" 404 851
24.242.177.226 - - [06/Jun/2002:15:27:09 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
169.204.165.10 - - [06/Jun/2002:15:41:02 -0600] "GET /sail.html HTTP/1.0" 200 30077
24.242.177.226 - - [06/Jun/2002:15:42:13 -0600] "GET / HTTP/1.1" 200 12229
wm3001.inktomisearch.com - - [06/Jun/2002:15:42:22 -0600] "GET /feedback.htm HTTP/1.0" 200 5305
24.242.177.226 - - [06/Jun/2002:15:43:16 -0600] "GET /agora/index.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:44:39 -0600] "GET /agora/index.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:46:25 -0600] "GET /agora/index.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:15:47:51 -0600] "GET / HTTP/1.1" 304 0
204.64.237.242 - - [06/Jun/2002:15:54:31 -0600] "GET /pr02.htm HTTP/1.1" 200 8107
204.64.237.242 - - [06/Jun/2002:15:54:32 -0600] "GET /logo.gif HTTP/1.1" 200 4490
204.64.237.242 - - [06/Jun/2002:15:54:31 -0600] "GET /pr02.htm HTTP/1.1" 200 8107
204.64.237.242 - - [06/Jun/2002:15:54:47 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
204.64.237.242 - - [06/Jun/2002:15:54:48 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
204.64.237.242 - - [06/Jun/2002:15:54:47 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8920
204.64.237.242 - - [06/Jun/2002:15:54:48 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
204.64.237.242 - - [06/Jun/2002:15:54:48 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
204.64.237.242 - - [06/Jun/2002:15:54:48 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
204.64.237.242 - - [06/Jun/2002:15:54:49 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
204.64.237.242 - - [06/Jun/2002:15:54:49 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
204.64.237.242 - - [06/Jun/2002:15:54:49 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
204.64.237.242 - - [06/Jun/2002:15:55:02 -0600] "GET / HTTP/1.1" 200 11500
204.64.237.242 - - [06/Jun/2002:15:55:03 -0600] "GET / HTTP/1.1" 200 11500
204.64.237.242 - - [06/Jun/2002:15:55:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
204.64.237.242 - - [06/Jun/2002:15:55:05 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
204.64.237.242 - - [06/Jun/2002:15:55:06 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
204.64.237.242 - - [06/Jun/2002:15:55:06 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
204.64.237.242 - - [06/Jun/2002:15:55:06 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
204.64.237.242 - - [06/Jun/2002:15:55:07 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
204.64.237.242 - - [06/Jun/2002:15:55:07 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
204.64.237.242 - - [06/Jun/2002:15:55:08 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
204.64.237.242 - - [06/Jun/2002:15:55:04 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
204.64.237.242 - - [06/Jun/2002:15:55:09 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
204.64.237.242 - - [06/Jun/2002:15:55:10 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
204.64.237.242 - - [06/Jun/2002:15:55:11 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
204.64.237.242 - - [06/Jun/2002:15:55:47 -0600] "GET /search.htm HTTP/1.1" 200 3427
204.64.237.242 - - [06/Jun/2002:15:55:52 -0600] "GET /_derived/search.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8733
128.242.197.101 - - [06/Jun/2002:16:24:21 -0600] "GET /pr02.htm HTTP/1.0" 206 8000
jfh9x01 - - [06/Jun/2002:16:45:29 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:45:38 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:45:45 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:45:57 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:06 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:17 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:25 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:33 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:43 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:46:53 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:47:00 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:47:10 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:47:20 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:16:47:30 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:16:47:40 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:16:47:48 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
clsr-2415545-67.wac-tx.clearsource.net - - [06/Jun/2002:16:53:18 -0600] "GET /llano HTTP/1.1" 301 315
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:16 -0600] "GET /abatt03 HTTP/1.1" 301 319
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:25 -0600] "GET /abatt03/ HTTP/1.1" 200 1925
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:26 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:26 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 200 18869
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:41 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:47 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:48 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:48 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:49 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:50 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:51 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:51 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:52 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:53 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:55 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:56 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:57 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:43 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:58 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:58 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:59 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:54:59 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:00 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:00 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:01 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:01 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:02 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:03 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:03 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:04 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:04 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:05 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:06 -0600] "GET /abatt03/images/IMG_1624.JPG HTTP/1.1" 200 172385
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:06 -0600] "GET /abatt03/images/IMG_1624.JPG HTTP/1.1" 200 172385
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:24 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:24 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:26 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:26 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:26 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:27 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:28 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:28 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:29 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:30 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:30 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:31 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:31 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:32 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:33 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:33 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:33 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:34 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:35 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:35 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:36 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:36 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:37 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:38 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:38 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:39 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:39 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:40 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:40 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:41 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:42 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:42 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:43 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:44 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:44 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:45 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:45 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:46 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:47 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:47 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:48 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:48 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:49 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:50 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:51 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:51 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:52 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:53 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:54 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:54 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:55 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:56 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:57 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:57 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:58 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:59 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:55:59 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:00 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:00 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:01 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:02 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:03 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:03 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:04 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:05 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:05 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:06 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:07 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:08 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:56:09 -0600] "GET /abatt03/images/img_1705.jpg HTTP/1.1" 200 1404120
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:06 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:06 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:07 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:08 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:09 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:09 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:10 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:11 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:12 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:12 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:13 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:14 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:14 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:15 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:16 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:17 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:18 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:18 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:19 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:20 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:21 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:21 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:22 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:23 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:24 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:24 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:25 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:26 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:26 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:27 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:28 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:29 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:30 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:30 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:31 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:32 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
taex-slip-c21.tamu.edu - - [06/Jun/2002:16:58:32 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
66.28.250.173 - - [06/Jun/2002:17:04:42 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.173 - - [06/Jun/2002:17:04:47 -0600] "GET /sail.html HTTP/1.0" 200 30077
24.242.177.226 - - [06/Jun/2002:17:21:15 -0600] "GET /test.php HTTP/1.1" 404 852
24.242.177.226 - - [06/Jun/2002:17:25:49 -0600] "GET /test.php HTTP/1.1" 200 0
24.242.177.226 - - [06/Jun/2002:17:26:04 -0600] "GET /test.php HTTP/1.1" 200 0
24.242.177.226 - - [06/Jun/2002:17:26:04 -0600] "GET /test.php HTTP/1.1" 200 0
24.242.177.226 - - [06/Jun/2002:17:26:04 -0600] "GET /test.php HTTP/1.1" 200 0
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:32 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.0" 200 906
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:32 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.0" 200 18869
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:29 -0600] "GET /abatt03 HTTP/1.0" 301 319
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:29 -0600] "GET /abatt03/ HTTP/1.0" 200 1925
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:31 -0600] "GET /abatt03 HTTP/1.0" 301 319
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/photo.htm HTTP/1.0" 200 20239
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.0" 200 293
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.0" 200 277
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.0" 200 323
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.0" 200 1214
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.0" 200 1837
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.0" 200 20521
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.0" 200 1791
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.0" 200 1927
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.0" 200 2119
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.0" 200 2126
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.0" 200 1210
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.0" 200 1213
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.0" 200 1184
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.0" 200 1126
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.0" 200 1848
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.0" 200 1974
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.0" 200 1528
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.0" 200 1516
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.0" 200 1871
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.0" 200 1914
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.0" 200 1834
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.0" 200 1938
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.0" 200 1670
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.0" 200 1568
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:38 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.0" 200 1878
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.0" 200 1925
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.0" 200 1851
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.0" 200 1406
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.0" 200 1687
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.0" 200 2405
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.0" 200 1846
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.0" 200 2137
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.0" 200 2073
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.0" 200 1623
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.0" 200 1600
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.0" 200 1531
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.0" 200 1554
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.0" 200 1725
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.0" 200 1626
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.0" 200 1563
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.0" 200 1543
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.0" 200 1746
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.0" 200 1684
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.0" 200 1550
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.0" 200 2010
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.0" 200 1936
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.0" 200 1632
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.0" 200 1780
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.0" 200 1919
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.0" 200 1361
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.0" 200 2007
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.0" 200 1939
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.0" 200 1733
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.0" 200 1827
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.0" 200 1653
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:39 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.0" 200 2082
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.0" 200 1999
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.0" 200 1719
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.0" 200 1672
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.0" 200 1903
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.0" 200 1820
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.0" 200 1922
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.0" 200 1933
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.0" 200 1808
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.0" 200 1833
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.0" 200 2342
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.0" 200 2322
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.0" 200 2373
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.0" 200 2130
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.0" 200 2145
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.0" 200 2162
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.0" 200 2152
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.0" 200 2109
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.0" 200 2193
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.0" 200 2234
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.0" 200 2136
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.0" 200 2204
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.0" 200 1867
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.0" 200 2004
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:40 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.0" 200 1825
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.0" 200 1834
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.0" 200 1831
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.0" 200 2198
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.0" 200 2242
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.0" 200 2246
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.0" 200 2215
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.0" 200 2114
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.0" 200 2216
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.0" 200 2208
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.0" 200 2242
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.0" 200 2237
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.0" 200 2139
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.0" 200 2214
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.0" 200 2140
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.0" 200 2171
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.0" 200 2209
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.0" 200 2163
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.0" 200 2176
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.0" 200 2174
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.0" 200 2101
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.0" 200 2181
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.0" 200 2170
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.0" 200 2173
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.0" 200 2271
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.0" 200 2213
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.0" 200 2222
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.0" 200 2213
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.0" 200 2262
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.0" 200 2191
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.0" 200 2166
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:41 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.0" 200 2114
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.0" 200 2285
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.0" 200 2224
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.0" 200 2067
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.0" 200 2119
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.0" 200 2258
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.0" 200 2227
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.0" 200 2258
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.0" 200 2027
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.0" 200 2018
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.0" 200 2285
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.0" 200 2262
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.0" 200 2205
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.0" 200 2026
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.0" 200 2075
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.0" 200 2027
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.0" 200 2067
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.0" 200 2029
austin4.ci.austin.tx.us - - [06/Jun/2002:17:55:42 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.0" 200 2056
austin4.ci.austin.tx.us - - [06/Jun/2002:17:56:04 -0600] "GET /abatt03/images/IMG_1690.JPG HTTP/1.0" 200 1357041
austin4.ci.austin.tx.us - - [06/Jun/2002:17:56:47 -0600] "GET /abatt03/images/IMG_1691.JPG HTTP/1.0" 200 1763004
austin4.ci.austin.tx.us - - [06/Jun/2002:17:58:23 -0600] "GET /abatt03/images/img_1707.jpg HTTP/1.0" 200 1400459
austin4.ci.austin.tx.us - - [06/Jun/2002:17:58:56 -0600] "GET /abatt03/images/img_1708.jpg HTTP/1.0" 200 1436127
library.ci.hillsboro.tx.us - - [06/Jun/2002:18:03:33 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
library.ci.hillsboro.tx.us - - [06/Jun/2002:18:03:33 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
library.ci.hillsboro.tx.us - - [06/Jun/2002:18:03:33 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
library.ci.hillsboro.tx.us - - [06/Jun/2002:18:03:32 -0600] "GET /engineer.html HTTP/1.0" 200 135585
65.170.147.251 - - [06/Jun/2002:18:37:54 -0600] "GET /pr02.htm HTTP/1.1" 200 8107
65.170.147.251 - - [06/Jun/2002:18:37:55 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
65.170.147.251 - - [06/Jun/2002:18:38:04 -0600] "GET /logo.gif HTTP/1.1" 200 4490
65.170.147.251 - - [06/Jun/2002:18:38:04 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
65.170.147.251 - - [06/Jun/2002:18:38:04 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8920
65.170.147.251 - - [06/Jun/2002:18:38:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
65.170.147.251 - - [06/Jun/2002:18:38:05 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
65.170.147.251 - - [06/Jun/2002:18:38:05 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
65.170.147.251 - - [06/Jun/2002:18:38:05 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET / HTTP/1.1" 200 11500
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
65.170.147.251 - - [06/Jun/2002:18:38:12 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
65.170.147.251 - - [06/Jun/2002:18:38:13 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
65.170.147.251 - - [06/Jun/2002:18:38:13 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
65.170.147.251 - - [06/Jun/2002:18:38:13 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
65.170.147.251 - - [06/Jun/2002:18:38:13 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
65.170.147.101 - - [06/Jun/2002:18:38:13 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
65.170.147.101 - - [06/Jun/2002:18:38:19 -0600] "GET / HTTP/1.0" 200 11500
65.170.147.251 - - [06/Jun/2002:18:38:20 -0600] "GET /search.htm HTTP/1.1" 200 3427
65.170.147.251 - - [06/Jun/2002:18:38:21 -0600] "GET /_derived/search.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8733
65.170.147.251 - - [06/Jun/2002:18:38:38 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
65.170.147.251 - - [06/Jun/2002:18:38:39 -0600] "GET /products.htm HTTP/1.1" 200 11401
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1966
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2018
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
65.170.147.251 - - [06/Jun/2002:18:38:39 -0600] "GET /_derived/products.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8781
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1998
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
65.170.147.251 - - [06/Jun/2002:18:38:44 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2000
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2535
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2018
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2000
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
65.170.147.251 - - [06/Jun/2002:18:38:45 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1966
65.170.147.251 - - [06/Jun/2002:18:38:47 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
65.170.147.251 - - [06/Jun/2002:18:39:01 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.1" 403 837
jfh9x01 - - [06/Jun/2002:18:39:33 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:39:47 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:39:57 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:06 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:16 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:24 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:34 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:44 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:40:52 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:41:02 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:41:12 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:41:22 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:41:30 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:18:41:38 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:18:41:46 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:18:41:56 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:53:38 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:53:44 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:53:47 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:54:09 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:54:09 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:54:12 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:54:13 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
d150-210-66.home.cgocable.net - - [06/Jun/2002:18:54:22 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:10 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:16 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:40 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:43 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:48 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:51 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:53 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:56 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:57:59 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:58:02 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:58:04 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:58:07 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24-29-141-180.nyc.rr.com - - [06/Jun/2002:18:58:10 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:19:29:32 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:29:40 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:29:50 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:00 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:10 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:18 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:28 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:38 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:48 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:30:56 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:31:04 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:31:12 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:31:22 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:19:31:32 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [06/Jun/2002:19:31:42 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [06/Jun/2002:19:31:50 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:29 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:33 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:34 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:35 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:37 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:38 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:39 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:40 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:41 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:42 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:42 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:44 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:44 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:46 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:47 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
h24-65-143-227.ed.shawcable.net - - [06/Jun/2002:19:42:48 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:05 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:11 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:13 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:15 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:17 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:19 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:22 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:24 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:27 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:29 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:32 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:35 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:37 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:39 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:41 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:19:48:44 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:20:03:01 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:20:03:03 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:20:03:06 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:20:03:09 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
cpe-24-242-15-175.elp.rr.com - - [06/Jun/2002:20:03:12 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
216.200.130.207 - - [06/Jun/2002:20:16:34 -0600] "GET /robots.txt HTTP/1.0" 404 855
64.140.48.30 - - [06/Jun/2002:21:03:20 -0600] "GET /robots.txt HTTP/1.0" 404 855
64.140.48.30 - - [06/Jun/2002:21:06:58 -0600] "GET /botany.html HTTP/1.0" 200 76737
x1crawler1-1-0.x-echo.com - - [06/Jun/2002:22:05:12 -0600] "GET /search.htm HTTP/1.1" 304 0
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:36:50 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 304 0
cache-mtc-ag02.proxy.aol.com - - [06/Jun/2002:22:36:50 -0600] "GET /logo.gif HTTP/1.0" 200 4490
cache-mtc-aa09.proxy.aol.com - - [06/Jun/2002:22:36:47 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
cache-mtc-ah02.proxy.aol.com - - [06/Jun/2002:22:36:50 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8920
cache-mtc-am08.proxy.aol.com - - [06/Jun/2002:22:36:50 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
cache-mtc-af06.proxy.aol.com - - [06/Jun/2002:22:36:53 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
cache-mtc-af06.proxy.aol.com - - [06/Jun/2002:22:36:54 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
cache-mtc-ah04.proxy.aol.com - - [06/Jun/2002:22:36:54 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
cache-mtc-ac07.proxy.aol.com - - [06/Jun/2002:22:37:00 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
syr-24-24-31-42.twcny.rr.com - - [06/Jun/2002:22:37:42 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir" 404 855
cache-mtc-ab02.proxy.aol.com - - [06/Jun/2002:22:38:01 -0600] "GET /products.htm HTTP/1.0" 200 11401
cache-mtc-am05.proxy.aol.com - - [06/Jun/2002:22:38:03 -0600] "GET /_derived/products.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8781
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:38:03 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
cache-mtc-ak02.proxy.aol.com - - [06/Jun/2002:22:38:03 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1966
cache-mtc-ak02.proxy.aol.com - - [06/Jun/2002:22:38:03 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2018
cache-mtc-al02.proxy.aol.com - - [06/Jun/2002:22:38:06 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2538
cache-mtc-ak01.proxy.aol.com - - [06/Jun/2002:22:38:06 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1983
cache-mtc-al02.proxy.aol.com - - [06/Jun/2002:22:38:06 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:38:07 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1998
cache-mtc-ab04.proxy.aol.com - - [06/Jun/2002:22:38:08 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2530
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:38:08 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2005
cache-mtc-aa03.proxy.aol.com - - [06/Jun/2002:22:38:08 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
cache-mtc-aa10.proxy.aol.com - - [06/Jun/2002:22:38:09 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2000
cache-mtc-am03.proxy.aol.com - - [06/Jun/2002:22:38:09 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:38:10 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
cache-mtc-am03.proxy.aol.com - - [06/Jun/2002:22:38:10 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2541
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:38:11 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
cache-mtc-am03.proxy.aol.com - - [06/Jun/2002:22:38:11 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2535
cache-mtc-ac04.proxy.aol.com - - [06/Jun/2002:22:38:12 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 304 0
cache-mtc-am05.proxy.aol.com - - [06/Jun/2002:22:39:22 -0600] "GET /prod01.htm HTTP/1.0" 200 7024
cache-mtc-af06.proxy.aol.com - - [06/Jun/2002:22:39:25 -0600] "GET /images/prodimg.gif HTTP/1.0" 200 3081
cache-mtc-ak06.proxy.aol.com - - [06/Jun/2002:22:39:24 -0600] "GET /_derived/prod01.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8809
cache-mtc-ac10.proxy.aol.com - - [06/Jun/2002:22:39:25 -0600] "GET /images/undercon.gif HTTP/1.0" 200 293
cache-mtc-af01.proxy.aol.com - - [06/Jun/2002:22:39:25 -0600] "GET /images/bullet.gif HTTP/1.0" 200 958
cache-mtc-ag05.proxy.aol.com - - [06/Jun/2002:22:40:09 -0600] "GET / HTTP/1.0" 200 11500
cache-mtc-al06.proxy.aol.com - - [06/Jun/2002:22:40:10 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
cache-mtc-ah04.proxy.aol.com - - [06/Jun/2002:22:40:11 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
cache-mtc-ab03.proxy.aol.com - - [06/Jun/2002:22:40:11 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
cache-mtc-ag05.proxy.aol.com - - [06/Jun/2002:22:40:12 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
cache-mtc-ak07.proxy.aol.com - - [06/Jun/2002:22:40:11 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
cache-mtc-al07.proxy.aol.com - - [06/Jun/2002:22:40:12 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
cache-mtc-al03.proxy.aol.com - - [06/Jun/2002:22:40:14 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1969
cache-mtc-aa01.proxy.aol.com - - [06/Jun/2002:22:40:13 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
cache-mtc-ab05.proxy.aol.com - - [06/Jun/2002:22:40:15 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2550
cache-mtc-am07.proxy.aol.com - - [06/Jun/2002:22:40:15 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
cache-mtc-aa06.proxy.aol.com - - [06/Jun/2002:22:40:15 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
cache-mtc-ac06.proxy.aol.com - - [06/Jun/2002:22:40:15 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2520
cache-mtc-al02.proxy.aol.com - - [06/Jun/2002:22:40:23 -0600] "GET /_derived/search.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8733
cache-mtc-am09.proxy.aol.com - - [06/Jun/2002:22:40:21 -0600] "GET /search.htm HTTP/1.0" 200 3427
spider-mtc-ta062.proxy.aol.com - - [06/Jun/2002:22:40:44 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
nova1.singnet.com.sg - - [06/Jun/2002:23:19:58 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
nova1.singnet.com.sg - - [06/Jun/2002:23:19:58 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
nova1.singnet.com.sg - - [06/Jun/2002:23:19:58 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
nova1.singnet.com.sg - - [06/Jun/2002:23:19:57 -0600] "GET /engineer.html HTTP/1.1" 200 135585
cs24174119-60.houston.rr.com - - [06/Jun/2002:23:34:48 -0600] "GET /sail.html HTTP/1.1" 200 30077
cs24174119-60.houston.rr.com - - [06/Jun/2002:23:35:22 -0600] "GET /favicon.ico HTTP/1.1" 404 855
cpe00045a9a6846.cpe.net.cable.rogers.com - - [06/Jun/2002:23:36:06 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
cpe00045a9a6846.cpe.net.cable.rogers.com - - [06/Jun/2002:23:36:12 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
crawl6.googlebot.com - - [06/Jun/2002:23:59:42 -0600] "GET /robots.txt HTTP/1.0" 404 855
crawl6.googlebot.com - - [06/Jun/2002:23:59:45 -0600] "GET /botany.html' HTTP/1.0" 404 855
x1crawler1-1-0.x-echo.com - - [07/Jun/2002:00:11:57 -0600] "GET / HTTP/1.1" 304 0
66.28.250.174 - - [07/Jun/2002:00:13:44 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.174 - - [07/Jun/2002:00:13:50 -0600] "GET /chem.html HTTP/1.0" 200 303854
j3407.inktomisearch.com - - [07/Jun/2002:00:15:05 -0600] "GET / HTTP/1.0" 304 0
176.oklahoma-city-06-07rs16rt.ok.dial-access.att.net - - [07/Jun/2002:00:20:44 -0600] "GET /sail.html HTTP/1.1" 200 30077
12-230-252-118.client.attbi.com - - [07/Jun/2002:00:41:28 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
12-230-252-118.client.attbi.com - - [07/Jun/2002:00:41:27 -0600] "GET /newpage2.htm HTTP/1.1" 200 211296
12-230-252-118.client.attbi.com - - [07/Jun/2002:00:41:31 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
srwgp015.dfg.de - - [07/Jun/2002:01:15:50 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
srwgp015.dfg.de - - [07/Jun/2002:01:15:50 -0600] "GET /chem.html HTTP/1.0" 200 303854
srwgp015.dfg.de - - [07/Jun/2002:01:15:59 -0600] "GET /logo.gif HTTP/1.0" 200 4490
srwgp015.dfg.de - - [07/Jun/2002:01:15:59 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
srwgp015.dfg.de - - [07/Jun/2002:01:15:59 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8817
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
srwgp015.dfg.de - - [07/Jun/2002:01:16:00 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
srwgp015.dfg.de - - [07/Jun/2002:01:16:01 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
jfh9x01 - - [07/Jun/2002:01:29:05 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:29:16 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:29:26 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:29:35 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:29:44 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:29:54 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:03 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:13 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:24 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:34 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:45 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:30:55 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:31:05 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [07/Jun/2002:01:31:14 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [07/Jun/2002:01:31:24 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:01:31:33 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
203.106.148.78 - - [07/Jun/2002:02:22:06 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
203.106.148.78 - - [07/Jun/2002:02:22:12 -0600] "GET /logo.gif HTTP/1.1" 200 4490
203.106.148.78 - - [07/Jun/2002:02:22:14 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
203.106.148.78 - - [07/Jun/2002:02:22:16 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
203.106.148.78 - - [07/Jun/2002:02:22:19 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
203.106.148.78 - - [07/Jun/2002:02:22:20 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
203.106.148.78 - - [07/Jun/2002:02:22:21 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
203.106.148.78 - - [07/Jun/2002:02:22:22 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
203.106.148.78 - - [07/Jun/2002:02:22:05 -0600] "GET /botany.html HTTP/1.1" 200 76737
203.106.148.78 - - [07/Jun/2002:02:22:23 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
203.106.148.78 - - [07/Jun/2002:02:22:23 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
203.106.148.78 - - [07/Jun/2002:02:22:24 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
wm3000.inktomisearch.com - - [07/Jun/2002:02:36:27 -0600] "GET /news.htm HTTP/1.0" 200 4599
si4000.inktomisearch.com - - [07/Jun/2002:02:44:02 -0600] "GET /robots.txt HTTP/1.0" 404 855
si4000.inktomisearch.com - - [07/Jun/2002:02:44:11 -0600] "GET / HTTP/1.0" 200 11500
jfh9x01 - - [07/Jun/2002:04:21:30 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:21:37 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:21:42 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:21:48 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:21:51 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:21:55 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:01 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:07 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:12 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:19 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:27 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:34 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:22:42 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [07/Jun/2002:04:22:50 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
jfh9x01 - - [07/Jun/2002:04:22:55 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
jfh9x01 - - [07/Jun/2002:04:23:03 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.204.142.82 - - [07/Jun/2002:09:02:01 -0600] "GET /abatt03 HTTP/1.1" 301 319
24.204.142.82 - - [07/Jun/2002:09:02:16 -0600] "GET /abatt03/ HTTP/1.1" 200 1925
24.204.142.82 - - [07/Jun/2002:09:02:17 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.204.142.82 - - [07/Jun/2002:09:02:17 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 200 18869
24.204.142.82 - - [07/Jun/2002:09:02:29 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.204.142.82 - - [07/Jun/2002:09:02:32 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.204.142.82 - - [07/Jun/2002:09:02:34 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.204.142.82 - - [07/Jun/2002:09:02:30 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.204.142.82 - - [07/Jun/2002:09:02:35 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.204.142.82 - - [07/Jun/2002:09:02:35 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.204.142.82 - - [07/Jun/2002:09:02:35 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.204.142.82 - - [07/Jun/2002:09:02:35 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.204.142.82 - - [07/Jun/2002:09:02:36 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.204.142.82 - - [07/Jun/2002:09:02:36 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.204.142.82 - - [07/Jun/2002:09:02:36 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.204.142.82 - - [07/Jun/2002:09:02:37 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.204.142.82 - - [07/Jun/2002:09:02:37 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.204.142.82 - - [07/Jun/2002:09:02:38 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.204.142.82 - - [07/Jun/2002:09:02:38 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.204.142.82 - - [07/Jun/2002:09:02:38 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.204.142.82 - - [07/Jun/2002:09:02:39 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.204.142.82 - - [07/Jun/2002:09:02:39 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.204.142.82 - - [07/Jun/2002:09:02:40 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.204.142.82 - - [07/Jun/2002:09:02:40 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.204.142.82 - - [07/Jun/2002:09:02:40 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.204.142.82 - - [07/Jun/2002:09:02:40 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.204.142.82 - - [07/Jun/2002:09:02:41 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.204.142.82 - - [07/Jun/2002:09:02:41 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.204.142.82 - - [07/Jun/2002:09:02:42 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.204.142.82 - - [07/Jun/2002:09:02:42 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.204.142.82 - - [07/Jun/2002:09:02:42 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.204.142.82 - - [07/Jun/2002:09:02:43 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.204.142.82 - - [07/Jun/2002:09:02:43 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.204.142.82 - - [07/Jun/2002:09:02:43 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.204.142.82 - - [07/Jun/2002:09:02:44 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.204.142.82 - - [07/Jun/2002:09:02:44 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.204.142.82 - - [07/Jun/2002:09:02:44 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.204.142.82 - - [07/Jun/2002:09:02:45 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.204.142.82 - - [07/Jun/2002:09:02:45 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.204.142.82 - - [07/Jun/2002:09:02:46 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.204.142.82 - - [07/Jun/2002:09:02:46 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.204.142.82 - - [07/Jun/2002:09:02:46 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.204.142.82 - - [07/Jun/2002:09:02:47 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.204.142.82 - - [07/Jun/2002:09:02:47 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.204.142.82 - - [07/Jun/2002:09:02:47 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.204.142.82 - - [07/Jun/2002:09:02:47 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.204.142.82 - - [07/Jun/2002:09:02:48 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.204.142.82 - - [07/Jun/2002:09:02:48 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.204.142.82 - - [07/Jun/2002:09:02:48 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.204.142.82 - - [07/Jun/2002:09:02:49 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.204.142.82 - - [07/Jun/2002:09:02:49 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.204.142.82 - - [07/Jun/2002:09:02:49 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.204.142.82 - - [07/Jun/2002:09:02:50 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.204.142.82 - - [07/Jun/2002:09:02:50 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.204.142.82 - - [07/Jun/2002:09:02:50 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.204.142.82 - - [07/Jun/2002:09:02:51 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.204.142.82 - - [07/Jun/2002:09:02:51 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.204.142.82 - - [07/Jun/2002:09:02:51 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.204.142.82 - - [07/Jun/2002:09:02:52 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.204.142.82 - - [07/Jun/2002:09:02:52 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.204.142.82 - - [07/Jun/2002:09:02:53 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.204.142.82 - - [07/Jun/2002:09:02:53 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.204.142.82 - - [07/Jun/2002:09:02:53 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.204.142.82 - - [07/Jun/2002:09:02:54 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.204.142.82 - - [07/Jun/2002:09:02:54 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.204.142.82 - - [07/Jun/2002:09:02:54 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.204.142.82 - - [07/Jun/2002:09:02:55 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.204.142.82 - - [07/Jun/2002:09:02:55 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.204.142.82 - - [07/Jun/2002:09:02:55 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.204.142.82 - - [07/Jun/2002:09:02:56 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.204.142.82 - - [07/Jun/2002:09:02:56 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.204.142.82 - - [07/Jun/2002:09:02:57 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.204.142.82 - - [07/Jun/2002:09:02:57 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.204.142.82 - - [07/Jun/2002:09:02:57 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.204.142.82 - - [07/Jun/2002:09:02:58 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.204.142.82 - - [07/Jun/2002:09:02:58 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.204.142.82 - - [07/Jun/2002:09:02:59 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.204.142.82 - - [07/Jun/2002:09:02:59 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.204.142.82 - - [07/Jun/2002:09:03:00 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.204.142.82 - - [07/Jun/2002:09:03:00 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.204.142.82 - - [07/Jun/2002:09:03:00 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.204.142.82 - - [07/Jun/2002:09:03:01 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.204.142.82 - - [07/Jun/2002:09:03:01 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.204.142.82 - - [07/Jun/2002:09:03:02 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.204.142.82 - - [07/Jun/2002:09:03:02 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.204.142.82 - - [07/Jun/2002:09:03:02 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.204.142.82 - - [07/Jun/2002:09:03:03 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.204.142.82 - - [07/Jun/2002:09:03:03 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.204.142.82 - - [07/Jun/2002:09:03:04 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.204.142.82 - - [07/Jun/2002:09:03:04 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.204.142.82 - - [07/Jun/2002:09:03:04 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.204.142.82 - - [07/Jun/2002:09:03:05 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.204.142.82 - - [07/Jun/2002:09:03:05 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.204.142.82 - - [07/Jun/2002:09:03:06 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.204.142.82 - - [07/Jun/2002:09:03:06 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.204.142.82 - - [07/Jun/2002:09:03:07 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.204.142.82 - - [07/Jun/2002:09:03:07 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.204.142.82 - - [07/Jun/2002:09:03:07 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.204.142.82 - - [07/Jun/2002:09:03:08 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.204.142.82 - - [07/Jun/2002:09:03:08 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.204.142.82 - - [07/Jun/2002:09:03:09 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.204.142.82 - - [07/Jun/2002:09:03:09 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.204.142.82 - - [07/Jun/2002:09:03:10 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.204.142.82 - - [07/Jun/2002:09:03:10 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.204.142.82 - - [07/Jun/2002:09:03:10 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.204.142.82 - - [07/Jun/2002:09:03:11 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.204.142.82 - - [07/Jun/2002:09:03:11 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.204.142.82 - - [07/Jun/2002:09:03:12 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.204.142.82 - - [07/Jun/2002:09:03:12 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.204.142.82 - - [07/Jun/2002:09:03:13 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.204.142.82 - - [07/Jun/2002:09:03:13 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.204.142.82 - - [07/Jun/2002:09:03:13 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.204.142.82 - - [07/Jun/2002:09:03:14 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.204.142.82 - - [07/Jun/2002:09:03:14 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.204.142.82 - - [07/Jun/2002:09:03:15 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
adsl-157-32-75.msy.bellsouth.net - - [07/Jun/2002:09:03:06 -0600] "GET /test.php HTTP/1.1" 200 0
24.204.142.82 - - [07/Jun/2002:09:03:15 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.204.142.82 - - [07/Jun/2002:09:03:15 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.204.142.82 - - [07/Jun/2002:09:03:16 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.204.142.82 - - [07/Jun/2002:09:03:16 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.204.142.82 - - [07/Jun/2002:09:03:17 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.204.142.82 - - [07/Jun/2002:09:03:17 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.204.142.82 - - [07/Jun/2002:09:03:18 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.204.142.82 - - [07/Jun/2002:09:03:18 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.204.142.82 - - [07/Jun/2002:09:03:18 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.204.142.82 - - [07/Jun/2002:09:03:19 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.204.142.82 - - [07/Jun/2002:09:03:19 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.204.142.82 - - [07/Jun/2002:09:03:20 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.204.142.82 - - [07/Jun/2002:09:03:20 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.204.142.82 - - [07/Jun/2002:09:03:21 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.204.142.82 - - [07/Jun/2002:09:03:21 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.204.142.82 - - [07/Jun/2002:09:03:21 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.204.142.82 - - [07/Jun/2002:09:03:22 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.204.142.82 - - [07/Jun/2002:09:03:22 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.204.142.82 - - [07/Jun/2002:09:03:23 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
168.47.4.7 - - [07/Jun/2002:09:03:49 -0600] "GET /pr02.htm HTTP/1.1" 200 8107
168.47.4.7 - - [07/Jun/2002:09:03:50 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
168.47.4.7 - - [07/Jun/2002:09:03:55 -0600] "GET /logo.gif HTTP/1.1" 200 4490
168.47.4.7 - - [07/Jun/2002:09:03:55 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8920
168.47.4.7 - - [07/Jun/2002:09:03:56 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
168.47.4.7 - - [07/Jun/2002:09:03:56 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
168.47.4.7 - - [07/Jun/2002:09:03:56 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
168.47.4.7 - - [07/Jun/2002:09:03:56 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
168.47.4.7 - - [07/Jun/2002:09:03:56 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
168.47.4.7 - - [07/Jun/2002:09:04:18 -0600] "GET / HTTP/1.1" 200 11500
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
168.47.4.7 - - [07/Jun/2002:09:04:18 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
168.47.4.7 - - [07/Jun/2002:09:04:23 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
168.47.4.7 - - [07/Jun/2002:09:04:24 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
168.47.4.7 - - [07/Jun/2002:09:04:24 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
168.47.4.7 - - [07/Jun/2002:09:04:24 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
24.204.142.82 - - [07/Jun/2002:09:03:30 -0600] "GET /abatt03/images/img_1703.jpg HTTP/1.1" 200 1656267
entegee.newyork.cw.net - - [07/Jun/2002:09:10:31 -0600] "GET /engineer.html HTTP/1.1" 200 135585
entegee.newyork.cw.net - - [07/Jun/2002:09:10:35 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
entegee.newyork.cw.net - - [07/Jun/2002:09:10:32 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
entegee.newyork.cw.net - - [07/Jun/2002:09:10:35 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
profundis-01 - - [07/Jun/2002:09:17:22 -0600] "GET /test.php HTTP/1.1" 200 0
profundis-01 - - [07/Jun/2002:09:17:30 -0600] "GET /test.php HTTP/1.1" 200 0
profundis-01 - - [07/Jun/2002:09:17:34 -0600] "GET /test.php HTTP/1.1" 200 0
profundis-01 - - [07/Jun/2002:09:18:01 -0600] "GET / HTTP/1.1" 400 382
profundis-01 - - [07/Jun/2002:09:18:35 -0600] "GET /test.php HTTP/1.1" 200 0
cache-rp05.proxy.aol.com - - [07/Jun/2002:09:20:02 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
cache-rr02.proxy.aol.com - - [07/Jun/2002:09:20:03 -0600] "GET /logo.gif HTTP/1.0" 200 4490
cache-rh03.proxy.aol.com - - [07/Jun/2002:09:20:03 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 304 0
cache-rk08.proxy.aol.com - - [07/Jun/2002:09:20:03 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8920
cache-rr08.proxy.aol.com - - [07/Jun/2002:09:20:03 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
cache-rh06.proxy.aol.com - - [07/Jun/2002:09:20:07 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 304 0
cache-rh06.proxy.aol.com - - [07/Jun/2002:09:20:07 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
cache-rp01.proxy.aol.com - - [07/Jun/2002:09:20:11 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 304 0
cache-rg03.proxy.aol.com - - [07/Jun/2002:09:20:11 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
profundis-01 - - [07/Jun/2002:09:26:26 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
profundis-01 - - [07/Jun/2002:09:26:25 -0600] "GET / HTTP/1.1" 200 12229
profundis-01 - - [07/Jun/2002:09:26:26 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
profundis-01 - - [07/Jun/2002:09:26:26 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
profundis-01 - - [07/Jun/2002:09:26:27 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
profundis-01 - - [07/Jun/2002:09:26:28 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
profundis-01 - - [07/Jun/2002:09:26:33 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.1" 200 671
profundis-01 - - [07/Jun/2002:09:26:33 -0600] "GET /services.htm HTTP/1.1" 200 10752
profundis-01 - - [07/Jun/2002:09:26:33 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.1" 200 679
profundis-01 - - [07/Jun/2002:09:26:33 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.1" 200 613
profundis-01 - - [07/Jun/2002:09:26:34 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.1" 200 683
profundis-01 - - [07/Jun/2002:09:26:34 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
profundis-01 - - [07/Jun/2002:09:26:41 -0600] "GET /_fpclass/fphover.class HTTP/1.1" 200 11684
profundis-01 - - [07/Jun/2002:09:26:42 -0600] "GET /_fpclass/fphoverx.class HTTP/1.1" 200 2041
eglt407.directhit.com - - [07/Jun/2002:09:32:11 -0600] "GET /prod04.htm HTTP/1.0" 200 7196
eglt407.directhit.com - - [07/Jun/2002:09:45:00 -0600] "GET / HTTP/1.0" 200 12229
212.113.19.150 - - [07/Jun/2002:09:52:45 -0600] "GET /robots.txt HTTP/1.1" 404 851
212.113.19.150 - - [07/Jun/2002:09:52:55 -0600] "GET /qisv.htm HTTP/1.1" 200 127030
eglt407.directhit.com - - [07/Jun/2002:09:57:49 -0600] "GET /gissoft.htm HTTP/1.0" 200 17898
profundis-01 - - [07/Jun/2002:09:59:54 -0600] "GET /feedback.htm HTTP/1.1" 200 6807
profundis-01 - - [07/Jun/2002:09:59:54 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.1" 200 689
profundis-01 - - [07/Jun/2002:09:59:54 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.1" 200 681
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
profundis-01 - - [07/Jun/2002:09:59:59 -0600] "GET /products.htm HTTP/1.1" 200 11669
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2545
profundis-01 - - [07/Jun/2002:10:00:00 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2539
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1956
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2496
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2543
profundis-01 - - [07/Jun/2002:10:00:01 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2050
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2563
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 200 2241
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 200 1746
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 200 1701
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2050
profundis-01 - - [07/Jun/2002:10:00:02 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1956
profundis-01 - - [07/Jun/2002:10:00:09 -0600] "GET /images/radmon1.JPG HTTP/1.1" 200 37002
profundis-01 - - [07/Jun/2002:10:00:27 -0600] "GET /server-status HTTP/1.1" 404 851
profundis-01 - - [07/Jun/2002:10:01:34 -0600] "GET /products.htm HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:34 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /images/sparclogo.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:35 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:36 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:37 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 304 0
profundis-01 - - [07/Jun/2002:10:01:37 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 304 0
12.150.187.130 - - [07/Jun/2002:10:10:16 -0600] "GET /bestpractices/ HTTP/1.1" 200 7144
12.150.187.130 - - [07/Jun/2002:10:10:16 -0600] "GET /bestpractices/_derived/home_cmp_artsy110_gbtn.gif HTTP/1.1" 200 181
12.150.187.130 - - [07/Jun/2002:10:10:17 -0600] "GET /bestpractices/_derived/toc.htm_cmp_artsy110_gbtn.gif HTTP/1.1" 200 199
12.150.187.130 - - [07/Jun/2002:10:10:17 -0600] "GET /bestpractices/images/constguy.gif HTTP/1.1" 200 20654
12.150.187.130 - - [07/Jun/2002:10:10:16 -0600] "GET /bestpractices/images/sciserv.bmp HTTP/1.1" 200 68566
12.150.187.130 - - [07/Jun/2002:10:10:17 -0600] "GET /bestpractices/_derived/index.html_cmp_artsy110_bnr.gif HTTP/1.1" 200 15719
12.150.187.130 - - [07/Jun/2002:10:10:17 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2699
12.150.187.130 - - [07/Jun/2002:10:10:17 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3066
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3147
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2761
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3133
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2768
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3081
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2699
12.150.187.130 - - [07/Jun/2002:10:10:18 -0600] "GET /bestpractices/_themes/artsy/arthsepa.gif HTTP/1.1" 200 1559
65.214.36.157 - - [07/Jun/2002:10:10:39 -0600] "GET /prod05.htm HTTP/1.0" 200 7858
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/products.htm HTTP/1.1" 200 4727
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/_derived/prod01.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3094
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/_derived/prod01.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2728
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/_derived/prod02.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3090
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15703
12.150.187.130 - - [07/Jun/2002:10:11:31 -0600] "GET /bestpractices/_derived/prod02.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2721
12.150.187.130 - - [07/Jun/2002:10:11:37 -0600] "GET /bestpractices/services.htm HTTP/1.1" 200 5545
12.150.187.130 - - [07/Jun/2002:10:11:37 -0600] "GET /bestpractices/_derived/mail-list.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3124
12.150.187.130 - - [07/Jun/2002:10:11:37 -0600] "GET /bestpractices/_derived/mail-list.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2754
12.150.187.130 - - [07/Jun/2002:10:11:37 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15754
12.150.187.130 - - [07/Jun/2002:10:11:38 -0600] "GET /bestpractices/_derived/serv02.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2711
12.150.187.130 - - [07/Jun/2002:10:11:38 -0600] "GET /bestpractices/_derived/serv02.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3085
12.150.187.130 - - [07/Jun/2002:10:11:38 -0600] "GET /bestpractices/_derived/serv03.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3078
12.150.187.130 - - [07/Jun/2002:10:11:38 -0600] "GET /bestpractices/_derived/serv03.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2711
12.150.187.130 - - [07/Jun/2002:10:11:46 -0600] "GET /bestpractices/mail-list.htm HTTP/1.1" 200 3296
12.150.187.130 - - [07/Jun/2002:10:11:46 -0600] "GET /bestpractices/_derived/up_cmp_artsy110_gbtn.gif HTTP/1.1" 200 165
12.150.187.130 - - [07/Jun/2002:10:11:46 -0600] "GET /bestpractices/_derived/mail-list.htm_cmp_artsy110_bnr.gif HTTP/1.1" 200 15722
213.80.46.101 - - [07/Jun/2002:10:15:28 -0600] "GET / HTTP/1.1" 200 12229
24.242.177.226 - - [07/Jun/2002:10:15:37 -0600] "GET /test HTTP/1.1" 404 851
213.80.46.101 - - [07/Jun/2002:10:15:49 -0600] "GET /test.php3 HTTP/1.1" 404 855
213.80.46.101 - - [07/Jun/2002:10:20:54 -0600] "GET / HTTP/1.1" 400 382
65.214.36.157 - - [07/Jun/2002:10:23:14 -0600] "GET /pr03.htm HTTP/1.0" 200 2905
65.214.36.157 - - [07/Jun/2002:10:35:18 -0600] "GET /news.htm HTTP/1.0" 200 4582
213.80.46.101 - - [07/Jun/2002:10:39:36 -0600] "GET /images/tens4pcb.JPG HTTP/1.1" 200 52424
213.80.46.101 - - [07/Jun/2002:10:39:41 -0600] "GET /products.htm HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:41 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /images/sparclogo.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:42 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:43 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:44 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:39:47 -0600] "GET /images/tenspcb.JPG HTTP/1.1" 200 68028
213.80.46.101 - - [07/Jun/2002:10:40:04 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:04 -0600] "GET /gissoft.htm HTTP/1.1" 200 17898
213.80.46.101 - - [07/Jun/2002:10:40:04 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:04 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.1" 200 676
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_derived/up_cmp_blitz110_up.gif HTTP/1.1" 200 608
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:05 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:16 -0600] "GET /prod01.htm HTTP/1.1" 200 4612
213.80.46.101 - - [07/Jun/2002:10:40:16 -0600] "GET /images/complab_small.JPG HTTP/1.1" 200 2234
213.80.46.101 - - [07/Jun/2002:10:40:18 -0600] "GET /images/complab.JPG HTTP/1.1" 200 58738
213.80.46.101 - - [07/Jun/2002:10:40:34 -0600] "GET / HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:35 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
213.80.46.101 - - [07/Jun/2002:10:40:36 -0600] "GET /images/undercon.gif HTTP/1.1" 304 0
65.214.36.157 - - [07/Jun/2002:10:46:30 -0600] "GET /products.htm HTTP/1.0" 200 11669
65.214.36.157 - - [07/Jun/2002:10:57:00 -0600] "GET /prod01.htm HTTP/1.0" 200 4612
208.173.77.106 - - [07/Jun/2002:10:57:08 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
208.173.77.106 - - [07/Jun/2002:10:57:09 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
208.173.77.106 - - [07/Jun/2002:10:57:09 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
208.173.77.106 - - [07/Jun/2002:10:57:08 -0600] "GET /engineer.html HTTP/1.1" 200 135585
24.155.45.67 - - [07/Jun/2002:11:56:14 -0600] "GET /llano HTTP/1.1" 301 315
24.155.45.67 - - [07/Jun/2002:11:56:14 -0600] "GET /llano/ HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:14 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:15 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:15 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:15 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:16 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:11:56:17 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
132.211.4.185 - - [07/Jun/2002:11:58:01 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
132.211.4.185 - - [07/Jun/2002:11:58:01 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
132.211.4.185 - - [07/Jun/2002:11:58:01 -0600] "GET / HTTP/1.0" 200 12229
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
132.211.4.185 - - [07/Jun/2002:11:58:01 -0600] "GET /images/sparclogo.gif HTTP/1.0" 200 13210
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /images/undercon.gif HTTP/1.0" 200 293
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2518
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
132.211.4.185 - - [07/Jun/2002:11:58:02 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
66.196.73.13 - - [07/Jun/2002:12:02:53 -0600] "GET /news.htm HTTP/1.0" 304 0
24.242.108.134 - - [07/Jun/2002:12:16:08 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:12 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:16 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:19 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:23 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:26 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:30 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:33 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:37 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:41 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:44 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:48 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:16:54 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:12:16:58 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:12:17:04 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:12:17:08 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
213.112.249.132 - - [07/Jun/2002:12:39:02 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
213.112.249.132 - - [07/Jun/2002:12:39:02 -0600] "GET / HTTP/1.1" 200 12229
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
213.112.249.132 - - [07/Jun/2002:12:39:03 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
24.242.177.226 - - [07/Jun/2002:12:46:44 -0600] "GET /te.php HTTP/1.1" 404 851
24.155.45.67 - - [07/Jun/2002:12:49:24 -0600] "GET /llano HTTP/1.1" 301 315
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/ HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:25 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:26 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:27 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [07/Jun/2002:12:49:27 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
213.112.249.132 - - [07/Jun/2002:12:53:37 -0600] "GET /search.htm HTTP/1.1" 200 2015
213.112.249.132 - - [07/Jun/2002:12:53:44 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.1" 404 1009
213.112.249.132 - - [07/Jun/2002:12:53:47 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
213.112.249.132 - - [07/Jun/2002:13:00:01 -0600] "GET /test HTTP/1.1" 404 851
80.200.43.253 - - [07/Jun/2002:13:14:05 -0600] "GET /sail.html HTTP/1.1" 200 30077
24.242.108.134 - - [07/Jun/2002:13:29:06 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:09 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:12 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:15 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:18 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:22 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:26 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:29 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:33 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:37 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:40 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:44 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:47 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:13:29:51 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:13:29:55 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:13:29:58 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
65.202.119.169 - - [07/Jun/2002:13:40:59 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
65.202.119.169 - - [07/Jun/2002:13:40:59 -0600] "GET / HTTP/1.1" 200 12229
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
65.202.119.169 - - [07/Jun/2002:13:41:00 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
65.202.119.169 - - [07/Jun/2002:13:41:01 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
65.202.119.169 - - [07/Jun/2002:13:41:01 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
65.202.119.169 - - [07/Jun/2002:13:41:01 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
65.202.119.169 - - [07/Jun/2002:13:41:02 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:02 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:02 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:02 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:02 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /products.htm HTTP/1.1" 200 11669
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /images/sparclogo.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:03 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2545
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2539
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1956
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2496
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2543
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2050
65.202.119.169 - - [07/Jun/2002:13:41:04 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2563
65.202.119.169 - - [07/Jun/2002:13:41:05 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
65.202.119.169 - - [07/Jun/2002:13:41:05 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 200 2241
65.202.119.169 - - [07/Jun/2002:13:41:05 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 200 1746
65.202.119.169 - - [07/Jun/2002:13:41:05 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 200 1701
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:06 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:07 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:07 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
65.202.119.169 - - [07/Jun/2002:13:41:07 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
66.28.250.175 - - [07/Jun/2002:13:46:01 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.175 - - [07/Jun/2002:13:46:01 -0600] "GET /news.htm HTTP/1.0" 200 4599
66.28.250.174 - - [07/Jun/2002:13:48:38 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.174 - - [07/Jun/2002:13:48:38 -0600] "GET /links.htm HTTP/1.0" 200 8789
24.69.194.22 - - [07/Jun/2002:13:51:10 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:10 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:10 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:11 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:11 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:12 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:12 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:12 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:13 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:13 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:13 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:14 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:14 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.69.194.22 - - [07/Jun/2002:13:51:15 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.69.194.22 - - [07/Jun/2002:13:51:15 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.69.194.22 - - [07/Jun/2002:13:51:15 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.132.242.82 - - [07/Jun/2002:13:51:38 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
24.132.242.82 - - [07/Jun/2002:13:51:38 -0600] "GET /logo.gif HTTP/1.1" 200 4490
24.132.242.82 - - [07/Jun/2002:13:51:39 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
24.132.242.82 - - [07/Jun/2002:13:51:39 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
24.132.242.82 - - [07/Jun/2002:13:51:39 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
24.132.242.82 - - [07/Jun/2002:13:51:39 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
24.132.242.82 - - [07/Jun/2002:13:51:37 -0600] "GET /botany.html HTTP/1.1" 200 76737
24.132.242.82 - - [07/Jun/2002:13:51:39 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
24.132.242.82 - - [07/Jun/2002:13:51:40 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
24.132.242.82 - - [07/Jun/2002:13:51:40 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
24.132.242.82 - - [07/Jun/2002:13:51:40 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
24.132.242.82 - - [07/Jun/2002:13:51:40 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
66.28.250.172 - - [07/Jun/2002:13:53:22 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.172 - - [07/Jun/2002:13:53:23 -0600] "GET /search.htm HTTP/1.0" 200 3427
66.28.250.171 - - [07/Jun/2002:13:54:39 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.171 - - [07/Jun/2002:13:54:40 -0600] "GET /journals.html HTTP/1.0" 200 8530
212.113.19.150 - - [07/Jun/2002:13:58:10 -0600] "GET /robots.txt HTTP/1.1" 404 855
212.113.19.150 - - [07/Jun/2002:13:58:14 -0600] "GET /prod01.htm HTTP/1.1" 200 7024
66.28.250.173 - - [07/Jun/2002:14:06:12 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.173 - - [07/Jun/2002:14:06:15 -0600] "GET /products.htm HTTP/1.0" 200 11401
209.247.124.178 - - [07/Jun/2002:14:12:44 -0600] "GET /abatt03 HTTP/1.1" 301 319
209.247.124.178 - - [07/Jun/2002:14:12:44 -0600] "GET /abatt03/ HTTP/1.1" 200 1925
209.247.124.178 - - [07/Jun/2002:14:12:45 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
209.247.124.178 - - [07/Jun/2002:14:12:45 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 200 18869
209.247.124.178 - - [07/Jun/2002:14:13:02 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
209.247.124.178 - - [07/Jun/2002:14:13:03 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
209.247.124.178 - - [07/Jun/2002:14:13:03 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
209.247.124.178 - - [07/Jun/2002:14:13:03 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
209.247.124.178 - - [07/Jun/2002:14:13:04 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
209.247.124.178 - - [07/Jun/2002:14:13:04 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
209.247.124.178 - - [07/Jun/2002:14:13:05 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
209.247.124.178 - - [07/Jun/2002:14:13:06 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
209.247.124.178 - - [07/Jun/2002:14:13:07 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
209.247.124.178 - - [07/Jun/2002:14:13:08 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
209.247.124.178 - - [07/Jun/2002:14:13:09 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
209.247.124.178 - - [07/Jun/2002:14:13:10 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
209.247.124.178 - - [07/Jun/2002:14:13:11 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
209.247.124.178 - - [07/Jun/2002:14:13:11 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
209.247.124.178 - - [07/Jun/2002:14:13:11 -0600] "GET /abatt03/images/IMG_1624.JPG HTTP/1.1" 200 172385
209.247.124.178 - - [07/Jun/2002:14:13:25 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
209.247.124.178 - - [07/Jun/2002:14:13:25 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
209.247.124.178 - - [07/Jun/2002:14:13:26 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
209.247.124.178 - - [07/Jun/2002:14:13:27 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
209.247.124.178 - - [07/Jun/2002:14:13:28 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
209.247.124.178 - - [07/Jun/2002:14:13:29 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
209.247.124.178 - - [07/Jun/2002:14:13:30 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
209.247.124.178 - - [07/Jun/2002:14:13:31 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
209.247.124.178 - - [07/Jun/2002:14:13:32 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
209.247.124.178 - - [07/Jun/2002:14:13:33 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
209.247.124.178 - - [07/Jun/2002:14:13:34 -0600] "GET /abatt03/images/IMG_1625.JPG HTTP/1.1" 200 202900
209.247.124.178 - - [07/Jun/2002:14:13:47 -0600] "GET /abatt03/images/IMG_1626.JPG HTTP/1.1" 200 340192
209.247.124.178 - - [07/Jun/2002:14:14:03 -0600] "GET /abatt03/images/IMG_1627.JPG HTTP/1.1" 200 455838
209.247.124.178 - - [07/Jun/2002:14:14:17 -0600] "GET /abatt03/images/IMG_1628.JPG HTTP/1.1" 200 423124
209.247.124.178 - - [07/Jun/2002:14:14:40 -0600] "GET /abatt03/images/IMG_1629.JPG HTTP/1.1" 200 341746
209.247.124.178 - - [07/Jun/2002:14:16:13 -0600] "GET /abatt03/images/IMG_1631.JPG HTTP/1.1" 200 112316
209.247.124.178 - - [07/Jun/2002:14:16:23 -0600] "GET /abatt03/images/IMG_1632.JPG HTTP/1.1" 200 121733
209.247.124.178 - - [07/Jun/2002:14:16:31 -0600] "GET /abatt03/images/IMG_1633.JPG HTTP/1.1" 200 118543
209.247.124.178 - - [07/Jun/2002:14:16:40 -0600] "GET /abatt03/images/IMG_1635.JPG HTTP/1.1" 200 443868
209.247.124.178 - - [07/Jun/2002:14:17:01 -0600] "GET /abatt03/images/IMG_1636.JPG HTTP/1.1" 200 355818
209.247.124.178 - - [07/Jun/2002:14:17:26 -0600] "GET /abatt03/images/IMG_1637.JPG HTTP/1.1" 200 364195
209.247.124.178 - - [07/Jun/2002:14:17:37 -0600] "GET /abatt03/images/IMG_1638.JPG HTTP/1.1" 200 368282
209.247.124.178 - - [07/Jun/2002:14:17:53 -0600] "GET /abatt03/images/IMG_1639.JPG HTTP/1.1" 200 261111
64.210.196.195 - - [07/Jun/2002:14:32:23 -0600] "GET /robots.txt HTTP/1.0" 404 855
64.210.196.195 - - [07/Jun/2002:14:32:25 -0600] "GET / HTTP/1.0" 200 11500
64.210.196.195 - - [07/Jun/2002:14:32:25 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
64.210.196.195 - - [07/Jun/2002:14:32:25 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
64.210.196.195 - - [07/Jun/2002:14:32:25 -0600] "GET /logo.gif HTTP/1.0" 200 4490
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1969
64.210.196.195 - - [07/Jun/2002:14:32:26 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
209.247.124.178 - - [07/Jun/2002:14:32:47 -0600] "GET /abatt03/images/IMG_1641.JPG HTTP/1.1" 200 247972
209.247.124.178 - - [07/Jun/2002:14:33:02 -0600] "GET /abatt03/images/IMG_1643.JPG HTTP/1.1" 200 255880
209.247.124.178 - - [07/Jun/2002:14:33:28 -0600] "GET /abatt03/images/IMG_1644.JPG HTTP/1.1" 200 348247
209.247.124.178 - - [07/Jun/2002:14:33:59 -0600] "GET /abatt03/images/IMG_1645.JPG HTTP/1.1" 200 315650
209.247.124.178 - - [07/Jun/2002:14:34:09 -0600] "GET /abatt03/images/IMG_1646.JPG HTTP/1.1" 200 282571
209.247.124.178 - - [07/Jun/2002:14:34:19 -0600] "GET /abatt03/images/IMG_1647.JPG HTTP/1.1" 200 267984
209.247.124.178 - - [07/Jun/2002:14:34:29 -0600] "GET /abatt03/images/IMG_1648.JPG HTTP/1.1" 200 243180
209.247.124.178 - - [07/Jun/2002:14:34:52 -0600] "GET /abatt03/images/IMG_1649.JPG HTTP/1.1" 200 155272
209.247.124.178 - - [07/Jun/2002:14:35:09 -0600] "GET /abatt03/images/IMG_1650.JPG HTTP/1.1" 200 358400
209.247.124.178 - - [07/Jun/2002:14:35:23 -0600] "GET /abatt03/images/IMG_1651.JPG HTTP/1.1" 200 359808
209.247.124.178 - - [07/Jun/2002:14:36:27 -0600] "GET /abatt03/images/IMG_1652.JPG HTTP/1.1" 200 281604
209.247.124.178 - - [07/Jun/2002:14:36:40 -0600] "GET /abatt03/images/IMG_1653.JPG HTTP/1.1" 200 220745
209.247.124.178 - - [07/Jun/2002:14:37:04 -0600] "GET /abatt03/images/IMG_1654.JPG HTTP/1.1" 200 253960
209.247.124.178 - - [07/Jun/2002:14:37:29 -0600] "GET /abatt03/images/IMG_1655.JPG HTTP/1.1" 200 346284
209.247.124.178 - - [07/Jun/2002:14:38:13 -0600] "GET /abatt03/images/IMG_1656.JPG HTTP/1.1" 200 315750
209.247.124.178 - - [07/Jun/2002:14:39:51 -0600] "GET /abatt03/images/IMG_1667.JPG HTTP/1.1" 200 417760
209.247.124.178 - - [07/Jun/2002:14:40:37 -0600] "GET /abatt03/images/IMG_1668.JPG HTTP/1.1" 200 369119
209.247.124.178 - - [07/Jun/2002:14:41:45 -0600] "GET /abatt03/images/IMG_1669.JPG HTTP/1.1" 200 313208
209.247.124.178 - - [07/Jun/2002:14:42:23 -0600] "GET /abatt03/images/IMG_1670.JPG HTTP/1.1" 200 1313849
209.247.124.178 - - [07/Jun/2002:14:42:50 -0600] "GET /abatt03/images/IMG_1671.JPG HTTP/1.1" 200 1042661
209.247.124.178 - - [07/Jun/2002:14:43:05 -0600] "GET /abatt03/images/IMG_1672.JPG HTTP/1.1" 200 1186724
209.247.124.178 - - [07/Jun/2002:14:43:25 -0600] "GET /abatt03/images/IMG_1673.JPG HTTP/1.1" 200 1133462
209.247.124.178 - - [07/Jun/2002:14:44:26 -0600] "GET /abatt03/images/IMG_1674.JPG HTTP/1.1" 200 1211287
209.247.124.178 - - [07/Jun/2002:14:44:50 -0600] "GET /abatt03/images/IMG_1675.JPG HTTP/1.1" 200 1214751
209.247.124.178 - - [07/Jun/2002:14:45:21 -0600] "GET /abatt03/images/IMG_1676.JPG HTTP/1.1" 200 1143925
209.247.124.178 - - [07/Jun/2002:14:46:07 -0600] "GET /abatt03/images/IMG_1678.JPG HTTP/1.1" 200 1044312
209.247.124.178 - - [07/Jun/2002:14:46:57 -0600] "GET /abatt03/images/IMG_1679.JPG HTTP/1.1" 200 1065238
209.247.124.178 - - [07/Jun/2002:14:47:43 -0600] "GET /abatt03/images/IMG_1680.JPG HTTP/1.1" 200 1170249
209.247.124.178 - - [07/Jun/2002:14:48:19 -0600] "GET /abatt03/images/IMG_1682.JPG HTTP/1.1" 200 1069477
209.247.124.178 - - [07/Jun/2002:14:48:37 -0600] "GET /abatt03/images/IMG_1683.JPG HTTP/1.1" 200 977683
209.247.124.178 - - [07/Jun/2002:14:48:57 -0600] "GET /abatt03/images/IMG_1685.JPG HTTP/1.1" 200 1266037
209.247.124.178 - - [07/Jun/2002:14:49:37 -0600] "GET /abatt03/images/IMG_1684.JPG HTTP/1.1" 200 1177745
209.247.124.178 - - [07/Jun/2002:14:50:10 -0600] "GET /abatt03/images/IMG_1686.JPG HTTP/1.1" 200 1930307
24.210.207.58 - - [07/Jun/2002:14:50:47 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.210.207.58 - - [07/Jun/2002:14:50:53 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.210.207.58 - - [07/Jun/2002:14:50:54 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
209.247.124.178 - - [07/Jun/2002:14:50:55 -0600] "GET /abatt03/images/IMG_1688.JPG HTTP/1.1" 200 1716800
209.247.124.178 - - [07/Jun/2002:14:51:34 -0600] "GET /abatt03/images/IMG_1689.JPG HTTP/1.1" 200 1657787
209.247.124.178 - - [07/Jun/2002:14:51:58 -0600] "GET /abatt03/images/IMG_1691.JPG HTTP/1.1" 200 1763004
209.247.124.178 - - [07/Jun/2002:14:53:01 -0600] "GET /abatt03/images/IMG_1693.JPG HTTP/1.1" 200 1740593
209.247.124.178 - - [07/Jun/2002:14:53:28 -0600] "GET /abatt03/images/IMG_1694.JPG HTTP/1.1" 200 1708858
209.247.124.178 - - [07/Jun/2002:14:53:52 -0600] "GET /abatt03/images/IMG_1696.JPG HTTP/1.1" 200 1087074
209.247.124.178 - - [07/Jun/2002:14:54:19 -0600] "GET /abatt03/images/IMG_1697.JPG HTTP/1.1" 200 1170442
209.247.124.178 - - [07/Jun/2002:14:54:35 -0600] "GET /abatt03/images/IMG_1698.JPG HTTP/1.1" 200 945802
209.247.124.178 - - [07/Jun/2002:14:54:56 -0600] "GET /abatt03/images/IMG_1699.JPG HTTP/1.1" 200 1472911
209.247.124.178 - - [07/Jun/2002:14:55:30 -0600] "GET /abatt03/images/IMG_1700.JPG HTTP/1.1" 200 1645585
216.155.80.89 - - [07/Jun/2002:14:55:55 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
216.155.80.89 - - [07/Jun/2002:14:55:57 -0600] "GET /logo.gif HTTP/1.1" 200 4490
216.155.80.89 - - [07/Jun/2002:14:55:59 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
216.155.80.89 - - [07/Jun/2002:14:56:02 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
216.155.80.89 - - [07/Jun/2002:14:56:03 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
216.155.80.89 - - [07/Jun/2002:14:56:05 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
216.155.80.89 - - [07/Jun/2002:14:56:06 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
216.155.80.89 - - [07/Jun/2002:14:56:07 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
216.155.80.89 - - [07/Jun/2002:14:56:08 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
216.155.80.89 - - [07/Jun/2002:14:56:08 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
216.155.80.89 - - [07/Jun/2002:14:55:54 -0600] "GET /botany.html HTTP/1.1" 200 76737
216.155.80.89 - - [07/Jun/2002:14:56:09 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
209.247.124.178 - - [07/Jun/2002:14:56:03 -0600] "GET /abatt03/images/img_1701.jpg HTTP/1.1" 200 1676470
209.247.124.178 - - [07/Jun/2002:14:56:22 -0600] "GET /abatt03/images/img_1703.jpg HTTP/1.1" 200 1656267
209.247.124.178 - - [07/Jun/2002:14:56:37 -0600] "GET /abatt03/images/img_1704.jpg HTTP/1.1" 200 1299064
209.247.124.178 - - [07/Jun/2002:14:57:13 -0600] "GET /abatt03/images/img_1705.jpg HTTP/1.1" 200 1404120
209.247.124.178 - - [07/Jun/2002:14:57:41 -0600] "GET /abatt03/images/img_1706.jpg HTTP/1.1" 200 1372213
209.247.124.178 - - [07/Jun/2002:14:57:57 -0600] "GET /abatt03/images/img_1707.jpg HTTP/1.1" 200 1400459
209.247.124.178 - - [07/Jun/2002:14:58:15 -0600] "GET /abatt03/images/img_1708.jpg HTTP/1.1" 200 1436127
209.247.124.178 - - [07/Jun/2002:14:58:41 -0600] "GET /abatt03/images/img_1709.jpg HTTP/1.1" 200 1532364
209.247.124.178 - - [07/Jun/2002:14:59:05 -0600] "GET /abatt03/images/img_1710.jpg HTTP/1.1" 200 1548169
209.247.124.178 - - [07/Jun/2002:14:59:23 -0600] "GET /abatt03/images/img_1735.jpg HTTP/1.1" 200 1204410
209.247.124.178 - - [07/Jun/2002:14:59:53 -0600] "GET /abatt03/images/img_1720.jpg HTTP/1.1" 200 1167456
209.247.124.178 - - [07/Jun/2002:15:00:28 -0600] "GET /abatt03/images/img_1719.jpg HTTP/1.1" 200 1293542
209.247.124.178 - - [07/Jun/2002:15:00:52 -0600] "GET /abatt03/images/img_1718.jpg HTTP/1.1" 200 1064327
209.247.124.178 - - [07/Jun/2002:15:01:11 -0600] "GET /abatt03/images/img_1716.jpg HTTP/1.1" 200 1447528
209.247.124.178 - - [07/Jun/2002:15:01:38 -0600] "GET /abatt03/images/img_1715.jpg HTTP/1.1" 200 1233276
209.247.124.178 - - [07/Jun/2002:15:02:09 -0600] "GET /abatt03/images/img_1711.jpg HTTP/1.1" 200 1220804
209.247.124.178 - - [07/Jun/2002:15:02:39 -0600] "GET /abatt03/images/img_1723.jpg HTTP/1.1" 200 1318869
209.247.124.178 - - [07/Jun/2002:15:03:11 -0600] "GET /abatt03/images/img_1724.jpg HTTP/1.1" 200 1480977
209.247.124.178 - - [07/Jun/2002:15:03:43 -0600] "GET /abatt03/images/img_1725.jpg HTTP/1.1" 200 1468906
213.112.249.132 - - [07/Jun/2002:15:38:57 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
213.112.249.132 - - [07/Jun/2002:15:38:57 -0600] "GET / HTTP/1.1" 200 12229
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
7
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
213.112.249.132 - - [07/Jun/2002:15:38:58 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
213.112.249.132 - - [07/Jun/2002:15:38:57 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
209.247.124.178 - - [07/Jun/2002:15:49:21 -0600] "GET /abatt03/images/img_1737.jpg HTTP/1.1" 200 1260213
209.247.124.178 - - [07/Jun/2002:15:49:45 -0600] "GET /abatt03/images/img_1738.jpg HTTP/1.1" 200 1455396
209.247.124.178 - - [07/Jun/2002:15:50:24 -0600] "GET /abatt03/images/img_1750.jpg HTTP/1.1" 200 952433
209.247.124.178 - - [07/Jun/2002:15:50:48 -0600] "GET /abatt03/images/img_1749.jpg HTTP/1.1" 200 971315
209.247.124.178 - - [07/Jun/2002:15:51:32 -0600] "GET /abatt03/images/img_1748.jpg HTTP/1.1" 200 1358228
209.247.124.178 - - [07/Jun/2002:15:51:54 -0600] "GET /abatt03/images/img_1745.jpg HTTP/1.1" 200 1479524
209.247.124.178 - - [07/Jun/2002:15:53:27 -0600] "GET /abatt03/images/img_1742.jpg HTTP/1.1" 200 1264060
209.247.124.178 - - [07/Jun/2002:16:02:05 -0600] "GET /abatt03/images/img_1746.jpg HTTP/1.1" 200 1532242
209.247.124.178 - - [07/Jun/2002:16:03:02 -0600] "GET /abatt03/images/img_1741.jpg HTTP/1.1" 200 1361209
209.247.124.178 - - [07/Jun/2002:16:03:25 -0600] "GET /abatt03/images/img_1731.jpg HTTP/1.1" 200 1346705
209.247.124.178 - - [07/Jun/2002:16:03:57 -0600] "GET /abatt03/images/img_1732.jpg HTTP/1.1" 200 1550846
209.247.124.178 - - [07/Jun/2002:16:04:28 -0600] "GET /abatt03/images/img_1733.jpg HTTP/1.1" 200 1475744
209.247.124.178 - - [07/Jun/2002:16:04:44 -0600] "GET /abatt03/images/img_1734.jpg HTTP/1.1" 200 1524844
209.247.124.178 - - [07/Jun/2002:16:05:28 -0600] "GET /abatt03/images/img_1736.jpg HTTP/1.1" 200 1171706
209.247.124.178 - - [07/Jun/2002:16:06:22 -0600] "GET /abatt03/images/img_1738.jpg HTTP/1.1" 206 79140
209.247.124.178 - - [07/Jun/2002:16:06:34 -0600] "GET /abatt03/images/img_1739.jpg HTTP/1.1" 200 1460521
204.185.33.209 - - [07/Jun/2002:16:18:53 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
204.185.33.209 - - [07/Jun/2002:16:18:54 -0600] "GET /logo.gif HTTP/1.1" 200 4490
204.185.33.209 - - [07/Jun/2002:16:18:53 -0600] "GET /botany.html HTTP/1.1" 200 76737
204.185.33.209 - - [07/Jun/2002:16:18:55 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
204.185.33.209 - - [07/Jun/2002:16:18:54 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
204.185.33.209 - - [07/Jun/2002:16:18:56 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
195.175.248.103 - - [07/Jun/2002:16:41:37 -0600] "GET /chem.html HTTP/1.1" 200 303854
213.112.249.132 - - [07/Jun/2002:16:57:29 -0600] "GET /bestpractices HTTP/1.1" 301 325
213.112.249.132 - - [07/Jun/2002:16:57:29 -0600] "GET /bestpractices/ HTTP/1.1" 200 7144
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_themes/artsy/arthsepa.gif HTTP/1.1" 200 1559
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/toc.htm_cmp_artsy110_gbtn.gif HTTP/1.1" 200 199
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/home_cmp_artsy110_gbtn.gif HTTP/1.1" 200 181
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3147
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2768
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/services.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3133
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3081
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/ext1013_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2699
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2699
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/news.htm_cmp_artsy110_hbtn.gif HTTP/1.1" 200 3066
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/products.htm_cmp_artsy110_hbtn_a.gif HTTP/1.1" 200 2761
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/images/constguy.gif HTTP/1.1" 200 20654
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/_derived/index.html_cmp_artsy110_bnr.gif HTTP/1.1" 200 15719
213.112.249.132 - - [07/Jun/2002:16:57:30 -0600] "GET /bestpractices/images/sciserv.bmp HTTP/1.1" 200 68566
213.112.249.132 - - [07/Jun/2002:16:58:09 -0600] "GET / HTTP/1.1" 200 4954
213.112.249.132 - - [07/Jun/2002:16:58:09 -0600] "GET /_derived/index.html_cmp_corporat110_bnr.gif HTTP/1.1" 200 1719
213.112.249.132 - - [07/Jun/2002:16:58:09 -0600] "GET /_themes/corporat/corbkgnd.gif HTTP/1.1" 200 1732
213.112.249.132 - - [07/Jun/2002:16:58:10 -0600] "GET /_themes/corporat/acorrule.gif HTTP/1.1" 200 171
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2518
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /images/undercon.gif HTTP/1.1" 200 293
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
213.112.249.132 - - [07/Jun/2002:16:58:25 -0600] "GET / HTTP/1.1" 200 12229
213.112.249.132 - - [07/Jun/2002:16:58:26 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
213.112.249.132 - - [07/Jun/2002:16:58:50 -0600] "GET /news.htm HTTP/1.1" 200 4582
213.112.249.132 - - [07/Jun/2002:16:58:50 -0600] "GET /images/smallnew.gif HTTP/1.1" 200 926
213.112.249.132 - - [07/Jun/2002:16:58:50 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
213.112.249.132 - - [07/Jun/2002:16:58:57 -0600] "GET /pr01.htm HTTP/1.1" 200 2905
213.112.249.132 - - [07/Jun/2002:16:59:10 -0600] "GET /prod01.htm HTTP/1.1" 200 4612
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.1" 200 681
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.1" 200 679
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.1" 200 613
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.1" 200 676
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.1" 200 683
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/up_cmp_blitz110_up.gif HTTP/1.1" 200 608
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.1" 200 671
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.1" 200 689
213.112.249.132 - - [07/Jun/2002:16:59:11 -0600] "GET /images/complab_small.JPG HTTP/1.1" 200 2234
213.112.249.132 - - [07/Jun/2002:16:59:13 -0600] "GET /_fpclass/fphover.class HTTP/1.1" 200 11684
213.112.249.132 - - [07/Jun/2002:16:59:13 -0600] "GET /_fpclass/fphoverx.class HTTP/1.1" 200 2041
213.112.249.132 - - [07/Jun/2002:16:59:15 -0600] "GET /images/complab.JPG HTTP/1.1" 200 58738
213.112.249.132 - - [07/Jun/2002:16:59:28 -0600] "GET /pr02.htm HTTP/1.1" 200 2905
213.112.249.132 - - [07/Jun/2002:16:59:33 -0600] "GET /pr03.htm HTTP/1.1" 200 2905
213.112.249.132 - - [07/Jun/2002:16:59:41 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
213.112.249.132 - - [07/Jun/2002:16:59:41 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
213.112.249.132 - - [07/Jun/2002:16:59:41 -0600] "GET /toc.htm HTTP/1.1" 200 9095
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
213.112.249.132 - - [07/Jun/2002:16:59:46 -0600] "GET /products.htm HTTP/1.1" 200 11669
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.1" 200 1746
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /images/radmon1_small.JPG HTTP/1.1" 200 1701
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /images/tenspcb_small.JPG HTTP/1.1" 200 2241
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2543
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2013
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2539
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1956
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2563
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2496
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2006
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2545
213.112.249.132 - - [07/Jun/2002:16:59:47 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2050
213.112.249.132 - - [07/Jun/2002:17:00:09 -0600] "GET /images/tens2_small.jpg HTTP/1.1" 200 2001
213.112.249.132 - - [07/Jun/2002:17:00:08 -0600] "GET /tens.htm HTTP/1.1" 200 11469
213.112.249.132 - - [07/Jun/2002:17:03:44 -0600] "GET /images/tens2.jpg HTTP/1.1" 200 65601
213.112.249.132 - - [07/Jun/2002:17:04:00 -0600] "GET /gissoft.htm HTTP/1.1" 200 17898
213.112.249.132 - - [07/Jun/2002:17:05:56 -0600] "GET /prod02.htm HTTP/1.1" 200 8562
213.112.249.132 - - [07/Jun/2002:17:05:57 -0600] "GET /images/radmonbase_small.jpg HTTP/1.1" 200 1687
213.112.249.132 - - [07/Jun/2002:17:05:58 -0600] "GET /images/radmonbase.jpg HTTP/1.1" 200 34022
213.112.249.132 - - [07/Jun/2002:17:07:20 -0600] "GET /prod03.htm HTTP/1.1" 200 8722
213.112.249.132 - - [07/Jun/2002:17:07:20 -0600] "GET /images/FIGE_small.JPG HTTP/1.1" 200 1989
213.112.249.132 - - [07/Jun/2002:17:08:17 -0600] "GET /images/FIGE.JPG HTTP/1.1" 200 45185
213.112.249.132 - - [07/Jun/2002:17:08:39 -0600] "GET /prod04.htm HTTP/1.1" 200 7196
213.112.249.132 - - [07/Jun/2002:17:08:40 -0600] "GET /images/Line_Router_small.JPG HTTP/1.1" 200 1646
213.112.249.132 - - [07/Jun/2002:17:09:06 -0600] "GET /images/Line%20Router.JPG HTTP/1.1" 200 38387
213.112.249.132 - - [07/Jun/2002:17:09:40 -0600] "GET /images/urecept_small.JPG HTTP/1.1" 200 1723
213.112.249.132 - - [07/Jun/2002:17:09:39 -0600] "GET /prod05.htm HTTP/1.1" 200 7858
213.112.249.132 - - [07/Jun/2002:17:09:45 -0600] "GET /images/urecept.JPG HTTP/1.1" 200 40319
213.112.249.132 - - [07/Jun/2002:17:10:23 -0600] "GET /feedback.htm HTTP/1.1" 200 6807
213.112.249.132 - - [07/Jun/2002:17:10:29 -0600] "GET /services.htm HTTP/1.1" 200 10752
213.112.249.132 - - [07/Jun/2002:17:14:28 -0600] "GET /serv01.htm HTTP/1.1" 200 183724
24.27.84.132 - - [07/Jun/2002:17:16:41 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:41 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:41 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:41 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:41 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:42 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:43 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.27.84.132 - - [07/Jun/2002:17:16:43 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.27.84.132 - - [07/Jun/2002:17:16:43 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.84.132 - - [07/Jun/2002:17:16:43 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
65.214.36.157 - - [07/Jun/2002:17:17:20 -0600] "GET /serv02.htm HTTP/1.0" 200 10005
213.112.249.132 - - [07/Jun/2002:17:21:13 -0600] "GET /images/qisvbkgd.gif HTTP/1.1" 200 444
213.112.249.132 - - [07/Jun/2002:17:21:12 -0600] "GET /qisv.htm HTTP/1.1" 200 127030
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /_derived/back_cmp_blitz110_back.gif HTTP/1.1" 200 671
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.1" 200 679
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/PADS_small.JPG HTTP/1.1" 200 1645
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/Production_small.JPG HTTP/1.1" 200 2494
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /serv02.htm HTTP/1.1" 200 10005
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/SFS3_small.JPG HTTP/1.1" 200 1880
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/STCpcb_small.JPG HTTP/1.1" 200 2286
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/Terralift_small.JPG HTTP/1.1" 200 1726
213.112.249.132 - - [07/Jun/2002:17:21:33 -0600] "GET /images/wetlab_small.JPG HTTP/1.1" 200 2362
213.112.249.132 - - [07/Jun/2002:17:21:37 -0600] "GET /images/STCpcb.JPG HTTP/1.1" 200 74468
213.112.249.132 - - [07/Jun/2002:17:21:59 -0600] "GET /images/Terralift.JPG HTTP/1.1" 200 39849
213.112.249.132 - - [07/Jun/2002:17:22:09 -0600] "GET /images/SFS3.JPG HTTP/1.1" 200 45269
213.112.249.132 - - [07/Jun/2002:17:22:16 -0600] "GET /images/Production.JPG HTTP/1.1" 200 78420
213.112.249.132 - - [07/Jun/2002:17:22:27 -0600] "GET /images/wetlab.JPG HTTP/1.1" 200 62899
213.112.249.132 - - [07/Jun/2002:17:22:50 -0600] "GET /serv03.htm HTTP/1.1" 200 7776
213.112.249.132 - - [07/Jun/2002:17:22:58 -0600] "GET /newpage2.htm HTTP/1.1" 200 211296
66.45.102.144 - - [07/Jun/2002:17:31:34 -0600] "GET /chem.html HTTP/1.0" 200 303854
212.113.19.150 - - [07/Jun/2002:18:52:01 -0600] "GET /serv02.htm HTTP/1.1" 200 10005
24.242.108.134 - - [07/Jun/2002:19:10:23 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:26 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:30 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:33 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:37 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:40 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:44 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:47 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:50 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:54 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:10:57 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:11:01 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:11:04 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:11:07 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:11:11 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:11:14 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:12:26 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:12:26 -0600] "GET /cp-jan96.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:14:13 -0600] "GET /technews/shows.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:14:18 -0600] "GET /servsup/tidhtml/grpwise HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:16:00 -0600] "GET /computers/Libs.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:17:10 -0600] "GET /oher_top.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:17:13 -0600] "GET /servsup/tidhtml/napi HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:24:28 -0600] "GET /lawschools.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:25:18 -0600] "GET /VL/job-listing-250396.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:27:26 -0600] "GET /servsup/tidhtml/mgt HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:29:43 -0600] "GET /SpaceOthers.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:30:23 -0600] "GET /servsup/tidhtml/dsktop HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:31:05 -0600] "GET /servsup/tidhtml/aw HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:31:09 -0600] "GET /servsup/tidhtml/tpd HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:34 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:37 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:40 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:31:43 -0600] "GET /nuclear HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:43 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:46 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:50 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:53 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:56 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:31:59 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:32:03 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:32:06 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:32:09 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:32:12 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:32:16 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:32:19 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:32:22 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:32:27 -0600] "GET /servsup/tidhtml/esd HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:32:31 -0600] "GET /servsup/tidhtml/hostcon HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:33:34 -0600] "GET /servsup/tidhtml/cbt HTTP/1.0" 404 855
65.94.167.124 - - [07/Jun/2002:19:33:34 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
65.94.167.124 - - [07/Jun/2002:19:33:35 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
65.94.167.124 - - [07/Jun/2002:19:33:36 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
65.94.167.124 - - [07/Jun/2002:19:33:33 -0600] "GET /engineer.html HTTP/1.1" 200 135585
66.196.73.35 - - [07/Jun/2002:19:34:16 -0600] "GET /gov_res.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:37:32 -0600] "GET /Journal.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:42:15 -0600] "GET /servsup/tidhtml/tp HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:42:19 -0600] "GET /technews/jobs.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:44:25 -0600] "GET /space HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:44:30 -0600] "GET /SpaceGroups.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:46:27 -0600] "GET /welcome.html HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:50:46 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:50:50 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:50:53 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:50:56 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:50:59 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:02 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:06 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:09 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:12 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:15 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:19 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:22 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:25 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:51:28 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [07/Jun/2002:19:51:31 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [07/Jun/2002:19:51:35 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:54:41 -0600] "GET /servsup/tidhtml/tlphny HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:58:33 -0600] "GET /virtual.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:19:58:57 -0600] "GET /lawfirms.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:00:01 -0600] "GET /1.htm HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:00:04 -0600] "GET /servsup/tidhtml/mac HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:01:05 -0600] "GET /http/192.152.29.158 HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:01:53 -0600] "GET /servsup/tidhtml/consprod HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:02:28 -0600] "GET /VL/job-listing.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:02:31 -0600] "GET /feed.htm HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:03:47 -0600] "GET /www.unige.ch/FATIC HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:06:04 -0600] "GET /www.pacrain.com/gldcstwx/chrtaccs.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:07:21 -0600] "GET /gov/other/tech.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:07:28 -0600] "GET /Misc.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:08:02 -0600] "GET /servsup/tidhtml/softsol HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:09:03 -0600] "GET /prod05.htm HTTP/1.0" 200 7024
66.196.73.35 - - [07/Jun/2002:20:09:13 -0600] "GET /journals.html HTTP/1.0" 200 8530
24.174.112.106 - - [07/Jun/2002:20:09:19 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:19 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:19 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:19 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:20 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:21 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.174.112.106 - - [07/Jun/2002:20:09:21 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.174.112.106 - - [07/Jun/2002:20:09:21 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.174.112.106 - - [07/Jun/2002:20:09:21 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:14:58 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:14:58 -0600] "GET /cp-dec95.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:16:05 -0600] "GET /servsup/tidhtml/epub HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:16:10 -0600] "GET /servsup/tidhtml/msg HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:16:14 -0600] "GET /intenvlaw.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:18:05 -0600] "GET /documents HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:18:11 -0600] "GET /labs HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:19:45 -0600] "GET /servsup/tidhtml/unix HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:19:53 -0600] "GET /chem_news.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:20:24 -0600] "GET /pr01.htm HTTP/1.0" 200 8203
66.196.73.35 - - [07/Jun/2002:20:20:39 -0600] "GET /servsup/tidhtml/deccon HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:22:20 -0600] "GET /servsup/tidhtml/dial HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:22:46 -0600] "GET /cp-feb96.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:23:07 -0600] "GET /servsup/tidhtml/gateways HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:24:59 -0600] "GET /servsup/tidhtml/unixconn HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:25:52 -0600] "GET /technews/tap.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:27:04 -0600] "GET /servsup/tidhtml/busapps HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:28:22 -0600] "GET /servsup/tidhtml/tresorce HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:31:00 -0600] "GET /servsup/tidhtml/novlabs HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:32:02 -0600] "GET /servsup/tidhtml/inet HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:32:06 -0600] "GET /nttc.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:33:06 -0600] "GET /servsup/tidhtml/nwos HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:34:38 -0600] "GET /technews/rttc.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:35:49 -0600] "GET /Gamov.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:35:53 -0600] "GET /cp-oct95.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:38:20 -0600] "GET /us-gov.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:38:24 -0600] "GET /Nasa.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:40:19 -0600] "GET /servsup/binhtml HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:40:58 -0600] "GET /www.teleport.com/~lgbarker/crrace.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:41:59 -0600] "GET /non-us.html HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:42:36 -0600] "GET /servsup/tidhtml/idm HTTP/1.0" 404 855
66.196.73.35 - - [07/Jun/2002:20:44:29 -0600] "GET /servsup/tidhtml/alltids.htm HTTP/1.0" 404 855
66.28.250.171 - - [07/Jun/2002:20:54:47 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.171 - - [07/Jun/2002:20:54:48 -0600] "GET /bioscien.html HTTP/1.0" 200 19404
210.178.178.69 - - [07/Jun/2002:21:03:36 -0600] "GET /default.ida?NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 400 339
66.28.250.173 - - [07/Jun/2002:21:05:38 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.172 - - [07/Jun/2002:21:11:21 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.28.250.173 - - [07/Jun/2002:21:14:10 -0600] "GET /physics.html HTTP/1.0" 200 15590
66.28.250.172 - - [07/Jun/2002:21:21:21 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
65.214.36.157 - - [07/Jun/2002:22:15:04 -0600] "GET /prod02.htm HTTP/1.0" 200 8562
65.214.36.157 - - [07/Jun/2002:22:16:43 -0600] "GET /serv03.htm HTTP/1.0" 200 7776
24.155.0.242 - - [07/Jun/2002:22:47:37 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.0" 200 3050
66.196.73.35 - - [08/Jun/2002:10:31:25 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:31:25 -0600] "GET /states.html HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:31:35 -0600] "GET /bioinfo_center_about.html HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:31:43 -0600] "GET /prod01.htm HTTP/1.0" 200 7024
66.196.73.35 - - [08/Jun/2002:10:32:15 -0600] "GET /servsup/tidhtml/db HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:32:25 -0600] "GET /gissoft.htm HTTP/1.0" 200 14454
65.214.36.157 - - [08/Jun/2002:10:37:57 -0600] "GET /tens.htm HTTP/1.0" 200 11469
66.196.73.35 - - [08/Jun/2002:10:40:51 -0600] "GET /computers HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:40:56 -0600] "GET /technews/whoswho.html HTTP/1.0" 404 855
66.196.73.35 - - [08/Jun/2002:10:41:01 -0600] "GET /servsup/tidhtml/uwnwc HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:27 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:28 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:28 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:29 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:29 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:30 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:30 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:31 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:31 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:32 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:32 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:33 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:33 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.192.26.89 - - [08/Jun/2002:10:45:34 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.192.26.89 - - [08/Jun/2002:10:45:34 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.192.26.89 - - [08/Jun/2002:10:45:37 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
64.173.194.167 - - [08/Jun/2002:10:50:17 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
64.173.194.167 - - [08/Jun/2002:10:50:19 -0600] "GET /images/sparclogo.gif HTTP/1.1" 200 13210
64.173.194.167 - - [08/Jun/2002:10:50:15 -0600] "GET /newpage2.htm HTTP/1.1" 200 211296
61.5.16.48 - - [08/Jun/2002:11:10:17 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
61.5.16.48 - - [08/Jun/2002:11:10:14 -0600] "GET /engineer.html HTTP/1.1" 200 135585
203.200.173.194 - - [08/Jun/2002:11:13:28 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
203.200.173.194 - - [08/Jun/2002:11:13:31 -0600] "GET /logo.gif HTTP/1.1" 200 4490
203.200.173.194 - - [08/Jun/2002:11:13:33 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
203.200.173.194 - - [08/Jun/2002:11:13:37 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
203.200.173.194 - - [08/Jun/2002:11:13:38 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
203.200.173.194 - - [08/Jun/2002:11:13:40 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
203.200.173.194 - - [08/Jun/2002:11:13:41 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
203.200.173.194 - - [08/Jun/2002:11:13:42 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
203.200.173.194 - - [08/Jun/2002:11:13:43 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
203.200.173.194 - - [08/Jun/2002:11:13:44 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
203.200.173.194 - - [08/Jun/2002:11:13:57 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
203.200.173.194 - - [08/Jun/2002:11:13:26 -0600] "GET /chem.html HTTP/1.1" 200 303854
61.5.16.48 - - [08/Jun/2002:11:16:11 -0600] "GET /engineer.html HTTP/1.1" 206 116673
61.5.16.48 - - [08/Jun/2002:11:17:21 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
61.5.16.48 - - [08/Jun/2002:11:17:23 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
61.5.16.48 - - [08/Jun/2002:11:17:25 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
61.5.16.48 - - [08/Jun/2002:11:16:56 -0600] "GET /engineer.html HTTP/1.1" 206 99561
61.5.16.48 - - [08/Jun/2002:11:18:30 -0600] "GET /engineer.html HTTP/1.1" 206 58157
218.17.83.92 - - [08/Jun/2002:11:46:27 -0600] "GET /default.ida?NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 400 339
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:52 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.167.71.134 - - [08/Jun/2002:12:50:53 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.167.71.134 - - [08/Jun/2002:12:50:54 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.71.134 - - [08/Jun/2002:12:50:54 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:28:49 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:28:51 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:28:54 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:28:56 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:28:59 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:01 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:04 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:06 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:09 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:11 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:14 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:16 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:19 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.117.33.0 - - [08/Jun/2002:13:29:22 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.117.33.0 - - [08/Jun/2002:13:29:24 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.117.33.0 - - [08/Jun/2002:13:29:27 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.23 - - [08/Jun/2002:13:32:38 -0600] "GET /products.htm HTTP/1.0" 200 11669
24.155.0.242 - - [08/Jun/2002:13:46:48 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.0" 200 2276
24.80.233.66 - - [08/Jun/2002:14:57:11 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
24.80.233.66 - - [08/Jun/2002:14:57:12 -0600] "GET /logo.gif HTTP/1.1" 200 4490
24.80.233.66 - - [08/Jun/2002:14:57:12 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
24.80.233.66 - - [08/Jun/2002:14:57:12 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
24.80.233.66 - - [08/Jun/2002:14:57:13 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
24.80.233.66 - - [08/Jun/2002:14:57:13 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
24.80.233.66 - - [08/Jun/2002:14:57:13 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
24.80.233.66 - - [08/Jun/2002:14:57:13 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
24.80.233.66 - - [08/Jun/2002:14:57:10 -0600] "GET /botany.html HTTP/1.1" 200 76737
24.80.233.66 - - [08/Jun/2002:14:57:13 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
24.80.233.66 - - [08/Jun/2002:14:57:14 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
24.80.233.66 - - [08/Jun/2002:14:57:14 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
24.226.42.65 - - [08/Jun/2002:15:12:29 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.226.42.65 - - [08/Jun/2002:15:12:30 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.226.42.65 - - [08/Jun/2002:15:12:32 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.226.42.65 - - [08/Jun/2002:15:13:18 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.226.42.65 - - [08/Jun/2002:15:13:19 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.226.42.65 - - [08/Jun/2002:15:13:20 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.155.45.31 - - [08/Jun/2002:15:17:43 -0600] "GET /abatt03 HTTP/1.1" 301 319
24.155.45.31 - - [08/Jun/2002:15:17:43 -0600] "GET /abatt03/ HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:17:43 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:17:43 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 200 18869
24.155.45.31 - - [08/Jun/2002:15:17:51 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:17:51 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:17:52 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:17:53 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:17:54 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:17:55 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:17:56 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:17:57 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:17:58 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:17:59 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:18:00 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:18:01 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:18:01 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:18:01 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:18:01 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:18:01 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:18:18 -0600] "GET /abatt03/images/IMG_1631.JPG HTTP/1.1" 200 112316
24.155.45.31 - - [08/Jun/2002:15:18:31 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:18:32 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:18:33 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:18:34 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:18:35 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:18:36 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:18:37 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:18:38 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:18:39 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:18:40 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:18:41 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:18:41 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:18:41 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:18:41 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:18:41 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:18:50 -0600] "GET /abatt03/images/IMG_1669.JPG HTTP/1.1" 200 313208
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:18:56 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:18:57 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:18:58 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:18:59 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:19:00 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:19:01 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:19:02 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:19:03 -0600] "GET /abatt03/images/IMG_1664.JPG HTTP/1.1" 200 320935
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:19:15 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:19:16 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:19:17 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:19:18 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:19:19 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:19:20 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:19:21 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:19:22 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:19:23 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:19:24 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:19:28 -0600] "GET /abatt03/images/IMG_1700.JPG HTTP/1.1" 200 1645585
24.155.45.31 - - [08/Jun/2002:15:19:55 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:19:55 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:19:56 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:19:57 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:19:58 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:19:59 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:20:00 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:20:01 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:20:02 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:20:03 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:20:04 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:20:14 -0600] "GET /abatt03/images/img_1718.jpg HTTP/1.1" 200 1064327
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:20:38 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:20:39 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:20:40 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:20:41 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:20:42 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:20:43 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:20:44 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:20:45 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:20:46 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:20:47 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:20:48 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:20:48 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:20:48 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:20:48 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:21:03 -0600] "GET /abatt03/images/IMG_1653.JPG HTTP/1.1" 200 220745
24.155.45.31 - - [08/Jun/2002:15:21:12 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:21:12 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:21:12 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:21:12 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:21:12 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:21:13 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:21:14 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:21:15 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:21:16 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:21:17 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:21:18 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:21:19 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:21:20 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:21:21 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:21:38 -0600] "GET /abatt03/images/img_1721.jpg HTTP/1.1" 200 1133959
24.155.45.31 - - [08/Jun/2002:15:22:16 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:22:16 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:22:16 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:22:16 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:22:17 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:22:18 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:22:19 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:22:20 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:22:21 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:22:22 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:22:23 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:22:24 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:22:25 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:22:26 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:22:26 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:38:00 -0600] "GET /abatt03 HTTP/1.1" 301 319
24.155.45.31 - - [08/Jun/2002:15:38:01 -0600] "GET /abatt03/ HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:38:01 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:38:01 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 200 18869
24.155.45.31 - - [08/Jun/2002:15:38:03 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:38:03 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:38:03 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:38:04 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:38:05 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:38:06 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:38:07 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:38:08 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:38:09 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:38:10 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:38:11 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:38:12 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:38:13 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:38:14 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:38:17 -0600] "GET /abatt03/images/IMG_1686.JPG HTTP/1.1" 200 1930307
24.155.45.31 - - [08/Jun/2002:15:38:58 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:38:59 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:39:00 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:39:01 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:39:02 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:39:03 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:39:04 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:39:05 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:39:06 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:39:07 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:39:08 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:39:10 -0600] "GET /abatt03/images/img_1721.jpg HTTP/1.1" 200 1133959
24.155.45.31 - - [08/Jun/2002:15:39:51 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:39:51 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:39:52 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:39:53 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:39:54 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:39:55 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:39:56 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:39:57 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:39:58 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:39:59 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:40:00 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:40:01 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:40:01 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:40:01 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:40:01 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:40:07 -0600] "GET /abatt03/images/IMG_1691.JPG HTTP/1.1" 200 1763004
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:40:44 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:40:45 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:40:46 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:40:47 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:40:48 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:40:49 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:40:50 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:40:51 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:40:52 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:40:53 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:40:54 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:40:54 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:40:54 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:40:54 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:40:54 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
24.155.45.31 - - [08/Jun/2002:15:40:56 -0600] "GET /abatt03/images/IMG_1695.JPG HTTP/1.1" 200 1774733
24.155.45.31 - - [08/Jun/2002:15:42:12 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:42:12 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:42:12 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:42:12 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:42:13 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:42:14 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:42:15 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:42:16 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:42:17 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:42:18 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:42:19 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:42:20 -0600] "GET /abatt03/images/IMG_1693.JPG HTTP/1.1" 200 1740593
24.155.45.31 - - [08/Jun/2002:15:43:15 -0600] "GET /abatt03/photo.htm HTTP/1.1" 200 20239
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 200 906
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 200 293
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 200 20521
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 200 277
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 200 323
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 200 1837
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 200 1214
24.155.45.31 - - [08/Jun/2002:15:43:16 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 200 1927
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 200 1791
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 200 2126
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 200 1210
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 200 1213
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 200 1184
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 200 1126
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 200 1848
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 200 1974
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 200 1528
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 200 1516
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 200 1871
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 200 1914
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:43:17 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 200 1938
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 200 1670
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 200 1568
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 200 1878
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 200 1925
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 200 1851
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 200 1406
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 200 1687
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 200 2405
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 200 1846
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 200 2137
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 200 2073
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 200 1623
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 200 1600
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 200 1531
24.155.45.31 - - [08/Jun/2002:15:43:18 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 200 1554
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 200 1725
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 200 1626
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 200 1563
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 200 1543
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 200 1746
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 200 1684
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 200 1550
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 200 2010
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 200 1936
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 200 1780
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 200 1632
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 200 1919
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 200 1361
24.155.45.31 - - [08/Jun/2002:15:43:19 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 200 2007
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 200 1939
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 200 1733
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 200 1827
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 200 1653
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 200 2082
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 200 1999
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 200 1719
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 200 1672
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 200 1903
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 200 1820
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 200 1922
24.155.45.31 - - [08/Jun/2002:15:43:20 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 200 1933
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 200 1808
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 200 1833
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 200 2342
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 200 2322
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 200 2373
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 200 2130
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 200 2145
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 200 2152
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 200 2162
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 200 2109
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 200 2193
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 200 2234
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 200 2136
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 200 2204
24.155.45.31 - - [08/Jun/2002:15:43:21 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 200 1867
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 200 2004
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 200 1825
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 200 1834
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 200 1831
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 200 2198
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 200 2246
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 200 2215
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 200 2216
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 200 2208
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 200 2242
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 200 2237
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 200 2139
24.155.45.31 - - [08/Jun/2002:15:43:22 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 200 2214
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 200 2140
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 200 2171
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 200 2209
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 200 2163
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 200 2176
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 200 2174
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 200 2101
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 200 2181
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 200 2170
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 200 2173
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 200 2271
24.155.45.31 - - [08/Jun/2002:15:43:23 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 200 2222
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 200 2213
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 200 2191
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 200 2166
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 200 2114
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 200 2224
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 200 2119
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:43:24 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 200 2227
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 200 2258
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 200 2018
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 200 2285
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 200 2262
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 200 2205
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 200 2026
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 200 2075
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 200 2027
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 200 2067
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 200 2029
24.155.45.31 - - [08/Jun/2002:15:43:25 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 200 2056
129.123.16.12 - - [08/Jun/2002:15:45:51 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
129.123.16.12 - - [08/Jun/2002:15:45:51 -0600] "GET /logo.gif HTTP/1.1" 200 4490
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
129.123.16.12 - - [08/Jun/2002:15:45:51 -0600] "GET /botany.html HTTP/1.1" 200 76737
129.123.16.12 - - [08/Jun/2002:15:45:52 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
129.123.16.12 - - [08/Jun/2002:15:45:53 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
129.123.16.12 - - [08/Jun/2002:15:45:53 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
129.123.16.12 - - [08/Jun/2002:15:45:53 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
24.215.19.98 - - [08/Jun/2002:15:47:57 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:47:58 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:47:59 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:01 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:03 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:04 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:06 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:06 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:07 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:08 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.215.19.98 - - [08/Jun/2002:15:48:08 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
205.188.209.43 - - [08/Jun/2002:16:17:31 -0600] "GET /abatt03/ HTTP/1.0" 200 1925
205.188.209.169 - - [08/Jun/2002:16:17:34 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.0" 200 906
205.188.208.104 - - [08/Jun/2002:16:17:34 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.0" 200 18869
205.188.208.75 - - [08/Jun/2002:16:17:43 -0600] "GET /abatt03/photo.htm HTTP/1.0" 200 20239
205.188.208.73 - - [08/Jun/2002:16:17:44 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.0" 200 20521
205.188.208.8 - - [08/Jun/2002:16:17:44 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.0" 200 293
205.188.209.176 - - [08/Jun/2002:16:17:45 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.0" 200 277
205.188.209.10 - - [08/Jun/2002:16:17:45 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.0" 200 323
205.188.208.74 - - [08/Jun/2002:16:17:45 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.0" 200 1214
205.188.209.73 - - [08/Jun/2002:16:17:45 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.0" 200 1837
205.188.209.39 - - [08/Jun/2002:16:17:46 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.0" 200 1791
205.188.209.39 - - [08/Jun/2002:16:17:46 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.0" 200 1927
205.188.209.73 - - [08/Jun/2002:16:17:46 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.0" 200 1563
205.188.209.39 - - [08/Jun/2002:16:17:46 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.0" 200 2126
205.188.209.39 - - [08/Jun/2002:16:17:46 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.0" 200 1210
205.188.209.39 - - [08/Jun/2002:16:17:47 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.0" 200 1213
205.188.208.74 - - [08/Jun/2002:16:17:47 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.0" 200 1184
205.188.209.73 - - [08/Jun/2002:16:17:47 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.0" 200 1126
205.188.209.39 - - [08/Jun/2002:16:17:47 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.0" 200 1848
205.188.209.39 - - [08/Jun/2002:16:17:48 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.0" 200 1974
205.188.209.39 - - [08/Jun/2002:16:17:49 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.0" 200 1528
205.188.209.39 - - [08/Jun/2002:16:17:50 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.0" 200 1871
205.188.209.39 - - [08/Jun/2002:16:17:50 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.0" 200 1914
205.188.209.39 - - [08/Jun/2002:16:17:52 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.0" 200 1834
205.188.209.76 - - [08/Jun/2002:16:17:52 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.0" 200 2166
205.188.209.73 - - [08/Jun/2002:16:17:53 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.0" 200 1938
205.188.209.39 - - [08/Jun/2002:16:17:53 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.0" 200 1670
205.188.209.39 - - [08/Jun/2002:16:17:54 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.0" 200 1568
205.188.209.39 - - [08/Jun/2002:16:17:54 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.0" 200 1878
205.188.209.39 - - [08/Jun/2002:16:17:55 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.0" 200 1925
205.188.209.39 - - [08/Jun/2002:16:17:56 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.0" 200 1851
205.188.209.39 - - [08/Jun/2002:16:17:57 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.0" 200 1687
205.188.208.74 - - [08/Jun/2002:16:17:58 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.0" 200 2405
205.188.209.73 - - [08/Jun/2002:16:17:58 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.0" 200 1846
205.188.209.39 - - [08/Jun/2002:16:18:00 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.0" 200 2137
205.188.209.39 - - [08/Jun/2002:16:18:01 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.0" 200 2073
205.188.209.39 - - [08/Jun/2002:16:18:01 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.0" 200 1623
205.188.209.39 - - [08/Jun/2002:16:18:04 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.0" 200 1600
205.188.209.39 - - [08/Jun/2002:16:18:05 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.0" 200 1531
205.188.209.39 - - [08/Jun/2002:16:18:05 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.0" 200 1554
205.188.209.134 - - [08/Jun/2002:16:18:07 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.0" 200 1725
205.188.208.74 - - [08/Jun/2002:16:18:08 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.0" 200 1626
205.188.209.39 - - [08/Jun/2002:16:18:08 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.0" 200 2119
205.188.209.39 - - [08/Jun/2002:16:18:10 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.0" 200 1543
205.188.209.39 - - [08/Jun/2002:16:18:11 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.0" 200 1746
205.188.209.39 - - [08/Jun/2002:16:18:11 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.0" 200 1684
205.188.209.39 - - [08/Jun/2002:16:18:12 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.0" 200 1550
205.188.209.39 - - [08/Jun/2002:16:18:14 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.0" 200 2010
205.188.209.39 - - [08/Jun/2002:16:18:14 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.0" 200 1936
205.188.209.134 - - [08/Jun/2002:16:18:15 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.0" 200 1780
205.188.209.107 - - [08/Jun/2002:16:18:16 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.0" 200 1632
205.188.209.73 - - [08/Jun/2002:16:18:16 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.0" 200 1919
205.188.209.39 - - [08/Jun/2002:16:18:18 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.0" 200 1361
205.188.209.39 - - [08/Jun/2002:16:18:18 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.0" 200 2007
205.188.209.39 - - [08/Jun/2002:16:18:18 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.0" 200 1939
205.188.209.39 - - [08/Jun/2002:16:18:21 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.0" 200 1733
205.188.209.39 - - [08/Jun/2002:16:18:21 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.0" 200 1653
205.188.209.39 - - [08/Jun/2002:16:18:21 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.0" 200 1827
205.188.209.8 - - [08/Jun/2002:16:18:21 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.0" 200 1999
205.188.209.107 - - [08/Jun/2002:16:18:23 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.0" 200 2082
205.188.209.39 - - [08/Jun/2002:16:18:23 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.0" 200 1719
205.188.209.39 - - [08/Jun/2002:16:18:24 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.0" 200 1672
205.188.209.39 - - [08/Jun/2002:16:18:24 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.0" 200 1903
205.188.209.39 - - [08/Jun/2002:16:18:26 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.0" 200 1820
205.188.209.39 - - [08/Jun/2002:16:18:26 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.0" 200 1922
205.188.209.39 - - [08/Jun/2002:16:18:27 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.0" 200 1933
205.188.209.134 - - [08/Jun/2002:16:18:27 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.0" 200 1808
205.188.209.107 - - [08/Jun/2002:16:18:29 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.0" 200 1833
205.188.209.8 - - [08/Jun/2002:16:18:29 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.0" 200 2342
205.188.209.40 - - [08/Jun/2002:16:18:30 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.0" 200 2322
205.188.209.39 - - [08/Jun/2002:16:18:30 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.0" 200 2373
205.188.209.39 - - [08/Jun/2002:16:18:31 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.0" 200 2130
205.188.209.39 - - [08/Jun/2002:16:18:32 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.0" 200 2145
205.188.209.39 - - [08/Jun/2002:16:18:33 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.0" 200 2152
205.188.209.39 - - [08/Jun/2002:16:18:33 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.0" 200 2162
205.188.209.134 - - [08/Jun/2002:16:18:34 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.0" 200 2109
205.188.209.107 - - [08/Jun/2002:16:18:34 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.0" 200 2193
205.188.209.8 - - [08/Jun/2002:16:18:35 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.0" 200 2234
205.188.209.40 - - [08/Jun/2002:16:18:35 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.0" 200 2136
205.188.209.42 - - [08/Jun/2002:16:18:37 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.0" 200 1867
205.188.209.51 - - [08/Jun/2002:16:18:37 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.0" 200 2204
205.188.209.14 - - [08/Jun/2002:16:18:38 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.0" 200 2004
205.188.208.165 - - [08/Jun/2002:16:18:38 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.0" 200 1825
205.188.209.133 - - [08/Jun/2002:16:18:40 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.0" 200 1834
205.188.209.76 - - [08/Jun/2002:16:18:40 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.0" 200 1831
205.188.209.76 - - [08/Jun/2002:16:18:41 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.0" 200 2198
205.188.209.76 - - [08/Jun/2002:16:18:41 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.0" 200 2242
205.188.209.76 - - [08/Jun/2002:16:18:43 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.0" 200 2215
205.188.209.76 - - [08/Jun/2002:16:18:43 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.0" 200 2114
205.188.209.41 - - [08/Jun/2002:16:18:44 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.0" 200 2216
205.188.208.165 - - [08/Jun/2002:16:18:44 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.0" 200 2208
205.188.209.133 - - [08/Jun/2002:16:18:45 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.0" 200 2242
205.188.209.76 - - [08/Jun/2002:16:18:46 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.0" 200 2139
205.188.209.76 - - [08/Jun/2002:16:18:47 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.0" 200 2214
205.188.209.172 - - [08/Jun/2002:16:18:49 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.0" 200 2140
205.188.209.76 - - [08/Jun/2002:16:18:50 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.0" 200 2171
205.188.209.76 - - [08/Jun/2002:16:18:51 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.0" 200 2209
205.188.209.41 - - [08/Jun/2002:16:18:52 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.0" 200 2163
205.188.209.108 - - [08/Jun/2002:16:18:53 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.0" 200 2176
205.188.209.133 - - [08/Jun/2002:16:18:55 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.0" 200 2174
205.188.209.76 - - [08/Jun/2002:16:18:56 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.0" 200 2101
205.188.209.76 - - [08/Jun/2002:16:18:58 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.0" 200 2181
205.188.209.76 - - [08/Jun/2002:16:18:59 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.0" 200 2170
205.188.209.172 - - [08/Jun/2002:16:19:00 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.0" 200 2173
205.188.209.76 - - [08/Jun/2002:16:19:01 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.0" 200 2271
205.188.209.76 - - [08/Jun/2002:16:19:03 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.0" 200 2213
205.188.209.41 - - [08/Jun/2002:16:19:04 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.0" 200 2222
205.188.209.108 - - [08/Jun/2002:16:19:06 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.0" 200 2213
205.188.209.76 - - [08/Jun/2002:16:19:07 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.0" 200 2262
205.188.209.76 - - [08/Jun/2002:16:19:07 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.0" 200 2191
205.188.209.39 - - [08/Jun/2002:16:19:08 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.0" 200 1516
205.188.209.76 - - [08/Jun/2002:16:19:09 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.0" 200 2114
205.188.209.76 - - [08/Jun/2002:16:19:10 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.0" 200 2285
205.188.209.172 - - [08/Jun/2002:16:19:10 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.0" 200 2224
205.188.209.76 - - [08/Jun/2002:16:19:11 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.0" 200 2119
205.188.209.41 - - [08/Jun/2002:16:19:11 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.0" 200 2067
205.188.209.108 - - [08/Jun/2002:16:19:11 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.0" 200 2258
205.188.209.76 - - [08/Jun/2002:16:19:12 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.0" 200 2258
205.188.209.76 - - [08/Jun/2002:16:19:14 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.0" 200 2018
205.188.209.76 - - [08/Jun/2002:16:19:11 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.0" 200 2227
205.188.209.172 - - [08/Jun/2002:16:19:14 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.0" 200 2285
205.188.209.76 - - [08/Jun/2002:16:19:15 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.0" 200 2262
205.188.209.76 - - [08/Jun/2002:16:19:16 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.0" 200 2205
205.188.209.41 - - [08/Jun/2002:16:19:17 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.0" 200 2026
205.188.209.108 - - [08/Jun/2002:16:19:18 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.0" 200 2075
205.188.209.76 - - [08/Jun/2002:16:19:19 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.0" 200 2027
205.188.209.76 - - [08/Jun/2002:16:19:19 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.0" 200 2067
205.188.209.76 - - [08/Jun/2002:16:19:21 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.0" 200 2029
205.188.209.76 - - [08/Jun/2002:16:19:22 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.0" 200 2056
205.188.209.42 - - [08/Jun/2002:16:19:46 -0600] "GET /abatt03/images/IMG_1625.JPG HTTP/1.0" 200 202900
205.188.209.42 - - [08/Jun/2002:16:20:37 -0600] "GET /abatt03/images/IMG_1626.JPG HTTP/1.0" 200 340192
205.188.208.172 - - [08/Jun/2002:16:21:48 -0600] "GET /abatt03/images/IMG_1627.JPG HTTP/1.0" 200 455838
205.188.208.70 - - [08/Jun/2002:16:22:42 -0600] "GET /abatt03/images/IMG_1629.JPG HTTP/1.0" 200 341746
205.188.209.77 - - [08/Jun/2002:16:23:43 -0600] "GET /abatt03/images/IMG_1631.JPG HTTP/1.0" 200 112316
205.188.209.43 - - [08/Jun/2002:16:24:29 -0600] "GET /abatt03/images/IMG_1639.JPG HTTP/1.0" 200 261111
205.188.208.70 - - [08/Jun/2002:16:25:41 -0600] "GET /abatt03/images/IMG_1647.JPG HTTP/1.0" 200 267984
205.188.209.42 - - [08/Jun/2002:16:26:16 -0600] "GET /abatt03/images/IMG_1651.JPG HTTP/1.0" 200 359808
205.188.209.42 - - [08/Jun/2002:16:26:48 -0600] "GET /abatt03/images/IMG_1652.JPG HTTP/1.0" 200 281604
205.188.208.172 - - [08/Jun/2002:16:27:39 -0600] "GET /abatt03/images/IMG_1672.JPG HTTP/1.0" 200 1186724
205.188.209.43 - - [08/Jun/2002:16:28:58 -0600] "GET /abatt03/images/IMG_1673.JPG HTTP/1.0" 200 1133462
205.188.209.43 - - [08/Jun/2002:16:30:01 -0600] "GET /abatt03/images/IMG_1678.JPG HTTP/1.0" 200 1044312
205.188.209.9 - - [08/Jun/2002:16:31:31 -0600] "GET /abatt03/images/IMG_1700.JPG HTTP/1.0" 200 1645585
205.188.209.39 - - [08/Jun/2002:16:52:30 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.0" 200 1406
205.188.209.172 - - [08/Jun/2002:16:52:45 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.0" 200 2246
205.188.209.76 - - [08/Jun/2002:16:52:46 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.0" 200 2237
205.188.209.76 - - [08/Jun/2002:16:52:52 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.0" 200 2027
205.188.209.13 - - [08/Jun/2002:16:53:01 -0600] "GET /abatt03/images/img_1734.jpg HTTP/1.0" 200 1524844
205.188.209.102 - - [08/Jun/2002:16:55:14 -0600] "GET /abatt03/images/img_1739.jpg HTTP/1.0" 200 1460521
66.45.102.144 - - [08/Jun/2002:17:00:18 -0600] "GET /chem.html HTTP/1.0" 200 303854
24.86.229.102 - - [08/Jun/2002:17:38:33 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:33 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:33 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:34 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:34 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:35 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:35 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:35 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:36 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:36 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:37 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:37 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:37 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.229.102 - - [08/Jun/2002:17:38:38 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.229.102 - - [08/Jun/2002:17:38:38 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.229.102 - - [08/Jun/2002:17:38:38 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:19 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:23 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:27 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:31 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:34 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:38 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:42 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:45 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:49 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:13:56 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:14:00 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:18:14:03 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.28.250.176 - - [08/Jun/2002:19:13:37 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.176 - - [08/Jun/2002:19:13:38 -0600] "GET /_derived/back_cmp_blitz110_back_a.gif HTTP/1.0" 200 679
66.28.250.176 - - [08/Jun/2002:19:23:10 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.176 - - [08/Jun/2002:19:23:10 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.0" 200 613
24.86.230.143 - - [08/Jun/2002:19:26:41 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:41 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:42 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:42 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:42 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:42 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:43 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:43 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:43 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:44 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:44 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:44 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:45 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.230.143 - - [08/Jun/2002:19:26:45 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.230.143 - - [08/Jun/2002:19:26:45 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.230.143 - - [08/Jun/2002:19:26:45 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:56 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:57 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:57 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:57 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:58 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:58 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:59 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:59 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:27:59 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:28:00 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:28:00 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:28:01 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:28:01 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.146.18.142 - - [08/Jun/2002:19:28:01 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.146.18.142 - - [08/Jun/2002:19:28:02 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.146.18.142 - - [08/Jun/2002:19:28:02 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.28.250.176 - - [08/Jun/2002:19:47:36 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.0" 200 683
66.28.250.176 - - [08/Jun/2002:19:54:03 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.0" 200 681
66.28.250.176 - - [08/Jun/2002:20:04:32 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.0" 200 689
24.80.231.95 - - [08/Jun/2002:20:15:46 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:15:49 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:15:52 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:15:56 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:15:59 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:02 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:06 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:09 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:12 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:16 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:19 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:23 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:26 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.80.231.95 - - [08/Jun/2002:20:16:29 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.80.231.95 - - [08/Jun/2002:20:16:33 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.80.231.95 - - [08/Jun/2002:20:16:36 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.28.250.176 - - [08/Jun/2002:20:21:29 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.0" 200 676
24.242.108.134 - - [08/Jun/2002:20:50:40 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:50:43 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:50:47 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:50:50 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:50:54 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:50:57 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:01 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:04 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:08 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:14 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:18 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:21 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:25 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [08/Jun/2002:20:51:28 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [08/Jun/2002:20:51:32 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [08/Jun/2002:20:51:35 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
65.214.36.157 - - [08/Jun/2002:21:05:46 -0600] "GET /serv01.htm HTTP/1.0" 200 183724
24.114.141.208 - - [08/Jun/2002:22:03:18 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:21 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:24 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:27 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:30 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:32 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:35 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:38 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:40 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:43 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:46 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:48 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:03:51 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.114.141.208 - - [08/Jun/2002:22:03:54 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.114.141.208 - - [08/Jun/2002:22:03:57 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.114.141.208 - - [08/Jun/2002:22:04:00 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
65.214.36.157 - - [08/Jun/2002:22:07:13 -0600] "GET /newpage2.htm HTTP/1.0" 200 211296
65.214.36.157 - - [08/Jun/2002:22:52:12 -0600] "GET /qisv.htm HTTP/1.0" 200 127030
65.214.36.157 - - [08/Jun/2002:23:22:13 -0600] "GET /search.htm HTTP/1.0" 200 2015
65.214.36.157 - - [08/Jun/2002:23:40:02 -0600] "GET /feedback.htm HTTP/1.0" 200 6807
65.214.36.157 - - [08/Jun/2002:23:43:38 -0600] "GET /toc.htm HTTP/1.0" 200 9095
65.214.36.157 - - [08/Jun/2002:23:59:21 -0600] "GET /prod03.htm HTTP/1.0" 200 8722
66.196.73.16 - - [09/Jun/2002:00:52:45 -0600] "GET /virtual.html HTTP/1.0" 404 855
65.214.36.157 - - [09/Jun/2002:01:37:21 -0600] "GET /services.htm HTTP/1.0" 200 10752
66.196.73.15 - - [09/Jun/2002:01:38:40 -0600] "GET /techtran.html HTTP/1.0" 200 50911
24.155.0.242 - - [09/Jun/2002:02:40:42 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.0" 200 2164
202.27.178.219 - - [09/Jun/2002:02:51:59 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
202.27.178.219 - - [09/Jun/2002:02:52:02 -0600] "GET /logo.gif HTTP/1.1" 200 4490
202.27.178.219 - - [09/Jun/2002:02:52:04 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
202.27.178.219 - - [09/Jun/2002:02:52:08 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
202.27.178.219 - - [09/Jun/2002:02:52:10 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
202.27.178.219 - - [09/Jun/2002:02:52:12 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
202.27.178.219 - - [09/Jun/2002:02:52:13 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
202.27.178.219 - - [09/Jun/2002:02:52:14 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
202.27.178.219 - - [09/Jun/2002:02:52:15 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
202.27.178.219 - - [09/Jun/2002:02:52:19 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
202.27.178.219 - - [09/Jun/2002:02:52:20 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
202.27.178.219 - - [09/Jun/2002:02:51:57 -0600] "GET /chem.html HTTP/1.1" 200 303854
208.51.0.74 - - [09/Jun/2002:03:03:39 -0600] "GET /robots.txt HTTP/1.0" 404 851
208.51.0.74 - - [09/Jun/2002:03:03:40 -0600] "GET / HTTP/1.0" 200 12229
208.51.0.74 - - [09/Jun/2002:03:03:40 -0600] "GET /feedback.htm HTTP/1.0" 200 6807
208.51.0.74 - - [09/Jun/2002:03:03:41 -0600] "GET /news.htm HTTP/1.0" 200 4582
208.51.0.74 - - [09/Jun/2002:03:03:41 -0600] "GET /products.htm HTTP/1.0" 200 11669
208.51.0.74 - - [09/Jun/2002:03:03:42 -0600] "GET /search.htm HTTP/1.0" 200 2015
208.51.0.74 - - [09/Jun/2002:03:03:42 -0600] "GET /services.htm HTTP/1.0" 200 10752
208.51.0.74 - - [09/Jun/2002:03:03:42 -0600] "GET /toc.htm HTTP/1.0" 200 9095
208.51.0.74 - - [09/Jun/2002:03:03:43 -0600] "GET /_vti_bin/shtml.exe/feedback.htm HTTP/1.0" 404 851
208.51.0.74 - - [09/Jun/2002:03:03:43 -0600] "GET /_vti_bin/shtml.exe/search.htm HTTP/1.0" 404 851
208.51.0.74 - - [09/Jun/2002:03:03:43 -0600] "GET /gissoft.htm HTTP/1.0" 200 17898
208.51.0.74 - - [09/Jun/2002:03:03:44 -0600] "GET /newpage2.htm HTTP/1.0" 200 211296
66.196.65.18 - - [09/Jun/2002:03:26:14 -0600] "GET /robots.txt HTTP/1.0" 404 855
66.196.65.18 - - [09/Jun/2002:03:26:14 -0600] "GET / HTTP/1.0" 200 11500
209.167.50.22 - - [09/Jun/2002:03:38:10 -0600] "GET /robots.txt HTTP/1.1" 404 991
209.167.50.22 - - [09/Jun/2002:03:38:11 -0600] "GET /biology.htm HTTP/1.1" 304 0
209.167.50.22 - - [09/Jun/2002:03:38:26 -0600] "GET /geologic.htm HTTP/1.1" 304 0
202.38.124.247 - - [09/Jun/2002:03:47:12 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
202.38.124.247 - - [09/Jun/2002:03:47:13 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
202.38.124.248 - - [09/Jun/2002:03:47:10 -0600] "GET /engineer.html HTTP/1.0" 200 135585
24.242.108.134 - - [09/Jun/2002:04:15:29 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:32 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:35 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:38 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:41 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:44 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:48 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:51 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:54 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:15:57 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:16:00 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:16:03 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:16:06 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [09/Jun/2002:04:16:09 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [09/Jun/2002:04:16:12 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:16:15 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:41 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:44 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:47 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:50 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:53 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:56 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:34:59 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:02 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:05 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:08 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:11 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:14 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:17 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [09/Jun/2002:04:35:20 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [09/Jun/2002:04:35:23 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [09/Jun/2002:04:35:26 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:00 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:00 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:01 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:04:02 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:34 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:34 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:34 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:34 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:34 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:08:35 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:08:36 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:08:36 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:32 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:32 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:32 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:33 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:34 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:34 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:23:34 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:05:23:34 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:05:23:34 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:04 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:05 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:06:28:06 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
159.134.231.190 - - [09/Jun/2002:06:46:47 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
159.134.231.190 - - [09/Jun/2002:06:46:49 -0600] "GET /logo.gif HTTP/1.1" 200 4490
159.134.231.190 - - [09/Jun/2002:06:46:52 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
159.134.231.190 - - [09/Jun/2002:06:47:01 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
159.134.231.190 - - [09/Jun/2002:06:47:05 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
159.134.231.190 - - [09/Jun/2002:06:47:08 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
159.134.231.190 - - [09/Jun/2002:06:47:10 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
159.134.231.190 - - [09/Jun/2002:06:47:13 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
159.134.231.190 - - [09/Jun/2002:06:47:17 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
159.134.231.190 - - [09/Jun/2002:06:47:20 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
159.134.231.190 - - [09/Jun/2002:06:47:43 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
159.134.231.190 - - [09/Jun/2002:06:46:44 -0600] "GET /chem.html HTTP/1.1" 200 303854
159.134.231.190 - - [09/Jun/2002:06:47:59 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
159.134.231.190 - - [09/Jun/2002:06:48:02 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
159.134.231.190 - - [09/Jun/2002:06:47:51 -0600] "GET / HTTP/1.1" 200 11500
159.134.231.190 - - [09/Jun/2002:06:48:04 -0600] "GET /logo.gif HTTP/1.1" 304 0
159.134.231.190 - - [09/Jun/2002:06:48:04 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
159.134.231.190 - - [09/Jun/2002:06:48:06 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
159.134.231.190 - - [09/Jun/2002:06:48:06 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
159.134.231.190 - - [09/Jun/2002:06:48:08 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
159.134.231.190 - - [09/Jun/2002:06:48:09 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
159.134.231.190 - - [09/Jun/2002:06:48:11 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
159.134.231.190 - - [09/Jun/2002:06:48:11 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
159.134.231.190 - - [09/Jun/2002:06:48:12 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
159.134.231.190 - - [09/Jun/2002:06:48:12 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
159.134.231.190 - - [09/Jun/2002:06:48:13 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
159.134.231.190 - - [09/Jun/2002:06:48:14 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
209.94.76.142 - - [09/Jun/2002:07:37:09 -0600] "GET /default.ida?NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 400 339
24.242.248.134 - - [09/Jun/2002:07:48:21 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:21 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:21 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:21 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:21 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:22 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:07:48:23 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:07:48:23 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:07:48:23 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
195.93.32.13 - - [09/Jun/2002:08:15:10 -0600] "GET /botany.html HTTP/1.0" 200 76737
195.93.32.9 - - [09/Jun/2002:08:15:14 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
195.93.34.12 - - [09/Jun/2002:08:15:14 -0600] "GET /logo.gif HTTP/1.0" 200 4490
195.93.33.14 - - [09/Jun/2002:08:15:14 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8890
195.93.32.9 - - [09/Jun/2002:08:15:15 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
195.93.32.12 - - [09/Jun/2002:08:15:16 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
195.93.32.7 - - [09/Jun/2002:08:15:17 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
195.93.33.10 - - [09/Jun/2002:08:15:19 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
195.93.32.12 - - [09/Jun/2002:08:15:19 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
195.93.34.12 - - [09/Jun/2002:08:15:20 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
195.93.33.7 - - [09/Jun/2002:08:15:20 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
195.93.34.12 - - [09/Jun/2002:08:15:20 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
66.28.250.171 - - [09/Jun/2002:08:54:06 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.171 - - [09/Jun/2002:08:54:06 -0600] "GET /?C=M&O=A HTTP/1.0" 200 439
66.28.250.173 - - [09/Jun/2002:08:59:10 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.173 - - [09/Jun/2002:08:59:10 -0600] "GET /?C=D&O=A HTTP/1.0" 200 439
66.28.250.174 - - [09/Jun/2002:09:03:27 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.174 - - [09/Jun/2002:09:03:27 -0600] "GET /?C=N&O=D HTTP/1.0" 200 439
66.28.250.172 - - [09/Jun/2002:09:12:22 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.172 - - [09/Jun/2002:09:12:23 -0600] "GET /?C=S&O=A HTTP/1.0" 200 439
208.136.55.218 - - [09/Jun/2002:09:47:21 -0600] "GET /sail.html HTTP/1.1" 200 30077
203.198.24.5 - - [09/Jun/2002:10:13:23 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8817
203.198.24.5 - - [09/Jun/2002:10:13:23 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
203.198.24.5 - - [09/Jun/2002:10:13:23 -0600] "GET /logo.gif HTTP/1.0" 200 4490
203.198.24.5 - - [09/Jun/2002:10:13:26 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
203.198.24.5 - - [09/Jun/2002:10:13:25 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
203.198.24.5 - - [09/Jun/2002:10:13:27 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
203.198.24.5 - - [09/Jun/2002:10:13:28 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
203.198.24.5 - - [09/Jun/2002:10:13:28 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
203.198.24.5 - - [09/Jun/2002:10:13:29 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
203.198.24.5 - - [09/Jun/2002:10:13:28 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
203.198.24.5 - - [09/Jun/2002:10:13:34 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
203.198.24.5 - - [09/Jun/2002:10:13:22 -0600] "GET /chem.html HTTP/1.0" 200 303854
24.242.248.134 - - [09/Jun/2002:10:15:56 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:56 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:57 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:15:58 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
203.218.187.187 - - [09/Jun/2002:10:17:29 -0600] "GET /chem.html HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:30 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:30 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:31 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:31 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:32 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 304 0
203.198.24.2 - - [09/Jun/2002:10:17:31 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8817
203.218.187.187 - - [09/Jun/2002:10:17:32 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 304 0
203.218.187.187 - - [09/Jun/2002:10:17:32 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 304 0
203.198.24.4 - - [09/Jun/2002:10:17:33 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
203.198.24.1 - - [09/Jun/2002:10:17:33 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:27 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:10:24:28 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:10:24:29 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
64.39.31.110 - - [09/Jun/2002:11:34:47 -0600] "GET / HTTP/1.0" 200 4954
64.39.31.110 - - [09/Jun/2002:11:52:00 -0600] "GET / HTTP/1.0" 200 12229
24.242.248.134 - - [09/Jun/2002:11:58:51 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:51 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:51 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:51 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:51 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:52 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:11:58:53 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:11:58:53 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:11:58:53 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
208.18.51.138 - - [09/Jun/2002:12:06:00 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
208.18.51.138 - - [09/Jun/2002:12:06:03 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
208.18.51.138 - - [09/Jun/2002:12:06:04 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
208.18.51.138 - - [09/Jun/2002:12:05:57 -0600] "GET /engineer.html HTTP/1.1" 200 135585
24.242.248.134 - - [09/Jun/2002:12:32:12 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:13 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:12:32:14 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:12:32:15 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:12:32:15 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
198.81.26.77 - - [09/Jun/2002:12:37:25 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
198.81.26.72 - - [09/Jun/2002:12:37:27 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 304 0
198.81.26.73 - - [09/Jun/2002:12:37:27 -0600] "GET /logo.gif HTTP/1.0" 304 0
198.81.26.7 - - [09/Jun/2002:12:37:27 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 304 0
198.81.26.45 - - [09/Jun/2002:12:37:27 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8920
198.81.26.70 - - [09/Jun/2002:12:37:28 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
198.81.26.40 - - [09/Jun/2002:12:37:29 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
198.81.26.73 - - [09/Jun/2002:12:37:32 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
198.81.26.75 - - [09/Jun/2002:12:37:33 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
64.39.31.110 - - [09/Jun/2002:12:41:16 -0600] "GET / HTTP/1.0" 200 11500
198.81.26.40 - - [09/Jun/2002:12:44:52 -0600] "GET / HTTP/1.0" 200 11500
198.81.26.71 - - [09/Jun/2002:12:44:54 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
198.81.26.70 - - [09/Jun/2002:12:44:54 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
198.81.26.45 - - [09/Jun/2002:12:44:54 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
198.81.26.72 - - [09/Jun/2002:12:44:54 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
198.81.26.8 - - [09/Jun/2002:12:44:55 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
198.81.26.77 - - [09/Jun/2002:12:44:56 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
198.81.26.44 - - [09/Jun/2002:12:44:56 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
198.81.26.12 - - [09/Jun/2002:12:44:57 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
198.81.26.77 - - [09/Jun/2002:12:44:57 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1969
198.81.26.72 - - [09/Jun/2002:12:44:58 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2520
198.81.26.40 - - [09/Jun/2002:12:44:59 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2550
198.81.26.70 - - [09/Jun/2002:12:45:00 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
198.81.26.39 - - [09/Jun/2002:12:45:37 -0600] "GET /search.htm HTTP/1.0" 200 3427
198.81.26.9 - - [09/Jun/2002:12:45:38 -0600] "GET /_derived/search.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8733
198.81.16.173 - - [09/Jun/2002:12:46:47 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.16.173 - - [09/Jun/2002:12:47:00 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.16.173 - - [09/Jun/2002:12:47:10 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.16.173 - - [09/Jun/2002:12:47:23 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.16.173 - - [09/Jun/2002:12:47:36 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.16.173 - - [09/Jun/2002:12:47:48 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
198.81.26.71 - - [09/Jun/2002:12:47:58 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
198.81.26.6 - - [09/Jun/2002:12:48:07 -0600] "GET /links.htm HTTP/1.0" 200 8789
198.81.26.41 - - [09/Jun/2002:12:48:08 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2013
198.81.26.75 - - [09/Jun/2002:12:48:08 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1999
198.81.26.42 - - [09/Jun/2002:12:48:08 -0600] "GET /_derived/bioscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2541
198.81.26.8 - - [09/Jun/2002:12:48:08 -0600] "GET /_derived/links.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8766
198.81.26.38 - - [09/Jun/2002:12:48:09 -0600] "GET /_derived/engineer.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2528
198.81.26.75 - - [09/Jun/2002:12:48:11 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2022
198.81.26.42 - - [09/Jun/2002:12:48:11 -0600] "GET /_derived/genscien.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2549
198.81.26.71 - - [09/Jun/2002:12:48:12 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2031
198.81.26.41 - - [09/Jun/2002:12:48:14 -0600] "GET /_derived/botany.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2549
198.81.26.77 - - [09/Jun/2002:12:48:15 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2006
198.81.26.11 - - [09/Jun/2002:12:48:16 -0600] "GET /_derived/chem.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
198.81.26.14 - - [09/Jun/2002:12:48:16 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
198.81.26.46 - - [09/Jun/2002:12:48:17 -0600] "GET /_derived/sci-indx.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2550
198.81.26.44 - - [09/Jun/2002:12:48:18 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2515
198.81.26.14 - - [09/Jun/2002:12:48:19 -0600] "GET /_derived/space.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1983
198.81.26.10 - - [09/Jun/2002:12:48:19 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
198.81.26.12 - - [09/Jun/2002:12:48:20 -0600] "GET /_derived/geologic.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2534
198.81.26.77 - - [09/Jun/2002:12:48:21 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
198.81.26.46 - - [09/Jun/2002:12:48:22 -0600] "GET /_derived/biology.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
198.81.26.70 - - [09/Jun/2002:12:48:22 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1995
198.81.26.75 - - [09/Jun/2002:12:48:23 -0600] "GET /_derived/physics.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
198.81.26.10 - - [09/Jun/2002:12:48:24 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1994
198.81.26.76 - - [09/Jun/2002:12:48:25 -0600] "GET /_derived/techtran.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2538
198.81.26.6 - - [09/Jun/2002:12:48:25 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1983
198.81.26.13 - - [09/Jun/2002:12:48:26 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1963
198.81.26.11 - - [09/Jun/2002:12:48:27 -0600] "GET /_derived/math.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2530
198.81.26.10 - - [09/Jun/2002:12:48:28 -0600] "GET /_derived/law.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2507
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:58 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:13:31:59 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:13:32:00 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:54 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:55 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:55 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:55 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:56 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:59 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:00:59 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:01:00 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:01:00 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:01:00 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:01:00 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:13 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:14 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:14 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:14 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:14 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:15 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:15 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:15 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:15 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:16 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:16 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:16 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:17 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.91.171.254 - - [09/Jun/2002:14:23:17 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.91.171.254 - - [09/Jun/2002:14:23:17 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.91.171.254 - - [09/Jun/2002:14:23:17 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:41 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:42 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:45:43 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:45:44 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:56:59 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:56:59 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:00 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:14:57:01 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
198.81.26.6 - - [09/Jun/2002:15:18:03 -0600] "GET /botany.html HTTP/1.0" 200 76737
198.81.26.76 - - [09/Jun/2002:15:18:07 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8890
198.81.26.73 - - [09/Jun/2002:15:18:15 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
198.81.26.11 - - [09/Jun/2002:15:18:15 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
198.81.26.9 - - [09/Jun/2002:15:18:15 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:02 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:15:40:03 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:40:04 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather HTTP/1.1" 301 319
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/ HTTP/1.1" 200 5892
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/index.gif HTTP/1.1" 200 14646
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/summary.gif HTTP/1.1" 200 9848
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/dailyhighlowbaroetc.gif HTTP/1.1" 200 14866
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/trends.gif HTTP/1.1" 200 8649
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/dirplot.gif HTTP/1.1" 200 5935
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/energy.gif HTTP/1.1" 200 9817
24.242.177.226 - - [09/Jun/2002:15:42:49 -0600] "GET /weather/sunmoonimage.jpg HTTP/1.1" 200 40582
24.242.248.134 - - [09/Jun/2002:15:42:49 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:49 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:50 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:15:42:51 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/ HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/summary.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/index.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/dailyhighlowbaroetc.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/trends.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/energy.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/dirplot.gif HTTP/1.1" 304 0
24.242.177.226 - - [09/Jun/2002:15:43:22 -0600] "GET /weather/sunmoonimage.jpg HTTP/1.1" 304 0
205.188.209.43 - - [09/Jun/2002:15:53:31 -0600] "GET /products.htm HTTP/1.0" 200 11669
205.188.208.103 - - [09/Jun/2002:15:53:34 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
205.188.208.166 - - [09/Jun/2002:15:53:35 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
205.188.208.167 - - [09/Jun/2002:15:53:35 -0600] "GET /images/sparclogo.gif HTTP/1.0" 200 13210
205.188.209.101 - - [09/Jun/2002:15:53:37 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
205.188.209.13 - - [09/Jun/2002:15:53:37 -0600] "GET /_derived/tens.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1983
205.188.209.137 - - [09/Jun/2002:15:53:38 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
205.188.209.172 - - [09/Jun/2002:15:53:41 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2006
205.188.209.169 - - [09/Jun/2002:15:53:41 -0600] "GET /_derived/gissoft.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2545
205.188.208.172 - - [09/Jun/2002:15:53:41 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2005
205.188.209.43 - - [09/Jun/2002:15:53:44 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
205.188.208.70 - - [09/Jun/2002:15:53:44 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1956
205.188.209.102 - - [09/Jun/2002:15:53:46 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2530
205.188.209.102 - - [09/Jun/2002:15:53:46 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2539
205.188.209.102 - - [09/Jun/2002:15:53:46 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2496
205.188.209.43 - - [09/Jun/2002:15:53:46 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2013
205.188.209.102 - - [09/Jun/2002:15:53:49 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2543
205.188.209.102 - - [09/Jun/2002:15:53:49 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2563
205.188.209.43 - - [09/Jun/2002:15:53:49 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2050
205.188.208.134 - - [09/Jun/2002:15:53:49 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
205.188.209.70 - - [09/Jun/2002:15:53:52 -0600] "GET /images/tenspcb_small.JPG HTTP/1.0" 200 2241
205.188.209.170 - - [09/Jun/2002:15:53:52 -0600] "GET /images/tens4pcb_small.JPG HTTP/1.0" 200 1746
205.188.209.42 - - [09/Jun/2002:15:53:52 -0600] "GET /images/radmon1_small.JPG HTTP/1.0" 200 1701
205.188.209.11 - - [09/Jun/2002:15:54:00 -0600] "GET / HTTP/1.0" 200 12229
205.188.209.135 - - [09/Jun/2002:15:54:04 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
205.188.208.7 - - [09/Jun/2002:15:54:04 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
205.188.208.103 - - [09/Jun/2002:15:54:04 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
205.188.209.41 - - [09/Jun/2002:15:54:04 -0600] "GET /_derived/toc.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
205.188.208.75 - - [09/Jun/2002:15:54:07 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
205.188.209.72 - - [09/Jun/2002:15:54:07 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
205.188.208.103 - - [09/Jun/2002:15:54:07 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
205.188.208.136 - - [09/Jun/2002:15:54:07 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
205.188.208.165 - - [09/Jun/2002:15:54:10 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1996
205.188.209.171 - - [09/Jun/2002:15:54:10 -0600] "GET /_derived/feedback.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2531
205.188.208.169 - - [09/Jun/2002:15:54:10 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1989
205.188.209.109 - - [09/Jun/2002:15:54:10 -0600] "GET /_derived/services.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2518
205.188.209.172 - - [09/Jun/2002:15:54:32 -0600] "GET /tens.htm HTTP/1.0" 200 11469
205.188.208.103 - - [09/Jun/2002:15:54:35 -0600] "GET /_derived/home_cmp_blitz110_home.gif HTTP/1.0" 200 613
205.188.208.140 - - [09/Jun/2002:15:54:35 -0600] "GET /_derived/home_cmp_blitz110_home_a.gif HTTP/1.0" 200 683
205.188.209.78 - - [09/Jun/2002:15:54:36 -0600] "GET /_derived/up_cmp_blitz110_up.gif HTTP/1.0" 200 608
205.188.208.40 - - [09/Jun/2002:15:54:36 -0600] "GET /_derived/up_cmp_blitz110_up_a.gif HTTP/1.0" 200 676
205.188.208.106 - - [09/Jun/2002:15:54:38 -0600] "GET /_derived/next_cmp_blitz110_next.gif HTTP/1.0" 200 681
205.188.208.169 - - [09/Jun/2002:15:54:38 -0600] "GET /_derived/next_cmp_blitz110_next_a.gif HTTP/1.0" 200 689
205.188.208.107 - - [09/Jun/2002:15:54:38 -0600] "GET /images/tens2_small.jpg HTTP/1.0" 200 2001
205.188.208.138 - - [09/Jun/2002:15:54:38 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
205.188.208.136 - - [09/Jun/2002:15:55:28 -0600] "GET /images/undercon.gif HTTP/1.0" 200 293
66.196.65.18 - - [09/Jun/2002:15:59:24 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.196.65.18 - - [09/Jun/2002:15:59:24 -0600] "GET / HTTP/1.0" 200 12229
24.155.0.242 - - [09/Jun/2002:16:14:20 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.0" 200 2182
24.27.4.210 - - [09/Jun/2002:16:34:20 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:20 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:21 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.27.4.210 - - [09/Jun/2002:16:34:22 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /logo.gif HTTP/1.1" 200 4490
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8890
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
129.93.17.173 - - [09/Jun/2002:17:02:01 -0600] "GET /botany.html HTTP/1.1" 200 76737
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
129.93.17.173 - - [09/Jun/2002:17:02:02 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
129.93.17.173 - - [09/Jun/2002:17:02:03 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
129.93.17.173 - - [09/Jun/2002:17:02:03 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
129.93.17.173 - - [09/Jun/2002:17:02:03 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
129.93.17.173 - - [09/Jun/2002:17:02:03 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
129.93.17.173 - - [09/Jun/2002:17:02:03 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
66.28.250.175 - - [09/Jun/2002:17:04:18 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.175 - - [09/Jun/2002:17:04:18 -0600] "GET /?C=M&O=D HTTP/1.0" 200 439
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:55 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:17:05:56 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:05:57 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.196.73.69 - - [09/Jun/2002:17:10:01 -0600] "GET /journals.html HTTP/1.0" 200 8530
66.28.250.172 - - [09/Jun/2002:17:12:34 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.172 - - [09/Jun/2002:17:13:04 -0600] "GET /?C=D&O=D HTTP/1.0" 200 439
24.242.248.134 - - [09/Jun/2002:17:13:20 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:20 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:21 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:22 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:22 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:22 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:22 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:17:13:25 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.248.134 - - [09/Jun/2002:17:13:25 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.248.134 - - [09/Jun/2002:17:13:25 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
66.28.250.171 - - [09/Jun/2002:17:23:36 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.171 - - [09/Jun/2002:17:23:36 -0600] "GET /?C=S&O=D HTTP/1.0" 200 439
66.28.250.173 - - [09/Jun/2002:17:25:35 -0600] "GET /robots.txt HTTP/1.0" 404 851
66.28.250.173 - - [09/Jun/2002:17:25:36 -0600] "GET /?C=N&O=A HTTP/1.0" 200 439
66.45.102.144 - - [09/Jun/2002:17:39:50 -0600] "GET /chem.html HTTP/1.0" 200 303854
205.188.209.109 - - [09/Jun/2002:17:45:13 -0600] "GET /chem.html HTTP/1.0" 200 303854
205.188.209.135 - - [09/Jun/2002:17:45:20 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8817
205.188.208.140 - - [09/Jun/2002:17:45:24 -0600] "GET /logo.gif HTTP/1.0" 200 4490
205.188.209.82 - - [09/Jun/2002:17:45:24 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
205.188.208.140 - - [09/Jun/2002:17:45:28 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
205.188.208.138 - - [09/Jun/2002:17:45:28 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
205.188.209.165 - - [09/Jun/2002:17:45:28 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
205.188.209.38 - - [09/Jun/2002:17:45:30 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
205.188.209.48 - - [09/Jun/2002:17:45:34 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
205.188.208.167 - - [09/Jun/2002:17:45:34 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
205.188.208.171 - - [09/Jun/2002:17:45:36 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
205.188.208.169 - - [09/Jun/2002:17:45:36 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
24.242.106.16 - - [09/Jun/2002:18:00:48 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:49 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:49 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:49 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:49 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:50 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:50 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:50 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:51 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:51 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:51 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:51 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:52 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:18:00:52 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:18:00:52 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:18:00:52 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:02 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:02 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:02 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:02 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:02 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:03 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:03 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:03 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:03 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:03 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:06 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:06 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:07 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.167.68.172 - - [09/Jun/2002:18:06:07 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.167.68.172 - - [09/Jun/2002:18:06:07 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.167.68.172 - - [09/Jun/2002:18:06:07 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:43 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:44 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:44 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:45 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:46 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:47 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:48 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:49 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:50 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:51 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:52 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:53 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:53 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.130.152 - - [09/Jun/2002:18:07:55 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.86.130.152 - - [09/Jun/2002:18:07:55 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.86.130.152 - - [09/Jun/2002:18:07:56 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:15:58 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:00 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:01 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:02 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:04 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:06 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:07 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:09 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:11 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:13 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:15 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:16 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:18 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [09/Jun/2002:18:16:20 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [09/Jun/2002:18:16:22 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [09/Jun/2002:18:16:24 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
210.54.27.70 - - [09/Jun/2002:18:36:38 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.1" 200 5322
210.54.27.70 - - [09/Jun/2002:18:36:39 -0600] "GET /logo.gif HTTP/1.1" 200 4490
210.54.27.70 - - [09/Jun/2002:18:36:39 -0600] "GET /_derived/chem.html_cmp_blitz110_bnr.gif HTTP/1.1" 200 8817
210.54.27.70 - - [09/Jun/2002:18:36:40 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
210.54.27.70 - - [09/Jun/2002:18:36:40 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1976
210.54.27.70 - - [09/Jun/2002:18:36:40 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2523
210.54.27.70 - - [09/Jun/2002:18:36:41 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1958
210.54.27.70 - - [09/Jun/2002:18:36:41 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2504
210.54.27.70 - - [09/Jun/2002:18:36:41 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
210.54.27.70 - - [09/Jun/2002:18:36:42 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
210.54.27.70 - - [09/Jun/2002:18:36:44 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.1" 200 159
210.54.27.70 - - [09/Jun/2002:18:36:37 -0600] "GET /chem.html HTTP/1.1" 200 303854
210.54.27.70 - - [09/Jun/2002:18:36:46 -0600] "GET / HTTP/1.1" 200 11500
210.54.27.70 - - [09/Jun/2002:18:36:47 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
210.54.27.70 - - [09/Jun/2002:18:36:48 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1980
210.54.27.70 - - [09/Jun/2002:18:36:48 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.1" 200 2613
210.54.27.70 - - [09/Jun/2002:18:36:48 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2532
210.54.27.70 - - [09/Jun/2002:18:36:48 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
210.54.27.70 - - [09/Jun/2002:18:36:48 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1977
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1969
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2520
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2028
210.54.27.70 - - [09/Jun/2002:18:36:49 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2550
210.54.27.70 - - [09/Jun/2002:18:36:51 -0600] "GET /products.htm HTTP/1.1" 200 11401
210.54.27.70 - - [09/Jun/2002:18:36:52 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1966
210.54.27.70 - - [09/Jun/2002:18:36:52 -0600] "GET /_derived/pr03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2516
210.54.27.70 - - [09/Jun/2002:18:36:52 -0600] "GET /_derived/products.htm_cmp_blitz110_bnr.gif HTTP/1.1" 200 8781
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2018
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/pr02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2538
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1983
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/pr01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1998
210.54.27.70 - - [09/Jun/2002:18:36:53 -0600] "GET /_derived/prod01.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2530
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2005
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod02.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2536
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 2000
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod03.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2531
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1992
210.54.27.70 - - [09/Jun/2002:18:36:54 -0600] "GET /_derived/prod04.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2541
210.54.27.70 - - [09/Jun/2002:18:36:55 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn.gif HTTP/1.1" 200 1996
210.54.27.70 - - [09/Jun/2002:18:36:55 -0600] "GET /_derived/prod05.htm_cmp_blitz110_hbtn_a.gif HTTP/1.1" 200 2535
210.54.27.70 - - [09/Jun/2002:18:37:20 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.1" 404 1001
210.54.27.70 - - [09/Jun/2002:18:37:28 -0600] "GET /chem.html HTTP/1.1" 200 303854
24.243.12.248 - - [09/Jun/2002:19:16:03 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:04 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:04 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:04 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:04 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:05 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:06 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:07 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:08 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:09 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:10 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:11 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:12 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.243.12.248 - - [09/Jun/2002:19:16:13 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.243.12.248 - - [09/Jun/2002:19:16:14 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.243.12.248 - - [09/Jun/2002:19:16:14 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:20 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:21 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:23 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:24 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:25 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:26 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:28 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:29 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:30 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:31 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:32 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:34 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:35 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:20:01:36 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:20:01:37 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:01:39 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:48 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:49 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:50 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:52 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:53 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:54 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:55 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:57 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:58 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:51:59 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:52:01 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:52:02 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:52:03 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:20:52:04 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:20:52:05 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:20:52:06 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:35 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:35 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:35 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:36 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:36 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:36 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:37 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:37 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:37 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:37 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:38 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:38 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:38 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:21:37:38 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:21:37:39 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:21:37:39 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:43 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:43 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:44 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:01:45 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:01:46 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:01:46 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:27 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:27 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:27 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:28 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:28 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:28 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:31 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:32 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:05:33 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:05:33 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:05:33 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:13 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:14 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:14 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:15 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:15 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:16 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:16 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:17 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:17 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:18 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:18 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:18 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:18 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:23:19 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.106.16 - - [09/Jun/2002:22:23:19 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.106.16 - - [09/Jun/2002:22:23:19 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
4.47.118.230 - - [09/Jun/2002:22:53:52 -0600] "GET /sail.html HTTP/1.1" 200 30077
24.150.51.32 - - [09/Jun/2002:23:13:40 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:43 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:46 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:48 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:51 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:54 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:13:57 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:00 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:03 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:06 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:11 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:13 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:16 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.150.51.32 - - [09/Jun/2002:23:14:17 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.150.51.32 - - [09/Jun/2002:23:14:18 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.150.51.32 - - [09/Jun/2002:23:14:20 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
217.222.246.82 - - [10/Jun/2002:00:27:03 -0600] "GET /default.ida?NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 400 339
216.231.10.197 - - [10/Jun/2002:00:29:26 -0600] "GET /serv01.htm';return%20true%22%20onMouseOut=%22status=' HTTP/1.0" 404 851
24.242.108.134 - - [10/Jun/2002:00:36:12 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:13 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:14 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:15 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:16 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:17 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:18 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:19 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:20 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:21 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:22 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:23 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:24 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:00:36:24 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:00:36:25 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:00:36:26 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
129.123.232.83 - - [10/Jun/2002:01:19:37 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
129.123.232.83 - - [10/Jun/2002:01:19:37 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.1" 200 1801
129.123.232.83 - - [10/Jun/2002:01:19:37 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.1" 200 212
129.123.232.83 - - [10/Jun/2002:01:19:36 -0600] "GET /engineer.html HTTP/1.1" 200 135585
66.196.73.67 - - [10/Jun/2002:01:29:42 -0600] "GET /states.html HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:28 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:30 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:32 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:35 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:37 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:40 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:42 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:44 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:46 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:49 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:51 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:53 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:03:56 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:02:03:58 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:02:04:00 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:02:04:02 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:42 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:45 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:47 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:49 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:51 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:53 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:55 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:05:58 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:00 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:03 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:05 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:07 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:10 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:03:06:12 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:03:06:15 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:03:06:17 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:27 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:28 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:29 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:29 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:31 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:31 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:32 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:32 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:32 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:33 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:33 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:33 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:34 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.179.170 - - [10/Jun/2002:03:21:35 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.179.170 - - [10/Jun/2002:03:21:35 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.179.170 - - [10/Jun/2002:03:21:37 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
131.114.74.121 - - [10/Jun/2002:04:42:39 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
131.114.74.121 - - [10/Jun/2002:04:42:39 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
131.114.74.121 - - [10/Jun/2002:04:42:42 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
131.114.74.121 - - [10/Jun/2002:04:42:38 -0600] "GET /engineer.html HTTP/1.0" 200 135585
24.242.108.134 - - [10/Jun/2002:05:43:47 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:47 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:48 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:48 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:49 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:49 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:49 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:50 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:50 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:51 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:51 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:52 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:52 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:05:43:52 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:05:43:53 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:05:43:53 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
4.64.204.64 - - [10/Jun/2002:06:09:45 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
4.64.204.64 - - [10/Jun/2002:06:09:45 -0600] "GET /logo.gif HTTP/1.0" 200 4490
4.64.204.64 - - [10/Jun/2002:06:09:45 -0600] "GET /_derived/botany.html_cmp_blitz110_bnr.gif HTTP/1.0" 200 8890
4.64.204.64 - - [10/Jun/2002:06:09:45 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_themes/blitz/btzbul2a.gif HTTP/1.0" 200 212
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
4.64.204.64 - - [10/Jun/2002:06:09:46 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
4.64.204.64 - - [10/Jun/2002:06:09:47 -0600] "GET /_themes/blitz/btzbul3a.gif HTTP/1.0" 200 159
4.64.204.64 - - [10/Jun/2002:06:09:47 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
4.64.204.64 - - [10/Jun/2002:06:09:44 -0600] "GET /botany.html HTTP/1.0" 200 76737
4.64.204.64 - - [10/Jun/2002:06:10:30 -0600] "GET / HTTP/1.0" 200 11500
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 443
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
4.64.204.64 - - [10/Jun/2002:06:10:31 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2520
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1969
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
4.64.204.64 - - [10/Jun/2002:06:10:32 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2550
4.64.204.64 - - [10/Jun/2002:06:10:35 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
24.242.108.134 - - [10/Jun/2002:07:07:12 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:13 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:15 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:16 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:18 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:19 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:21 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:22 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:24 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:25 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:27 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:28 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:30 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:07:07:32 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.108.134 - - [10/Jun/2002:07:07:33 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.108.134 - - [10/Jun/2002:07:07:35 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
212.205.253.163 - - [10/Jun/2002:07:22:43 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.1" 200 5658
212.205.253.163 - - [10/Jun/2002:07:22:41 -0600] "GET /engineer.html HTTP/1.1" 200 135585
24.155.45.67 - - [10/Jun/2002:07:46:52 -0600] "GET /llano HTTP/1.1" 301 315
24.155.45.67 - - [10/Jun/2002:07:46:52 -0600] "GET /llano/ HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:52 -0600] "GET /llano/_themes/travel/tratilea.jpg HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:52 -0600] "GET /llano/images/compass.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_p.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/home_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/lease_rules.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:53 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/cabin_procs.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/pictures.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/links.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/members.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/hunts.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/ext1017_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_derived/index.htm_cmp_travel010_bnr.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:54 -0600] "GET /llano/_themes/travel/trabul1a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:55 -0600] "GET /llano/_themes/travel/trahsepa.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:59 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:59 -0600] "GET /llano/_derived/calendar.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:46:59 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn_a.gif HTTP/1.1" 304 0
24.155.45.67 - - [10/Jun/2002:07:47:00 -0600] "GET /llano/_derived/news.htm_cmp_travel010_hbtn.gif HTTP/1.1" 304 0
207.140.199.20 - - [10/Jun/2002:08:15:47 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
207.140.199.20 - - [10/Jun/2002:08:15:47 -0600] "GET /_themes/blitz/btzbul1a.gif HTTP/1.0" 200 1801
207.140.199.20 - - [10/Jun/2002:08:15:47 -0600] "GET /engineer.html HTTP/1.0" 200 135585
24.153.180.186 - - [10/Jun/2002:08:19:25 -0600] "GET /abatt03 HTTP/1.1" 301 319
24.153.180.186 - - [10/Jun/2002:08:19:26 -0600] "GET /abatt03/ HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:26 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:28 -0600] "GET /abatt03/_derived/index.html_cmp_strtedge010_bnr.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:34 -0600] "GET /abatt03/photo.htm HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:34 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:35 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:36 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:37 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:38 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:39 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:40 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:41 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:42 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:42 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:19:42 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:20:03 -0600] "GET /abatt03/images/IMG_1695.JPG HTTP/1.1" 200 1774733
24.153.180.186 - - [10/Jun/2002:08:44:17 -0600] "GET /abatt03/images/IMG_1695.JPG HTTP/1.1" 304 0
24.242.15.175 - - [10/Jun/2002:08:44:56 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:44:57 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:44:57 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:44:58 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:44:58 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:44:59 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:00 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:00 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:01 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:02 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:02 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:03 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:04 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:08:45:04 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:08:45:05 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:45:06 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.153.180.186 - - [10/Jun/2002:08:49:07 -0600] "GET /abatt03/photo.htm HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:07 -0600] "GET /abatt03/_themes/strtedge/strbkgde.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/_derived/photo.htm_cmp_strtedge010_bnr.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/_derived/up_cmp_strtedge010_hbtn_a.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/_themes/strtedge/strrulee.gif HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1624_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1625_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1626_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1627_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1628_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1629_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1631_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1632_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1633_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1634_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1635_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1636_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1637_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1638_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1639_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1640_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1641_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1643_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1644_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1645_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1646_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:08 -0600] "GET /abatt03/IMG_1647_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1648_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1649_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1650_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1651_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1652_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1653_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1654_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1655_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1656_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1657_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1658_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1659_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1660_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:09 -0600] "GET /abatt03/IMG_1661_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1662_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1663_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1665_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1666_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1664_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1667_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1668_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1669_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1670_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1671_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1672_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1673_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1674_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1675_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1678_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1676_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1680_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1679_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1681_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1682_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1683_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1685_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1684_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1686_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1687_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:10 -0600] "GET /abatt03/IMG_1688_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1690_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1689_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1692_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1691_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1693_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1694_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1695_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1696_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1697_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1698_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1699_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1700_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/IMG_1630_small.JPG HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1701_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1702_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1703_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1704_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1705_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1706_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1707_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1708_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1709_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1710_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1711_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1712_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1713_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1714_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1715_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1716_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1717_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1718_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1719_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1720_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1721_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1722_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1723_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1725_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1724_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1726_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1727_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1728_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1729_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1730_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:11 -0600] "GET /abatt03/img_1731_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1732_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1733_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1734_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1735_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1736_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1737_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1738_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1739_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1740_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1741_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1742_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1743_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1744_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1745_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1746_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1747_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1748_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1749_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:12 -0600] "GET /abatt03/img_1750_small.jpg HTTP/1.1" 304 0
24.153.180.186 - - [10/Jun/2002:08:49:31 -0600] "GET /abatt03/images/img_1707.jpg HTTP/1.1" 304 0
24.29.102.19 - - [10/Jun/2002:08:53:55 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /pr02.htm HTTP/1.0" 200 8107
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /logo.gif HTTP/1.0" 200 4490
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /_derived/pr02.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8920
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /_derived/up_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1958
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /_themes/blitz/btzhsepa.gif HTTP/1.0" 200 5658
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /_derived/home_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1976
155.94.62.220 - - [10/Jun/2002:08:55:37 -0600] "GET /_derived/home_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2523
155.94.62.220 - - [10/Jun/2002:08:55:37 -0600] "GET /_derived/up_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2504
155.94.62.220 - - [10/Jun/2002:08:55:36 -0600] "GET /_themes/blitz/btztilea.gif HTTP/1.0" 200 5322
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 855
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET / HTTP/1.0" 200 11500
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1980
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/home_cmp_blitz110_hbtn_p.gif HTTP/1.0" 200 2613
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1992
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1977
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn.gif HTTP/1.0" 200 1969
155.94.62.220 - - [10/Jun/2002:08:55:44 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn.gif HTTP/1.0" 200 2028
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/news.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2532
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/products.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2536
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/search.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2516
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/links.htm_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2520
155.94.62.220 - - [10/Jun/2002:08:55:45 -0600] "GET /_derived/journals.html_cmp_blitz110_hbtn_a.gif HTTP/1.0" 200 2550
155.94.62.220 - - [10/Jun/2002:08:55:49 -0600] "GET /search.htm HTTP/1.0" 200 3427
155.94.62.220 - - [10/Jun/2002:08:55:50 -0600] "GET /_derived/search.htm_cmp_blitz110_bnr.gif HTTP/1.0" 200 8733
155.94.62.220 - - [10/Jun/2002:08:56:04 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
155.94.62.220 - - [10/Jun/2002:08:56:21 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
155.94.62.220 - - [10/Jun/2002:08:56:47 -0600] "POST /_vti_bin/shtml.exe/search.htm HTTP/1.0" 403 837
155.94.62.220 - - [10/Jun/2002:08:56:59 -0600] "GET /_derived/Default.htm_cmp_blitz110_bnr.gif HTTP/1.0" 404 1001
24.242.15.175 - - [10/Jun/2002:08:59:58 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:08:59:59 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:00 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:01 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:02 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:03 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:04 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:05 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:06 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:07 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:08 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:09 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:11 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:09:00:11 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:09:00:12 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:00:13 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:39 -0600] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:40 -0600] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:41 -0600] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:41 -0600] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:42 -0600] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:44 -0600] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:44 -0600] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:45 -0600] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:46 -0600] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:46 -0600] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:47 -0600] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:48 -0600] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:49 -0600] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:09:03:50 -0600] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 782
24.242.15.175 - - [10/Jun/2002:09:03:51 -0600] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855
24.242.15.175 - - [10/Jun/2002:09:03:51 -0600] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 855


ERROR.LOG
[Thu Jun 06 00:07:20 2002] [error] [client 216.239.46.39] File does not exist: C:/webserver/webs/technalithics/cp-dec95.html
[Thu Jun 06 00:12:21 2002] [error] [client 216.239.46.36] File does not exist: C:/webserver/webs/technalithics/VL
[Thu Jun 06 00:30:10 2002] [error] [client 216.239.46.76] File does not exist: C:/webserver/webs/technalithics/cp-jan96.html
[Thu Jun 06 00:53:14 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 00:53:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 00:53:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 00:53:43 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 00:53:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 00:54:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 00:54:11 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 00:54:21 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 00:54:31 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 00:54:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 01:00:37 2002] [error] [client 216.239.46.82] File does not exist: C:/webserver/webs/technalithics/cp-feb96.html
[Thu Jun 06 02:17:02 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:14 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 02:17:14 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 02:17:14 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 02:17:15 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:15 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 02:17:16 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 02:17:16 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 02:17:16 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:17 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:17 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:19 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:19 2002] [error] [client 24.76.128.92] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 02:17:33 2002] [error] [client 216.239.46.22] File does not exist: C:/webserver/webs/technalithics/oher_top.html
[Thu Jun 06 03:07:25 2002] [error] [client 64.140.48.30] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Thu Jun 06 03:07:26 2002] [error] [client 216.231.10.197] File does not exist: C:/webserver/webs/sparctech/serv01.htm';return true" onMouseOut="status=', referer: 
[Thu Jun 06 03:21:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:22:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 03:22:10 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 03:22:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 03:22:29 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:22:38 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 03:22:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 03:22:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 03:23:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:23:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:23:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:23:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 03:24:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:34 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:38 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 04:07:38 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 04:07:39 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 04:07:40 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:40 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 04:07:41 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 04:07:42 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 04:07:42 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:43 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:44 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:46 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:07:47 2002] [error] [client 24.118.227.149] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:37:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:37:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 04:37:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 04:38:05 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 04:38:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:38:25 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 04:38:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 04:38:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 04:38:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:39:13 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:39:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:39:52 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 04:40:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 05:03:18 2002] [error] [client 128.139.197.33] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 06:20:55 2002] [error] [client 213.215.162.242] File does not exist: C:/webserver/webs/technalithics/favicon.ico
[Thu Jun 06 07:14:17 2002] [error] [client 66.28.250.175] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Thu Jun 06 07:15:40 2002] [error] [client 66.28.250.174] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Thu Jun 06 07:15:45 2002] [error] [client 66.28.250.174] File does not exist: C:/webserver/webs/sparctech/index.htm
[Thu Jun 06 07:16:45 2002] [error] [client 66.28.250.171] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Thu Jun 06 07:20:53 2002] [error] [client 66.28.250.172] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Thu Jun 06 07:20:53 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Thu Jun 06 07:40:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:40:58 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 07:41:07 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 07:41:17 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 07:41:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:41:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 07:41:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 07:41:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 07:41:58 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:42:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:42:24 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:42:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 07:42:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:05:05 2002] [error] [client 67.38.225.34] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/pr02.htm
[Thu Jun 06 09:49:11 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:49:25 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 09:49:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 09:49:41 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 09:49:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:49:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 09:50:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 09:50:17 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 09:50:27 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:50:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:50:56 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:51:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:51:29 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:57:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:57:08 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 09:57:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 09:57:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 09:57:36 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:57:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 09:57:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 09:58:05 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 09:58:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:58:32 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:58:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:59:08 2002] [error] [client 203.218.210.148] File does not exist: C:/webserver/webs/technalithics/favicon.ico
[Thu Jun 06 09:59:13 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 09:59:21 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:00:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:00:57 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 10:01:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 10:01:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 10:01:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:01:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 10:01:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 10:01:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 10:02:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:02:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:02:34 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:02:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:03:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:17:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:18:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 10:18:20 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 10:18:28 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 10:18:39 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:18:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 10:19:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 10:19:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 10:19:21 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:19:39 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:19:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:20:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 10:20:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 11:04:48 2002] [error] [client 129.107.26.75] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 12:02:04 2002] [error] [client 64.65.163.4] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 12:06:33 2002] [error] [client 64.65.163.4] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 12:35:13 2002] [error] [client 64.65.163.4] File does not exist: C:/webserver/webs/technalithics/favicon.ico
[Thu Jun 06 12:55:28 2002] [error] [client 64.65.163.4] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 13:20:36 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/bestpractices/agora, referer: http://www.onewirenet.com/bestpractices/
[Thu Jun 06 13:27:47 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/bestpractices/agora
[Thu Jun 06 13:27:55 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/bestpractices/agora
[Thu Jun 06 13:27:59 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/bestpractices/agora
[Thu Jun 06 13:36:08 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 13:36:08 2002] [notice] Child 452: Exit event signaled. Child process is ending.
[Thu Jun 06 13:36:09 2002] [notice] Child 452: Released the start mutex
[Thu Jun 06 13:36:10 2002] [notice] Child 452: Waiting for 250 worker threads to exit.
[Thu Jun 06 13:36:10 2002] [notice] Child 452: All worker threads have exited.
[Thu Jun 06 13:36:10 2002] [notice] Child 452: Child process is exiting
[Thu Jun 06 13:36:10 2002] [notice] Parent: Child process exited successfully.
[Thu Jun 06 15:25:16 2002] [notice] Parent: Created child process 1968
[Thu Jun 06 15:25:17 2002] [notice] Child 1968: Child process is running
[Thu Jun 06 15:25:17 2002] [notice] Child 1968: Acquired the start mutex.
[Thu Jun 06 15:25:17 2002] [notice] Child 1968: Starting 250 worker threads.
[Thu Jun 06 15:26:29 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:26:37 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/favicon.ico
[Thu Jun 06 15:26:48 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:26:58 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:27:05 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/sparctech/favicon.ico
[Thu Jun 06 15:41:10 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 15:41:11 2002] [notice] Child 1968: Exit event signaled. Child process is ending.
[Thu Jun 06 15:41:12 2002] [notice] Child 1968: Released the start mutex
[Thu Jun 06 15:41:13 2002] [notice] Child 1968: Waiting for 250 worker threads to exit.
[Thu Jun 06 15:41:41 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 15:42:02 2002] [notice] Parent: Created child process 1580
[Thu Jun 06 15:42:03 2002] [notice] Child 1580: Child process is running
[Thu Jun 06 15:42:03 2002] [notice] Child 1580: Acquired the start mutex.
[Thu Jun 06 15:42:03 2002] [notice] Child 1580: Starting 250 worker threads.
[Thu Jun 06 15:43:16 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:43:36 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 15:43:36 2002] [notice] Child 1580: Exit event signaled. Child process is ending.
[Thu Jun 06 15:43:37 2002] [notice] Child 1580: Released the start mutex
[Thu Jun 06 15:43:38 2002] [notice] Child 1580: Waiting for 250 worker threads to exit.
[Thu Jun 06 15:44:06 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 15:44:35 2002] [notice] Parent: Created child process 2016
[Thu Jun 06 15:44:36 2002] [notice] Child 2016: Child process is running
[Thu Jun 06 15:44:36 2002] [notice] Child 2016: Acquired the start mutex.
[Thu Jun 06 15:44:37 2002] [notice] Child 2016: Starting 250 worker threads.
[Thu Jun 06 15:44:40 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:46:14 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 15:46:14 2002] [notice] Child 2016: Exit event signaled. Child process is ending.
[Thu Jun 06 15:46:15 2002] [notice] Child 2016: Released the start mutex
[Thu Jun 06 15:46:16 2002] [notice] Child 2016: Waiting for 250 worker threads to exit.
[Thu Jun 06 15:46:16 2002] [notice] Child 2016: All worker threads have exited.
[Thu Jun 06 15:46:16 2002] [notice] Child 2016: Child process is exiting
[Thu Jun 06 15:46:16 2002] [notice] Parent: Child process exited successfully.
[Thu Jun 06 15:46:19 2002] [notice] Parent: Created child process 1988
[Thu Jun 06 15:46:20 2002] [notice] Child 1988: Child process is running
[Thu Jun 06 15:46:20 2002] [notice] Child 1988: Acquired the start mutex.
[Thu Jun 06 15:46:20 2002] [notice] Child 1988: Starting 250 worker threads.
[Thu Jun 06 15:46:25 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/agora
[Thu Jun 06 15:55:04 2002] [error] [client 204.64.237.242] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 15:55:55 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 15:55:55 2002] [notice] Child 1988: Exit event signaled. Child process is ending.
[Thu Jun 06 15:55:56 2002] [notice] Child 1988: Released the start mutex
[Thu Jun 06 15:55:57 2002] [notice] Child 1988: Waiting for 250 worker threads to exit.
[Thu Jun 06 15:56:25 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 15:56:29 2002] [notice] Parent: Created child process 2356
[Thu Jun 06 15:56:30 2002] [notice] Child 2356: Child process is running
[Thu Jun 06 15:56:30 2002] [notice] Child 2356: Acquired the start mutex.
[Thu Jun 06 15:56:30 2002] [notice] Child 2356: Starting 250 worker threads.
[Thu Jun 06 15:57:29 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 15:57:29 2002] [notice] Child 2356: Exit event signaled. Child process is ending.
[Thu Jun 06 15:57:30 2002] [notice] Child 2356: Released the start mutex
[Thu Jun 06 15:57:31 2002] [notice] Child 2356: Waiting for 250 worker threads to exit.
[Thu Jun 06 15:57:59 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 15:58:05 2002] [notice] Parent: Created child process 376
[Thu Jun 06 15:58:06 2002] [notice] Child 376: Child process is running
[Thu Jun 06 15:58:06 2002] [notice] Child 376: Acquired the start mutex.
[Thu Jun 06 15:58:06 2002] [notice] Child 376: Starting 250 worker threads.
[Thu Jun 06 16:45:29 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:45:38 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 16:45:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 16:45:57 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 16:46:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:46:17 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 16:46:25 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 16:46:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 16:46:43 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:47:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:47:10 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:47:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 16:47:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 17:04:42 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Thu Jun 06 17:21:15 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/onewirenet/test.php
[Thu Jun 06 17:23:52 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 17:23:52 2002] [notice] Child 376: Exit event signaled. Child process is ending.
[Thu Jun 06 17:23:53 2002] [notice] Child 376: Released the start mutex
[Thu Jun 06 17:23:54 2002] [notice] Child 376: Waiting for 250 worker threads to exit.
[Thu Jun 06 17:24:22 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 17:24:30 2002] [notice] Parent: Created child process 1580
[Thu Jun 06 17:24:30 2002] [notice] Child 1580: Child process is running
[Thu Jun 06 17:24:31 2002] [notice] Child 1580: Acquired the start mutex.
[Thu Jun 06 17:24:31 2002] [notice] Child 1580: Starting 250 worker threads.
[Thu Jun 06 17:25:07 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Jun 06 17:25:07 2002] [notice] Child 1580: Exit event signaled. Child process is ending.
[Thu Jun 06 17:25:08 2002] [notice] Child 1580: Released the start mutex
[Thu Jun 06 17:25:09 2002] [notice] Child 1580: Waiting for 250 worker threads to exit.
[Thu Jun 06 17:25:37 2002] [notice] Parent: Forcing termination of child process 260 
[Thu Jun 06 17:25:42 2002] [notice] Parent: Created child process 604
[Thu Jun 06 17:25:44 2002] [notice] Child 604: Child process is running
[Thu Jun 06 17:25:44 2002] [notice] Child 604: Acquired the start mutex.
[Thu Jun 06 17:25:44 2002] [notice] Child 604: Starting 250 worker threads.
[Thu Jun 06 17:25:54 2002] [error] [client 24.242.177.226] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Thu Jun 06 17:26:04 2002] [error] [client 24.242.177.226] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Thu Jun 06 17:26:08 2002] [error] [client 24.242.177.226] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Thu Jun 06 17:26:09 2002] [error] [client 24.242.177.226] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Thu Jun 06 18:38:12 2002] [error] [client 65.170.147.251] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 18:38:38 2002] [error] [client 65.170.147.251] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 18:38:47 2002] [error] [client 65.170.147.251] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 18:39:01 2002] [error] [client 65.170.147.251] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Thu Jun 06 18:39:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:39:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 18:39:57 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 18:40:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 18:40:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:40:24 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 18:40:34 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 18:40:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 18:40:52 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:41:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:41:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:41:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:41:56 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:53:38 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:53:44 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 18:53:47 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 18:54:09 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 18:54:09 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:54:12 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 18:54:13 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 18:54:22 2002] [error] [client 24.150.210.66] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 18:57:10 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:57:16 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 18:57:40 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 18:57:43 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 18:57:48 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:57:51 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 18:57:53 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 18:57:56 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 18:57:59 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:58:04 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 18:58:07 2002] [error] [client 24.29.141.180] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:29:32 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:29:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 19:29:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 19:30:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 19:30:10 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:30:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 19:30:28 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 19:30:38 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 19:30:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:31:04 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:31:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:31:42 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:31:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:29 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:33 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 19:42:34 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 19:42:35 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 19:42:37 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:38 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 19:42:39 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 19:42:40 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 19:42:41 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:42 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:44 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:47 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:42:48 2002] [error] [client 24.65.143.227] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:05 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:11 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 19:48:13 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 19:48:15 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 19:48:17 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:19 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Thu Jun 06 19:48:22 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Thu Jun 06 19:48:24 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/msadc
[Thu Jun 06 19:48:27 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:32 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:35 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:41 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 19:48:44 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 20:03:01 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 20:03:03 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 20:03:06 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Thu Jun 06 20:03:09 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Thu Jun 06 20:03:12 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 20:16:34 2002] [error] [client 216.200.130.207] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Thu Jun 06 21:03:20 2002] [error] [client 64.140.48.30] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Thu Jun 06 22:37:42 2002] [error] [client 24.24.31.42] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 22:40:10 2002] [error] [client 64.12.96.235] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Thu Jun 06 22:40:44 2002] [error] [client 64.12.105.47] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Thu Jun 06 23:35:22 2002] [error] [client 24.174.119.60] File does not exist: C:/webserver/webs/technalithics/favicon.ico
[Thu Jun 06 23:36:06 2002] [error] [client 24.114.36.33] File does not exist: C:/webserver/webs/technalithics/scripts
[Thu Jun 06 23:36:12 2002] [error] [client 24.114.36.33] File does not exist: C:/webserver/webs/technalithics/MSADC
[Thu Jun 06 23:59:42 2002] [error] [client 216.239.46.148] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Thu Jun 06 23:59:45 2002] [error] [client 216.239.46.148] File does not exist: C:/webserver/webs/technalithics/botany.html'
[Fri Jun 07 00:13:44 2002] [error] [client 66.28.250.174] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 01:29:05 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:29:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 01:29:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 01:29:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 01:29:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:29:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 01:30:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 01:30:13 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 01:30:24 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:30:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:30:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:31:24 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 01:31:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 02:44:02 2002] [error] [client 66.196.65.16] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 04:21:30 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:21:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 04:21:42 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 04:21:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 04:21:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:21:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 04:22:01 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 04:22:07 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 04:22:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:22:27 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:22:34 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:22:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 04:23:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 09:03:15 2002] [error] [client 66.157.32.75] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Fri Jun 07 09:04:18 2002] [error] [client 168.47.4.7] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Fri Jun 07 09:17:23 2002] [error] [client 213.80.46.101] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Fri Jun 07 09:17:30 2002] [error] [client 213.80.46.101] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Fri Jun 07 09:17:34 2002] [error] [client 213.80.46.101] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Fri Jun 07 09:18:02 2002] [error] [client 213.80.46.101] client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /
[Fri Jun 07 09:18:40 2002] [error] [client 213.80.46.101] PHP Fatal error:  Unable to open c:/webserver/webs/test.php in Unknown on line 0
[Fri Jun 07 09:52:45 2002] [error] [client 212.113.19.150] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Fri Jun 07 10:00:27 2002] [error] [client 213.80.46.101] File does not exist: C:/webserver/webs/sparctech/server-status
[Fri Jun 07 10:04:55 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 10:04:55 2002] [notice] Child 604: Exit event signaled. Child process is ending.
[Fri Jun 07 10:04:56 2002] [notice] Child 604: Released the start mutex
[Fri Jun 07 10:04:57 2002] [notice] Child 604: Waiting for 250 worker threads to exit.
[Fri Jun 07 10:04:57 2002] [notice] Child 604: All worker threads have exited.
[Fri Jun 07 10:04:57 2002] [notice] Child 604: Child process is exiting
[Fri Jun 07 10:04:58 2002] [notice] Parent: Child process exited successfully.
[Fri Jun 07 10:05:33 2002] [notice] Parent: Created child process 2368
[Fri Jun 07 10:05:33 2002] [notice] Child 2368: Child process is running
[Fri Jun 07 10:05:34 2002] [notice] Child 2368: Acquired the start mutex.
[Fri Jun 07 10:05:34 2002] [notice] Child 2368: Starting 250 worker threads.
[Fri Jun 07 10:15:37 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/sparctech/test
[Fri Jun 07 10:15:58 2002] [error] [client 213.80.46.101] File does not exist: C:/webserver/webs/technalithics/test.php3
[Fri Jun 07 10:17:54 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 10:17:54 2002] [notice] Child 2368: Exit event signaled. Child process is ending.
[Fri Jun 07 10:17:55 2002] [notice] Child 2368: Released the start mutex
[Fri Jun 07 10:17:56 2002] [notice] Child 2368: Waiting for 250 worker threads to exit.
[Fri Jun 07 10:18:24 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 10:18:28 2002] [notice] Parent: Created child process 1580
[Fri Jun 07 10:18:28 2002] [notice] Child 1580: Child process is running
[Fri Jun 07 10:18:29 2002] [notice] Child 1580: Acquired the start mutex.
[Fri Jun 07 10:18:29 2002] [notice] Child 1580: Starting 250 worker threads.
[Fri Jun 07 10:20:56 2002] [error] [client 213.80.46.101] client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /
[Fri Jun 07 11:12:20 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 11:12:21 2002] [notice] Child 1580: Exit event signaled. Child process is ending.
[Fri Jun 07 11:12:22 2002] [notice] Child 1580: Released the start mutex
[Fri Jun 07 11:12:23 2002] [notice] Child 1580: Waiting for 250 worker threads to exit.
[Fri Jun 07 11:12:51 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 11:13:14 2002] [notice] Parent: Created child process 500
[Fri Jun 07 11:13:14 2002] [notice] Child 500: Child process is running
[Fri Jun 07 11:13:15 2002] [notice] Child 500: Acquired the start mutex.
[Fri Jun 07 11:13:15 2002] [notice] Child 500: Starting 250 worker threads.
[Fri Jun 07 11:14:11 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 11:14:11 2002] [notice] Child 500: Exit event signaled. Child process is ending.
[Fri Jun 07 11:14:12 2002] [notice] Child 500: Released the start mutex
[Fri Jun 07 11:14:13 2002] [notice] Child 500: Waiting for 250 worker threads to exit.
[Fri Jun 07 11:14:41 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 11:14:43 2002] [notice] Parent: Created child process 624
[Fri Jun 07 11:14:44 2002] [notice] Child 624: Child process is running
[Fri Jun 07 11:14:44 2002] [notice] Child 624: Acquired the start mutex.
[Fri Jun 07 11:14:44 2002] [notice] Child 624: Starting 250 worker threads.
[Fri Jun 07 11:17:14 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 11:17:14 2002] [notice] Child 624: Exit event signaled. Child process is ending.
[Fri Jun 07 11:17:15 2002] [notice] Child 624: Released the start mutex
[Fri Jun 07 11:17:16 2002] [notice] Child 624: Waiting for 250 worker threads to exit.
[Fri Jun 07 11:17:44 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 11:19:34 2002] [notice] Parent: Created child process 1580
[Fri Jun 07 11:19:35 2002] [notice] Child 1580: Child process is running
[Fri Jun 07 11:19:35 2002] [notice] Child 1580: Acquired the start mutex.
[Fri Jun 07 11:19:35 2002] [notice] Child 1580: Starting 250 worker threads.
[Fri Jun 07 11:24:24 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 11:24:24 2002] [notice] Child 1580: Exit event signaled. Child process is ending.
[Fri Jun 07 11:24:25 2002] [notice] Child 1580: Released the start mutex
[Fri Jun 07 11:24:26 2002] [notice] Child 1580: Waiting for 250 worker threads to exit.
[Fri Jun 07 11:24:54 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 11:24:57 2002] [notice] Parent: Created child process 1560
[Fri Jun 07 11:24:57 2002] [notice] Child 1560: Child process is running
[Fri Jun 07 11:24:58 2002] [notice] Child 1560: Acquired the start mutex.
[Fri Jun 07 11:24:58 2002] [notice] Child 1560: Starting 250 worker threads.
[Fri Jun 07 11:53:23 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 11:53:24 2002] [notice] Child 1560: Exit event signaled. Child process is ending.
[Fri Jun 07 11:53:25 2002] [notice] Child 1560: Released the start mutex
[Fri Jun 07 11:53:26 2002] [notice] Child 1560: Waiting for 250 worker threads to exit.
[Fri Jun 07 11:53:54 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 11:53:59 2002] [notice] Parent: Created child process 496
[Fri Jun 07 11:54:00 2002] [notice] Child 496: Child process is running
[Fri Jun 07 11:54:00 2002] [notice] Child 496: Acquired the start mutex.
[Fri Jun 07 11:54:01 2002] [notice] Child 496: Starting 250 worker threads.
[Fri Jun 07 12:16:08 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:16:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 12:16:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 12:16:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 12:16:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:16:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 12:16:30 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 12:16:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 12:16:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:16:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:16:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:17:04 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:17:08 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 12:28:46 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:28:46 2002] [notice] Child 496: Exit event signaled. Child process is ending.
[Fri Jun 07 12:28:48 2002] [notice] Child 496: Released the start mutex
[Fri Jun 07 12:28:49 2002] [notice] Child 496: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:29:16 2002] [notice] Parent: Forcing termination of child process 264 
[Fri Jun 07 12:29:22 2002] [notice] Parent: Created child process 1920
[Fri Jun 07 12:29:22 2002] [notice] Child 1920: Child process is running
[Fri Jun 07 12:29:23 2002] [notice] Child 1920: Acquired the start mutex.
[Fri Jun 07 12:29:23 2002] [notice] Child 1920: Starting 250 worker threads.
[Fri Jun 07 12:33:24 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:33:24 2002] [notice] Child 1920: Exit event signaled. Child process is ending.
[Fri Jun 07 12:33:25 2002] [notice] Child 1920: Released the start mutex
[Fri Jun 07 12:33:26 2002] [notice] Child 1920: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:33:54 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 12:34:18 2002] [notice] Parent: Created child process 1556
[Fri Jun 07 12:34:19 2002] [notice] Child 1556: Child process is running
[Fri Jun 07 12:34:19 2002] [notice] Child 1556: Acquired the start mutex.
[Fri Jun 07 12:34:19 2002] [notice] Child 1556: Starting 250 worker threads.
[Fri Jun 07 12:35:14 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:35:14 2002] [notice] Child 1556: Exit event signaled. Child process is ending.
[Fri Jun 07 12:35:15 2002] [notice] Child 1556: Released the start mutex
[Fri Jun 07 12:35:16 2002] [notice] Child 1556: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:35:16 2002] [notice] Child 1556: All worker threads have exited.
[Fri Jun 07 12:35:16 2002] [notice] Child 1556: Child process is exiting
[Fri Jun 07 12:35:16 2002] [notice] Parent: Child process exited successfully.
[Fri Jun 07 12:35:39 2002] [notice] Parent: Created child process 1972
[Fri Jun 07 12:35:40 2002] [notice] Child 1972: Child process is running
[Fri Jun 07 12:35:40 2002] [notice] Child 1972: Acquired the start mutex.
[Fri Jun 07 12:35:40 2002] [notice] Child 1972: Starting 250 worker threads.
[Fri Jun 07 12:37:47 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:37:47 2002] [notice] Child 1972: Exit event signaled. Child process is ending.
[Fri Jun 07 12:37:48 2002] [notice] Child 1972: Released the start mutex
[Fri Jun 07 12:37:49 2002] [notice] Child 1972: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:37:49 2002] [notice] Child 1972: All worker threads have exited.
[Fri Jun 07 12:37:50 2002] [notice] Child 1972: Child process is exiting
[Fri Jun 07 12:37:50 2002] [notice] Parent: Child process exited successfully.
[Fri Jun 07 12:37:53 2002] [notice] Parent: Created child process 1556
[Fri Jun 07 12:37:53 2002] [notice] Child 1556: Child process is running
[Fri Jun 07 12:37:54 2002] [notice] Child 1556: Acquired the start mutex.
[Fri Jun 07 12:37:54 2002] [notice] Child 1556: Starting 250 worker threads.
[Fri Jun 07 12:45:15 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:45:15 2002] [notice] Child 1556: Exit event signaled. Child process is ending.
[Fri Jun 07 12:45:16 2002] [notice] Child 1556: Released the start mutex
[Fri Jun 07 12:45:17 2002] [notice] Child 1556: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:45:45 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 12:45:58 2002] [notice] Parent: Created child process 1920
[Fri Jun 07 12:45:59 2002] [notice] Child 1920: Child process is running
[Fri Jun 07 12:45:59 2002] [notice] Child 1920: Acquired the start mutex.
[Fri Jun 07 12:45:59 2002] [notice] Child 1920: Starting 250 worker threads.
[Fri Jun 07 12:46:44 2002] [error] [client 24.242.177.226] File does not exist: C:/webserver/webs/sparctech/te.php
[Fri Jun 07 12:53:44 2002] [error] [client 213.112.249.132] File does not exist: C:/webserver/webs/sparctech/_vti_bin, referer: http://www.sparctech.com/search.htm
[Fri Jun 07 12:54:54 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 12:54:54 2002] [notice] Child 1920: Exit event signaled. Child process is ending.
[Fri Jun 07 12:54:55 2002] [notice] Child 1920: Released the start mutex
[Fri Jun 07 12:54:56 2002] [notice] Child 1920: Waiting for 250 worker threads to exit.
[Fri Jun 07 12:55:24 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 12:55:28 2002] [notice] Parent: Created child process 636
[Fri Jun 07 12:55:29 2002] [notice] Child 636: Child process is running
[Fri Jun 07 12:55:29 2002] [notice] Child 636: Acquired the start mutex.
[Fri Jun 07 12:55:29 2002] [notice] Child 636: Starting 250 worker threads.
[Fri Jun 07 13:00:01 2002] [error] [client 213.112.249.132] File does not exist: C:/webserver/webs/sparctech/test
[Fri Jun 07 13:06:33 2002] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Jun 07 13:06:33 2002] [notice] Child 636: Exit event signaled. Child process is ending.
[Fri Jun 07 13:06:34 2002] [notice] Child 636: Released the start mutex
[Fri Jun 07 13:06:35 2002] [notice] Child 636: Waiting for 250 worker threads to exit.
[Fri Jun 07 13:07:03 2002] [notice] Parent: Forcing termination of child process 260 
[Fri Jun 07 13:07:58 2002] [notice] Parent: Created child process 1912
[Fri Jun 07 13:07:58 2002] [notice] Child 1912: Child process is running
[Fri Jun 07 13:07:59 2002] [notice] Child 1912: Acquired the start mutex.
[Fri Jun 07 13:07:59 2002] [notice] Child 1912: Starting 250 worker threads.
[Fri Jun 07 13:29:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 13:29:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 13:29:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 13:29:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 13:29:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 13:29:30 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 13:29:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:29:58 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:46:01 2002] [error] [client 66.28.250.175] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 13:48:38 2002] [error] [client 66.28.250.174] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 13:51:10 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:10 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 13:51:10 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 13:51:11 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 13:51:11 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:12 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 13:51:12 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 13:51:12 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 13:51:13 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:13 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:14 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:15 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:51:15 2002] [error] [client 24.69.194.22] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 13:53:22 2002] [error] [client 66.28.250.172] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 13:54:39 2002] [error] [client 66.28.250.171] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 13:58:10 2002] [error] [client 212.113.19.150] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 14:06:12 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 14:32:23 2002] [error] [client 64.210.196.195] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 14:32:26 2002] [error] [client 64.210.196.195] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Fri Jun 07 14:50:47 2002] [error] [client 24.210.207.58] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 14:50:53 2002] [error] [client 24.210.207.58] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 14:50:54 2002] [error] [client 24.210.207.58] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 17:16:41 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:41 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 17:16:41 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 17:16:41 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 17:16:41 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:42 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:43 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 17:16:43 2002] [error] [client 24.27.84.132] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:10:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:10:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 19:10:30 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 19:10:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 19:10:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:10:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 19:10:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 19:10:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 19:10:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:10:57 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:11:01 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:11:11 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:11:14 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:12:26 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 19:12:26 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/cp-jan96.html
[Fri Jun 07 19:14:13 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/technews
[Fri Jun 07 19:14:18 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:16:00 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/computers
[Fri Jun 07 19:17:10 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/oher_top.html
[Fri Jun 07 19:17:13 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:24:28 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/lawschools.html
[Fri Jun 07 19:25:18 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/VL
[Fri Jun 07 19:27:26 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:29:43 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/SpaceOthers.html
[Fri Jun 07 19:30:23 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:31:05 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:31:09 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:31:34 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:31:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 19:31:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 19:31:43 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/nuclear
[Fri Jun 07 19:31:43 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 19:31:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:31:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 19:31:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 19:31:56 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 19:31:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:32:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:32:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:32:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:32:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:32:27 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:32:31 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:33:34 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:34:16 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/gov_res.html
[Fri Jun 07 19:37:32 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/Journal.html
[Fri Jun 07 19:42:15 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:42:19 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/technews
[Fri Jun 07 19:44:25 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/space
[Fri Jun 07 19:44:30 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/SpaceGroups.html
[Fri Jun 07 19:46:27 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/welcome.html
[Fri Jun 07 19:50:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:50:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 19:50:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 19:50:56 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 19:50:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:51:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 19:51:06 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 19:51:09 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 19:51:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:51:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:51:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:51:31 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:51:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 19:54:41 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 19:58:33 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/virtual.html
[Fri Jun 07 19:58:57 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/lawfirms.html
[Fri Jun 07 20:00:01 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/1.htm
[Fri Jun 07 20:00:04 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:01:05 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/http
[Fri Jun 07 20:01:53 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:02:28 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/VL
[Fri Jun 07 20:02:31 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/feed.htm
[Fri Jun 07 20:03:47 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/www.unige.ch
[Fri Jun 07 20:06:04 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/www.pacrain.com
[Fri Jun 07 20:07:21 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/gov
[Fri Jun 07 20:07:28 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/Misc.html
[Fri Jun 07 20:08:02 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:09:19 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:19 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/MSADC
[Fri Jun 07 20:09:19 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/c
[Fri Jun 07 20:09:19 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/d
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/msadc
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:20 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:21 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:09:21 2002] [error] [client 24.174.112.106] File does not exist: C:/webserver/webs/technalithics/scripts
[Fri Jun 07 20:14:58 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 20:14:58 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/cp-dec95.html
[Fri Jun 07 20:16:05 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:16:10 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:16:14 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/intenvlaw.html
[Fri Jun 07 20:18:05 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/documents
[Fri Jun 07 20:18:11 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/labs
[Fri Jun 07 20:19:45 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:19:53 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/chem_news.html
[Fri Jun 07 20:20:39 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:22:20 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:22:46 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/cp-feb96.html
[Fri Jun 07 20:23:07 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:24:59 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:25:52 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/technews
[Fri Jun 07 20:27:04 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:28:22 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:31:00 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:32:02 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:32:06 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/nttc.html
[Fri Jun 07 20:33:06 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:34:38 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/technews
[Fri Jun 07 20:35:49 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/Gamov.html
[Fri Jun 07 20:35:53 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/cp-oct95.html
[Fri Jun 07 20:38:20 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/us-gov.html
[Fri Jun 07 20:38:24 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/Nasa.html
[Fri Jun 07 20:40:19 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:40:58 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/www.teleport.com
[Fri Jun 07 20:41:59 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/non-us.html
[Fri Jun 07 20:42:36 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:44:29 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Fri Jun 07 20:54:47 2002] [error] [client 66.28.250.171] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 21:03:36 2002] [error] [client 210.178.178.69] Client sent malformed Host header
[Fri Jun 07 21:05:38 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Fri Jun 07 21:11:21 2002] [error] [client 66.28.250.172] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Sat Jun 08 10:31:25 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Sat Jun 08 10:31:25 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/states.html
[Sat Jun 08 10:31:35 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/bioinfo_center_about.html
[Sat Jun 08 10:32:15 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Sat Jun 08 10:40:51 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/computers
[Sat Jun 08 10:40:56 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/technews
[Sat Jun 08 10:41:01 2002] [error] [client 66.196.73.35] File does not exist: C:/webserver/webs/technalithics/servsup
[Sat Jun 08 10:45:27 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:28 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 10:45:28 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 10:45:29 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 10:45:29 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:30 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 10:45:30 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 10:45:31 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 10:45:31 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:32 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:33 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:34 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 10:45:37 2002] [error] [client 24.192.26.89] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 11:46:27 2002] [error] [client 218.17.83.92] Client sent malformed Host header
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:52 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 12:50:53 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 12:50:53 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 12:50:53 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:53 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:53 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:54 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 12:50:54 2002] [error] [client 24.167.71.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:28:49 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:28:51 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 13:28:54 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 13:28:56 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 13:28:59 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:29:01 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 13:29:04 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 13:29:06 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 13:29:09 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:29:14 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:29:16 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:29:24 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 13:29:27 2002] [error] [client 24.117.33.0] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:12:29 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:12:30 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 15:12:32 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 15:13:18 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 15:13:19 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:13:20 2002] [error] [client 24.226.42.65] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 15:47:57 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:47:58 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 15:47:59 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 15:48:01 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 15:48:03 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:48:04 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 15:48:06 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 15:48:06 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 15:48:07 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 15:48:08 2002] [error] [client 24.215.19.98] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:33 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:33 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 17:38:33 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 17:38:34 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 17:38:34 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:35 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 17:38:35 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 17:38:35 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 17:38:36 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:37 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:37 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:38 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 17:38:38 2002] [error] [client 24.86.229.102] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 18:13:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 18:13:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 18:13:27 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 18:13:31 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 18:13:34 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 18:13:38 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 18:13:42 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 18:13:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 18:13:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 18:14:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 18:14:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:13:37 2002] [error] [client 66.28.250.176] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Sat Jun 08 19:23:10 2002] [error] [client 66.28.250.176] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Sat Jun 08 19:26:41 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:41 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 19:26:42 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 19:26:42 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 19:26:42 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:43 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 19:26:43 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 19:26:43 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 19:26:43 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:44 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:44 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:45 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:26:45 2002] [error] [client 24.86.230.143] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:27:56 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:27:57 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 19:27:57 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 19:27:57 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 19:27:58 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:27:58 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 19:27:59 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 19:27:59 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 19:27:59 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:28:00 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:28:01 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:28:02 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 19:28:02 2002] [error] [client 24.146.18.142] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:15:46 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:15:49 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 20:15:52 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 20:15:56 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 20:15:59 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:16:02 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 20:16:06 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 20:16:09 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 20:16:12 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:16:19 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:16:23 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:16:33 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:16:36 2002] [error] [client 24.80.231.95] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:50:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:50:43 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 20:50:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 20:50:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 20:50:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:50:57 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 20:51:01 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 20:51:04 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 20:51:08 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:51:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:51:21 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:51:32 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 20:51:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:18 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:21 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sat Jun 08 22:03:24 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/c
[Sat Jun 08 22:03:27 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/d
[Sat Jun 08 22:03:30 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:32 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sat Jun 08 22:03:35 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sat Jun 08 22:03:38 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/msadc
[Sat Jun 08 22:03:40 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:46 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:48 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:03:57 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sat Jun 08 22:04:00 2002] [error] [client 24.114.141.208] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 00:52:45 2002] [error] [client 66.196.73.16] File does not exist: C:/webserver/webs/technalithics/virtual.html
[Sun Jun 09 03:03:39 2002] [error] [client 208.51.0.74] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Sun Jun 09 03:03:43 2002] [error] [client 208.51.0.74] File does not exist: C:/webserver/webs/sparctech/_vti_bin
[Sun Jun 09 03:03:43 2002] [error] [client 208.51.0.74] File does not exist: C:/webserver/webs/sparctech/_vti_bin
[Sun Jun 09 03:26:14 2002] [error] [client 66.196.65.18] File does not exist: C:/webserver/webs/technalithics/robots.txt
[Sun Jun 09 03:38:10 2002] [error] [client 209.167.50.22] File does not exist: C:/webserver/webs/technalithics/robots.txt, referer: www.seventwentyfour.com/
[Sun Jun 09 04:15:29 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:15:32 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 04:15:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 04:15:38 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 04:15:41 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:15:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 04:15:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 04:15:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 04:15:54 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:16:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:16:03 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:16:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:16:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:34:41 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:34:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 04:34:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 04:34:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 04:34:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:34:56 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 04:34:59 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 04:35:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 04:35:05 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:35:11 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:35:14 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:35:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 04:35:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 05:04:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:04:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 05:08:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 05:08:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 05:08:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:35 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:36 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:08:36 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:32 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:32 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 05:23:32 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:33 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 05:23:34 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 06:28:05 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 06:28:06 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:06 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:06 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:06 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:28:06 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 06:48:02 2002] [error] [client 159.134.231.190] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Sun Jun 09 07:37:09 2002] [error] [client 209.94.76.142] Client sent malformed Host header
[Sun Jun 09 07:48:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 07:48:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 07:48:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 07:48:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:23 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 07:48:23 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 08:54:06 2002] [error] [client 66.28.250.171] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 08:59:10 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 09:03:27 2002] [error] [client 66.28.250.174] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 09:12:22 2002] [error] [client 66.28.250.172] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 10:15:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 10:15:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:15:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 10:24:27 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 10:24:28 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 10:24:28 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:28 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:28 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:28 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 10:24:29 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 11:58:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 11:58:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 11:58:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:52 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:53 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 11:58:53 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:18:09 2002] [notice] Parent: Created child process 660
[Sun Jun 09 12:18:13 2002] [notice] Child 660: Child process is running
[Sun Jun 09 12:18:13 2002] [notice] Child 660: Acquired the start mutex.
[Sun Jun 09 12:18:13 2002] [notice] Child 660: Starting 250 worker threads.
[Sun Jun 09 12:32:12 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 12:32:13 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 12:32:14 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 12:32:14 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:14 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:14 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:15 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:32:15 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 12:44:54 2002] [error] [client 198.81.26.71] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Sun Jun 09 12:46:47 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:00 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:10 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:23 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:36 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:48 2002] [error] [client 198.81.16.173] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Sun Jun 09 12:47:58 2002] [error] [client 198.81.26.71] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:31:58 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:31:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 13:32:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:00:54 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:00:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 14:00:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 14:00:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 14:00:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:00:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 14:00:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 14:00:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 14:00:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:00:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:00:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:01:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:01:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:13 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:14 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 14:23:14 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 14:23:14 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 14:23:14 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:15 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 14:23:15 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 14:23:15 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 14:23:15 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:16 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:16 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:17 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:23:17 2002] [error] [client 24.91.171.254] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:41 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 14:45:42 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 14:45:43 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:43 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:43 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:43 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:45:44 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:56:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:56:59 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 14:57:00 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 14:57:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:57:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:57:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:57:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 14:57:01 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 15:40:02 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 15:40:03 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 15:40:03 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:03 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:03 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:03 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:40:04 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:49 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:49 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 15:42:50 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:42:51 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 15:59:24 2002] [error] [client 66.196.65.18] File does not exist: C:/webserver/webs/sparctech/robots.txt
[Sun Jun 09 16:34:20 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:20 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 16:34:21 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:22 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:22 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:22 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 16:34:22 2002] [error] [client 24.27.4.210] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:04:18 2002] [error] [client 66.28.250.175] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:55 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:56 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:05:57 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:12:34 2002] [error] [client 66.28.250.172] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 17:13:20 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:20 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 17:13:21 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:22 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:25 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:13:25 2002] [error] [client 24.242.248.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 17:23:36 2002] [error] [client 66.28.250.171] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 17:25:35 2002] [error] [client 66.28.250.173] File does not exist: C:/webserver/webs/rover-phd/robots.txt
[Sun Jun 09 18:00:48 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:49 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 18:00:49 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 18:00:49 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 18:00:49 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:50 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 18:00:50 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 18:00:50 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 18:00:51 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:51 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:51 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:52 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:00:52 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:02 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:02 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 18:06:02 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 18:06:02 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 18:06:02 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:03 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 18:06:03 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 18:06:03 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 18:06:03 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:06 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:06 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:07 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:06:07 2002] [error] [client 24.167.68.172] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:43 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:44 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 18:07:44 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 18:07:45 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 18:07:46 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:47 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 18:07:48 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 18:07:49 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 18:07:50 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:52 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:53 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:55 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:07:56 2002] [error] [client 24.86.130.152] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:15:58 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:00 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 18:16:01 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 18:16:02 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 18:16:04 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:06 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 18:16:07 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 18:16:09 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 18:16:11 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:15 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:16 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:22 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:16:24 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 18:36:47 2002] [error] [client 210.54.27.70] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Sun Jun 09 18:37:20 2002] [error] [client 210.54.27.70] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Sun Jun 09 19:16:03 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:04 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 19:16:04 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 19:16:04 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 19:16:04 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:05 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 19:16:06 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 19:16:07 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 19:16:08 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:10 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:11 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:14 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 19:16:14 2002] [error] [client 24.243.12.248] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:20 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:21 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 20:01:23 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 20:01:24 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 20:01:25 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:26 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 20:01:28 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 20:01:29 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 20:01:30 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:32 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:34 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:37 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:01:39 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:51:48 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:51:49 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 20:51:50 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 20:51:52 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 20:51:53 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:51:54 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 20:51:55 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 20:51:57 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 20:51:58 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:52:01 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:52:02 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:52:05 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 20:52:06 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:35 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:35 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 21:37:35 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 21:37:36 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 21:37:36 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:36 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 21:37:37 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 21:37:37 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 21:37:37 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:38 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:38 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:39 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 21:37:39 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:43 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:43 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 22:01:44 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 22:01:45 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:45 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:45 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:46 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:01:46 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:27 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:27 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 22:05:27 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 22:05:28 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 22:05:28 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:28 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 22:05:31 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 22:05:32 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 22:05:32 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:32 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:32 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:33 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:05:33 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:13 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:14 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 22:23:14 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 22:23:15 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 22:23:15 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:16 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 22:23:16 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 22:23:17 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 22:23:17 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:18 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:18 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:19 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 22:23:19 2002] [error] [client 24.242.106.16] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:13:40 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:13:43 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/MSADC
[Sun Jun 09 23:13:46 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/c
[Sun Jun 09 23:13:48 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/d
[Sun Jun 09 23:13:51 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:13:54 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Sun Jun 09 23:13:57 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Sun Jun 09 23:14:00 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/msadc
[Sun Jun 09 23:14:03 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:14:11 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:14:13 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:14:18 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Sun Jun 09 23:14:20 2002] [error] [client 24.150.51.32] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:27:03 2002] [error] [client 217.222.246.82] Client sent malformed Host header
[Mon Jun 10 00:29:26 2002] [error] [client 216.231.10.197] File does not exist: C:/webserver/webs/sparctech/serv01.htm';return true" onMouseOut="status=', referer: 
[Mon Jun 10 00:36:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:13 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 00:36:14 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 00:36:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 00:36:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:17 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 00:36:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 00:36:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 00:36:20 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:23 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:25 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 00:36:26 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 01:29:42 2002] [error] [client 66.196.73.67] File does not exist: C:/webserver/webs/technalithics/states.html
[Mon Jun 10 02:03:28 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:03:30 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 02:03:32 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 02:03:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 02:03:37 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:03:40 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 02:03:42 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 02:03:44 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 02:03:46 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:03:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:03:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:04:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 02:04:02 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:05:42 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:05:45 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 03:05:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 03:05:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 03:05:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:05:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 03:05:55 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 03:05:58 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 03:06:00 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:06:05 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:06:07 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:06:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:06:17 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:27 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:28 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 03:21:29 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 03:21:29 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 03:21:31 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:31 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 03:21:32 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 03:21:32 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 03:21:32 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:33 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:33 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:35 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 03:21:37 2002] [error] [client 24.242.179.170] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:47 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 05:43:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 05:43:48 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 05:43:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 05:43:49 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 05:43:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 05:43:50 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:51 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:52 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 05:43:53 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 06:10:31 2002] [error] [client 4.64.204.64] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Mon Jun 10 06:10:31 2002] [error] [client 4.64.204.64] no acceptable variant: C:/Program Files/Apache Group/Apache2/error/HTTP_NOT_FOUND.html.var, referer: http://www.technalithics.com/
[Mon Jun 10 07:07:12 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:13 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 07:07:15 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 07:07:16 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 07:07:18 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:19 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 07:07:21 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 07:07:22 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 07:07:24 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:27 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:28 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:33 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 07:07:35 2002] [error] [client 24.242.108.134] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:44:56 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:44:57 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 08:44:57 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 08:44:58 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 08:44:58 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:44:59 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 08:45:00 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 08:45:00 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 08:45:01 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:45:02 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:45:03 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:45:05 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:45:06 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:53:55 2002] [error] [client 24.29.102.19] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:55:44 2002] [error] [client 155.94.62.220] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif
[Mon Jun 10 08:55:45 2002] [error] [client 155.94.62.220] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Mon Jun 10 08:56:04 2002] [error] [client 155.94.62.220] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Mon Jun 10 08:56:21 2002] [error] [client 155.94.62.220] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Mon Jun 10 08:56:47 2002] [error] [client 155.94.62.220] Options ExecCGI is off in this directory: C:/webserver/webs/technalithics/_vti_bin/shtml.exe, referer: http://www.technalithics.com/search.htm
[Mon Jun 10 08:56:59 2002] [error] [client 155.94.62.220] File does not exist: C:/webserver/webs/technalithics/_derived/Default.htm_cmp_blitz110_bnr.gif, referer: http://www.technalithics.com/
[Mon Jun 10 08:59:58 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 08:59:59 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 09:00:00 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 09:00:01 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 09:00:02 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:00:03 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 09:00:04 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 09:00:05 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 09:00:06 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:00:08 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:00:09 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:00:12 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:00:13 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:39 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:40 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/MSADC
[Mon Jun 10 09:03:41 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/c
[Mon Jun 10 09:03:41 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/d
[Mon Jun 10 09:03:42 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:44 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_vti_bin/..%5c
[Mon Jun 10 09:03:44 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/_mem_bin
[Mon Jun 10 09:03:45 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/msadc
[Mon Jun 10 09:03:46 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:47 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:48 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:51 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts
[Mon Jun 10 09:03:51 2002] [error] [client 24.242.15.175] File does not exist: C:/webserver/webs/technalithics/scripts



Thanks again for any help you can provide, and if anything else is needed, just let me know...

Daniel Gaddy

Re: Apache 2.0.35 with Win2kPro - PHP module issue - Please help ASAP!!!

Posted by Joe Cooper <jo...@swelltech.com>.
Did I imagine it, or did you actually send a 2 megabyte post to a 
mailing list...not once, but twice (followed by a 165K message of 
similar content) all in under an hour?

If I were on a dialup, I might become violent upon receiving 4MB of crap 
in my mailbox.  Folks outside of the US who pay for connect time, in 
particular, certainly aren't going to be happy to receive your posts. 
As it is I'm pissed just having to wait 30 seconds each for my mailer to 
delete the damn things (IMAP to an mbox...doesn't seem to take kindly to 
monster emails in a mailbox with several thousand messages).

Sheesh...Didn't your mother teach you any manners?  Please do some 
reading on basic netiquette before posting to mailing lists.

Daniel Gaddy wrote:
> Hello again,
>  
> I have posted this message now twice to this board, and the need of it 
 > getting resolved has grown greatly...

-- 
Joe Cooper <jo...@swelltech.com>
Web caching appliances and support.
http://www.swelltech.com


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Apache 2.0.35 with Win2kPro - PHP module issue - Please help ASAP!!!

Posted by Joshua Slive <jo...@slive.ca>.
On Mon, 10 Jun 2002, Daniel Gaddy wrote:

> Hello again,
>
> I have posted this message now twice to this board, and the need of it
> getting resolved has grown greatly...

One thing I can guarentee you is that if you send any more 2MB messages to
the list, you are going to wind up getting kicked off entirely.  Please
think a little about what you are doing before you dump all that garbage
into hundreds of mailboxes and unnecessarily use up apache.org bandwidth.

Joshua.



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org